/* -----------------------------------------------------------------------------
Global Styles
----------------------------------------------------------------------------- */
:root {
    --color-clifford: #da373d;
    --primary-color: #1C3454;
    --primary-transparent: rgba(28, 52, 84, 0);
    --secondary-color: #67B7FE;
    --text-color: #65707E;
    --light-text-color: #E5F0FA;
    --white: #FFFFFF;
    --light-gray: #BDCBDD;
    --input-bg-color: #F2F3F4;
    --placeholder-color: #7D8897;
    --light-primary-color: #29466D;
    --dark-gray: #546E91;
}
* {
    font-family: "Poppins", sans-serif;
}
body {
    color: var(--text-color);
}
h1, h2, h1 span, h2 span, h3, h4, h5, h6 {
    font-family: 'northlaneone';
    color: var(--primary-color);
}
.max-w-7xl {
    max-width: 1192px;
}
.bg-primary {
    background-color: var(--primary-color);
}
.bg-secondary {
    background-color: var(--secondary-color);
}
.bg-light-primary {
    background-color: var(--dark-gray);
}
.bg-white {
    background-color: var(--white);
}
.text-primary {
    color: var(--primary-color);
}
.text-secondary {
    color: var(--secondary-color);
}
.text-white {
    color: var(--white);
}
.text-light-white {
    color: var(--light-text-color);
}
.text-light-gray {
    color: var(--light-gray);
}
.section {
    padding: 100px 20px;
}
.section.pb-80 {
    padding-bottom: 80px;
}
.input-bg-color {
    background-color: var(--input-bg-color);
}
input::placeholder {
    color: var(--placeholder-color);
}
select.appearance-none {
    background-image: url(../images/down-icon.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
}
.section-heading {
    max-width: 542px;
    margin: 0 auto;
}
.section-heading h5 {
    letter-spacing: 0;
    line-height: 26px;
}
.section-heading.max-585 {
    max-width: 585px;
}
.section-heading.ml-0 {
    margin-left: 0;
}
.section-heading.max-100 {
    max-width: 100%;
}

/* -----------------------------------------------------------------------------
Button Styles
----------------------------------------------------------------------------- */
.btn {
    padding: 16px 24px;
    border-radius: 900px;
}
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}
.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}
.btn-gray {
    background-color: var(--dark-gray);
    color: var(--white);
}
.btn-transparent {
    background-color:transparent;
    color: var(--white); transition: 0.3s all;
}
.btn span:first-child{
    transform: translateX(-101%);
    transition: transform .4s ease-in
}
.btn:hover span{
    transform: translateX(0)
}
.btn-transparent:hover {
    background-color: var(--secondary-color);
}
button.btn-secondary:hover {
    background-color: var(--primary-color);
}

/* -----------------------------------------------------------------------------
Typography Styles
----------------------------------------------------------------------------- */
h1 {
    font-size: 54px;
    line-height: 64px;
    letter-spacing: -1.4px;
}
h1 span, h2 span {
    color: var(--secondary-color);
}
h2 {
    font-size: 44px;
    line-height: 52px;
    letter-spacing: -1px;
}
h3 {
    font-size: 38px;
    line-height: 45px;
    letter-spacing: -1px;
}
h4 {
    font-size: 28px;
    line-height: 25px;
    letter-spacing: -1px;
}
h5 {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.4px;
}

/* -----------------------------------------------------------------------------
Header Styles
----------------------------------------------------------------------------- */
.nav-link::before {
    content: "";
    position: absolute;
    background-color: var(--secondary-color);
    width: 0%;
    height: 2px;bottom: -9px;transition: 0.3s all; opacity: 0;
}
.nav-link:hover::before, .nav-link.active::before {
    opacity: 1; width: 100%;
}
.mobile-menu-wrap {
    border-radius: 20px;
    padding-bottom: 20px;
}
.mobile-menu-wrap .nav-link {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgb(221 221 221 / 40%);
}
.mobile-menu-wrap .nav-link::before {
    display: none;
}
.mobile-menu-wrap .nav-link.active {
    color: var(--secondary-color);
}

/* -----------------------------------------------------------------------------
Footer Styles
----------------------------------------------------------------------------- */
.footer {
    background-color: var(--primary-color);
    padding: 80px 20px 0;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
}
.footer-logo {
    display: inline-block;
    width: 289px;
}
.footer-logo img {width: 100%;}
.footer h4 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 24px;
}
.main-footer ul li {
    margin-bottom: 15px;
}
.main-footer ul li:last-child, .main-footer .bottom-footer ul li  {
    margin-bottom: 0;
}
.main-footer ul li a, .main-footer ul li span {
    color: var(--light-text-color);
    font-size: 16px; transition: 0.3s all;
}
.main-footer ul li a:hover {
    color: var(--secondary-color);
}
.main-footer .contact-info ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.main-footer .follow-us-links a {
    display: inline-flex;
    background: var(--light-primary-color);
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;transition: 0.3s all;
}
.main-footer .follow-us-links a:hover {
    background-color: var(--secondary-color);
}
.main-footer .follow-us-links a:hover img{
    filter: brightness(0) saturate(100%) invert(14%) sepia(80%) saturate(649%) hue-rotate(180deg) brightness(92%) contrast(90%);
}
.bottom-footer {
    background-color: var(--light-primary-color);padding: 32px 40px;
    border-radius: 32px 32px 0 0; color: var(--light-text-color);
    font-size: 14px; line-height: 22px; margin-top: 64px;
}
.bottom-footer p a:hover {
    color: var(--secondary-color);
}
.main-footer .bottom-footer ul li a, .main-footer .bottom-footer  ul li span {
    font-size: 14px;
}

/* -----------------------------------------------------------------------------
Main Content Styles
----------------------------------------------------------------------------- */
.home-hero-section {
    max-height: 100%;
    height: 820px;border-bottom-right-radius: 300px; padding: 0 20px 100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.home-hero-section:before {
    content: "";
    background: linear-gradient(259.17deg, var(--primary-transparent) -26.11%, var(--primary-color) 100%);
    width: 100%;
    height: 100%;
    position: absolute; left: 0; top: 0;
}
.dedicatedimage-wrapper {
    display: flex;max-width: 518px;
    margin: 0 auto; justify-content: center;
}
.dedicatedimage-wrapper .image-01, .dedicatedimage-wrapper .image-02 {
    width: 240px;
    height: 420px;
    border-radius: 136px;
    overflow: hidden;
}
.dedicatedimage-wrapper .image-01 img, .dedicatedimage-wrapper .image-02 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dedicatedimage-wrapper .image-01 {
    transform: rotate(-15deg);margin-right: -62px;
}
.dedicatedimage-wrapper .image-02 {
    transform: rotate(15deg);
}
.difference-section {
    border-top-left-radius: 300px;
    border-bottom-right-radius: 300px;
    padding-bottom: 0 !important; padding-top: 0 !important;
}
.difference-section:before {
    content: "";
    background-image: url(../images/vector-01.svg);
    width: 215px; height: 100%;position: absolute;
    background-size: cover;background-repeat: no-repeat; right: 0; bottom: 20px;
    background-position: center bottom;
}
.difference-section .image-box-wrapper:before {
    content: "";
    background-image: url(../images/vector-02.svg);
    width: 100%; height: 100%;position: absolute;
    background-size: contain;background-repeat: no-repeat;
    z-index: 0;
}
.difference-section .image-box-wrapper {
    margin-left: -40px;
}
.difference-section .image-box-wrapper img {
    width: 100%;
}
.global-list li {margin-bottom: 12px;position: relative; padding-left: 32px;}
.global-list li::before {
    content: "";
    background-image: url(../images/icon-right-tick.svg);
    width: 20px; height: 20px;background-repeat: no-repeat; background-size: cover;
    position: absolute; left: 0; top: 2px;
}
.global-list li:last-child {
    margin-bottom: 0;
}
.difference-section .global-list li {
    color: var(--light-gray);
} 
.testimonialSwiper  .swiper-wrapper {
    padding-bottom: 65px;
}
.tesimonial-section-bg {
    padding-top: 0 !important;
    min-height: 1070px;
    background-size: 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding-bottom: 0 !important;
    position: relative;
    margin-bottom: -100px;
}
.tesimonial-section-bg:before {
    content: "";
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, var(--white) 50%);
    height: 404px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.testimonial-box {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.testimonial-box img {
    width: 40px;
    margin: 0 auto 15px;
}
.testimonial-box p {
    margin-bottom: 24px;
}
.testimonial-box h5 {
    font-size: 20px;
    line-height: 26px;
}
.swiper-pagination-bullet {
    width: 20px;
    height: 3px;
    border-radius: 2px;
    background-color: var(--white); transition: 0.3s all; opacity: 1;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
   background-color: var(--secondary-color); width: 32px;
}
.testimonial-navigation .swiper-button-next, .testimonial-navigation .swiper-button-prev {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%; opacity: 1;
    background-repeat: no-repeat;
    background-position: center;border: 1px solid var(--secondary-color);
}
.testimonial-navigation .swiper-button-next {
    background-image: url(../images/next-icon.svg);
}
.testimonial-navigation .swiper-button-prev {
    background-image: url(../images/prev-icon.svg);
}
.testimonial-navigation .swiper-button-next:after, .testimonial-navigation .swiper-button-prev:after {
    display: none;
}
.testimonial-navigation .swiper-button-prev.swiper-button-disabled, .testimonial-navigation .swiper-button-next.swiper-button-disabled {
    border-color: transparent;
}

.innner-hero-section {
    padding: 227px 20px 100px;
    border-bottom-right-radius: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.innner-hero-section:before {
    content: "";
    background: linear-gradient(261.65deg, var(--primary-transparent) -27.91%, var(--primary-color) 78.17%);
    width: 100%;
    height: 100%;
    position: absolute; left: 0; top: 0;
}
.innner-hero-section.service-inner-hero:before {
    background: linear-gradient(259.17deg, var(--primary-transparent) -26.11%, var(--primary-color) 100%);
} 
.services-tag {
    backdrop-filter: blur(20px);
    background: #1C345480;
    padding: 12px;
    border-radius: 100px;
    max-width: 285px;
    min-width: 285px;
}
.services-tag .icon-box {
    background: var(--secondary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;min-width: 50px;
}
.services-tag h4 {
    font-size: 20px;
    color: var(--white);
    max-width: 189px;
    line-height: 26px;
    letter-spacing: -0.4px;
}
.bottom-full-image {
    margin-bottom: -100px;
}
.bottom-full-image img {
    border-top-right-radius: 300px;
}
.image-clipping-wrap {
    max-width: 456px;
    position: relative;
    margin-left: auto;
}
.image-clipping-wrap .vector-wrap {
    position: absolute;
    top: 0;
}
.image-clipping-wrap svg {
    position: relative;
}
.testimonial-services-section {
    background-image: url(../images/service-image-02.png);
    padding-bottom: 742px;background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;border-bottom-left-radius: 300px;
}
.testimonial-services-section:before {
    content: "";
    background: linear-gradient(180deg, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;top: 0; width: 100%; height: 100%;z-index: 0;
}
.testimonial-box-wrap {
    padding: 64px;margin-bottom: 64px;
    border-radius: 100px;
    background: linear-gradient(180deg, #E3EFF2 0%, rgba(227, 239, 242, 0) 100%);
}
.services-box {
    width: calc(33.33% - 16px);
}
.insurances-box {
    width: calc(50% - 16px);
}
.recovery-step-box {
    background: linear-gradient(180deg, #E3EFF2 0%, rgba(227, 239, 242, 0) 100%);
    padding: 80px 40px 64px;
    margin-top: 100px;
    border-radius: 100px;
}
.section.open-position {
    padding-bottom: 200px;
    margin-bottom: -100px;
}
.section.open-position:before {
    content: "";
    background-image: url(../images/bg-vector.svg);
    position: absolute;
    left: 0;
    width: 712px;
    height: 788px;
    background-repeat: no-repeat;
    background-size: cover;
    top: 215px;
}
.you-love-work {
    background-repeat: no-repeat;
    background-size: cover;
    border-top-left-radius: 300px; overflow: hidden;background-position: center;
}
.you-love-work:before {
    content: "";
    background: linear-gradient(360deg, var(--primary-transparent) 0%, var(--primary-color) 100%);
    width: 100%;
    height: 100%;
    position: absolute; left: 0; top: 0;
}
.love-work-box {
    backdrop-filter: blur(24px);
    background: #1C345480;
    padding: 0 32px 32px; height: 100%;
}
.love-work-box h5 {
    margin-top: -17px;
}

.amenities-box-list .amenities-box-wrap {
    width: calc(33.33% - 16px);
}
.bottom-tour-section {
    padding-bottom: 200px;
    margin-bottom: -100px;
}
.bottom-tour-section:before {
    content: "";
    background: linear-gradient(0deg, var(--secondary-color) 0%, var(--white) 100%);
    position: absolute;
    left: 0;
    top: 50%;
    height: 50%;
    width: 100%;
}
.tour-video-box-wrap {
    box-shadow: -20px 20px 30px 0px #0000000D;
    outline: 23px solid var(--white);
    background: #00000042;
    max-width: 945px;
    margin: 0 auto;
    border-radius: 28px; height: 500px;
}
.tour-video-box-wrap video {
    border-radius: 28px; overflow: hidden;
}
.gallery-image-wrap {
    display: flex;
    gap: 16px;
}
.gallery-image-wrap .image-column-wrap {
    display: flex;
    flex-direction: column;
    gap: 17px;
}
.gallery-image-wrap .image-column-wrap .image-wrap {
    border-radius: 30px;
    overflow: hidden;
}
.gallery-image-wrap .image-column-wrap .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.space-section {
    background: #67B7FE26;
    padding-top: 326px !important;
}
.space-section .image-wrap {
    border-radius: 30px;
    overflow: hidden;
}
.space-section .space-content h2 {
    margin-bottom: 20px;
}
.space-section .space-content p {
    color: var(--primary-color); letter-spacing: -1px;
}
.room-type-section {
    padding-bottom: 0;margin-bottom: -222px;
}
.room-type-box {
    box-shadow: -20px 20px 30px 0px #0000000D;
    border-radius: 30px;
    overflow: hidden;background-color: var(--white); height: 100%;
}
.room-type-box .roomtypeContent {
    padding: 24px;background-color: var(--white);
    transition: 0.3s all;
}
.room-type-box .roomtypeContent h3 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 8px;
}
.room-type-box .roomtypeContent p {
    color: #4F4F4F;
    margin-bottom: 16px;
}
.room-type-box .roomtypeContent .btn {
    padding: 9px 24px;
    box-shadow: 0px 4px 9px -4px #3B71CA;
    font-size: 12px;
}
.room-type-section .w-full.lg\:w-1\/3 {
    width: calc(33.33% - 42px);
}
.roomTypeSwiper .swiper-button-prev, .roomTypeSwiper .swiper-button-next {
    width: 30px;
    height: 36px;
    background-size: contain;
    background-repeat: no-repeat;
}
.roomTypeSwiper .swiper-button-prev {
    background-image: url(../images/back-button.svg);
}
.roomTypeSwiper .swiper-button-next {
    background-image: url(../images/next-button.svg);
}
.roomTypeSwiper .swiper-button-prev::after, .roomTypeSwiper .swiper-button-next::after {
    display: none;
}
.roomTypeSwiper .swiper-slide {
    height: 235px;
    position: relative;
}
.roomTypeSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.roomTypeSwiper .swiper-slide:before {
    content: "";
    background: linear-gradient(180deg, rgba(41, 70, 109, 0) 0%, #29466D 137.87%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.room-type-box:hover .roomtypeContent {
    background: var(--secondary-color);
}
.room-type-box:hover .roomtypeContent p {
    color: var(--white);
}
.room-type-box:hover .roomtypeContent .btn {
    background: var(--white);
    color: var(--primary-color);
}
.room-type-box:hover .roomtypeContent .btn:hover span {
    color: var(--white);
}
.roomTypeSwiper  span.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--white);
    opacity: 0.36;
}
.roomTypeSwiper span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
}


.contact-inner-hero {
    background-color: var(--primary-color);
}
.contact-inner-hero:before {
    content: "";
    background-image: url(../images/contact-left-vector.svg);
    width: 315px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 535px;
    bottom: -10px;
    top: auto;
}
.contact-inner-hero:after {
    content: "";
    background-image: url(../images/contact-right-vector.svg);
    width: 310px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 535px;
    bottom: -10px;right: 0;
    top: auto;position: absolute;
}
.services-tag.contact-tag {
    min-width: auto;
    max-width: 100%;
    background: #2D4667;padding-right: 32px;
}
.services-tag.contact-tag h4 {
    max-width: 100%;
}
.map-section {
    margin-bottom: -100px;
}
.map-container iframe {
    width: 100%;
    height: 612px;
}
