@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
:root{
    --yellow: #c5a059;
    --blue: #19204B;
    --bg: #e2e2e2;
    --bg2:#fff5f5;
    --bg3: #edf3ff;
    --white: #ffffff;
    --black: #000000;
    --black2: #242423;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", sans-serif;
    scroll-behavior: smooth;
    scroll-padding-top: 0;
}

/********* Back To Top Button Start *********/

.a-font{
    font-family: "Playfair Display", serif;
}

#float-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #20b657;
    color: var(--white);
    width: 65px;
    height: 65px;
    text-align: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 35px;
    border-radius: 50px;
    transition: background-color .4s;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.6);
}
#float-icon:hover{
    background-color: #075e54;
}

#top{
    display: inline-block;
    background-color: var(--yellow);
    width: 50px;
    height: 50px;
    text-align: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50px;
    transition: background-color .4s, 
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.6);
  }
  #top::after {
    content: "\f062";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1.2em;
    line-height: 50px;
    color: var(--white);
    transition: .4s ease-in-out;
  }
  #top:hover {
    cursor: pointer;
    color: var(--white);
    background-color: var(--black);
  }
  #top:hover::after {
    color: var(--white);
  }
  #top:active {
    background-color: var(--black);
  }
  #top.show {
    opacity: 1;
    visibility: visible;
  }

/********* Back To Top Button End *********/
.all-btn a {
    text-decoration: none;
    color: var(--white);
    padding: 12px 20px;
    background-color: var(--red);
    border-radius: 10px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease-in-out;
}

.all-btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -130%;
    width: 120%;
    height: 110%;
    background-color: var(--blue);
    border-radius: 10px;
    z-index: 0;
    transition: all 0.5s ease-in-out;
}

.all-btn a:hover::after {
    left: 0;
}
.all-btn a:hover i{
    color: var(--blue);
}
.all-btn a span, 
.all-btn a i {
    position: relative;
    z-index: 1;
}

.all-btn a i {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 5px;
    color: var(--red);
    background-color: var(--white);
    transition: all 0.5s ease-in-out;
}
.heading span{
    display: inline-block;
    font-weight: 600;
    color: var(--yellow);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.heading h1{
    font-size: 48px;
    color: var(--black);
    line-height: 1.2;
    font-family: "Playfair Display", serif;
    font-weight: inherit;
    margin-bottom: 30px;
}
.a-text p{
    margin-bottom: 30px;
}
.heading p{
    font-size: 18px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 0;
}
#about p{
    line-height: 1.7;
}
.heading .top-head{
    color: var(--red);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}
.service .heading h1{
    color: #fff;
}
.service .heading .top-head{
    color: #fff;
}
.service .heading p{
    color: #fff;
}

/********* Banner Section Start *********/

#banner{
    height: 920px;
    width: 100%;
    position: relative;
    overflow: hidden;
}
#banner video{
    width: 100%;
}
#banner img{
    width: 100%;
    height: auto;
}
#banner .over{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 18, 35, 0.7);
    z-index: 1;
}
#banner .ban-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}
#banner .ban-text h1{
    font-weight: 400;
    color: var(--white);
    font-size: 128px;
    line-height: 1;
    margin-bottom: 0;
}
#banner .ban-text h6{
    font-size: 14px;
    letter-spacing: 7px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 25px;
    text-shadow: rgb(0, 0, 0) 2px 2px 20px;
}
#banner .ban-text h1 span{
    color: var(--yellow);
    font-style: italic;
}
#banner .ban-text p{
    font-weight: 300;
    color: var(--white);
    font-size: 20px;
    opacity: 0.8;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}
#banner img{
    position: relative;
    object-fit: cover;
    vertical-align: top;
    height: 953px;
    overflow: hidden;
}
.carousel-caption{
    z-index: 2 !important;
    width: 40%;
    text-align: left;
    position: absolute;
    left: 950px;
    top: 55%;
    transform: translateY(-50%);
}
.spa{
    display: inline-block;
    color: var(--blue);
    position: relative;
}
.spa::after{
    content: "";
    position: absolute;
    left: -10%;
    top: -10%;
    width: 120%;
    height: 120%;
    background-color: var(--white);
    z-index: -1;
}
#banner .b-btn{
    margin-top: 40px;
}
#banner .b-btn a{
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    text-decoration: none;
    transition: .4s ease-in-out;
}
#banner .b-btn a:hover{
    border-color: var(--yellow);
}
#banner .b-btn a i{
    transition: .4s ease-in-out;
}
#banner .b-btn a:hover i{
    transform: translateX(7px);
}
.slick-active img{
    transform: scale(1);
}
.slide-wrap2 .slick-slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transform: scale(1);
}
.slide-wrap2 .slick-active img {
  animation: zoomIn 12s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
@keyframes zoomIn {
  from {
    transform: scale(1) translateX(0);
  }
  to {
    transform: scale(1.2) translateX(-30px);
  }
}


/********* Banner Section End *********/

/********* About Section Start *********/


#check{
    margin-top: -80px;
    position: relative;
    z-index: 3;
}
.check-wrap{
    padding: 32px;
    background: var(--white);
    backdrop-filter: blur(20px);
    border: 1px solid var(--yellow);
    box-shadow: 0 0 25px 0 rgba(0, 18, 35, 0.3);
}
#check label{
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--yellow);
}
#check .form-control{
    background-color: transparent;
    border: none;
    border-bottom: 2px solid rgb(0 0 0 / 0.1) !important;
    padding-bottom: 10px;
    border-radius: 0;
}
#check .form-select{
    background-color: transparent;
    border: none;
    border-bottom: 2px solid rgb(0 0 0 / 0.1) !important;
    padding-bottom: 10px;
    border-radius: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23c5a059' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
}
#check .form-control:focus{
    box-shadow: none;
    border-color: var(--yellow) !important;
}
#check .form-select:focus{
    box-shadow: none;
    border-color: var(--yellow) !important;
}
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(63%) sepia(28%) saturate(442%) hue-rotate(357deg) brightness(90%) contrast(87%);
    cursor: pointer;
}
#check .ck-btn{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#check .ck-btn a{
    padding: 15px 40px;
    background: linear-gradient(135deg, #c5a059 0%, #8e6d31 100%);
    height: 100%;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 12px;

}

#about .count-wrap h3{
    font-size: 45px;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--yellow);
}
#about .count-wrap .count-sub{
    display: inline-block;
    font-size: 16px !important;
    margin-bottom: 0;
    font-weight: 500;
    text-transform: uppercase;
}
#about .count-wrap{
    padding: 0 10px;
    border-right: 1px solid #e2e2e2;
}
#about .counter-section .col-lg-4:last-of-type .count-wrap{
    border: none;
}
#about .counter-section .col-lg-4{
    padding: 0;
}
#about .a-img{
    width: 100%;
    height: 500px;
    border: 1px solid var(--yellow);
}
#about .a-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}
#about h1{
    font-size: 46px;
}

#mark{
    background-color: var(--yellow);
}
#mark span{
    font-size: 22px;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 0 25px;
    font-weight: 300;
    font-family: "Playfair Display", serif;
    font-style: italic;
}
#mark span i{
    color: var(--white);
    margin-right: 8px !important;
}
#hotel .h-head span{
    display: inline-block;
    font-weight: 500;
    color: var(--yellow);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}
#hotel .h-head h1{
    font-size: 55px;
    color: var(--black);
    line-height: 1.2;
    font-family: "Playfair Display", serif;
    font-weight: inherit;
}
#hotel .h-head p{
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.625;
    font-weight: 500;
}
#hotel .h-wrap{
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}
#hotel .h-wrap .h-img{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
#hotel .h-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease-in-out;
}
#hotel .h-wrap .h-text{
    padding: 40px 40px;
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
}
#hotel .h-wrap .h-over{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 18, 35, 0.4);
    z-index: 2;
    transition: .4s ease-in-out;
}
#hotel .h-wrap h2{
    font-size: 36px;
    color: var(--white);
    line-height: 1.2;
    font-family: "Playfair Display", serif;
    font-weight: inherit;
    letter-spacing: 0.5px;
}
#hotel .h-wrap .star{
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 12px;
    color: var(--yellow);
}
#hotel .h-wrap .h-btn span{
    display: block;
    padding: 8px 24px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.4px;
    font-weight: 500;
    font-size: 10px;
    text-align: center;
    transition: .4s ease-in-out;
    width: 130px;
}
#hotel .h-wrap .h-btn span:hover{
    background-color: rgba(255, 255, 255, 1);
    color: var(--yellow);
    border-color: var(--yellow);
}
#hotel .h-wrap:hover .h-over{
    background-color: rgba(0, 18, 35, 0.2);
}
#hotel .h-wrap:hover img{
    transform: scale(1.15);
}
#hotel .h-wrap:hover span{
    background-color: rgba(255, 255, 255, 1);
    color: var(--yellow);
    border-color: var(--yellow);
}



#test{
    background-color: #fffaf2;
}
#test .test-wrap{
    background-color: var(--white);
    padding: 25px;
    border: 1px solid #e7e7e7;
    margin: 0 15px;
}
#test .test-wrap .test-icon img{
    width: 50px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(67%) sepia(52%) saturate(390%) hue-rotate(1deg) brightness(89%) contrast(85%);
    opacity: 0.5;
    margin-bottom: 24px;
}
#test .test-wrap p{
    margin-bottom: 24px;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.7);
    font-style: italic;
    line-height: 1.7;
}
#test .test-wrap .test-user{
    display: flex;
    align-items: center;
    gap: 10px;
}
#test .test-wrap .test-img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #e5e5e5;
}
#test .test-wrap .test-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
#test .test-wrap .test-name h4{
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--black);
}
#test .test-wrap .test-name span{
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--yellow);
    margin-top: -2px;
}
.custom-buttons button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--white);
    border: none;
    margin-right: 7px;
    font-size: 20px;
    cursor: pointer;
    transition: .4s ease-in-out;
}
.custom-buttons button:hover{
    background-color: var(--black);
    color: var(--white);
}


#block1 .bl-btn{
    margin-top: 30px;
}
#block1 .bl-btn a{
    display: inline-block;
    padding: 5px 0;
    border-bottom: 2px solid var(--yellow);
    color: var(--yellow);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: .4s ease-in-out;
}
#block1 h1{
    font-size: 60px;
}
#block1 h1 span{
    text-transform: capitalize;
    font-style: italic;
}
#block1 .bl-img{
    width: 100%;
    height: auto;
    position: relative;
}
#block1 .bl-img img{
    width: 100%;
    height: 450px;
    object-fit: cover;
}
#block1 .bl-img-2{
    position: absolute;
    bottom: -50px;
    right: -50px;
}
#block1 .bl-img-2 img{
    width: 350px;
    padding: 14px;
    background-color: var(--white);
    height: auto;
}
#block2 .bl2-img img{
    width: 100%;
}

#footer{
    background-color: rgba(0, 18, 35, 1);
}

#footer .f-wrap img{
    width: 150px;
    margin-bottom: 20px;
    /* filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7495%) hue-rotate(302deg) brightness(105%) contrast(100%); */
}
#footer .f-wrap p{
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}
#footer ul{
    margin-bottom: 0;
    padding-left: 0;
}
#footer ul li{
    list-style: none;
    margin: 10px 0;
}
#footer ul li span{
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin: 0 3px;
}
#footer ul li a{
    display: inline-block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: .4s ease-in-out;
}
#footer ul li a i{
    color: var(--yellow);
    margin-right: 8px;
}
#footer ul li a:hover{
    color: rgba(255, 255, 255, 1);
}
#footer .social ul{
    display: flex;
    align-items: center;
    gap: 10px;
}
#footer .social ul li a i{
    color: rgba(255, 255, 255, 0.6);
    font-size: 19px;
    transition: .4s ease-in-out;
}
#footer .social ul li a:hover i{
    color: var(--yellow);
}
#footer h5{
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--yellow);
    text-transform: uppercase;
    margin-bottom: 32px;
}
#footer hr{
    border-color: rgba(255, 255, 255, 0.7);
}
#footer span{
    color: rgba(255, 255, 255, 0.3);
    display: inline-block;
    font-size: 14px;
}


#inner-banner{
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
}
#inner-banner::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 18, 35, 0.7);
    z-index: 2;
    pointer-events: none;
}
#inner-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    animation: zoomBanner 10s ease-in-out infinite alternate;
}
#inner-banner .inner-ban-text{
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
}
#inner-banner .inner-ban-text h1{
    font-size: 45px;
    font-weight: 500;
    color: var(--white);
    text-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}
#inner-banner .bread{
    font-size: 16px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    color: var(--white);
    font-weight: 500;
}
#inner-banner .bread a{
    color: var(--yellow);
    font-weight: 600;
    text-decoration: none;
}
#inner-banner .bread a:hover{
    text-decoration: underline;
}
#inner-banner .inner-ban-text span {
    opacity: 0.8;
}
#inner-banner .inner-ban-text i {
    font-size: 14px;
}
@keyframes zoomBanner {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}
.inner-heading span{
    display: inline-block;
    font-weight: 600;
    color: var(--yellow);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.inner-heading h1{
    font-size: 37px;
    line-height: 1.4;
    font-weight: 500;
    font-family: "Playfair Display", serif;
    margin-bottom: 25px;
    color: var(--black);
}
#inner-about p{
    font-size: 17px;
    line-height: 1.75;
    font-weight: 400;
    margin-bottom: 0;
    color: rgba(0, 0, 0, 0.6);
}
#inner-about .in-ab-img{
    width: 100%;
    height: auto;
    overflow: hidden;
}
#inner-about .in-ab-img img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
#inner-about ul{
    padding-left: 0;
    margin-bottom: 25px;
}
#inner-about ul li{
    list-style: none;
    margin: 8px 0;
    font-size: 17px;
    font-weight: 400;
    position: relative;
    padding-left: 30px;
}

#inner-about ul li::before {
  content: "\f152"; /* fa-square-caret-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 400; /* IMPORTANT: regular icon */
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yellow);
}
#inner-about h6{
    padding: 15px;
    background-color: #f9f0e1;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 600;
    border: 1px solid #f2f2f2;
    
}

.serv-wrap{
    background-color: #f9f9f9;
    display: flex;
    gap: 20px;
    padding: 30px;
    margin: 12px 0;
}
.serv-wrap .serv-icon img{
    width: 50px;
    filter: brightness(0) saturate(100%) invert(62%) sepia(90%) saturate(221%) hue-rotate(1deg) brightness(88%) contrast(93%);
}
.serv-wrap h4{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--black);
    font-family: "Playfair Display", serif;
}
.serv-wrap p{
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0;
    color: rgba(0, 18, 35, 0.7);
}
#inner-block{
    background-color: #fffaf2;
}
#inner-block p{
    font-size: 15px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
}
.loc-row{
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #e2e2e2;
}
.loc-row p{
    margin-bottom: 0;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
    transition: .4s ease-in-out;
}
.loc-row .e-link{
    text-transform: none;
    transition: .4s ease-in-out;
}
.loc-row .e-link:hover p{
    color: var(--yellow);
}
.loc-row h1{
    font-family: "Playfair Display", serif;
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 0;
}
.loc-row a{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--blue);
    transition: .4s ease-in-out;
}
.loc-row a i{
    width: 40px;
    height: 40px;
    background-color: #f3f1ef;
    border-radius: 50%;
    box-shadow: 0 ;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--yellow);
    border: 1px solid var(--yellow);
    transition: .4s ease-in-out;
}
.loc-row a:hover{
    color: var(--yellow);
}
.loc-row a:hover i{
    color: var(--white);
    transform: rotate(45deg);
    background-color: var(--yellow);
}
#inner-contact .loc-row:last-of-type{
    border-bottom: 1px solid #e2e2e2;
}
.in-con-bg{
    background-color: var(--white);
    padding: 35px !important;
    box-shadow: -1px 5px 50px -15px #a9a9a9;
}
    #in-con .form {
      background: transparent;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    #in-con .form-control:focus {
      box-shadow: none;
      border-color: var(--yellow);
    }

    #in-con .btn-custom {
      background-color: var(--yellow);
      color: var(--black);
      margin-top: 10px;
      font-weight: 500;
      display: inline;
      padding: 14px 22px !important;
      border-radius: 0;
      text-transform: uppercase;
    }

    #in-con .btn-custom:hover {
      background-color: rgba(0, 18, 35, 1);
      color: var(--white);
    }
    #in-con .form{
        border-radius: 0;
    }
    #in-con .form-control{
        background-color: transparent;
        border: none;
        border-bottom: 1px solid #d1d1d1;
        border-radius: 0;
    }
    .in-con-form-right h2 {
    font-weight: 500;
    color: var(--green);
    font-size: 35px;
    /* text-transform: uppercase; */
    font-family: "Playfair Display", serif;
}
.in-con-img{
    width: 100%;
    height: 377px;
    overflow: hidden;
}
.in-con-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}
#in-con p{
    font-size: 15px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 25px;
    line-height: 1.6;
}
#inner-offer{
    padding: 100px 0;
    background-color: #fdf4e6;
}
#inner-offer h1{
    font-size: 50px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--black);
    /* font-family: "Playfair Display", serif; */
    padding-bottom: 20px;
    margin-bottom: 20px;
    word-spacing: 10px;
    position: relative;
}
#inner-offer h1::after{
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    background-color: var(--yellow);
}
#inner-offer p{
    font-size: 18px;
    color: rgba(0, 0, 0, 0.7);
}
#inner-offer a{
    display: inline-block;
    text-decoration: none;
    background-color: var(--yellow);
    padding: 10px 25px;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: .4s ease-in-out;
}
#inner-offer a:hover{
    background-color: var(--blue);
    color: var(--white);
}
.loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  color: var(--yellow);
  background: radial-gradient(farthest-side, currentColor calc(100% - 6px),#0000 calc(100% - 5px) 0);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 13px),#000 calc(100% - 12px));
  border-radius: 50%;
  animation: l19 5s infinite linear;
}
.loader::before,
.loader::after {    
  content: "";
  grid-area: 1/1;
  background:
    linear-gradient(currentColor 0 0) center,
    linear-gradient(currentColor 0 0) center;
  background-size: 100% 10px,10px 100%;
  background-repeat: no-repeat;
}
.loader::after {
   transform: rotate(45deg);
}

@keyframes l19 { 
  100%{transform: rotate(1turn)}
}
.usp-wrap .usp-img{
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.usp-wrap .usp-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#usp .row{
    margin: 0;
}
#usp .col-lg-6{
    padding: 0 !important;
}
#usp .col-lg-4{
    padding: 0 !important;
}
#usp .usp-wrap{
    position: relative;
    overflow: hidden;
}
#usp .usp-wrap .usp-over{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 18, 35, 0.7);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: .5s ease-in-out;
}
#usp .usp-wrap .usp-text{
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    text-align: center;
    color: var(--white);
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: .5s ease-in-out;
}
#usp .usp-wrap:hover .usp-text{
    visibility: visible;
    opacity: 1;
    padding: 20px;
    top: 50%;
}
#usp .usp-wrap:hover .usp-over{
    visibility: visible;
    opacity: 1;
}
#usp .usp-wrap .usp-text h3{
    text-align: center;
    display: block;
    font-size: 30px;
    font-weight: 500;
    word-spacing: 5px;
}
.usp-wrapper{
    width: 90%;
    margin: 0 auto;
}

#inner-career .form-title {
    margin-bottom: 80px;
    text-align: center;
    color: var(--blue);
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
}
#inner-career .form-title::after{
    position: absolute;
    content: "";
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background-color: var(--yellow);
}
#inner-career .form-label{
    margin-left: 8px;
    font-weight: 500 !important;
    color: var(--blue);
}
#inner-career .form-label .req{
    color: red;
    font-weight: 500;
}
#inner-career .form-select{
    padding: 10px;
    border-radius: 0;
    border-color: var(--yellow);
    box-shadow: none !important;
}
#inner-career .form-control{
    padding: 10px;
    border-radius: 0;
    border-color: var(--yellow);
    box-shadow: none !important;
}
#inner-career .btn-custom {
    background-color: var(--blue);
    color: white;
    border-radius: 0;
    padding: 12px;
    text-transform: uppercase;
}
#inner-career .btn-custom:hover{
    background-color: var(--yellow);
}
.miss-wrap{
    padding: 30px;
    background-color: #f8f8f8;
    border: 1px solid var(--yellow);
    text-align: center;
    margin: 0 15px;
}
.miss-wrap h1{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 25px;
    font-family: "Playfair Display", serif;
}
.miss-wrap p{
    font-size: 17px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 25px;
}
.miss-wrap span{
    background-color: #f9f0e1;
    border: 1px solid #e2e2e2;
    padding: 15px;
    display: block;
    font-size: 16px;
    font-weight: 600;
     font-family: "Playfair Display", serif;
}

.team-wrap{
    display: flex;
    gap: 20px;
    padding: 15px;
    margin: 35px 0;
    border: 1px solid var(--yellow);
}
.team-wrap .team-img{
    width: 320px;
    height: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid #e8e8e8;
}
.team-wrap .team-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-wrap .team-text h2{
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}
.team-wrap .team-text span{
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--yellow);
}
.team-wrap .team-text p{
    color: rgba(0, 0, 0, 0.8);
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.6;
}
.team-wrap .team-text p:last-of-type{
    margin-bottom: 0;
}