@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #444445;
    scroll-behavior: smooth;
}

a {
    color: #C29B6B;
    text-decoration: none;
}
#services{
    scroll-behavior: smooth;
}

a:hover {
    color: #C29B6B !important;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background-image: linear-gradient(to right, #C29B6B, #eac496);
    width: 40px;
    height: 40px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background-image: linear-gradient(to right, #eac496, #C29B6B);
    color: #fff;
    margin-bottom: 10px;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #C29B6B;
    border-top-color: #efefef;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

#topbar {
    background: linear-gradient(180deg, #C29B6B 0%, #E2B884 100%);
    font-size: 15px;
    height: 40px;
    padding: 0;
    color: #fff;
}

#topbar a {
    line-height: 0;
    color: #fff;
    transition: 0.3s;
}

#topbar  a:hover {
    color: #fff;
}

#topbar i {
    color: #fff;
    line-height: 0;
    margin-right: 5px;
}

#topbar .contact-info .phone-icon {
    margin-left: 15px;
}

#topbar .social-links a {
    color: #fff;
    padding: 4px 12px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
}

#topbar .social-links a:hover {
    color: #fff;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.5s;
    z-index: 997;
    height: 80px;
    position: relative;
}
#header .logo {
    position: absolute;
    top: 0;
    width: 200px;
    display: flex;
    justify-content: center;
}

#header.fixed-top {
    background: #fff;
    position: fixed !important;
}



#header .logo img {
    max-height: 120px;
    transition: all 1s ease-in-out;
    box-shadow: 0px 4px 14px 3px rgba(255, 255, 255, 0.35);
    border-radius: 200px;
}
#header.fixed-top .logo img{
    width: 75px;
}
#header .logo a {
    color: #C29B6B;
}


.scrolled-offset {
    margin-top: 70px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.navbar ul li{
    list-style: none;
}

a.nav-link{
    font-size: 16px;
    font-weight: 600;
    color: #484848;
    text-transform: uppercase;
}

/*--------------------------------------------------------------
# CAROUSEL
--------------------------------------------------------------*/

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 0px;
    top: 0px;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
}
.carousel-caption h6{
    font-size: 20px;
    font-weight: 800;
}
.carousel-caption h4{
    font-size: 54px;
    font-weight: 700;
    letter-spacing: 7.4px;
}
.carousel-caption h5{
    font-size: 28px;
    font-weight: 800;
}
.carousel-caption p{
    font-size: 14px;
    font-weight: 500;
}


/*--------------------------------------------------------------
# CAROUSEL
--------------------------------------------------------------*/

#about, #gallery{
    background: rgba(226, 184, 132, 0.11);
}

.about-left-content{
    text-align: end;
}
.about-left-content h5{
    font-size: 20px;
    font-weight: 400;
}
.about-left-content h1{
    color: #C29B6B;
    font-size: 46px;
    font-weight: 800;
}
.about-right-content p{
    font-size: 18px;
    font-weight: 500;
    line-height: 36px; 
}

.about-card{
    padding: 20px;
    background: #fff;
    border-radius: 20px;
}
.about-card h5{
    color: #C29B6B;
    font-size: 18px;
    font-weight: 700;
}
.about-card:hover{
    box-shadow: 0px 4px 17px 0px rgba(226, 184, 132, 0.62);
}

.about-more-card {
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.42);
    width: 100%;
    height: 100%;
    padding: 25px;
    color: #fff;
    display: grid;
    justify-items: center;
    align-items: center;
    align-content: center;
}
.about-more-card h6{
    font-size: 18px;
    font-weight: 700;
}

.parallax {
    background-image: url('../img/parallax.webp');
    height: 100%; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.service-card{
    position: relative;
    width: 100%;
    height: 350px;
}
.service-card img{
    position: absolute;
    width: 50%;
    height: 100%;
    border-radius: 20px;
    z-index: 1;
    object-fit: cover;
}
.service-card-content {
    position: absolute;
    z-index: 4;
    width: 55%;
    top: 0px;
    bottom: 0px;
    margin: auto;
    height: 70%;
    display: grid;
    align-items: center;
    align-content: center;
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0px 4px 38px 30px rgba(226, 184, 132, 0.08);
}
.service-card-left .service-card-content{
    right: 0px;
}
.service-card-right .service-card-content{
    left: 0px;
}
.service-card-right img{
    right: 0px;
}
.service-card-content h6{
    color: #C29B6B;
    font-size: 24px;
    font-weight: 700;
}

.title h3 {
    color: #C29B6B;
    font-size: 34px;
    font-weight: 800;
}

#gallery img{
    object-fit: cover;
}

.why-choose-us{
    background: url("../img/parallax-three.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    height: 400px;
    position: relative;
    margin-bottom: 200px;
}
.why-choose-us-card {
    border-radius: 15px;
    background: #FFF;
    box-shadow: 0px 4px 21px 0px rgba(226, 184, 132, 0.35);
    position: absolute;
    width: 100%;
    bottom: -40%;
    padding: 40px 10px;
}
.why-choose-us img{
    width: 80px;
    margin-bottom: 10px;
}
.why-choose-us h5{
    color: #1D1D1D;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.12px;
    text-transform: uppercase;
}

.offcanvas-header{
    background: linear-gradient(180deg, #C29B6B 0%, #E2B884 100%);
}

.form-label {
    margin-bottom: 0.3rem;
    font-weight: 600;
    font-size: 13px;
}
.form-control {
    padding: 0.375rem 0.375rem;
    font-size: 12px;
    border-radius: 0px;
}
.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #C29B6B;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 109, 253, 0);
}
.submit-btn {
    display: flex;
    align-items: flex-end;
}
.submit-btn button{
    background: linear-gradient(180deg, #C29B6B 0%, #E2B884 100%);
    border: none;
    padding: 0.275rem 0.375rem;
    color: #FFF;
    font-weight: 600;
}
.submit-btn button:hover{
    background: linear-gradient(180deg, #E2B884 0%, #C29B6B 100%);
}

.bg-clr {
    background: rgba(226, 184, 132, 0.08);
    padding: 30px 20px;
}
.bg-clr h5{
    color: #C29B6B;
    font-size: 20px;
    font-weight: 800;
}
.bg-clr h6{
    color: #484848;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0px;
}
.bg-clr span, .bg-clr a{
    color: #484848;
    font-size: 12px;
    font-weight: 700;
}

footer{
    background: url("../img/footer-bg.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
}
footer img{
    animation: mirrorflip 10s 0s linear infinite;
}

@keyframes mirrorflip {
	0% {
		transform: scale(1, 1);
		-webkit-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-o-transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		
	}
	50% {
		transform: scale(-1, 1);
		-webkit-transform: scale(-1, 1);
		-moz-transform: scale(-1, 1);
		-o-transform: scale(-1, 1);
		-ms-transform: scale(-1, 1);
	}
	100% {
		transform: scale(1, 1);
		-webkit-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-o-transform: scale(1, 1);
		-ms-transform: scale(1, 1);
	}
}

.copyright {
    font-size: 10px;
}

@media only screen and (max-device-width: 1366px) {
    .parallax {
        background-attachment: scroll;
    }
}

@media only screen and (max-width: 600px) {
    .title h2 {
        font-size: 24px;
    }
    .service-card img {
        width: 100%;
        height: 300px;
    }
    .service-card {
        height: 600px;
    }
    .service-card-content {
        right: 0px;
        left: 0;
        width: 85%;
        bottom: -230px;
        height: 50%;
        text-align: center;
        padding: 25px;
    }
    .service-card-left .service-card-content {
        right: 0px;
        left: 0;
    }
    .service-card-content p{
        font-size: 14px;
    }
    .about-left-content h1 {
        font-size: 32px;
        text-align: center;
    }
    .about-left-content h5 {
        font-size: 18px;
        text-align: center;
    }
    .about-right-content p{
        font-size: 16px;
        text-align: center;
    }
    /* .about-card img{
        width: 100px;
    } */
    .why-choose-us {
        background: #C29B6B;
        height: auto;
        position: relative;
        margin-bottom: 0px;
        padding: 20px 0px;
    }
    .why-choose-us-card {
        border-radius: 15px;
        background: #FFF;
        box-shadow: 0px 4px 21px 0px rgba(226, 184, 132, 0.35);
        position: relative;
        width: 100%;
        padding: 40px 10px;
    }
    .why-choose-us-card h5{
        margin-bottom: 30px;
    }
    nav#navbar {
        justify-content: flex-end;
    }
    #header .logo img {
        max-height: 70px;
    }
    #header .logo {
        position: relative;
        justify-content: flex-start !important;
        margin-bottom: 0px;
    }
    section#hero {
        height: 100vh;
    }
    .carousel {
        height: 100%;
    }
    .carousel-inner {
        position: relative;
        width: 100%;
        overflow: hidden;
        height: 100%;
    }
    .carousel-inner img{
        height: 100%;
        object-fit: cover;
    }
    .carousel-item{
        height: 100%;
    }

}