body{
    margin: 0;
    padding: 0;
    font-size: 17px ;
    font-family:"Jost", Helvetica, sans-serif
}

header{
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    z-index: 1000;
    justify-content: center;
    padding: 20px;
    /* background-color: #ffffff90; */
    /* width: fit-content; */
    /* max-width: 100%; */
    /* margin: auto; */
}

.logo{
    width: 150px;
    /* background-color: #fff; */
    /* padding: 20px; */
    /* margin-bottom: 20px; */
}

.main-banner{
    position: relative;
    height: 100vh;
    width: 100%;
    z-index: 999;
}

.banner-img{
    height: 100vh;
    width: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -1;
}

.main-banner::after{
    content: '';
    background-color: #00000070;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.banner-content{
    position: absolute;
    transform: translate(-50%, 0%);
    bottom: 0%;
    left: 50%;
    width: 100%;
    top: auto;
}

.content-wrap::after{
    content: '';
    /* background-color: #00000062; */
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    /* border: 2px solid #a37c08; */
}

.banner-content h1{
    font-size: 56px;
    /* text-transform: uppercase; */
    margin: 0;
    /* letter-spacing: 1px; */
    font-weight: 300;
    font-family: "Cormorant Garamond";
}

.banner-content p{
    font-size: 20px;
    line-height: 30px;
    margin: 5px 0 0;
}

.content-wrap{
    color: #fff;
    z-index: 999;
    position: relative;
    padding: 60px 60px 40px;
    text-align: center;
}

/* .contact-details{
    color: #fff;
    background-color: #00000062;
    bottom: 0;
    position: absolute;
    width: 100%;
    padding: 10px;
} */

.contact-details{
    padding-top: 35px;
}

.contact-details a{
    color: #fff;
    text-decoration: none;
}

.contact-details p{
    margin: 0;
}

.contact-details .d-flex{
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.contact-details svg{
    width: 30px;
}

hr{
    width: 85%;
    margin: 20px auto auto;
}

.main-banner::before{
    content: '';
    background: #ffffff;
    /* background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 20%, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0.7) 60%, rgba(255, 255, 255, 0.8) 80%, rgba(255, 255, 255, 1) 100%); */
    background: linear-gradient(1deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 25%) 90%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

@media (max-width: 1400px) {
    .content-wrap {
        padding: 50px;
    } 

    .banner-content h1{
        font-size: 50px;
    }
}

@media (max-width: 1240px) {
    .banner-content {
        width: 100%;
    }

    .banner-content {
        top: auto;
        bottom: 0;
    }
}

@media (max-width: 1200px) {
    /* .banner-content {
        width: 75%;
    } */

    .banner-content {
        top: auto;
        bottom: 0;
    }
}

@media (max-width: 991px) {
    .banner-content h1{
        font-size: 40px;
    }

    /* .banner-content {
        width: 85%;
    } */
}

@media (max-width: 767px) {
    .banner-content br{
       display: none;
    }

    .banner-content {
        top: auto;
        bottom: 0;
    }

    .content-wrap {
        padding: 35px;
    }

    .contact-details .row{
        gap: 8px;
    }

    .contact-details svg{
        width: 20px;
    }
}

@media (max-width: 575px) {
    .content-wrap {
        padding: 20px;
    }

    /* .logo {
        width: 90px;
        padding: 20px;
        margin-bottom: 10px;
    } */
}