/********** Template CSS **********/
.section {
    padding: 80px 0;
}
.btn {
    font-weight: 700;
    transition: 0.5s;
}

/* .btn:hover {
    -webkit-box-shadow: 0 8px 6px -6px #555555;
    -moz-box-shadow: 0 8px 6px -6px #555555;
    box-shadow: 0 8px 6px -6px #555555;
} */

.btn.btn-secondary {
    color: #ffffff;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.navbar .navbar-nav .nav-link {
    position: relative;
    margin-left: 30px;
    padding: 5px 0;
    font-size: 18px;
    color: var(--bs-secondary);
    outline: none;
    transition: 0.5s;
}

.sticky-top.navbar .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

@media (min-width: 992px) {
    .navbar .navbar-nav .nav-link::before {
        position: absolute;
        content: '';
        width: 0;
        height: 5px;
        bottom: 0;
        left: 50%;
        background: var(--bs-primary);
        transition: 0.5s;
    }

    .navbar .navbar-nav .nav-link:hover::before,
    .navbar .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 991px) {
    .navbar .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
}

.navbar .cta {
    color: var(--bs-light);
    background-color: var(--bs-primary);
    padding: 15px 20px;
    border-radius: 0;
    border: 3px solid var(--bs-light);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
    transition: background-color 0.5s ease 0s, color 0.5s ease 0s,
        border 0.5s ease 0s, box-shadow 0.5s ease 0s;
    z-index: 1;
}

.navbar .cta:hover {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
    background-color: var(--bs-light);
    box-shadow: none;
}

.bg-hero {
    background: url(../img/hero.jpg) top right no-repeat;
    background-size: contain;
}

@media (max-width: 991.98px) {
    .bg-hero {
        background-size: cover;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-end {
    background: url(../img/bg.png) no-repeat center center / cover;
}

@media (min-width: 992px) {
    .about-start {
        position: relative;
        margin-right: -200px !important;
        z-index: 1;
    }

    .about-end {
        position: relative;
        margin-left: -200px !important;
        margin-right: 0 !important;
        z-index: 1;
    }
}

@media (max-width: 992px) {
    .about-end {
        position: relative;
        margin-top: -50px;
        z-index: 1;
    }
}

.about .cta {
    color: var(--bs-light);
    background-color: var(--bs-primary);
    padding: 15px 20px;
    border-radius: 0;
    border: 3px solid var(--bs-light);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
    transition: background-color 0.5s ease 0s, color 0.5s ease 0s,
        border 0.5s ease 0s, box-shadow 0.5s ease 0s;
    z-index: 1;
}

.about .cta:hover {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
    background-color: var(--bs-light);
    box-shadow: none;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services-end {
    background: url(../img/bg.png) no-repeat center center / cover;
}

@media (min-width: 992px) {
    .services-start {
        position: relative;
        margin-right: -200px !important;
        z-index: 1;
    }

    .services-end {
        position: relative;
        margin-left: -200px !important;
        margin-right: 0 !important;
        z-index: 1;
    }
}

@media (max-width: 992px) {
    .services-end {
        position: relative;
        margin-top: -50px;
        z-index: 1;
    }
}

.services .cta {
    color: var(--bs-light);
    background-color: var(--bs-primary);
    padding: 15px 20px;
    border-radius: 0;
    border: 3px solid var(--bs-light);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
    transition: background-color 0.5s ease 0s, color 0.5s ease 0s,
        border 0.5s ease 0s, box-shadow 0.5s ease 0s;
    z-index: 1;
}

.services .cta:hover {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
    background-color: var(--bs-light);
    box-shadow: none;
}

/* .service-item,
.contact-item {
    background: url(../img/service.jpg) top center no-repeat;
    background-size: cover;
    transition: 0.5s;
} */

/* .service-item:hover,
.contact-item:hover {
    background: url(../img/service.jpg) bottom center no-repeat;
    background-size: cover;
} */

.service-item .service-icon,
.contact-item .contact-icon {
    margin-top: -50px;
    width: 100px;
    height: 100px;
    color: var(--bs-secondary);
    /* background: #ffffff; */
    transform: rotate(-45deg);
}

.service-item .service-icon div,
.contact-item .contact-icon div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    transition: 0.5s;
}

.service-item .service-icon i,
.contact-item .contact-icon i {
    transform: rotate(45deg);
    transition: 0.5s;
    font-size: 2.3em;
}

.service-item:hover .service-icon div,
.contact-item:hover .contact-icon div {
    background: var(--bs-secondary);
}

.service-item:hover .service-icon i,
.contact-item:hover .contact-icon i {
    color: var(--bs-primary);
}

/* .service-item a.btn {
    position: relative;
    bottom: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: 0;
    opacity: 1;
} */

.bg-quote {
    background: url(../img/quote.jpg) top right no-repeat;
    background-size: contain;
}

@media (max-width: 991.98px) {
    .bg-quote {
        background-size: cover;
    }
}

.services-swiper .swiper-pagination-bullet-active {
    background: var(--bs-primary);
}

.services-swiper .swiper-pagination {
    position: relative !important;
    margin-top: 20px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.service-item {
    position: relative;
    margin-bottom: 45px;
}

.service-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background: url(../img/team.jpg) bottom center no-repeat; */
    background-color: var(--bs-primary);
    color: var(--bs-light);
    background-size: cover;
    height: 90px;
    padding: 0 30px;
    right: 45px;
    left: 45px;
    bottom: -45px;
    transition: 0.5s;
    z-index: 1;
}

@media (max-width: 576px) {
    .service-text {
        right: 15px;
        left: 15px;
    }
}

.service-item:hover .service-text {
    height: 100%;
    bottom: 0;
    background-color: rgba(238, 27, 36, 0.9);
}

.service-details {
    position: absolute;
    transition: 0.1s;
    transition-delay: 0s;
    opacity: 0;
    margin-bottom: 35px;
}

.service-item:hover .service-text .my-auto {
    margin-bottom: 20px !important;
}

.service-item:hover .service-details {
    transition-delay: 0.3s;
    opacity: 1;
}

.bg-testimonial {
    background: url(../img/testimonial.jpg) top left no-repeat;
    background-size: contain;
}

@media (max-width: 991.98px) {
    .bg-testimonial {
        background-size: cover;
    }
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--bs-secondary);
    font-size: 22px;
    border-radius: 45px;
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}

.testimonial-carousel .owl-item img {
    width: 60px;
    height: 60px;
}

.bg-call-to-action {
    background: url(../img/call-to-action.jpg) top right no-repeat;
    background-size: contain;
}

/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/
.bg-footer {
    /* background: url(../img/footer.jpg) center center no-repeat; */
    background-size: contain;
}

.bg-footer .cta {
    color: var(--bs-light);
    background-color: var(--bs-primary);
    padding: 15px 20px;
    border-radius: 0;
    border: 3px solid var(--bs-light);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
    transition: background-color 0.5s ease 0s, color 0.5s ease 0s,
        border 0.5s ease 0s, box-shadow 0.5s ease 0s;
    z-index: 1;
}

.bg-footer .cta:hover {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
    background-color: var(--bs-light);
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .bg-call-to-action,
    .bg-footer {
        background-size: cover;
    }
}

/* ---------------------------------- */
.hero .title-header h1 {
    font-size: clamp(1.875rem, 0rem + 10vw, 4.375rem);
}

.hero .title-header a {
    color: var(--bs-light);
    background-color: var(--bs-primary);
    padding: 15px 20px;
    border-radius: 0;
    border: 3px solid var(--bs-light);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
    transition: background-color 0.5s ease 0s, color 0.5s ease 0s,
        border 0.5s ease 0s, box-shadow 0.5s ease 0s;
}

.hero .title-header a:hover {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
    background-color: var(--bs-white);
    box-shadow: none;
}

/* .hero .img-services .img-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 150px;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-size 0.5s ease;
}

.hero .img-services .img-container.bg-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('../img/2.webp');
}

.hero .img-services .img-container:hover {
    background-size: 110%;
}

.hero .img-services .img-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero .img-services p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    pointer-events: none;
} */

.hero .img-services .img-container {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.hero .img-services .img-container img {
    max-height: 150px;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.hero .img-services .img-container:hover img {
    transform: scale(1.1);
}

.hero .img-services .img-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

.hero .img-services .img-container p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    pointer-events: none;
}

.hero .img-hero {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero .img-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.5) 5%,
        rgba(220, 72, 72, 0) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero .img-hero p {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0%);
    text-align: center;
    z-index: 2;
    pointer-events: none;
    letter-spacing: 3px;
    width: 100%;
    color: var(--bs-light);
}

.cta .col-cta {
    position: relative;
    background: var(--bs-secondary);
    height: 100%;
}

.cta .col-cta a {
    color: var(--bs-light);
    background-color: var(--bs-primary);
    padding: 15px 20px;
    border-radius: 0;
    border: 3px solid var(--bs-light);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
    transition: background-color 0.5s ease 0s, color 0.5s ease 0s,
        border 0.5s ease 0s, box-shadow 0.5s ease 0s;
    z-index: 1;
}

.cta .col-cta p {
    z-index: 1;
}
.cta .col-cta a:hover {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
    background-color: var(--bs-light);
    box-shadow: none;
}

.cta .col-cta img {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    max-width: 200px;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
    position: relative;
    background-image: linear-gradient(
            rgba(83, 83, 83, 0.8),
            rgba(83, 83, 83, 0.9)
        ),
        url('../img/4.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    overflow: hidden;
}

/* .gallery img.brush-2 {
    position: absolute;
    top: -84px;
    left: 0;
} */

/* .gallery .swiper-wrapper {
    height: auto;
} */

/* .gallery .swiper-pagination {
    margin-top: 20px;
    position: relative;
} */

.gallery .swiper-pagination .swiper-pagination-bullet {
    background-color: var(--bs-light);
    border: 1px solid var(--bs-primary);
    width: 12px;
    height: 12px;
    opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--bs-primary);
}

.gallery .swiper-slide-active {
    text-align: center;
}

@media (min-width: 768px) {
    .gallery .swiper-wrapper {
        padding: 40px 0;
    }

    .gallery .swiper-slide-active {
        background: var(--bs-light);
        border: 6px solid var(--bs-primary);
        padding: 4px;
        z-index: 1;
        transform: scale(1.2);
        transition: none;
    }
}

.gallery .gallery-swiper img {
    height: 350px;
    width: 100%;
}
/*--------------------------------------------------------------
# Our Partner Section
--------------------------------------------------------------*/

.partners {
    position: relative;
    background: url(../img/bg.png) no-repeat center center / cover;
}

.partners .bg-paint {
    position: absolute;
    top: 20px;
    left: 0;
    object-fit: cover;
}

.partners h1 {
    background-image: url('../img/paint.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--bs-light);
}

.partners img {
    height: 100px;
}

/* .logos {
    overflow: hidden;
    padding-top: 60px;
    white-space: nowrap;
    position: relative;
}

.logos-slide {
    display: inline-block;
    animation: 35s slide infinite linear;
    gap: 0 60px;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.logos-slide img {
    height: 100px;
    margin: 0 25px;
} */

.partners .partners-swiper .swiper-wrapper .swiper-slide {
    /* animation: slide 15s linear infinite !important; */
    display: flex !important;
    justify-content: center !important;
}

/*--------------------------------------------------------------
# Areas Section
--------------------------------------------------------------*/
.areas .areas-container {
    background: url('../img/areas.png') center bottom / cover no-repeat;
    width: 100%;
    height: 100%;
}

.areas .area-item {
    padding: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
}

.areas .area-item h3 {
    font-size: 20px;
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
}

.areas .area-item i {
    color: var(--bs-light);
    /* background-color: var(--secondary-color); */
    background-image: url(../img/paint-3.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 40px;
    height: 60px;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    /* border-radius: 50%; */
    z-index: 1;
    padding-bottom: 12px;
}

.areas .area-item:hover i {
    color: var(--bs-primary);
}

.areas .icon-link-hover:hover > .bi {
    --bs-icon-link-transform: translate3d(0, -0.13rem, 0);
}

@media screen and (min-width: 768px) {
    .loadMoreBtn {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .loadMoreBtn {
        display: block;
    }
    .areas .area {
        display: none;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-end {
    background: url(../img/bg.png) no-repeat center center / cover;
}

@media (min-width: 992px) {
    .contact-start {
        position: relative;
        margin-right: -200px !important;
        z-index: 1;
    }

    .contact-end {
        position: relative;
        margin-left: -200px !important;
        margin-right: 0 !important;
        z-index: 1;
    }
}

@media (max-width: 992px) {
    .contact-end {
        position: relative;
        margin-top: -50px;
        z-index: 1;
    }
}
.contact .info-item {
    background-color: var(--bs-white);
    padding: 20px 0 30px 0;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact .info-item i {
    font-size: 20px;
    color: var(--bs-primary);
    width: 56px;
    height: 56px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    border: 2px dotted color-mix(in srgb, var(--bs-primary), transparent 40%);
}

.contact .info-item h3 {
    font-size: 20px;
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .php-email-form {
    background-color: var(--bs-white);
    padding: 30px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
    .contact .php-email-form {
        padding: 20px;
    }
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    /* color: var(--default-color);
    background-color: var(--surface-color); */
    border-color: color-mix(in srgb, var(--bs-secondary), transparent 50%);
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--bs-secondary);
}

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--bs-secondary), transparent 40%);
}

/* .contact .php-email-form button[type='submit'] {
    color: var(--contrast-color);
    background: var(--bs-primary);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type='submit']:hover {
    background: color-mix(in srgb, var(--bs-primary), transparent 20%);
} */

.contact .cta {
    color: var(--bs-light);
    background-color: var(--bs-primary);
    padding: 15px 20px;
    border-radius: 0;
    border: 3px solid var(--bs-light);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
    transition: background-color 0.5s ease 0s, color 0.5s ease 0s,
        border 0.5s ease 0s, box-shadow 0.5s ease 0s;
    z-index: 1;
}

.contact .cta:hover {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
    background-color: var(--bs-light);
    box-shadow: none;
}

.contact .form-control.is-invalid {
    border-color: var(--bs-danger) !important;
}

