/********** Template CSS **********/

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

p {
    font-family: "Poppins", sans-serif;
    color: #000;
    font-size: 15px;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed !important;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Fonts ***/
.font-work-sans {
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.font-playfair-display {
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.font-dancing-script {
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    font-size: 20px;
}


/*** Button ***/
.btn {
    position: relative;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 4px;
}

.btn-dark,
.btn-primary {
    margin: 10px;
}

.btn-primary::before,
.btn-primary::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-primary::before {
    /* top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid #ff7202;
    border-right: 2px solid #ff7202; */
}

.btn-primary::after {
    /* left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid #ff7202;
    border-bottom: 2px solid #ff7202; */
}

.btn-dark::before,
.btn-dark::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-dark::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--bs-dark);
    border-right: 2px solid var(--bs-dark);
}

.btn-dark::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--bs-dark);
    border-bottom: 2px solid var(--bs-dark);
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin: 0 12px;
    padding: 0;
    outline: none;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bs-dark);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #ff7202;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
    color: var(--bs-white);
    background: #e67519;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn-primary {
    border-width: 1px;
    background: #ff7202;
}

.navbar .btn-primary:hover {
    background: #ff7202;
}


/*** Hero Header ***/
.hero-header {
    background: url(../img/hero-bg.jpg) top left no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .hero-header .container {
        max-width: 100% !important;
    }

    .hero-header .hero-header-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .hero-header .hero-header-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .hero-header .hero-header-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.header-carousel .owl-nav {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: relative;
    margin-left: 2px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-dark);
    background: #e3741b;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    color: var(--bs-white);
}

.page-header {
    background: url(../img/breadcrumb.jpg) center center no-repeat;
    background-size: cover;
    background-position: center;
}


/*** Service ***/
@media (max-width: 768px) {
    .service .service-item {
        border: none !important;
        box-shadow: 0 0 45px rgba(0, 0, 0, .05);
    }
}

@media (min-width: 992px) {
    .service .service-item.border-lg-end {
        border-right: 1px solid #dee2e6;
    }

    .service .service-item.border-lg-end-0 {
        border-right: none !important;
    }

    .service .service-item.border-lg-bottom-0 {
        border-bottom: none !important;
    }
}

.service .service-item .btn-primary {
    border-width: 2px;
    background: var(--bs-white);
    justify-content: center;
    display: flex;
    width: 40%;
    margin: 10px auto;
    border-radius: 50px;
    color: #ff7202;
}

.service .service-item .btn-primary:hover {
    background: #ff7202;
    color: #fff;
}

.service .service-item img {
    /* width: 70px; */
    margin-bottom: 20px;
    border-radius: 10px;
}

.service-item {
    background-color: #ffffff;
    /* padding: 10px; */
    box-shadow: 0px 0px 18px 0px #e7e7e7;
    border-radius: 10px;
    margin: 10px;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item h3 {
    font-size: 18px;
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
}

.service-item p {
    color: #000;
    text-align: center;
}

.welcome {
    background-image: url('../img/hero-bg.jpg');
    background-position: left;
}

.offer img {
    transition: transform 0.3s ease;
}

.offer img:hover {
    transform: translateY(-10px);
}

/*** Pricing ***/
.price .price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, .05);
}


/*** Blog ***/
.blog .btn-dark {
    border-width: 2px;
    background: var(--bs-primary);
    color: var(--bs-dark);
}

.blog .btn-dark:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}


/*** Gallery ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery .gallery-item img {
    transition: .5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, .7);
    transition: .5s;
    z-index: 1;
}

.gallery .gallery-item:hover .gallery-icon {
    width: 100%;
    height: 100%;
}

.gallery .gallery-icon .btn {
    opacity: 0;
    transition: .5s;
}

.gallery .gallery-item:hover .gallery-icon .btn {
    opacity: 1;
    transition-delay: .5s;
}


/*** Team ***/
.team {
    position: relative;
}

.team::before {
    position: absolute;
    content: "";
    width: 200%;
    height: 200px;
    top: 50%;
    left: -50%;
    transform: translateY(-50%);
    margin-top: 1rem;
    background: var(--bs-primary);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.2);
}

.team-overlay {
    position: absolute;
    padding: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    text-align: center;
    background: rgba(255, 255, 255, .5);
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-overlay {
    background: rgba(255, 255, 255, .9);
}

.team-overlay p {
    letter-spacing: 1px;
}

.team-overlay .btn-dark {
    border-width: 2px;
    color: var(--bs-dark);
    background: transparent;
}

.team-overlay .btn-dark:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}


/*** Testimonial ***/
.testimonial-carousel .owl-item {
    position: relative;
}

.testimonial-carousel .owl-item::before {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .1;
}

.testimonial-carousel .owl-item img {
    position: relative;
    width: 70px;
    height: 70px;
    z-index: 1;
}

.testimonial-carousel .owl-item,
.testimonial-carousel .owl-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item span {
    letter-spacing: 2px;
}

.testimonial-carousel .owl-item.center .bg-light {
    background: #f8f7f4 !important;
}

.testimonial-carousel .owl-item.center .bg-light * {
    color: var(--bs-dark) !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bs-dark);
    background: #ff7202;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}


/*** Footer ***/
@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: var(--bs-secondary);
    }
}

.footer p {
    color: #fff;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #fff;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: #ff7202;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, .5);
    margin-right: 10px;
}

.carousel-item {
    margin-top: 20px;
}

.carousel-item h4 {
    font-family: "Raleway", sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-header-text p {
    width: 80%;
}

.btn-box {
    align-items: center;
    margin-top: 30px;
}

.btn-1 {
    display: inline-block;
    padding: 8px 20px;
    background-color: #f0b016;
    border: 1px solid #f0b016;
    color: #ffffff;
    border-radius: 5px;
    margin-right: 10px;
}

.btn-2 {
    display: inline-block;
    padding: 8px 20px;
    background-color: #000000;
    border: 1px solid #000000;
    color: #ffffff;
    border-radius: 5px;
}

.topbar-right::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 100%;
    top: 0;
    left: -15px;
    transform: skewX(-30deg);
    background-color: #ed8533;
}

.topbar-right {
    position: relative;
    background: #e67519;
}

.sub-head {
    font-size: 16px;
    color: #e3741b;
    /* text-transform: uppercase; */
    font-weight: 700;
}

.main-head {
    font-size: 30px;
    color: #000;
    /* text-transform: uppercase; */
    font-weight: 700;
}

/*scroll start*/
.items {
    width: 94%;
    margin: 0px auto;
}

/*scroll closed*/
.best-offer p {
    color: #000;
}

.footer p i {
    color: #e3741b;
}

.enquirybtn {
    border-radius: 100px;
    padding: 6px 20px;
}

.blinking-button {
    padding: 6px 20px;
    cursor: pointer;
    animation: blinkBackground 1s infinite;
    border-radius: 50px;
    color: #fff;
}

.blinking-button:hover {
    color: #fff;
}

@keyframes blinkBackground {

    0%,
    100% {
        background-color: #ff7202;
    }

    50% {
        background-color: #000;
    }
}

@media (max-width: 768px) {
    .headsocial {
        margin-top: 10px;
    }

    .enquirybtn {
        margin-top: 10px;
    }

    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .contact-area .quick-contact {
        padding: 20px !important;
    }

    .contact-area .quick-contact ul li {
        padding-left: 52px !important;
    }

    .contact-area .quick-contact ul li i {
        left: 14px !important;
    }

    .fm-links {
        margin-top: 0px;
    }

    .welcome {
        background-position: center;
    }
}

.breadcrumb-head {
    /* text-transform: uppercase; */
    font-size: 30px;
    font-weight: 700;
    color: #fff;
}

.breadcrumb-item.active {
    color: #7e7e7e;
}

/*contact page start*/
.contact-area .quick-contact h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0px;
}

.contact-area .quick-contact {
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.contact-area .quick-contact ul li {
    font-size: 18px;
    position: relative;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
    background-color: #252525;
    padding: 19px 20px;
    padding-left: 65px;
}

.quick-contact ul {
    padding-left: 0px;
}

.contact-area .quick-contact ul li i {
    position: absolute;
    left: 25px;
    top: 16px;
    font-size: 25px;
    color: #e3741b;
}

.contact-area .quick-contact ul li a {
    display: block;
    font-weight: 400;
    font-size: 15px;
    color: #ffffff;
}

/*contact page closed*/
.form-floating>.form-select {
    padding-top: 10px;
}

.why-card {
    background-color: #fff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
    border-top: 2px solid #e3741b;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.why-card h4 {
    color: #000;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.why-card h4 i {
    color: #e3741b;
}

.why-card p {
    color: #000;
}

/*marquee start*/
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 10s linear infinite;
    color: #fff;
    font-weight: 700;
}

.marquee:hover span {
    animation-play-state: paused;
    cursor: pointer;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

/*marquee closed*/

/*image animation start*/
@keyframes move {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(-30px);
    }
}

.animated-image {
    animation: move 4s infinite alternate;
}

/*image animation closed*/

/*photo gallery start*/
.gallery-main {
    background-color: #fff;
    padding: 80px 0 50px;
}

.gallery-main h2 {
    text-align: center;
    margin: 10px 0 20px;
    text-transform: uppercase;
    font-size: 20px;

}

.main .card-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main .card-image {
    background: #fff;
    display: block;
    /* padding-top: 70%; */
    position: relative;
    width: 100%;
    height: 250px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0 3px #606060a3;
    padding: 10px;
    border: 2px solid #ff7202;
}

.main .card-image:hover {
    transform: scale(1.05);
}

.main .card {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
    color: #333;
    border-radius: 2px;
    /* width: 100%; */
}

.fancybox-button--share {
    display: none !important;
}

.card-event-gallery {
    margin-bottom: 30px;
}

@media only screen and (max-width:768px) {
    .main .card-image {
        height: 140px !important;
    }

    .gallery-main {
        padding: 50px 0 0px;
    }

    .main {
        margin-bottom: 0px !important;
    }
}

.fancybox-share_button {
    color: #000000;
}

/*photo gallery closed*/
.service-inpage h3 {
    font-size: 18px;
    color: #000;
    font-weight: 700;
    background-color: #ffe8d6;
    padding: 4px 8px;
    border-left: 3px solid #e67519;
}

.service-inpage ul {
    padding-left: 18px;
    margin-top: 14px;
}

.service-inpage ul li {
    font-family: "Poppins", sans-serif;
    color: #000;
    font-size: 15px;
}

/**/
.founder-box {
    margin: 20px auto;
    padding: 20px;
    background-color: #000000;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 450px;
    background-image: url("../img/camera.png");
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
    height: 600px;
    border-top: 4px solid #e3741b;
}

.founder-box:hover {
    transform: translateY(-10px);
}

.founder-img {
    width: 200px;
    margin: 0 auto;
    justify-content: center;
    display: flex;
}

.founder-box h4 {
    font-size: 24px;
    color: #e67519;
    font-weight: 600;
    text-align: center;
}

.founder-box h5 {
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: center;
}

.founder-box p {
    color: #ffffff;
    font-weight: 400;
    text-align: justify;
}

@media only screen and (max-width:768px) {
    .founder-box {
        width: auto;
        height: auto;
    }

    .gallery-item img {
        height: auto;
    }

    .footer-hide {
        display: none;
    }
}

.footer-atag a {
    color: #fff;
}

.footer-atag a:hover {
    color: #e3741b;
}