@charset "UTF-8";
@import "p.css";

header {
    background-color: #fffffff0;
    z-index: 55;
    box-shadow: #2123261a 0 10px 10px -10px
}

.children-bearing-list > ul {
    padding: 16px 20px;
    transition: all .4s;
    visibility: hidden;
    opacity: 0;
    font-family: inherit;
    background-color: #fff;
    border-radius: 0 0 4px 4px;
    top: 60px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 260px;
    box-shadow: #0000001a 0 10px 15px -3px, #0000000d 0 4px 6px -2px
}

.bottom-nav .children-bearing-list {
    padding: 0 1.25rem 0 0
}

.search-overlay {
    height: 100vh;
    background-size: cover;
    background-position: center center;
    width: 100%;
    padding: 70px 30px 50px;
    position: fixed !important;
    transform: translateY(200px);
    pointer-events: none;
    transition: all cubic-bezier(.46, .21, .9, .68) .4s;
    opacity: 0
}

.show-search.search-overlay {
    opacity: 1;
    transform: translateY(0);
    transition: all cubic-bezier(.46, .21, .9, .68) .4s;
    pointer-events: all
}

.search-overlay .search-inner input {
    padding-top: .875rem;
    padding-bottom: .875rem;
    background-size: 18px
}

.search-overlay .search-inner {
    width: 100%;
    position: relative
}

.search-overlay .search-inner input {
    width: 100%
}

.search-overlay:before {
    content: "";
    position: absolute;
    background-color: #001e6075;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%
}

.search-mobile .simple-search {
    box-shadow: none;
    height: auto;
    padding: 0;
    background: none;
    border-bottom: 1px solid var(--primary-blue) !important;
    border: 0px;
    border-radius: 0;
    font-size: 16px !important;
    width: 0px;
    visibility: hidden;
    transition: all .4s ease
}

.search-image.show-search ~ input {
    width: calc(100% - 40px);
    visibility: visible;
    transition: all .4s ease
}

.children-bearing-list:hover .hover-link:after {
    width: 100%
}

.hover-link:after {
    content: "";
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    width: 0%;
    transition: all .3s ease;
    height: 1px;
    background-color: #001e60
}

@media screen and (min-width: 1024px) {
    .children-bearing-list:hover > ul {
        visibility: visible;
        top: 49px;
        transition: all .3s;
        opacity: 1
    }

    html body header .nav-wrapper .bottom-nav ul li:hover > a {
        font-weight: 600
    }
}

.custom-dropdown {
    border-top: 1px solid #f4f4f4;
    box-shadow: #21232626 0 10px 10px -10px;
    height: 0px;
    opacity: 0;
    overflow: hidden;
    z-index: 9999
}

.children-bearing-list:hover > .custom-dropdown .dropdown-content-pane {
    animation: fadeIn .25s ease
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    50% {
        opacity: .5
    }
    to {
        opacity: 1
    }
}

.custom-dropdown img {
    border-radius: 4px
}

.mega-menu .custom-dropdown .dropdown-content img {
    -o-object-fit: contain;
    object-fit: contain;
    height: 40px !important;
    width: 125px !important
}

.mega-menu:nth-child(3) .custom-dropdown .dropdown-content img {
    -o-object-fit: contain;
    object-fit: contain;
    height: 55px !important;
    width: 125px !important;
    margin-left: 0
}

.mega-menu:nth-child(3) .custom-dropdown .dropdown-content img:nth-child(1) {
    position: relative;
    top: -5px
}

.mega-menu:nth-child(3) .custom-dropdown .dropdown-content .flex {
    position: relative;
    left: -24px
}

.custom-dropdown h6 {
    font-size: 18px
}

.custom-dropdown .heading-6 {
    font-size: 1.4rem
}

.mega-accordian .btn-primary:hover {
    color: #fff !important
}

.mega-accordian {
    max-height: 0;
    overflow: hidden;
    transition: max-height .2s ease-out;
    width: 0
}

@media (min-width: 1026px) {
    .children-bearing-list:hover > .custom-dropdown {
        opacity: 1;
        height: 395px
    }

    .children-bearing-list:hover > .custom-dropdown.short-term-drop {
        visibility: visible;
        opacity: 1;
        height: 465px
    }

    .mega-close, .mega-link-mobile, .mega-menu .plus-icon-wrapper {
        display: none
    }
}

.custom-dropdown ul > li {
    font-size: 1rem;
    line-height: 1.25rem;
    font-family: Messina Sans;
    margin-bottom: 12px;
    color: var(--primary-blue)
}

@media (max-width: 1025px) {
    .mega-menu {
        position: relative
    }

    .mega-menu .custom-dropdown {
        display: none
    }

    .mega-accordian {
        width: 100%
    }

    .mega-menu .mega-menu-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center
    }

    .mega-menu .mega-menu-wrapper.active a {
        font-weight: 600
    }

    .menu-backdrop {
        position: fixed;
        top: 77px;
        left: 0;
        width: 0;
        height: calc(100vh - 77px);
        background: #000;
        bottom: 0;
        z-index: 3;
        opacity: .5;
        transition: width .2s ease
    }

    .top50 .menu-backdrop {
        top: 230px
    }

    .show-menu .menu-backdrop {
        width: 100%;
        transition: width .2s ease
    }

    .hide-scroll {
        overflow: hidden
    }

    .mega-link-mobile {
        display: inline
    }

    .mega-link-desktop {
        display: none
    }

    .mega-menu .custom-dropdown {
        position: fixed;
        top: 0;
        bottom: 0;
        width: 100%;
        left: -100%;
        height: 100%;
        overflow: hidden;
        border: 0;
        padding-top: 1.5rem;
        overflow-y: auto;
        transition: left .15s ease-out
    }

    .mega-menu > span {
        background-image: none !important;
        display: none !important
    }

    .mega-close {
        display: block
    }

    .custom-dropdown.active .dropdown-content-pane {
        flex-direction: column;
        justify-content: revert
    }

    .custom-dropdown.active .dropdown-content-pane .dropdown-link {
        margin-bottom: 1rem;
        order: 2;
        text-align: left
    }

    .custom-dropdown.active .dropdown-content-pane figure {
        width: 100% !important;
        order: 2
    }

    .custom-dropdown.active .dropdown-content-pane figure > div {
        width: auto;
        min-height: auto
    }

    .custom-dropdown.active .dropdown-content-pane figure img {
        height: auto !important
    }

    .custom-dropdown.active .dropdown-content-pane .dropdown-content {
        padding-left: 0 !important;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding-bottom: 1.5rem;
        order: 1
    }

    .custom-dropdown.active .dropdown-content-pane .dropdown-content ul {
        transform: none;
        text-align: left
    }

    .header-wrapper-main .bottom-nav > ul {
        align-items: start
    }

    .custom-dropdown.active .btn-primary {
        color: #001e60 !important
    }

    .custom-dropdown.active .btn-primary:hover {
        color: #fff !important
    }

    .mega-menu .custom-dropdown.active {
        transition: left .15s ease-out;
        left: 0;
        opacity: 1
    }
}

.accounts-dropdown {
    box-shadow: 0 2px 6px #00000029;
    border-radius: 4px;
    z-index: 999999;
    height: 0;
    overflow: hidden;
    transition: all .15s ease
}

.accounts-list:hover > .accounts-dropdown {
    overflow: visible;
    height: auto;
    visibility: visible
}

.accounts-list:focus > .accounts-dropdown {
    overflow: visible;
    height: auto;
    visibility: visible
}

.children-bearing-list > ul > li {
    font-size: 1rem;
    line-height: 1.25rem;
    font-family: Messina Sans;
    color: var(--primary-blue)
}

.header-wrapper-main .nav-btn {
    font-weight: 700;
    position: relative;
    padding-bottom: 0;
    transition: all .3s
}

.header-wrapper-main .nav-btn:hover:after {
    width: 0%;
    transition: all .3s
}

.header-wrapper-main .logo-wrapper {
    font-weight: 700;
    position: relative
}

.header-wrapper-main .bottom-nav .children-bearing-list span {
    transition: all .3s
}

.header-wrapper-main .nav-btn:after {
    position: absolute;
    bottom: -7px;
    left: 0;
    height: 1px;
    width: 100%;
    content: "";
    background-color: #4bbe89;
    transition: all .3s
}

.header-wrapper-main .line {
    background-color: #001e60;
    height: 1px;
    width: 24px;
    display: block
}

.header-progress-bar {
    height: 5px;
    display: block;
    background-color: #f4f4f4
}

.header-progress-bar .progress-indicator {
    height: 100%;
    width: 30%;
    /*background: linear-gradient(97.08deg, #4bbe89 0%, #001e60 55.06%);*/
    color: black;
    top: 0;
    left: 0
}

.nav-wrapper .bottom-nav > ul > li > a {
    position: relative
}

.nav-active {
    position: relative
}

.nav-active:after {
    content: "";
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #001e60
}

.nav-wrapper .bottom-nav > ul > li:hover > a:after {
    width: 100%;
    left: 0;
    right: auto
}

.nav-wrapper .top-nav ul li a {
    line-height: 16px
}

.top50 .header-wrapper-main {
    margin-top: 76px
}

.top50-sticky-banner {
    position: fixed;
    background-color: #000;
    border-bottom: 2px solid #CEAC5B;
    padding: 20px 0;
    top: 0;
    width: 100%;
    z-index: 1001
}

.top50-title {
    font-family: quiche-sans;
    font-size: 22px;
    color: #fff
}

.top50-btn {
    background-color: #ceac5b;
    padding: 6px 20px;
    font-size: 16px;
    color: #171717;
    font-weight: 900;
    transition: all .15s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 202px
}

.top50-btn:hover {
    background-color: transparent;
    color: #fff;
    transition: all .15s ease-out
}

.top50-btn:hover .default {
    transition: all .15s ease-out;
    display: none;
    opacity: 0
}

.top50-btn .hover {
    transition: all .15s ease-out;
    opacity: 0;
    width: 0
}

.top50-btn .default {
    transition: all .15s ease-out;
    width: 30px
}

.top50-btn:hover .hover {
    transition: all .15s ease-out;
    opacity: 1;
    width: 30px
}

@media screen and (max-width: 1200px) {
    .bottom-nav .children-bearing-list {
        padding-right: .5rem
    }
}

@media screen and (min-width: 1024px) {
    .bottom-nav > ul > li > a {
        padding-bottom: 2rem
    }

    .mega-menu .mega-menu-wrapper svg {
        display: none
    }

    .bottom-nav .children-bearing-list {
        padding: .625rem 1.25rem .625rem 0;
        align-items: center;
        display: flex;
        height: 80px
    }
}

@media screen and (max-width: 1023px) {
    .top50-title {
        font-size: 18px
    }

    .top50-btn {
        font-size: 14px
    }

    .top50 .header-wrapper-main {
        margin-top: 155px
    }

    .top50 .show-menu .nav-wrapper {
        top: 230px
    }

    .header-wrapper-main .reponsive-menu {
        display: block !important
    }

    .mega-menu .mega-menu-wrapper img:not(.dd-open), .mega-menu .mega-menu-wrapper.active img:not(.dd-close) {
        display: none
    }

    .mega-menu .mega-menu-wrapper.active img:not(.dd-open), .mega-menu .mega-menu-wrapper img:not(.dd-close) {
        display: block
    }

    .cross-close {
        cursor: pointer
    }

    .cross-close svg {
        height: 100%;
        width: 100%
    }

    .nav-wrapper {
        position: fixed;
        z-index: 99999;
        left: -100%;
        width: 80%;
        top: 77px;
        height: calc(100vh - 77px);
        background: #ffffff;
        display: flex !important;
        align-items: flex-start;
        justify-content: flex-start;
        transition: left .2s ease-out;
        border-top: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0
    }

    .children-bearing-list > ul {
        background: none
    }

    .nav-wrapper .cross-icon {
        position: absolute;
        right: 30px;
        top: 30px;
        display: block
    }

    .nav-wrapper .cross-icon svg {
        height: 20px;
        width: 20px
    }

    .show-menu .nav-wrapper {
        left: 0;
        overflow-y: auto
    }

    .header-wrapper-main .bottom-nav ul li a, .header-wrapper-main .bottom-nav ul li .hover-link, .top-nav ul li a, .nav-btn {
        color: #008080 !important
    }

    .header-wrapper-main .bottom-nav .nav-btn {
        margin-top: 60px;
        display: inline-flex;
        font-size: 1.3rem
    }

    .header-wrapper-main .bottom-nav ul li a, .header-wrapper-main .bottom-nav ul li .hover-link {
        font-size: 1.1rem;
        position: relative;
        padding-bottom: 0
    }

    .header-wrapper-main .bottom-nav ul li a:after, .header-wrapper-main .bottom-nav ul li .hover-link:after {
        height: 3px;
        width: 0%;
        background-color: var(--grey-primary);
        bottom: 0;
        position: absolute;
        content: "";
        left: 0;
        border-radius: 4px;
        transition: all .3s;
        display: none
    }

    .header-wrapper-main .top-nav {
        display: none
    }

    .header-wrapper-main .bottom-nav {
        display: block;
        margin-top: 0;
        width: 100%
    }

    .header-wrapper-main .bottom-nav ul {
        flex-direction: column;
        margin-right: 0;
        margin-left: 0;
        gap: 0px
    }

    .header-wrapper-main .bottom-nav > ul {
        position: relative;
        z-index: 1
    }

    .header-wrapper-main .bottom-nav .children-bearing-list ul li a {
        color: #001e60 !important;
        font-size: 1.1rem;
        display: block
    }

    .bottom-nav .children-bearing-list:hover ul {
        display: block !important
    }

    .header-wrapper-main .bottom-nav .children-bearing-list ul li {
        margin-bottom: 12px
    }

    .header-wrapper-main .bottom-nav > ul > li {
        padding: 10px 15px !important;
        border-bottom: 1px solid #e0e0e0;
        width: 100%
    }

    .header-wrapper-main .bottom-nav ul li:last-child {
        margin-bottom: 0
    }
}

@media screen and (max-width: 1024px) {
    .header-wrapper-main .reponsive-menu svg {
        height: 33px;
        width: 23px;
        background: #ffffff
    }

    .reponsive-menu .cross-icon {
        display: none
    }

    #propertyLead .cross-icon {
        display: inline-block
    }

    .show-menu .burger {
        display: none
    }

    .show-menu .cross-icon {
        display: inline-block
    }
}

@media screen and (max-width: 767px) {
    .header-wrapper-main .bottom-nav ul li a, .header-wrapper-main .bottom-nav ul li .hover-link {
        justify-content: center
    }
}

@media screen and (max-width: 575px) {
    .header-wrapper-main .reponsive-menu img {
        height: 20px;
        width: 20px
    }

    .header-wrapper-main .bottom-nav .children-bearing-list ul li a {
        color: #001e60 !important;
        font-size: 1rem;
        width: 100%;
        display: inline-block
    }

    .search-image.show-search ~ input {
        width: calc(100% - 100px)
    }

    .header-wrapper-main .reponsive-menu svg {
        height: 16px;
        width: 20px;
        background: #ffffff;
        margin-top: 2px
    }

    .nav-wrapper .cross-icon svg {
        height: 15px;
        width: 15px
    }

    .header-wrapper-main .reponsive-menu .line {
        width: 14px;
        margin-bottom: 5px
    }

    .header-wrapper-main .reponsive-menu .line:last-child {
        margin-bottom: 0
    }

    .header-wrapper-main .reponsive-menu .burger {
        height: 20px;
        width: 20px
    }

    .header-wrapper-main .list-wrapper {
        gap: 16px
    }

    .header-wrapper-main .logo-wrapper {
        max-width: 206px;
        height: 29px
    }

    .bottom-nav ul li a {
        font-size: 1.2rem
    }

    .bottom-nav ul li {
        margin-bottom: 4px
    }

    .bottom-nav .nav-btn {
        font-style: 1.1rem
    }
}

@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: .001dpcm) {
    @supports (-webkit-appearance: none) {
        html body header .nav-wrapper .bottom-nav ul li:hover > a {
            font-weight: 400;
            opacity: .8
        }

        .review-logo-wrapper a img {
            width: auto
        }
    }
}

.team-details .breadcrumb-wrapper .breadrumb-text {
    color: #545c6c !important
}

.inspiration-section {
    background-color: #fafafa
}

.testimonials-section {
    padding: 20px 0
}

.testimonials-slider-mob-tab {
    display: none
}

.testimonials-slider-wrapper .stars-wrapper .jq-star {
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M16.5514 23.8416L22.8558 27.8358C23.6617 28.3464 24.6622 27.587 24.4231 26.6463L22.6016 19.481C22.5503 19.2815 22.5564 19.0715 22.6191 18.8752C22.6819 18.6789 22.7987 18.5044 22.9563 18.3715L28.6097 13.6661C29.3525 13.0478 28.9691 11.815 28.0147 11.7531L20.6318 11.2739C20.4329 11.2597 20.2422 11.1893 20.0818 11.0709C19.9214 10.9525 19.7979 10.791 19.7258 10.6051L16.9722 3.67097C16.8974 3.4737 16.7643 3.30387 16.5906 3.18403C16.417 3.06418 16.211 3 16 3C15.789 3 15.583 3.06418 15.4094 3.18403C15.2357 3.30387 15.1026 3.4737 15.0278 3.67097L12.2742 10.6051C12.2021 10.791 12.0786 10.9525 11.9182 11.0709C11.7578 11.1893 11.5671 11.2597 11.3682 11.2739L3.98525 11.7531C3.03087 11.815 2.64746 13.0478 3.3903 13.6661L9.04371 18.3715C9.20126 18.5044 9.31813 18.6789 9.38088 18.8752C9.44362 19.0715 9.4497 19.2815 9.39841 19.481L7.70918 26.126C7.42222 27.2549 8.62287 28.1661 9.58991 27.5534L15.4486 23.8416C15.6134 23.7367 15.8047 23.681 16 23.681C16.1953 23.681 16.3866 23.7367 16.5514 23.8416Z' fill='%23001E60'/%3E%3C/svg%3E")
}

.stars-wrapper .jq-star svg {
    display: none
}

.outer-wrapper .main-content-wrapper .breadcrumb-wrapper .breadrumb-text, .careers-details-page .breadcrumb-wrapper .breadrumb-text, .apply-job .breadcrumb-wrapper .breadrumb-text {
    color: #545c6c
}

.overlapping-section .video-wrapper-inner {
    z-index: 1;
    transform-origin: center right
}

.overlapping-section .video-wrapper-inner video {
    height: 100%;
    width: 100%
}

.testimonials-section .left-content {
    max-width: 353px;
    min-width: 353px
}

.testimonials-section .left-content-outer {
    padding-left: 50px
}

.globe-section.property-managment .content-inner {
    max-width: 608px
}

.testimonials-section .testimononial-card {
    box-shadow: 0 9px 24px -8px #00000026;
    background: #ffffff;
    border-radius: 8px;
    /*min-height: 485px !important;*/
    overflow: hidden
}

.testimonials-section .testimononial-card .image-wrapper-avatar {
    box-shadow: 0 9px 24px -8px #00000026
}

.testimonials-section .video-testimonials {
    border-radius: 8px;
    height: 493px !important;
    background: #545c6c
}

.modal-section .play-button {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 99999999
}

.modal-section .img-wrapper {
    height: 100%
}

.modal-section .img-wrapper img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.testimonials-section .video-testimonials iframe {
    height: 100%;
    width: 100%
}

.hero-section-outer-wrapper .tabs-wrapper .tab.active {
    font-weight: 700;
    color: #001e60;
    border: 1px solid #001e60;
    background-color: transparent
}

.testimonials-section .testimonials-slider-wrapper {
    height: 550px;
    padding: 20px 0
}

.testimonials-section .testimonials-slider-wrapper .slick-track {
    padding: 20px 0
}

.testimonials-section .testimonials-slider-wrapper .swiper-pagination {
    left: auto;
    text-align: left
}

.testimonials-section .testimonials-slider-wrapper .swiper-slide {
    width: 480px !important
}

.testimonials-section .video-testimonials .controls-wrapper {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center
}

.testimonials-section .video-testimonials p {
    font-family: messina_sans_Book, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    margin-top: 2rem
}

.testimonials-section .video-testimonials span {
    font-family: messina_sans_Book, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #fff
}

.overlapping-section {
    transition: background-color .2s ease-in
}

.overlapping-section h2 {
    /*background: transparent;*/
    /*-webkit-text-fill-color: #ffffff*/
    color: black !important;
}

.overlapping-section .accent, .overlapping-section .cta-btn-blue {
    color: #fff
}

.overlapping-section.bg-primary-blue {
    background-color: #001441;
    transition: background-color .7s ease-in-out
}

.globe-wrapper svg {
    height: 100%;
    width: 100%
}

.globe-wrapper {
    left: 50%;
    transform: translate(-50%);
    top: -146px
}

#property-globe {
    right: -200px;
    top: -100px
}

#property-globe img, #globe2 img {
    height: 49vw
}

.hero-section-outer-wrapper .left-search-section {
    height: 100vh
}

.third-gallery {
    transform: translateY(-75px)
}

.second-gallery {
    transform: translateY(-265px)
}

.gallery-first .img-wrapper {
    overflow: hidden;
    transition: all .3s ease-in-out;
    cursor: pointer;
    border-radius: 4px
}

.hero-section-outer-wrapper {
    height: 100vh;
    overflow: hidden;
    background-color: #fafafa
}

.single-column, .third-gallery, .second-gallery, .img-wrapper {
    border-radius: 6px;
    overflow: hidden
}

.single-column .img-wrapper img {
    -o-object-fit: cover;
    object-fit: cover;
    white-space: pre
}

.single-column .img-wrapper {
    transition: transform 1.5s cubic-bezier(.19, 1, .22, 1)
}

body .flexWrapper .leftSide .video-outer {
    padding-left: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.inspiration-section .tabs-wrapper .tab.active {
    color: #001e60;
    background-color: transparent;
    border: 1px solid #001e60;
    font-weight: 600
}

.inspiration-section .tabs-wrapper .show-hidden-sm {
    display: block !important
}

.inspiration-section .tabs-wrapper .expanded .responsive-tab-icon.plus {
    display: none
}

.inspiration-section .tabs-wrapper .expanded .responsive-tab-icon.minus {
    display: block
}

.mobile-shown-tab .responsive-tab-icon.minus {
    display: none
}

@keyframes example {
    to {
        transform: translatey(-350px)
    }
}

[dir=rtl] .hero-section-outer-wrapper .hero-inner .gallery-section {
    padding-right: 80px;
    padding-left: 0
}

[dir=rtl] .hero-section-outer-wrapper .hero-inner .left-search-section {
    margin-left: 0;
    margin-right: 3rem
}

.inner-wrapper-left.animated {
    animation: example 5s linear 2s infinite
}

.overlapping-section .content-wrapper {
    z-index: 1;
    width: 35%;
    left: 0
}

.home-non-animated .rightSide {
    justify-content: center;
    padding-top: 0;
    margin-left: 158px;
    padding-left: 0
}

.home-non-animated {
    margin-top: 80px
}

@media screen and (max-width: 1600px) {
    .property-managment .home-video {
        height: 33.3vw
    }
}

.property-managment .home-video {
    position: relative !important;
    padding-top: 56.25%;
    height: 0;
    aspect-ratio: 16/9;
    width: 100%
}

.property-managment .home-video video {
    position: absolute;
    top: 0
}

@media screen and (max-width: 767px) {
    .testimonials-section .left-content-outer {
        max-width: 671px !important
    }

    .apply-job {
        margin-top: 24px
    }
}

@media screen and (min-width: 1600px) {
    .testimonials-section .left-content-outer {
        padding-left: calc((100vw - 1500px) / 2)
    }

    [dir=rtl] .testimonials-section .left-content-outer {
        padding-right: calc((100vw - 1500px) / 2);
        padding-left: 0
    }
}

@media screen and (max-width: 1024px) {
    .children-bearing-list > span {
        position: absolute;
        right: 27px;
        background-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 6.5L8 11.5L3 6.5' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") !important;
        width: 16px;
        height: 16px;
        top: 50%;
        transform: translatey(-50%);
        background-size: cover;
        cursor: pointer;
        display: inline-block !important;
        background-repeat: no-repeat
    }

    #averageSoldByYear {
        width: 100% !important;
        min-height: 250px
    }

    [dir=rtl] .hero-section-outer-wrapper .hero-inner .gallery-section {
        padding-right: 0
    }

    .testimonials-slider-mob-tab {
        display: block
    }

    .tab-hidden {
        display: none
    }

    .globe-section.property-managment .content-inner {
        max-width: 100%
    }

    [dir=rtl] .hero-section-outer-wrapper .hero-inner .left-search-section {
        margin-right: 0rem
    }

    .testimonials-section .left-content {
        max-width: 100%
    }

    .testimonials-section .testimonials-slider-wrapper-outer {
        padding-bottom: 40px
    }

    .testimonials-section .testimonials-slider-wrapper {
        padding-left: 0
    }

    .testimonials-section .testimonials-slider-wrapper .swiper-slide {
        width: 100% !important
    }

    .overlapping-section .video-wrapper-inner {
        position: static;
        width: 100%
    }

    .overlapping-section .content-wrapper {
        width: 100%;
        padding-top: 40px
    }

    .overlapping-section .two-col-layout {
        align-items: flex-start
    }

    .animated-section .content-inner {
        margin-top: 40px;
        max-width: 100%;
        text-align: left
    }

    .hero-section-outer-wrapper {
        height: auto;
        overflow: initial
    }

    .home-non-animated .rightSide {
        margin-left: 0
    }

    .home-non-animated .modal-section .img-wrapper {
        height: 480px
    }

    .home-non-animated {
        margin-top: 40px
    }

    .hero-section-outer-wrapper .gallery-section:after {
        content: "";
        height: 120px;
        background: linear-gradient(180deg, rgba(250, 250, 250, 0) 0%, #fafafa 100%);
        position: absolute;
        left: 0;
        right: 0;
        bottom: -2px
    }

    #globe, #globe2, #property-globe {
        display: none
    }

    .gallery-first .img-wrapper {
        height: 257px
    }

    .gallery-second .img-wrapper {
        height: 312px
    }

    .hero-section-outer-wrapper .left-search-section {
        height: auto
    }

    .gallery-section {
        height: 600px;
        position: relative
    }

    .inner-wrapper-left {
        width: 100%
    }

    .testimonials-section .testimonials-slider-wrapper {
        height: 600px
    }

    .testimonials-section .video-testimonials {
        border-radius: 8px;
        height: 445px !important;
        background-color: #545c6c !important
    }

    .testimonials-section .left-content-outer {
        padding-right: 0;
        padding-left: 0;
        max-width: 100%;
        margin: 0 auto
    }

    .testimonials-slider-mob-tab .reviews-slider .slick-dots {
        bottom: -50px
    }

    .testimonials-slider-mob-tab .reviews-slider .slick-dots li {
        height: auto;
        width: auto
    }

    .testimonials-slider-mob-tab .reviews-slider .slick-dots li button {
        color: transparent;
        border: 2px solid #e0e0e0;
        padding: 0 !important;
        height: 8px;
        width: 8px;
        border-radius: 50%
    }

    .testimonials-slider-mob-tab .reviews-slider .slick-dots li button:before {
        display: none
    }

    .testimonials-slider-mob-tab .reviews-slider .slick-dots li.slick-active button {
        border-color: #001e60
    }

    .testimonials-slider-mob-tab .testimonials-box-swiper {
        width: 471px;
        margin-right: 16px;
        margin-left: 16px
    }

    /*.testimonials-section .testimononial-card {*/
    /*    height: 490px*/
    /*}*/
}

@media screen and (max-width: 767px) {
    .testimonials-section .video-testimonials {
        border-radius: 8px;
        height: 406px !important
    }

    .testimonials-section .testimonials-slider-wrapper {
        height: 550px
    }

    .testimonials-mob-desk .testimonials-slider-mob-tab .slick-next, .testimonials-mob-desk .testimonials-slider-mob-tab .slick-prev {
        display: none !important
    }
}

@media screen and (max-width: 640px) {
    .testimonials-section {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .testimonials-slider-mob-tab .testimonials-box-swiper {
        max-width: calc(96vw - 24px);
        width: 480px;
        margin-right: 0;
        margin-left: 8px
    }

    /*.testimonials-section .testimononial-card {*/
    /*    position: relative;*/
    /*    top: -2px;*/
    /*    left: 8px;*/
    /*    box-shadow: 0 9px 24px -15px #00000026;*/
    /*    min-height: 400px !important;*/
    /*    overflow: hidden*/
    /*}*/

    .home-non-animated {
        margin-top: 32px
    }

    .home-non-animated .modal-section .img-wrapper {
        height: 280px
    }

    .topLocationSection {
        margin-left: -8px
    }

    .topLocationSection .swiper-wrapper {
        display: block
    }

    .topLocationSection .swiper-wrapper .image-wrapper:first-child a {
        width: 100%
    }

    .topLocationSection .swiper-wrapper .image-wrapper {
        margin-right: 0 !important
    }

    .topLocationSection .swiper-wrapper .swiper-slide {
        display: flex;
        margin-top: 16px
    }

    .topLocationSection .swiper-wrapper .image-wrapper {
        margin-right: 8px !important;
        margin-left: 8px
    }

    #frame-content .frame-content {
        bottom: 10px !important;
        right: 10px !important
    }

    .container.customized-container {
        padding: 0
    }
}

@media screen and (max-width: 575px) {
    .third-gallery {
        transform: translateY(0)
    }

    .second-gallery {
        display: none !important
    }

    .hero-section-outer-wrapper .tabs-wrapper {
        display: flex !important
    }

    .gallery-section {
        height: calc(50vh - 77px)
    }

    .testimonials-section .video-testimonials {
        border-radius: 8px;
        height: 367px !important
    }

    .testimonials-section .swiper-pagination {
        display: block
    }

    .testimonials-section .testimonials-slider-wrapper {
        height: 500px;
        position: relative;
        left: -5px
    }

    .testimonials-section .left-content {
        min-width: auto
    }
}

@media screen and (max-width: 480px) {
    .third-gallery {
        transform: translateY(-75px)
    }

    .second-gallery {
        transform: translateY(0)
    }
}

.error {
    color: red;
    display: inherit;
    font-size: .775em;
    line-height: .875em
}

.text-red-700:first-letter {
    text-transform: uppercase
}

.error:first-letter {
    text-transform: uppercase
}

input.parsley-success, select.parsley-success, textarea.parsley-success {
    color: #545c6c;
    border: 1px solid #d6e9c6
}

input.parsley-error, select.parsley-error, textarea.parsley-error {
    color: #b94a48;
    border: 1px solid #eed3d7
}

.parsley-errors-list {
    margin: 2px 0 3px;
    padding: 0;
    list-style-type: none;
    font-size: .775em;
    line-height: .875em;
    opacity: 0;
    color: #b94a48;
    transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in
}

.md\:aspect-\[25\/11\.1\] {
    aspect-ratio: 25/11.1
}

.responsive-grid-height img, .responsive-grid-height, #lightgallery .row-span-2 img, #lightgallery .col-span-1 img {
    border-radius: 4px !important
}

.bg-slate-200 {
    background-color: #f4f4f4 !important
}

.main-news-wrapper .overlay {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(15.02deg, rgba(0, 0, 0, .8) 9.05%, rgba(0, 0, 0, 0) 82.36%);
    overflow: hidden;
    z-index: 0;
    border-radius: 4px
}

.date-slick-slider .slick-slide.slick-current.slick-active > div {
    border: 1px solid #e5e7eb !important;
    box-shadow: none !important
}

.date-slick-slider .slick-slide.active-date > div {
    --tw-shadow: 0px 3px 6px #3775d394 !important;
    border: 1px solid #001e60 !important;
    background-color: #001e60;
    color: #fff
}

.date-slick-slider .slick-slide.slick-current.slick-active > div.disabled {
    background-color: #f3f4f6;
    border: 1px solid #f3f4f6 !important;
    box-shadow: none;
    color: #545c6c
}

.overlay-heading {
    bottom: 20px;
    color: #fff !important;
    z-index: 9;
    width: 450px;
    -webkit-text-fill-color: #fff !important;
    left: 20px
}

.parsley-errors-list.filled {
    opacity: 1
}

a.btn, a.btn-primary, a.pink-btn {
    display: inline-flex !important
}

.geolocation-section .tabs-wrapper {
    z-index: 999 !important
}

.btn-primary {
    padding: .75rem 1.75rem !important
}

.header-wrapper-main .btn-primary {
    padding: .75rem 1.25rem
}

.avatar-wrapper img {
    height: auto !important
}

.bleft {
    left: 10px !important;
    float: left !important
}

.bright {
    right: 10px !important;
    float: right !important
}

.gm-style .gm-style-iw-c {
    position: absolute;
    box-sizing: border-box;
    overflow: hidden;
    top: 0;
    left: 0;
    transform: translate3d(-50%, -100%, 0);
    background-color: #fff;
    border-radius: 6px !important;
    padding: 0 !important;
    box-shadow: 0 2px 7px 1px #0000004d;
    max-width: 320px !important;
    min-width: 320px !important
}

.gm-style-iw-d {
    overflow: auto !important
}

.gm-ui-hover-effect {
    background: #f70606 !important;
    width: 14px !important;
    height: 16px !important;
    right: 0 !important;
    top: -1px !important
}

.gm-ui-hover-effect > span {
    background-color: #fff !important;
    margin: 1px !important
}

.description p {
    padding-bottom: 10px
}

.get-in-touch {
    color: #fff;
    white-space: pre-line;
    padding: 10px auto
}

.pdes p {
    font-size: .875rem !important;
    line-height: 1.25rem !important;
    color: #545c6c
}

.avatar-box p {
    color: var(--primary-blue);
    font-family: messina_sans_Book, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px !important;
    margin-top: 0rem !important
}

.lazy-loader {
    display: block;
    color: #fff
}

.search-wrapper .search-btn {
    background: #4bbe89;
    height: 59px;
    width: 80px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px
}

.search-wrapper-inner {
    display: flex
}

.search-wrapper .easy-autocomplete {
    width: calc(100% - 70px)
}

.search-wrapper input {
    height: 59px
}

#search-add input {
    height: auto;
    width: 100%
}

#search-add {
    display: flex;
    width: 50px
}

.outer-wrapper.button-stick {
    position: relative
}

.outer-wrapper.button-stick #listViewBtn {
    position: absolute
}

.search-wrapper .search-btn svg {
    filter: brightness(0) invert(1)
}

.keypoints {
    border-left: 6px solid #545c6c;
    padding-left: 15px
}

.right-side-full-image img {
    -o-object-fit: cover;
    object-fit: cover
}

.style_show_map {
    z-index: 1 !important;
    background-color: #001e60;
    position: fixed;
    bottom: 20px;
    display: none;
    padding: 13px 14px
}

.off-plan-listings-page .image-wrapper-avatar img {
    height: 220px !important;
    -o-object-fit: cover !important;
    object-fit: cover !important
}

.avatar-box .icon-name-wrapper p {
    margin-top: 0 !important;
    font-size: 18px !important
}

.header-wrapper-main .nav-wrapper .children-bearing-list:hover .hover-link:after, .header-wrapper-main .nav-wrapper .children-bearing-list .hover-link.nav-active:after {
    width: calc(100% - 20px) !important
}

.header-wrapper-main .nav-wrapper .bottom-nav .children-bearing-list {
    padding: 0rem !important
}

.header-wrapper-main .nav-wrapper .bottom-nav .children-bearing-list .mega-menu-wrapper .hover-link {
    padding-right: 1.25rem
}

.header-wrapper-main .nav-wrapper .custom-dropdown {
    top: 90px !important;
    border: none !important;
    z-index: 999
}

.top50 .header-wrapper-main .nav-wrapper .custom-dropdown {
    top: 166px !important
}

.header-wrapper-main .nav-wrapper .bottom-nav .wrap-btn {
    position: relative;
    z-index: 999
}

.header-wrapper-main .nav-wrapper .hover-link:after {
    z-index: 99999
}

.header-wrapper-main .nav-wrapper .custom-dropdown .container:after {
    content: "";
    position: absolute;
    border-top: 1px solid #f4f4f4;
    height: 20px;
    width: 100%;
    top: 35px;
    left: 0;
    right: 0;
    margin: auto
}

.style_show_map {
    z-index: 9999999;
    background-color: #001e60;
    position: fixed;
    bottom: 20px;
    display: none;
    padding: 13px 14px
}

img.sm-video-icon {
    width: 12px;
    height: 14px
}

img.wh-video-icon {
    width: 12px;
    height: 14px;
    display: none
}

.btn-primary:hover .sm-video-icon {
    display: none
}

.btn-primary:hover .wh-video-icon {
    display: flex
}

.gallery-slider-sectionmt-10 .swiper-wrapperr {
    gap: 20px
}

.gallery-slider-sectionmt-10 .swiper-wrapperr .swiperr-slide {
    width: 18%;
    padding: 0 8px
}

.gallery-slider-sectionmt-10 .image-wrapper img {
    border-radius: 8px
}

.gallery-slider-sectionmt-10 .first-slide:after {
    height: 100%;
    width: 94%;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    z-index: 0;
    opacity: 1;
    background: linear-gradient(0deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), linear-gradient(360deg, rgba(0, 0, 0, .4) 0%, rgba(0, 0, 0, 0) 23.39%);
    border-radius: 8px
}

#why-betterhomes {
    background-color: #001e60
}

#video-thumbnail-section {
    background-color: #f4f4f4
}

.video-thumbnail-wrap {
    height: 500px;
    width: 50%;
    margin: auto;
    position: relative
}

.play-icon-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer
}

.video-thumbnail-wrap > img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    height: 100%
}

.go-btn a img, .go-btn a span {
    transition: all .3s ease-in-out
}

.go-btn a:hover img {
    transform: scale(1.2)
}

.go-btn a:hover span {
    padding-left: 5px
}

.meet-team-slider .slick-list {
    padding: 0 20% 0 0 !important
}

.meet-team-slider .slick-slide {
    padding-right: 10px
}

.meet-team-details img {
    min-height: 480px;
    border-radius: 4px;
    aspect-ratio: 1/1
}

.meet-team-mobslider {
    display: none
}

.testimonials-variable-width-careers .slick-list {
    padding: 0 10% 0 0 !important
}

.go-btn a span {
    color: #001e60
}

.testimonials-variable-width-careers .slick-slide {
    padding-right: 10px
}

.ck-content.description.large-desc p {
    font-size: 1.125rem !important
}

.new-video-thumbnail-section .video-thumbnail-wrap {
    height: 70vh;
    width: auto;
    aspect-ratio: 16/9
}

.new-video-thumbnail-section .video-thumbnail-wrap img {
    height: 100%;
    border-radius: 8px;
    margin: auto
}

.second-videothumbnail .play-button {
    top: 39%;
    left: 51%
}

.second-videothumbnail picture img {
    border-radius: 8px
}

.property-details-page.video-adjustment .gallery-tabs-wrapper-inner {
    padding: 0;
    overflow: visible;
    height: 660px !important
}

.property-details-page.video-adjustment .gallery-tabs-wrapper-inner .tourc, .property-details-page.video-adjustment .gallery-tabs-wrapper-inner .tourc iframe {
    height: 100%
}

.teams-inner-wrapper.news-page .img-content, .teams-inner-wrapper.news-page .img-content img, .teams-inner-wrapper.news-page.news-details .img-content img {
    min-height: auto;
    max-height: unset;
    aspect-ratio: 3/2
}

.teams-inner-wrapper.news-page.news-details .right-section-50 {
    min-height: auto;
    max-height: unset;
    height: auto;
    aspect-ratio: 3/2
}

.teams-inner-wrapper.news-page.news-details .right-section-50 .img-outer {
    height: 100%
}

@media screen and (min-width: 1600px) {
    .gallery-slider-sectionmt-10 .first-slide:after {
        width: 95%
    }
}

@media screen and (max-width: 640px) {
    .description {
        font-size: .875rem !important
    }

    .gallery-slider-sectionmt-10 .image-wrapper.mt-5 {
        margin-top: 0
    }

    .gallery-slider-sectionmt-10 .swiper-wrapperr .swiperr-slide {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .gallery-slider-sectionmt-10 .swiper-wrapperr .image-wrapper.first-slide {
        padding-bottom: 0;
        margin-bottom: 6px;
        padding-top: 0
    }

    .gallery-slider-sectionmt-10 .swiper-wrapperr .image-wrapper.first-slide a {
        width: 100% !important
    }

    .gallery-slider-sectionmt-10 .swiper-wrapperr .image-wrapper.first-slide:after {
        width: 98% !important
    }

    .gallery-slider-sectionmt-10 .swiper-wrapperr .swiperr-slide {
        width: 100%;
        padding: 7px 8px;
        display: flex;
        gap: 13px
    }

    .expanded-flex {
        flex-direction: column;
        text-align: center
    }

    .careers-cta-btn button {
        width: 100% !important
    }

    .teams-inner-wrapper.news-page.news-details .right-section-50 .img-outer img {
        -o-object-fit: cover !important;
        object-fit: cover !important
    }

    .second-videothumbnail picture img {
        border-radius: 8px;
        width: 100%
    }

    .second-videothumbnail .play-button {
        top: 50%;
        left: 52%
    }

    .teams-inner-wrapper.news-page .featured-image-wrapper {
        min-height: auto;
        max-height: unset;
        aspect-ratio: 3/2;
        height: auto !important
    }
}

.gm-svpc {
    height: 60px !important
}

.gm-svpc img {
    height: auto !important
}

.alert-text {
    text-align: left !important
}

.testimonials-section .active {
    text-decoration: underline
}

.iti__selected-flag {
    height: 45px !important;
    font-size: 14px !important;
    color: #545c6c !important
}

#property_valuation .iti__selected-flag {
    height: 100% !important;
    background-color: transparent
}

#myaccount .breadrumb-text {
    color: #545c6c;
    cursor: pointer
}

.branches-description a, .branches-description span, .branches-description div {
    gap: 10px
}

.changeFooterIndex footer {
    z-index: 11
}

.property-details-page .galler-tabs-wrapper-oputer {
    -webkit-tap-highlight-color: transparent
}

@media screen and (min-width: 768px) {
    .aguidemap {
        position: unset !important
    }

    .search-section-alternate {
        font-size: 14px !important
    }

    .dropdown--content {
        z-index: 98 !important
    }
}

@media screen and (max-width: 1024px) {
    .text-elilipsis {
        max-width: 50px !important
    }

    #search-add {
        font-size: 14px
    }

    #floormap iframe {
        height: 440px !important
    }

    .search-section-alternate {
        font-size: 14px !important
    }

    .dropdown--content {
        z-index: 98 !important
    }

    .backtolisting {
        display: block !important
    }

    .gallery-slider-sectionmt-10 .swiper-wrapper .swiper-slide {
        width: 100%;
        padding-right: 10px
    }

    .gallery-slider-sectionmt-10 .swiper-wrapper .image-wrapper.first-slide:after {
        width: 96%
    }

    .slider-ck .slick-dots li {
        width: 9px;
        height: 9px;
        float: left
    }

    .gallery-slider-sectionmt-10 .slick-dots li.slick-active button {
        border: 2px solid #001e60
    }

    .gallery-slider-sectionmt-10 .slick-dots li button {
        border-radius: 50%;
        border: 2px solid #e0e0e0;
        width: 9px;
        height: 9px;
        background-color: transparent;
        padding: 0
    }

    .gallery-slider-sectionmt-10 .slick-dots li {
        padding-top: 30px
    }

    .gallery-slider-sectionmt-10 .slick-dots li button:before {
        content: ""
    }

    .avatar-box.avatar-setting {
        width: 100% !important;
        height: 500px !important
    }

    .header-wrapper-main .nav-wrapper .bottom-nav .children-bearing-list {
        padding: 10px 15px !important
    }

    .style_show_map {
        display: flex;
        align-items: center
    }

    .toggle-map .main-content-wrapper, .show-map-section .toggle-button {
        display: none
    }

    .tab-slider-settings {
        padding-top: 4rem
    }

    .buyers-guide .area-guides .breadcrumb-wrapper {
        padding: 20px 0
    }

    .buyers-guide .area-guides .right-side-full-image .img-outer img {
        -o-object-fit: contain;
        object-fit: contain
    }

    .property-length .intercom-lightweight-app-launcher.intercom-launcher {
        bottom: 62px
    }

    .meet-team-mobslider {
        display: block
    }

    .meet-team-desktop {
        display: none
    }

    .change-position {
        display: flex;
        order: 1;
        margin-top: 40px
    }

    .property-details-page.video-adjustment .gallery-tabs-wrapper-inner {
        height: 440px !important
    }

    .responsive-grid-height.rgh-2, .responsive-grid-height.rgh-3 {
        width: 49.6%;
        display: inline-block;
        height: 300px;
        margin-top: 5px
    }

    .overlay-heading {
        width: 300px
    }
}

.text-elilipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100px
}

#floormap iframe {
    width: 100%;
    height: 620px
}

form .remark {
    display: none
}

.legend {
    padding-bottom: 53px;
    line-height: 1.5 !important;
    font-size: 2rem !important;
    color: var(--primary-blue);
    font-family: messina_sans_Regular, sans-serif
}

._form_24 {
    width: 100% !important;
    max-width: 100% !important
}

._form_element {
    margin-top: 60px
}

._form_element input[type=checkbox] {
    height: 20px;
    width: 20px;
    border: 1px solid #001e60 !important;
    border-radius: 8px;
    margin-top: 5px
}

._checkbox-radio {
    width: 100% !important;
    margin-bottom: 10px
}

._checkbox-radio label {
    width: 100% !important;
    margin-bottom: 10px;
    margin-left: 15px
}

#email {
    padding: .8rem 1rem !important;
    max-width: 488px;
    color: #545c6c;
    outline: 0;
    background: #fff !important;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    font-size: .875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1
}

._submit {
    width: 100%;
    background-color: var(--pink) !important;
    color: #fff !important;
    border: unset;
    font-size: 1rem !important;
    line-height: 24px;
    border-radius: .25rem;
    font-family: messina_sans_SemiBold !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    padding: .75rem 1.75rem !important;
    cursor: pointer;
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none;
    max-width: 488px !important
}

#_form_63F5E5E25402E_ ._submit {
    -webkit-appearance: none;
    cursor: pointer;
    font-family: arial, sans-serif;
    font-size: 14px;
    text-align: center;
    background: #4bbe89 !important;
    border: unset !important;
    border-radius: 10px !important;
    color: #fff !important;
    padding: 20px !important;
    all: unset
}

._form-inner {
    max-width: 488px
}

._form-title {
    font-size: 5rem !important;
    background: linear-gradient(97.08deg, #4bbe89 0, #001e60 55.06%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    line-height: 88px !important;
    font-weight: 300 !important;
    font-family: messina_sans_Light, sans-serif !important;
    margin-bottom: 15px;
    margin-top: 0 !important
}

._form_24 label {
    position: relative;
    margin-bottom: 12px;
    cursor: pointer;
    color: #545c6c;
    font-size: 16px !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    font-weight: 400 !important
}

._form-label {
    --tw-text-opacity: 1;
    color: #0c2867 !important;
    font-weight: 600 !important;
    font-size: .875rem !important;
    line-height: 1.25rem !important;
    display: block;
    margin-bottom: .5rem
}

._above {
    left: 335px !important;
    right: unset !important
}

._form-thank-you {
    margin-top: 1rem;
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: .25rem;
    min-width: 450px;
    width: 100% !important;
    text-align: left !important
}

#scheduleViewing .personal-form .slick-prev:before {
    opacity: 0 !important
}

@media (min-width: 320px) and (max-width: 667px) {
    ._form-content {
        width: 320px !important
    }

    ._form-title {
        font-size: 3rem !important;
        line-height: 58px !important
    }

    ._above {
        left: unset !important;
        right: 0 !important;
        bottom: 39px
    }

    ._form_24 label {
        font-size: 13px !important;
        font-weight: 300 !important
    }

    ._form-thank-you {
        min-width: 320px
    }
}

@media screen and (max-width: 767px) {
    .style_show_map {
        display: flex;
        align-items: center
    }

    .gXodtf {
        z-index: 99 !important
    }

    .backtolisting {
        display: block !important
    }

    .tab-slider-settings {
        padding-top: 2rem
    }

    .area-guides .galler-tabs-wrapper-oputer .gallery-tabs-wrapper-inner {
        height: 290px !important
    }

    .video-thumbnail-wrap {
        height: auto
    }

    .ck-content.description.large-desc p {
        font-size: .875rem !important
    }

    .new-video-thumbnail-section .video-thumbnail-wrap {
        height: 280px
    }

    .responsive-grid-height {
        height: 320px
    }

    .responsive-grid-height.rgh-2, .responsive-grid-height.rgh-3 {
        width: 100%;
        display: inline-block
    }

    #lightgallery .view-more-btn {
        bottom: 1rem !important;
        right: 1rem !important
    }

    .main-news-wrapper .overlay, .responsive-grid {
        border-radius: 8px
    }
}

.area-guides-grid-page .avatar-box .play-button, .off-plan-listings-page .avatar-box .play-button {
    transform: unset;
    left: unset;
    top: 10%
}

.off-plan-listings-page .avatar-box .play-button {
    top: 1rem !important;
    right: 1rem !important
}

.removed-data {
    opacity: .4;
    transform: unset;
    left: unset;
    top: 10%
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: transparent !important
}

.lg-sub-html {
    display: none !important
}

.backtolisting {
    display: none;
    font-weight: 700
}

.property-detail-gallery .slick-prev {
    left: 1rem;
    z-index: 1
}

.property-detail-gallery:not(.slick-initialized) .image-holder {
    display: none
}

.property-detail-gallery:not(.slick-initialized) .image-holder:first-child {
    display: block
}

.lg-outer .lg-content {
    top: 0 !important
}

@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) {
    html, body {
        transform: none !important
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
    html, body {
        transform: none !important
    }
}

.property-detail-gallery .slick-next {
    right: 1rem
}

#accountMainDiv {
    min-height: calc(100vh - 565px)
}

@media screen and (max-width: 767px) {
    .style_show_map {
        display: flex;
        align-items: center
    }
}

.slider-wrapper {
    width: 50%
}

.slider-wrapper .infiniteslide li {
    display: grid !important;
    grid-template-columns:repeat(3, 1fr) !important;
    flex: 1 1 auto !important;
    gap: 16px !important
}

@media screen and (max-width: 767px) {
    .slider-wrapper {
        width: 100%;
        padding-left: 5px;
        padding-right: 5px
    }

    .infiniteslide_wrap {
        width: 100%
    }

    .slider-wrapper .infiniteslide li {
        grid-template-columns:repeat(3, 1fr) !important
    }

    .date-slick-slider {
        padding-bottom: 60px
    }

    .date-slick-slider .slick-next {
        left: 0 !important;
        margin: auto;
        bottom: 0;
        right: -32px !important;
        width: 32px;
        height: 32px;
        top: auto !important
    }

    .date-slick-slider .slick-prev {
        left: 0 !important;
        margin: auto;
        bottom: 0;
        right: 30px !important;
        width: 32px;
        height: 32px;
        top: auto !important
    }

    .date-slick-slider .slick-prev:after {
        position: absolute;
        top: 0
    }

    .date-slick-slider .slick-prev:before {
        content: ""
    }

    .property-details-page.video-adjustment .gallery-tabs-wrapper-inner {
        height: 280px !important
    }

    #floormap iframe {
        height: 220px !important
    }
}

@media screen and (max-width: 575px) {
    .slider-wrapper .infiniteslide li {
        grid-template-columns:repeat(2, 1fr) !important
    }

    .slider-ck .slick-slide:not(:last-child) {
        padding-right: 0 !important
    }

    .avatar-box.avatar-setting {
        height: 350px !important
    }

    .property-details-page.video-adjustment .gallery-tabs-wrapper-inner {
        height: 220px !important
    }
}

#slider_up .slider-wrapper .infiniteslide li {
    width: 100%
}

.mm-search {
    padding: 6px 8px;
    border: 1px solid #001e60;
    border-radius: 4px
}

.mm-result {
    display: flex;
    justify-content: space-between;
    padding: 5px 20px;
    cursor: pointer;
    font-size: 14px
}

.mm-tree {
    font-size: 12px;
    color: #79808f;
    max-width: 120px;
    width: 100%
}

.mm-toggle {
    display: flex;
    flex: 1;
    cursor: text;
    padding-top: 4px
}

.avatar-box p {
    font-size: unset !important
}

.testimonials-slider-wrapper-outer p {
    white-space: unset !important
}

.mm-inherit {
    position: inherit
}

.property-listing-slider .slick-prev:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cg filter='url(%23filter0_dd_1939_12599)'%3E%3Cpath d='M16 28C22.6274 28 28 22.6274 28 16C28 9.37258 22.6274 4 16 4C9.37258 4 4 9.37258 4 16C4 22.6274 9.37258 28 16 28Z' fill='white'/%3E%3C/g%3E%3Cpath d='M16.7573 20.2426L20.9999 15.9999L16.7573 11.7573' stroke='%23919AAC' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 16H21' stroke='%23919AAC' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cdefs%3E%3Cfilter id='filter0_dd_1939_12599' x='0' y='0' width='32' height='32' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='1'/%3E%3CfeGaussianBlur stdDeviation='1'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_1939_12599'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation='2'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3CfeBlend mode='normal' in2='effect1_dropShadow_1939_12599' result='effect2_dropShadow_1939_12599'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect2_dropShadow_1939_12599' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    content: "" !important;
    height: 32px;
    width: 32px;
    background-size: cover;
    transform: rotate(180deg);
    position: absolute;
    top: 7px
}

.property-listing-slider .slick-next:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cg filter='url(%23filter0_dd_1939_12599)'%3E%3Cpath d='M16 28C22.6274 28 28 22.6274 28 16C28 9.37258 22.6274 4 16 4C9.37258 4 4 9.37258 4 16C4 22.6274 9.37258 28 16 28Z' fill='white'/%3E%3C/g%3E%3Cpath d='M16.7573 20.2426L20.9999 15.9999L16.7573 11.7573' stroke='%23919AAC' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 16H21' stroke='%23919AAC' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cdefs%3E%3Cfilter id='filter0_dd_1939_12599' x='0' y='0' width='32' height='32' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='1'/%3E%3CfeGaussianBlur stdDeviation='1'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_1939_12599'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation='2'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3CfeBlend mode='normal' in2='effect1_dropShadow_1939_12599' result='effect2_dropShadow_1939_12599'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect2_dropShadow_1939_12599' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    content: "" !important;
    height: 32px;
    width: 32px;
    background-size: cover;
    position: absolute;
    top: 7px
}

@font-face {
    font-family: Poppins;
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(../fonts/pxiByp8kv8JHgFVrLDz8Z1xlFQ.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

.prime-redirect {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    z-index: 9
}

.prime-redirect span {
    font-family: 'Montserrat';
    color: #0d1d2c;
    font-weight: 300;
    line-height: 1.25
}

.dis-none {
    display: none
}

.poppins {
    font-family: 'Montserrat';
    color: #333
}

.border-styles {
    border-bottom: 1px solid #efeaea
}

.inquiry-card {
    border: 1px solid #e0e0e0;
    padding: 25px;
    border-radius: 8px
}

.gradient-card {
    border-radius: 10px;
    background: linear-gradient(269deg, rgba(185, 203, 249, .87) -45.18%, rgba(243, 219, 242, .87) 107.85%);
    display: flex;
    justify-content: space-around;
    padding: 1rem
}

.star-img img {
    -o-object-fit: contain;
    object-fit: contain
}

.brochure-gallery img {
    aspect-ratio: 3/2
}

.agent-contact {
    border: 1px solid #e0e0e0;
    padding: 25px;
    background-color: #fafafa;
    border-radius: 10px;
    margin-top: 10px
}

.inq-btn {
    background-color: #4900a8;
    font-family: 'Montserrat';
    color: #fff;
    font-weight: 700;
    width: 100%;
    border-radius: 10px;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    margin-top: 20px
}

.agent-info img {
    border-radius: 50%
}

.blocation img {
    aspect-ratio: 3/2;
    border-radius: 10px
}

.bproperty-details ul li {
    list-style-type: disc;
    list-style-position: inside
}

.dream-text {
    font-family: 'Montserrat';
    font-size: 28px;
    font-weight: 700;
    color: #333
}

.share-header {
    padding: 1rem 0rem
}

.share-icon {
    display: flex
}

.borchure-details-page .main-content-wrapper {
    background-color: transparent
}

.borchure-details-page .main-content-wrapper .gallery-tabs-wrapper-inner {
    margin: 0
}

.share-property-details {
    width: 100%
}

.share-property-img img {
    height: 70px;
    border-radius: 10px
}

.border-div {
    border: 1px solid #ccc;
    width: 50%;
    display: flex;
    padding: 20px;
    gap: 20px;
    border-radius: 10px
}

.inq-fname {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px 20px
}

::-moz-placeholder {
    color: #c7c7c7
}

::placeholder {
    color: #c7c7c7
}

::-webkit-input-placeholder {
    color: #c7c7c7;
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 400
}

.popup-container-all {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999
}

.cross {
    cursor: pointer
}

.popup-container-all.container-all-one.show, .popup-container-all.container-all-second.show {
    display: flex
}

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000080;
    z-index: 998
}

.popup-new {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px #00000080;
    border-radius: 5px;
    text-align: center;
    z-index: 999;
    width: 550px
}

.popup-new.second {
    padding-bottom: 32px
}

.popup-content {
    margin: 0 auto
}

.inquiry-form label span {
    color: #e42b30;
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 500
}

.prime-redirect .content-wrapper {
    max-height: 95vh;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 0 10px #0000001a;
    overflow-y: auto
}

.base-timer {
    position: relative;
    width: 65px;
    height: 65px
}

.base-timer__circle {
    fill: #fff;
    stroke: #fff
}

.base-timer__path-elapsed {
    stroke-width: 7px;
    stroke: #ca8342
}

.base-timer__path-remaining {
    stroke-width: 7px;
    transform-origin: center;
    transition: 1s linear all;
    fill-rule: nonzero;
    stroke: #fff
}

.base-timer__path-remaining.orange {
    color: #ca8342
}

.base-timer__label {
    position: absolute;
    width: 65px;
    height: 65px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #ca8342
}

.property-listing-slider {
    padding-top: 34px
}

.property-listing-slider .slick-track {
    float: left
}

.property-listing-slider .slick-slide {
    text-align: center
}

.propertyauto-img {
    margin: auto
}

.propertyspan-auto {
    font-size: 11px
}

.property-listing-slider .slick-slide a {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.property-listing-slider .slick-slide img {
    display: block;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain
}

.property-listing-slider .slick-prev {
    left: 0;
    display: flex;
    width: 30px;
    height: 30px;
    z-index: 1
}

.property-listing-slider .slick-prev:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cg filter='url(%23filter0_dd_1939_12599)'%3E%3Cpath d='M16 28C22.6274 28 28 22.6274 28 16C28 9.37258 22.6274 4 16 4C9.37258 4 4 9.37258 4 16C4 22.6274 9.37258 28 16 28Z' fill='white'/%3E%3C/g%3E%3Cpath d='M16.7573 20.2426L20.9999 15.9999L16.7573 11.7573' stroke='%23919AAC' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 16H21' stroke='%23919AAC' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cdefs%3E%3Cfilter id='filter0_dd_1939_12599' x='0' y='0' width='32' height='32' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='1'/%3E%3CfeGaussianBlur stdDeviation='1'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_1939_12599'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation='2'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3CfeBlend mode='normal' in2='effect1_dropShadow_1939_12599' result='effect2_dropShadow_1939_12599'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect2_dropShadow_1939_12599' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    content: "" !important;
    height: 32px;
    width: 32px;
    background-size: cover;
    transform: rotate(180deg);
    position: absolute;
    top: 7px
}

.property-listing-slider .slick-next {
    right: 0;
    display: flex;
    width: 30px;
    height: 30px
}

.property-listing-slider .slick-next:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cg filter='url(%23filter0_dd_1939_12599)'%3E%3Cpath d='M16 28C22.6274 28 28 22.6274 28 16C28 9.37258 22.6274 4 16 4C9.37258 4 4 9.37258 4 16C4 22.6274 9.37258 28 16 28Z' fill='white'/%3E%3C/g%3E%3Cpath d='M16.7573 20.2426L20.9999 15.9999L16.7573 11.7573' stroke='%23919AAC' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 16H21' stroke='%23919AAC' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cdefs%3E%3Cfilter id='filter0_dd_1939_12599' x='0' y='0' width='32' height='32' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='1'/%3E%3CfeGaussianBlur stdDeviation='1'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_1939_12599'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation='2'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3CfeBlend mode='normal' in2='effect1_dropShadow_1939_12599' result='effect2_dropShadow_1939_12599'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect2_dropShadow_1939_12599' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    content: "" !important;
    height: 32px;
    width: 32px;
    background-size: cover;
    position: absolute;
    top: 7px
}

.property-listing-slider:not(.slick-initialized) > div {
    display: none
}

.main-ck-wrapper {
    background-color: #f4f4f4
}

.main-ck-wrapper + .useful-links {
    padding: 0 0 104px !important
}

.slider-ck .slick-slide:not(:last-child) {
    padding-right: 20px
}

.slider-ck {
    margin-bottom: 0 !important
}

.slider-ck .slick-track {
    float: left
}

.slider-ck .slick-dots li {
    width: 9px;
    height: 9px;
    float: left
}

.slider-ck.remove-dots .slick-dots {
    display: none
}

.slider-ck .slick-dots li button {
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    width: 9px;
    height: 9px;
    background-color: transparent;
    padding: 0
}

.slider-ck .slick-dots li.slick-active button {
    border: 2px solid #001e60
}

.slider-ck .slick-dots li button:before {
    content: ""
}

.slider-ck.off-plan .image-wrapper-avatar {
    height: 220px !important
}

.slider-ck .slick-prev {
    left: auto;
    right: 70px !important;
    top: -48px !important;
    color: #001e60 !important
}

.slider-ck .slick-next {
    left: auto;
    right: 30px !important;
    top: -48px !important
}

.slider-ck .slick-next:before, .slider-ck .slick-prev:before {
    color: #001e60;
    font-size: 30px
}

.property-management-slider .slick-slide {
    padding-right: 15px
}

.property-management-slider .slick-slide > div {
    border: 1px solid #cccccc59;
    box-shadow: none !important
}

.property-management-slider .slick-dots li button {
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    width: 9px;
    height: 9px;
    background-color: transparent;
    padding: 0
}

.property-management-slider .slick-dots li.slick-active button {
    border: 2px solid #001e60
}

.property-management-slider .slick-dots li button:before {
    content: ""
}

.property-management-slider .slick-dots li {
    width: 9px;
    height: 9px;
    float: left
}

.date-slick-slider .slick-slide {
    padding-right: 10px;
    height: auto
}

.date-slick-slider .slick-next {
    right: 20px
}

.date-slick-slider .slick-prev {
    left: 6px;
    top: 44px;
    z-index: 1
}

.messina-semibold {
    font-family: 'Montserrat';
}

.messina-regular {
    font-family: 'Montserrat'
}

.gallery-grid-wrapper .details-content span {
    font-size: 18px;
    line-height: 23px;
    font-family: 'Montserrat';
    font-weight: 600
}

.date-slick-slider .slick-next:before {
    content: "" !important;
    height: 32px;
    width: 32px;
    background-size: cover;
    display: flex;
    background-image: url(./ArrowCircleRight-cc139eb9.svg)
}

.date-slick-slider .slick-prev:after {
    content: "" !important;
    height: 32px;
    display: flex;
    width: 32px;
    background-size: cover;
    background-image: url(./ArrowCircleLeft-1d1c2159.svg)
}

.properties-wrapper-slider .slick-slide {
    margin-right: 10px !important;
    height: auto
}

.mortgagage-section .form-field input[type=text][disabled] {
    -webkit-text-fill-color: #545c6c;
    opacity: 1
}

.date-slick-slider .slick-slide.slick-current.slick-active > div {
    --tw-shadow: 0px 3px 6px #00000029;
    --tw-shadow-colored: 0px 3px 6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    border: 1px solid #0e0e5954
}

.teams-inner-wrapper.area-guides .sub-footer-section .slider-ck .card-wrapper {
    box-shadow: 0 0 1px #0003, 0 1px 1px #9e76760f, 0 2px 6px #eaeaea00;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px
}

.teams-inner-wrapper.area-guides .sub-footer-section .slider-ck .details-content {
    border: 1px solid #fceded;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px
}

.form-group .iti--allow-dropdown {
    width: 100%;
    border-radius: 4px !important;
    border: 1px solid #e0e0e0 !important
}

.form-group .iti--allow-dropdown input {
    width: calc(100% - 100px);
    margin-left: 80px !important;
    border: none !important
}

.property-details-page + .modal-wrapper-outer .form-group .iti--allow-dropdown input {
    padding-left: 10px !important;
    width: calc(100% - 100px) !important
}

.modal-wrapper-outer .iti__selected-flag {
    height: 45px !important
}

.iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {
    width: 100%;
    z-index: 0
}

.iti__country-list {
    width: 100%;
    font-size: .875rem
}

.testimonials-slider-mob-tab .image-wrapper-avatar {
    overflow: unset;
    position: unset
}

#lightgallery .view-more-btn {
    bottom: 24px;
    right: 24px
}

.dd-open, .dd-close {
    display: none
}

@media only screen and (max-width: 1024px) {
    .dd-open, .dd-close {
        display: block
    }

    #lightgallery .view-more-btn {
        bottom: 2rem;
        right: 2rem
    }
}

@media only screen and (width: 390px) and (height: 844px) and (-webkit-device-pixel-ratio: 3) {
    .accordion p + .plus-icon-wrapper {
        width: 15px
    }

    .accordion .vertical-line {
        transform: rotate(90deg);
        right: 2px
    }

    .accordion .vertical-line + img {
        position: absolute;
        top: 0;
        right: 0
    }
}

.barrow {
    content: ">";
    display: inline-block;
    font-size: 12px;
    text-align: center;
    color: #ccc
}

.exclusive-property a span {
    letter-spacing: 1px
}

.exclusive-property {
    background: rgba(13, 29, 44, .1);
    padding: 30px 20px
}

.exclusive-property a img {
    width: 10px;
    height: 14px
}

.badge-div {
    background: rgba(13, 29, 44, .6)
}

.exclusive-text {
    color: #000
}

.bg-primary-blue + .bg-green {
    background-color: #00ae8e;
    top: 45px;
    font-size: 10px
}

.bg-green {
    background-color: #00ae8e;
    top: 16px;
    font-size: 10px
}

.off-plan-btn {
    font-size: 10px
}

.form-group .iti--allow-dropdown input {
    background-color: transparent !important;
    height: 48px
}

.iti__flag-container .iti__selected-flag {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 0 10px;
    height: 48px !important;
    box-shadow: 0 4px 3px -5px gray
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current, .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current {
    background: #001f58 !important;
    box-shadow: #001e64 0 1px 3px inset !important
}

.off-plan-page ~ .xdsoft_datetimepicker .xdsoft_calendar td:hover, .off-plan-page ~ .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
    background: #4bbe89 !important;
    box-shadow: none !important
}

.form-group > .iti {
    border: none !important
}

.parsley-required {
    color: red !important
}

span.error {
    color: red !important;
    text-align: left
}

.property-details-page.video-adjustment .gallery-tabs-wrapper-inner .video-wrapper {
    height: 100% !important
}

.viewingTime option:disabled {
    color: #b0afaf;
    background-color: #f3f4f6
}

.hero-tabs .timeline_indicator.sticky {
    padding: 0 !important
}

.dropdpown-wrapper {
    position: absolute;
    width: 300px;
    z-index: 10;
    padding: 0 !important;
    top: 50px;
    left: 0;
    border-radius: 4px;
    transition: all .3s ease;
    max-height: 0px;
    overflow: hidden;
    display: flex;
    overflow-x: auto; /* Enable horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    padding: 0 10px; /* Optional padding for spacing */
    gap: 10px; /* Space between items */
    box-shadow: #0000001a 0 10px 15px -3px, #0000000d 0 4px 6px -2px
}

.dropdpown-wrapper .dropdown-inner {
    padding: 15px
}

.filter-wrapper {
    margin-bottom: 10px
}

.icons-slider .thumbnail-wrapper .img-wrapper {
    height: 30px;
    width: 30px
}

.icons-slider .thumbnail-wrapper .img-wrapper img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.icons-slider .thumbnails-slider {
    padding-top: 5px;
    padding-bottom: 5px
}

.icons-slider .thumbnail-wrapper p {
    color: #001e60 !important
}

.price-wrapper-inner.active .dropdpown-wrapper {
    max-height: 475px;
    transition: all .3s ease;
    overflow-y: auto
}

.hover-dropdown .dropdown-inner {
    padding-right: 0;
    padding-left: 0
}

.search-results-main-filter ::-webkit-scrollbar {
    width: 10px !important
}

.price-wrapper-inner.active .main-wrapper {
    background-image: url(./caret-down-2ee69b3f.svg)
}

.price-wrapper-main .dropdpown-wrapper .field-wrap .select-filter {
    padding-top: 9px !important;
    padding-bottom: 9px !important
}

.tag-selector .selectize-control {
    height: 100% !important
}

.tag-selector .selectize-control .selectize-input {
    padding: 8.5px 16px !important;
    width: 300px !important;
    max-height: 50px;
    height: 100%;
    box-shadow: none;
    overflow-y: scroll
}

.price-wrapper-inner.active .custom-select-style {
    background-image: url(/frontend/images/caret-up-465e395f.svg);
}

.price-wrapper-inner.active .dropdpown-wrapper {
    visibility: visible !important;
    opacity: 1 !important;
    top: 50px !important
}

.tag-selector .selectize-control .selectize-input input {
    font-size: 14px !important;
    color: #545c6c;
    height: 100%
}

.tag-selector .selectize-control .selectize-input input::-moz-placeholder {
    color: #545c6c !important
}

.tag-selector .selectize-control .selectize-input input::placeholder {
    color: #545c6c !important
}

.tag-selector .selectize-control .selectize-input .item {
    background: transparent !important;
    color: #001e60;
    font-size: 14px;
    box-shadow: none
}

.tag-selector .selectize-control .selectize-input .item.active {
    color: #001e60
}

.tag-selector .selectize-control .selectize-input .item .remove {
    border: 0;
    font-size: 18px;
    margin-left: 0
}

.tag-selector .selectize-control .selectize-input .item .remove:hover {
    background: transparent
}

.toggle-map.outer-wrapper .map-wrapper iframe {
    height: 100%;
    width: 100%
}

.no-border-dropdown {
    outline: none;
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important
}

.filter-section-wrapper .filter-inner .pink-btn {
    padding-right: 2.6rem;
    padding-left: 2.6rem
}

.custom-select-style {
    font-size: 14px;
    cursor: pointer !important;
    color: #545c6c !important;
    padding-right: 40px !important;
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    background-image: url(../images/caret-down-2ee69b3f.svg) !important;
    background-position: right 13px center !important;
    background-repeat: no-repeat !important
}

.select-active {
    background-image: url(/frontend/images//caret-up-465e395f.svg)
}

select::-ms-expand {
    display: none
}

.pagination-wrapper .pagination-tab.active {
    border-color: #001e60;
    color: #001e60;
    font-weight: 600
}

.pagination-wrapper .pagination-tab.active svg {
    filter: invert(12%) sepia(73%) saturate(2076%) hue-rotate(207deg) brightness(92%) contrast(113%)
}

.outer-wrapper .map-wrapper, .outer-wrapper .reactive-map {
    display: none
}

.toggle-map.outer-wrapper .reactive-map, .toggle-map.outer-wrapper .map-wrapper {
    display: block
}

.toggle-map .main-content-wrapper {
    max-height: 100vh;
    overflow-y: scroll
}

.toggle-map .reserved-grid {
    grid-template-columns:repeat(1, minmax(0, 1fr))
}

.toggle-map.outer-wrapper .map-wrapper {
    height: 100vh
}

.filter-section-wrapper {
    box-shadow: 0 1px 2px #00000029
}

.filter-section-wrapper .tags-wrapper {
    border-radius: 4px
}

.filter-section-wrapper .tag {
    border: 1px solid #001e60;
    border-radius: 4px;
    color: var(--primary-blue);
    font-family: 'Montserrat';
}

.filter-section-wrapper .add-button {
    color: #545c6c;
    font-family: 'Montserrat';
    font-size: .875rem
}

.select-filter {
    padding: 13.5px 16px;
    display: flex;
    gap: 8px;
    border: 1px solid #e0e0e0;
    align-items: center;
    border-radius: 4px;
    position: relative
}

.select-filter span {
    color: #545c6c;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: .875rem
}

.buy .main-wrap span {
    width: 40px !important
}

.type .main-wrap span {
    width: 100px !important
}

.Beds .main-wrap span {
    width: 70px !important
}

.more-filter--select .main-wrap span {
    width: 85px !important
}

.select-filter .chevron-down {
    height: 16px;
    width: 16px
}

.select-filter ul {
    position: absolute;
    top: 47px;
    left: 0;
    width: 100%;
    height: 0px;
    visibility: hidden;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 4px 4px/0px 0px 4px 4px;
    border-top: 0px;
    color: #545c6c;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: .875rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 9px 8px;
    transition: height .3s
}

.stay-filter .check-in-out-wrapper .date-wrapper input {
    border-bottom: 1px solid #e0e0e0 !important;
    padding: 13.5px 20px 13.5px 16px !important;
    background-position: right 17px center;
    font-size: 14px;
    color: #545c6c;
    background-size: 13px !important
}

.check-in-out-wrapper .date-wrapper input {
    padding: 1rem 1.5rem !important;
    outline: none !important;
    border: 1px solid #e0e0e0;
    border-bottom: 0px;
    border-radius: 4px 0 0 4px/4px 0px 0px 4px;
    background-repeat: no-repeat;
    color: #545c6c;
    background-position: right 28px center;
    width: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath id='Path_599' data-name='Path 599' d='M12.2,1.094H10.938V.438a.438.438,0,0,0-.875,0v.656H3.938V.438a.438.438,0,0,0-.875,0v.656H1.8A1.807,1.807,0,0,0,0,2.9v9.3A1.807,1.807,0,0,0,1.8,14H12.2A1.807,1.807,0,0,0,14,12.2V2.9A1.807,1.807,0,0,0,12.2,1.094ZM1.8,1.969H3.063v.438a.438.438,0,0,0,.875,0V1.969h6.125v.438a.438.438,0,0,0,.875,0V1.969H12.2a.931.931,0,0,1,.93.93V3.938H.875V2.9A.931.931,0,0,1,1.8,1.969ZM12.2,13.125H1.8a.931.931,0,0,1-.93-.93V4.813h12.25V12.2A.931.931,0,0,1,12.2,13.125Z' fill='%23727272'/%3E%3C/svg%3E")
}

.filter-section-wrapper {
    background: #ffffff
}

.show-hidden-filters {
    height: auto !important;
    transition: all .3s !important
}

.show-hidden-filters .filter-untoggled {
    display: flex
}

.button-group .select-filter {
    color: #545c6c;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    padding: 15px 12px;
    font-size: .875rem;
    background: #fafafa;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center
}

.check-in-out-wrapper .date-wrapper.checkout input {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 0px;
    border-right: 0px
}

.button-group .select-filter:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px
}

.button-group .select-filter:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.filter-section-wrapper .show-list ul {
    visibility: visible;
    height: 130px;
    transition: height .3s
}

.filter-section-wrapper .show-list .chevron-down {
    transform: rotate(180deg)
}

.active-btn {
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue) !important
}

.filter-section-wrapper .select-filter ul li {
    cursor: pointer
}

.main-content-wrapper {
    background: rgba(250, 250, 250, .7);
    background-blend-mode: darken
}

.breadcrumb-wrapper li a {
    color: #545c6c;
    font-size: .75rem;
    line-height: 18px;
    font-weight: 300
}

.show-map-section .show-map-text {
    line-height: 24px
}

.toggle-map .thumbnails-slider-outer .swiper-slide {
    width: 120px !important
}

.toggle-map .results-tabs .hidden-responsive-tab {
    display: none
}

.list-prop-ad button {
    font-size: 14px !important
}

.search-results li {
    position: relative;
    color: #545c6c;
    line-height: 21px;
    font-size: 14px
}

.field-wrap .checbox-field-inner label {
    margin-left: 5px
}

.field-wrap .checbox-field-inner {
    display: flex
}

.search-results li:not(:last-child):after {
    height: 16px;
    background: #e0e0e0;
    width: 1px;
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translatey(-50%)
}

.results-tabs .tab-btns {
    color: #545c6c;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: .875rem;
    margin-bottom: 5px
}

.results-tabs .tab-btns span {
    color: #919aac
}

.thumbnails-slider-outer .swiper-wrapper {
    transform: translate(0)
}

.card-wrapper {
    box-shadow: 0 0 1px #88787833, 0 1px 1px #ececec, 0 2px 6px #1fb576;
    position: relative;
    border-radius: 4px;
    overflow: hidden
}

.hover-content {
    border-radius: 4px
}

.hover-content h5 {
    background: transparent;
    -webkit-text-fill-color: #ffffff
}

.search-results .details-content {
    border-radius: 0 0 4px 4px
}

.img-content {
    overflow: hidden;
    min-height: 220px;
    max-height: 220px
}

.img-content img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 220px
}

.pagination-wrapper .pagination-tab {
    border: 1px solid #e0e0e0;
    font-family: 'Montserrat';
    font-style: normal;
    height: 48px;
    width: 48px;
    font-size: .875rem;
    color: #545c6c;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    border-radius: 4px
}

.pagination-wrapper .wide-tab {
    padding: 12px 16px;
    height: auto;
    width: 120px;
    max-width: 100%
}

.pagination-wrapper .wide-tab:hover svg path {
    stroke: #001e60
}

.thumbnails-slider:after {
    background: linear-gradient(270deg, #fafafab3 88%, rgba(255, 255, 255, 0) 100%);
    height: 100%;
    width: 50px;
    right: 0;
    bottom: 0;
    content: "";
    position: absolute;
    z-index: 9
}

.sub-footer-section .search-results li:last-child:after {
    display: none !important
}

.thumbnails-slider .swiper-button-next, .thumbnails-slider .swiper-button-prev {
    width: auto
}

.thumbnails-slider .thumbnail-wrapper img {
    width: 100%
}

.thumbnails-slider .swiper-button-next:after {
    content: "" !important;
    height: 32px;
    width: 32px;
    background-size: cover;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cg filter='url(%23filter0_dd_1939_12599)'%3E%3Cpath d='M16 28C22.6274 28 28 22.6274 28 16C28 9.37258 22.6274 4 16 4C9.37258 4 4 9.37258 4 16C4 22.6274 9.37258 28 16 28Z' fill='white'/%3E%3C/g%3E%3Cpath d='M16.7573 20.2426L20.9999 15.9999L16.7573 11.7573' stroke='%23919AAC' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 16H21' stroke='%23919AAC' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cdefs%3E%3Cfilter id='filter0_dd_1939_12599' x='0' y='0' width='32' height='32' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='1'/%3E%3CfeGaussianBlur stdDeviation='1'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_1939_12599'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation='2'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3CfeBlend mode='normal' in2='effect1_dropShadow_1939_12599' result='effect2_dropShadow_1939_12599'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect2_dropShadow_1939_12599' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E")
}

.thumbnails-slider .swiper-button-prev:after {
    content: "" !important;
    height: 32px;
    width: 32px;
    background-size: cover;
    transform: rotate(180deg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cg filter='url(%23filter0_dd_1939_12599)'%3E%3Cpath d='M16 28C22.6274 28 28 22.6274 28 16C28 9.37258 22.6274 4 16 4C9.37258 4 4 9.37258 4 16C4 22.6274 9.37258 28 16 28Z' fill='white'/%3E%3C/g%3E%3Cpath d='M16.7573 20.2426L20.9999 15.9999L16.7573 11.7573' stroke='%23919AAC' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 16H21' stroke='%23919AAC' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cdefs%3E%3Cfilter id='filter0_dd_1939_12599' x='0' y='0' width='32' height='32' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='1'/%3E%3CfeGaussianBlur stdDeviation='1'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_1939_12599'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation='2'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3CfeBlend mode='normal' in2='effect1_dropShadow_1939_12599' result='effect2_dropShadow_1939_12599'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect2_dropShadow_1939_12599' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E")
}

.show-map-section .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px
}

.show-map-section .switch input {
    opacity: 0;
    width: 0;
    height: 0
}

.show-map-section .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f4f4f4;
    transition: .4s
}

.show-map-section .slider:before {
    position: absolute;
    content: "";
    background-size: cover;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 34 34' fill='none'%3E%3Cg filter='url(%23filter0_dd_1939_12491)'%3E%3Crect x='5' y='4' width='24' height='24' rx='12' fill='%23919AAC'/%3E%3Cpath d='M21.5 11.5L12.5 20.5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M21.5 20.5L12.5 11.5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_dd_1939_12491' x='0' y='0' width='34' height='34' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='1'/%3E%3CfeGaussianBlur stdDeviation='2.5'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_1939_12491'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='1'/%3E%3CfeGaussianBlur stdDeviation='1'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0'/%3E%3CfeBlend mode='normal' in2='effect1_dropShadow_1939_12491' result='effect2_dropShadow_1939_12491'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect2_dropShadow_1939_12491' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
    height: 28px;
    width: 28px;
    left: 4px;
    bottom: 2px;
    transition: .4s;
    border-radius: 50%
}

.toggle-map {
    display: flex;
    transition: width .3s
}

.toggle-map .main-content-wrapper {
    width: 50%;
    transition: width .3s
}

.toggle-map .gallery-grid-wrapper {
    grid-template-columns:repeat(2, 1fr) !important
}

.toggle-map .main-content-wrapper .thumbnails-slider:after {
    display: none
}

.toggle-map .map-wrapper {
    width: 50%;
    transition: width .3s
}

.show-map-section input:checked + .slider:before {
    transform: translate(26px);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 34 34' fill='none'%3E%3Cg filter='url(%23filter0_dd_1939_12847)'%3E%3Crect x='5' y='4' width='24' height='24' rx='12' fill='%23001E60'/%3E%3Cpath d='M22.5 12.5002L15.5 19.4999L12 16.0002' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_dd_1939_12847' x='0' y='0' width='34' height='34' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='1'/%3E%3CfeGaussianBlur stdDeviation='2.5'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_1939_12847'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='1'/%3E%3CfeGaussianBlur stdDeviation='1'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0'/%3E%3CfeBlend mode='normal' in2='effect1_dropShadow_1939_12847' result='effect2_dropShadow_1939_12847'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect2_dropShadow_1939_12847' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E")
}

.show-map-section .slider.round {
    border-radius: 34px
}

.show-map-section.slider.round:before {
    border-radius: 50%
}

.map-wrapper img {
    height: 100%;
    width: 100%
}

.ending-section-two-col h5 {
    color: var(--primary-blue);
    background: transparent;
    line-height: 26px;
    font-weight: 600;
    -webkit-background-clip: text;
    font-size: 20px !important;
    -webkit-text-fill-color: var(--primary-blue)
}

.buy .dropdpown-wrapper {
    width: 220px
}

.buy .dropdpown-wrapper h6 {
    color: var(--primary-blue) !important
}

.type .dropdpown-wrapper {
    width: 260px
}

.search-section-alternate {
    padding: .9rem 1.5rem;
    color: #545c6c;
    outline: none;
    border: none;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 0 1px #0003, 0 1px 2px #0000000f, 0 4px 8px #0000000f;
    width: calc(100% - 62px)
}

.easy-autocomplete {
    display: none
}

.search-section-alternate .search-tag {
    padding: 6px 8px;
    border: 1px solid #001e60;
    border-radius: 4px
}

.dropdown--content {
    z-index: 1;
    background: #ffffff;
    left: 0;
    top: 60px;
    max-height: 235px;
    overflow-y: scroll;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    box-shadow: 0 0 1px #0003, 0 1px 2px #0000000f, 0 4px 8px #0000000f;
    width: calc(100% - 78px)
}

.dropdown--content .tags-wrap {
    padding: .9rem 1.5rem
}

.search-results--location ul li button {
    width: 100%;
    font-size: 1rem;
    line-height: 24px;
    height: 36px;
    padding: .375rem 1.4rem;
    text-align: left
}

.filter-wrapper.tags-filter {
    max-width: 323px;
    width: 100%
}

.filter-wrapper.tags-filter input {
    width: 100%
}

.tags-filter input[type=text] {
    padding-top: 13.5px !important;
    padding-bottom: 13.5px !important;
    font-size: 14px;
    color: #545c6c
}

.tags-filter input[type=text]::-moz-placeholder {
    font-size: 14px;
    color: #545c6c;
    font-weight: 400
}

.tags-filter input[type=text]::placeholder {
    font-size: 14px;
    color: #545c6c;
    font-weight: 400
}

.filter-wrapper.tags-filter .dropdown--content {
    width: 100%;
    top: 52px;
    z-index: 7
}

.filter-wrapper.tags-filter .tags-wrap .search-tag {
    padding: 6px 8px;
    border: 1px solid #545c6c;
    border-radius: 4px
}

.filter-wrapper.tags-filter .search-results--location ul li button {
    color: #545c6c
}

.filter-wrapper.tags-filter .search-results--location ul li button:hover {
    background-color: #001e60;
    color: #fff
}

.dropdpown-wrapper ul li div {
    color: #545c6c;
    font-size: 14px
}

.dropdpown-wrapper ul li {
    margin-bottom: 10px
}

.search-results--location ul li:hover {
    background: #f4f4f4
}

.dropdpown-wrapper ul li:last-child {
    margin-bottom: 0
}

.beds-btn {
    display: block;
    font-size: 14px;
    color: #919aac;
    background: #f4f4f4;
    border-radius: 8px;
    padding-right: 8px;
    padding-left: 8px;
    cursor: pointer;
    margin-right: 8px
}

.beds-btn.active {
    background-color: #001e60;
    color: #fff
}

.Beds .dropdpown-wrapper {
    width: 300px
}

.select-price .dropdpown-wrapper {
    width: 346px
}

.select-price .dropdpown-wrapper .field-inner label {
    color: #ababab
}

.select-price .dropdpown-wrapper .field-inner input {
    border-color: #e0e0e0;
    font-size: 14px
}

.tabs-filter--type .tab-filter--variant {
    width: 33.33%;
    padding: 5px 0;
    font-size: 14px;
    color: #5e6674;
    border-radius: 4px;
    cursor: pointer
}

.tabs-filter--type .tab-filter--variant.active {
    background: #919aac;
    color: #fff
}

.tabs-filter--type .tab-filter--variant:last-child {
    margin-right: 0
}

.tabs-filter--type {
    border: 1px solid #e0e0e0;
    border-radius: 4px
}

.scrolled-now {
    position: fixed;
    width: 100%;
    height: auto;
    top: 0;
    z-index: 99;
    background: #ffffff
}

.top50 ~ .scrolled-now {
    top: 75px
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-10px)
    }
    to {
        transform: translateY(0)
    }
}

@keyframes smoothScrollRev {
    0% {
        transform: translateY(-150px)
    }
    to {
        transform: translateY(0)
    }
}

.more-filter--select .dropdpown-wrapper {
    width: 680px;
    right: 0;
    left: auto;
    padding: 40px
}

.two-col-section--filter {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f7f7f7
}

.more-filter--select .dropdpown-wrapper .field-inner-wrap input:not(.amenities .field-inner-wrap input) {
    width: 100%;
    font-size: 14px
}

.dropdpown-wrapper .grey-latest--layout {
    -webkit-text-fill-color: #5e6674 !important;
    font-family: 'Montserrat';
    font-weight: 600
}

.more-filter--select .dropdpown-wrapper .field-inner-wrap input:not(.amenities .field-inner-wrap input)::-moz-placeholder {
    color: #666d7b
}

.more-filter--select .dropdpown-wrapper .field-inner-wrap input:not(.amenities .field-inner-wrap input)::placeholder {
    color: #666d7b
}

.more-filter--select .dropdpown-wrapper .size .field-inner label {
    color: #e0e0e0
}

.more-filter--select .field-inner-wrap.amenities-list {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    -moz-column-gap: 16px;
    column-gap: 16px;
    row-gap: 4px
}

.more-filter--select .field-inner-wrap .checbox-field-inner {
    width: 100%;
    margin-right: 0;
    display: flex;
    align-items: center
}

.more-filter--select .field-inner-wrap .checbox-field-inner label, .more-filter--select .field-inner-wrap.amenities-list button {
    color: #666d7b
}

.more-filter--select .button-group {
    border-top: 1px solid #f7f7f7
}

.filtered-content-wrap .tab-btns {
    width: 25%;
    text-align: left
}

.results-tabs {
    transition: all .3s
}

.results-tabs .chevron-down {
    transition: all .3s;
    transform: rotate(0)
}

.results-tabs.active .chevron-down {
    transition: all .3s;
    transform: rotate(-180deg)
}

.results-tabs .text-expanded {
    display: none
}

.results-tabs.active .text-expanded {
    display: block
}

.results-tabs.active .show-text {
    display: none
}

.hover-dropdown ul li:hover {
    background: #f4f4f4
}

.hover-dropdown {
    padding-right: 0 !important;
    padding-left: 0 !important;
    padding-top: 20px;
    padding-bottom: 20px
}

.hover-dropdown span {
    padding-right: 20px;
    padding-left: 20px
}

.hover-dropdown ul li {
    margin-bottom: 0;
    padding: 7px 20px;
    cursor: pointer
}

.filter-inner .price-wrapper-main .main-wrap span {
    width: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.results-tabs .toggleable-btn span {
    color: #545c6c
}

.filtered-content-wrap {
    padding-right: 30px;
    width: calc(100% - 84px)
}

.toggle-map .filtered-content-wrap .tab-btns {
    width: 50% !important
}

.search-results li:last-child:after {
    display: none
}

@media screen and (min-width: 1750px) {
    .gallery-grid-wrapper {
        grid-template-columns:repeat(5, minmax(0, 1fr))
    }
}

@media screen and (min-width: 1900px) {
    .gallery-grid-wrapper {
        grid-template-columns:repeat(6, minmax(0, 1fr)) !important
    }

    .account {
        grid-template-columns:repeat(4, minmax(0, 1fr)) !important
    }
}

@media screen and (max-width: 850px) {
    .hidden-responsive-tab {
        display: none
    }

    .filtered-content-wrap .tab-btns {
        width: 50% !important
    }

    .pagination-wrapper .pagination-tab {
        height: 40px;
        width: 40px
    }

    .wide-tab {
        height: 40px;
        width: 90px !important
    }

    .outer-wrapper > .customScroll {
        padding-top: 150px;
        z-index: 1;
        position: relative
    }
}

@media screen and (max-width: 950px) {
    .hidden-responsive-tab {
        display: none
    }
}

@media screen and (max-width: 1510px) {
    .tags-wrapper {
        max-width: 250px !important
    }

    .filter-inner {
        flex-wrap: wrap
    }
}

@media screen and (max-width: 1300px) {
    .gallery-grid-wrapper {
        grid-template-columns:repeat(3, 1fr) !important
    }
}

@media screen and (max-width: 1024px) {
    .top50 ~ .scrolled-now {
        top: 160px
    }

    .gallery-grid-wrapper {
        grid-template-columns:repeat(2, 1fr) !important
    }

    .tabs-filter--type .tab-filter--variant {
        font-size: 12px
    }

    .more-filter--select .dropdpown-wrapper {
        left: 0 !important
    }

    .filtered-content-wrap .tab-btns {
        width: 33.33%
    }

    .toggle-map .main-content-wrapper {
        max-height: 100%;
        height: auto;
        width: 100%;
        transition: width .3s
    }

    .thumbnails-slider:after {
        display: none
    }

    .toggle-map .map-wrapper {
        width: 100%;
        height: 500px;
        transition: width .3s;
        overflow: hidden
    }

    .toggle-map .map-wrapper img {
        height: auto
    }

    .thumbnails-slider .swiper-button-prev, .thumbnails-slider .swiper-button-next {
        display: none
    }

    .utility-buttons {
        order: 1
    }

    .tags-wrapper {
        max-width: 70% !important
    }

    .toggle-map {
        display: block;
        transition: width .3s
    }

    .filter-section-wrapper .price-wrapper-inner .dropdpown-wrapper {
        left: auto;
        right: 0
    }
}

@media screen and (max-width: 902px) and (min-width: 641px) {
    .filter-section-wrapper .price-wrapper-inner .dropdpown-wrapper {
        left: 0;
        right: auto
    }
}

@media screen and (max-width: 767px) {
    .listingPage .price-wrapper-main:nth-child(2) {
        max-width: 130px;
        min-width: 130px
    }
}

@media screen and (max-width: 700px) {
    .pagination-wrapper .pagination-tab {
        height: 35px;
        width: 35px
    }
}

@media screen and (max-width: 640px) {
    .sub-footer-section .search-results li:after {
        display: block !important
    }

    .select-filter {
        padding-top: 11.5px;
        padding-bottom: 11.5px
    }

    .ending-section-two-col {
        margin-top: 32px !important
    }

    .tabs-filter--type {
        max-width: 100% !important;
        width: 100%
    }

    .two-col-section--filter {
        flex-direction: column
    }

    .two-col-section--filter .left-section--filter {
        width: 100%
    }

    .two-col-section--filter .right-section--more-filter {
        width: 100%;
        margin-top: 20px
    }

    .mobile-latest--layout .button-outer .save-btn {
        margin-top: 0
    }

    .mobile-latest--layout .price-wrapper-main {
        margin-right: 10px !important;
        margin-bottom: 0 !important
    }

    .mobile-latest--layout {
        padding: 15px 0;
        margin-top: 15px;
        position: relative
    }

    .mobile-latest--layout:before {
        content: "";
        position: absolute;
        height: 1px;
        width: 900px;
        left: -20px;
        background-color: #e0e0e0;
        top: 0
    }

    .dropdpown-wrapper .dropdown-inner .cross-icon svg path {
        stroke: #001e60
    }

    .dropdpown-wrapper .dropdown-inner .cross-icon svg {
        height: 100%;
        width: 100%
    }

    .dropdpown-wrapper .dropdown-inner .cross-icon {
        display: block;
        height: 20px;
        width: 20px;
        position: absolute;
        right: 16px;
        padding: 4px;
        z-index: 33;
        cursor: pointer
    }

    .mobile-latest--layout .price-wrapper-inner.active .dropdpown-wrapper {
        top: auto !important;
        bottom: 0 !important
    }

    .mobile-latest--layout .price-wrapper-inner .backdrop {
        position: fixed;
        height: 100vh;
        width: 100%;
        background-image: linear-gradient(180deg, #00000000, #000000);
        bottom: 0;
        left: 0;
        opacity: .5;
        z-index: 3;
        height: 0;
        transition: all .3s ease
    }

    .mobile-latest--layout .price-wrapper-inner.active .backdrop {
        height: 100vh;
        transition: all .3s ease
    }

    .mobile-latest--layout .dropdpown-wrapper {
        position: fixed;
        top: auto !important;
        bottom: 0 !important;
        width: 100%;
        z-index: 999
    }

    .more-filter--select .dropdpown-wrapper {
        padding: 20px
    }

    .more-filter--select .field-inner-wrap.amenities-list {
        grid-template-columns:repeat(2, 1fr);
        -moz-column-gap: 10px;
        column-gap: 10px
    }

    .type .main-wrap span {
        width: auto !important
    }

    .button-outer .save-btn {
        margin-top: 10px
    }

    /*.dropdpown-wrapper {*/
    /*    width: 100% !important*/
    /*}*/

    .pagination-wrapper .wide-tab {
        width: auto !important;
        height: 35px !important;
        padding: 0 12px !important
    }

    .pagination-wrapper .wide-tab svg {
        margin-right: 0;
        margin-left: 0
    }

    .tag-selector {
        width: 100%;
        margin-right: 0 !important
    }

    .filter-wrapper {
        width: calc(100% - 60px) !important;
        max-width: none !important;
        margin-bottom: 0
    }

    .post-code-section .filter-wrapper {
        width: 100% !important
    }

    .filter-section-wrapper {
        padding-bottom: 0 !important
    }

    .filter-wrapper .select-filter {
        width: 100%;
        float: left !important
    }

    .tag-selector .selectize-control .selectize-input {
        width: 100% !important
    }

    .price-wrapper-main {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0
    }

    .button-filter {
        flex-wrap: wrap;
        display: flex;
        width: 100%
    }

    .button-filter .select-filter {
        width: 100% !important
    }

    .check-in-out-wrapper .date-wrapper.checkout input {
        border-right: 1px solid #e0e0e0 !important
    }

    .check-in-out-wrapper:not(.guests-outer) {
        width: 50% !important
    }

    .stay-details {
        flex-wrap: wrap;
        width: 100%
    }

    .guests-outer {
        width: 100% !important;
        margin-top: 8px
    }

    .filter-untoggled .select-filter {
        width: 100%;
        margin-right: 0;
        margin-bottom: 8px
    }

    .price-wrapper-main {
        margin-right: 0 !important
    }

    .button-filter .select-filter {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M7.99994 6.75L7.99996 13.5' stroke='%23919AAC' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7.99996 2.5L7.99994 4.25' stroke='%23919AAC' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7.99994 6.75C8.69029 6.75 9.24994 6.19036 9.24994 5.5C9.24994 4.80964 8.69029 4.25 7.99994 4.25C7.30958 4.25 6.74994 4.80964 6.74994 5.5C6.74994 6.19036 7.30958 6.75 7.99994 6.75Z' stroke='%23919AAC' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12.4999 11.75L12.5 13.5' stroke='%23919AAC' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12.5 2.5L12.4999 9.25' stroke='%23919AAC' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12.4999 11.75C13.1903 11.75 13.7499 11.1904 13.7499 10.5C13.7499 9.80964 13.1903 9.25 12.4999 9.25C11.8096 9.25 11.2499 9.80964 11.2499 10.5C11.2499 11.1904 11.8096 11.75 12.4999 11.75Z' stroke='%23919AAC' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3.49997 9.75L3.4999 13.5' stroke='%23919AAC' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3.4999 2.5L3.49997 7.25' stroke='%23919AAC' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3.49994 9.75C4.19029 9.75 4.74994 9.19036 4.74994 8.5C4.74994 7.80964 4.19029 7.25 3.49994 7.25C2.80958 7.25 2.24994 7.80964 2.24994 8.5C2.24994 9.19036 2.80958 9.75 3.49994 9.75Z' stroke='%23919AAC' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    }

    .hidden-sm {
        display: none !important
    }

    .filter-section-wrapper .tags-wrapper {
        width: 100%;
        max-width: 100% !important
    }

    .button-filter {
        width: 100% !important;
        justify-content: center
    }

    .mobile-latest--layout .button-outer button {
        width: 151px !important
    }

    .select-filter svg {
        display: block
    }

    .ending-section-two-col .right-section {
        margin-top: 24px
    }
}

@media screen and (max-width: 575px) {
    .toggle-map .gallery-grid-wrapper {
        grid-template-columns:repeat(1, 1fr) !important
    }

    .post-code-section .button-wrap, .post-code-section .button-wrap button {
        margin-right: 0 !important;
        margin-left: 0 !important
    }

    .post-code-section .button-wrap button:nth-child(1) + button {
        margin-left: 10px !important
    }

    .gallery-grid-wrapper {
        grid-template-columns:repeat(1, 1fr) !important
    }
}

@media screen and (max-width: 490px) {
    .breadcrumb-wrapper li:last-child a {
        text-overflow: ellipsis;
        max-width: 200px;
        overflow: hidden;
        white-space: nowrap
    }

    .two-col-section--filter .right-section--more-filter {
        width: 100%;
        justify-content: flex-start
    }

    .tabs-filter--type {
        max-width: 100% !important
    }

    .two-col-section--filter {
        display: block !important
    }

    .two-col-section--filter .left-section--filter {
        width: 100%;
        margin-bottom: 20px
    }

    .more-filter--select .field-inner-wrap.amenities-list {
        grid-template-columns:repeat(1, 1fr)
    }

    .search-results li:not(:last-child) {
        margin-bottom: 8px
    }

    .gallery-grid-wrapper .search-results li, .sub-footer-section .search-results li {
        margin-bottom: 0 !important
    }

    .search-results li div {
        padding-left: 0 !important
    }

    .search-results li:nth-child(3) {
        margin-right: 10px
    }
}

@media screen and (max-width: 480px) {
    .mobile-latest--layout .button-outer button {
        font-size: .75rem !important
    }

    .filter-inner .price-wrapper-main .main-wrap span {
        font-size: 12px
    }

    .price-wrapper-main {
        width: auto
    }
}

.loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #001e60;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
    margin: 0 auto;
    left: 50%;
    top: 20px;
    position: absolute;
    z-index: 999999
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

.price-tag {
    background-color: #fff;
    border-radius: 8px;
    color: #545c6c;
    font-size: 14px;
    padding: 10px 15px;
    position: relative;
    box-shadow: 0 5px 15px #0000004d;
    z-index: 9999
}

.tag-active {
    background-color: #001e60;
    z-index: 99999;
    width: 130px;
    color: #fff
}

.tag-active:after {
    border-top: 8px solid #001e60 !important
}

.price-tag:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff
}

.read-more {
    height: auto !important
}

.read-more + a svg {
    transition: transform .2s ease;
    transform: rotate(180deg)
}

.read-more:after {
    background: none !important
}

#descriptionContainer {
    overflow: hidden
}

#descriptionContainer p {
    font-size: .875rem !important
}

.description-section {
    border-bottom: 0
}

.tab3 {
    display: block;
    padding-top: 35px
}

.tab__header {
    display: block;
    clear: both
}

.tab__header > div {
    vertical-align: top;
    float: left;
    padding: 10px;
    color: #545c6c;
    width: 20%
}

.tab__header > div:hover {
    cursor: pointer
}

.tab__header > div.tab__header--active {
    background-color: transparent;
    border-bottom: 2px solid #001e60;
    color: #008080;
    font-family: 'Montserrat' !important;
    width: 20%
}

.tab__content {
    display: block;
    clear: both;
    background: #fff;
    color: #212121;
    width: auto;
    border: 1px solid #fbf0ef;
    height: inherit;
    overflow: auto;
    padding: 0 0 20px
}

.tab__content > div {
    display: inline-block;
    vertical-align: top;
    float: left;
    display: none
}

.tab__content > div.tab__content--active {
    display: block;
    width: 100%
}

.tab__content > div.tab__content--active .tab {
    background-color: #fff
}

.tab__content > div.tab__content--active .tab:hover {
    background-color: #fff !important
}

.select-div {
    float: left
}

.second-level-tab .tab__content {
    border: none
}

.second-level-tab .tab__header-1 {
    border-left: none;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    margin-right: 8px
}

.second-level-tab .tab__header-3 {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px
}

.second-level-tab .tab__header--active.ctab {
    border: 1px solid #001e60
}

.second-level-tab .ctab {
    width: auto !important;
    float: right;
    font-size: 14px;
    border: 1px solid #fbf0ef;
    margin-top: 14px
}

.tabs-gallery-outer {
    background: #FAFAFA
}

.community-text .messina-light {
    font-family: 'Montserrat' !important
}

.community-text p {
    font-family: 'Montserrat' !important;
    font-size: 24px !important
}

.community-text p:nth-child(2) {
    font-family: 'Montserrat' !important;
    font-size: 20px !important;
    margin-top: 20px
}

.community-icons {
    box-shadow: 0 0 1px #0003, 0 1px 1px #0000000f, 0 2px 6px #0000000f;
    border-radius: 6px;
    padding: 30px 0;
    background-color: #fff
}

.comunity-right-border {
    padding: 16px 0
}

.comunity-right-border:not(:last-child) {
    border-right: 1px solid #E0E0E0
}

.comunity-right-border img {
    margin: auto
}

.community-details .community-container .content_inner h3 {
    font-size: 24px !important;
    font-weight: 600;
    color: #008080;
    background: none;
    -webkit-text-fill-color: #008080;
    line-height: 1.3em;
    font-family: 'Montserrat' !important;
    padding: 30px 0 15px
}

.community-details .community-container .content_inner h4 {
    padding-bottom: 14px;
    font-size: 24px !important;
    font-weight: 600
}

.community-details .community-container .content_inner p {
    font-size: 16px !important
}

.community-details-text {
    font-family: 'Montserrat' !important;
    font-size: 32px;
    color: #001e60;
    font-weight: 600
}

.community-details-about {
    color: var(--primary-blue);
    font-family: 'Montserrat' !important;
    font-weight: 600
}

.essentials-section {
    background: #FAFAFA
}

.essentials-section.thingstodo {
    background-color: #fff
}

.propertytype {
    background: #FAFAFA
}

.hero-tabs.hero-tab-common li a {
    font-family: 'Montserrat' !important;
    font-size: 16px;
    font-weight: 600;
    padding-top: 41px;
    padding-bottom: 17px
}

.hero-tabs.hero-tab-common li a.active {
    border-bottom: 2px solid #001e60;
    color: var(--primary-blue);
    font-family: 'Montserrat' !important
}

.hero-tabs.hero-tab-common a:before {
    top: 18px
}

.tab3 .gradivisgallery {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1%
}

.tab3 .placeholder {
    width: 65%;
    margin: 1%;
    float: left;
    height: 625px;
    width: 920px;
    overflow: hidden
}

.tab3 .placeholder img {
    border-radius: 14px;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    cursor: auto
}

.tab3 .gallery-images {
    margin: 1%;
    float: left;
    display: flex;
    flex-direction: column;
    background-color: #2e343f;
    padding: 15px 10px;
    justify-content: center;
    align-items: center
}

.tab3 .gallery-images .gradivisimage {
    height: 147px;
    width: 197px;
    overflow: hidden
}

.tab3 .gradivisimage img {
    width: 100%;
    float: left;
    margin: 1%;
    cursor: pointer;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 14px;
    transition: .3s;
    height: 100%
}

.tab3 .gallery-images .gradivisimage:not(:last-child) {
    margin-bottom: 15px
}

.essentials-section.thingstodo img {
    width: 351px;
    height: 257px;
    overflow: hidden;
    border-radius: 8px
}

.essentials-section img {
    width: 476px;
    height: 348px;
    overflow: hidden;
    border-radius: 8px
}

@media only screen and (max-width: 1024px) {
    .hero-tabs {
        display: flex !important
    }

    .hero-tab-slider .slick-list.draggable {
        padding: 0 60% 0 0 !important
    }

    .comunity-right-border:not(:last-child) {
        border-bottom: 1px solid #E0E0E0;
        border-right: none
    }

    .comunity-right-border {
        padding: 15px 0
    }

    .community-icons {
        padding: 0
    }

    .essential-slider .slick-list.draggable {
        padding: 0 50% 0 0 !important
    }

    .community-details-description {
        display: flex;
        width: 90%
    }

    .essential-slider .slick-slide img {
        width: 90%;
        height: 100%
    }

    .tab3 .gradivisimage:not(:last-child) img {
        margin-bottom: 0
    }

    .tab3 > .tab__header {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto
    }

    .tab3 > .tab__header > div {
        flex: 0 0 auto;
        width: auto
    }

    .tab3 > .tab__header::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 0px transparent;
        border-radius: 0;
        background-color: transparent;
        border: none
    }

    .tab3 > .tab__header::-webkit-scrollbar {
        width: 0px;
        background-color: transparent
    }

    .tab3 > .tab__header::-webkit-scrollbar-thumb {
        -webkit-box-shadow: inset 0 0 0px transparent;
        border-radius: 0;
        background-color: transparent;
        border: none
    }

    .tab3 > .tab__header .slick-list.draggable {
        width: 100%;
        padding: 0 70% 0 0 !important
    }

    .comunity-right-border {
        width: 90%;
        margin: auto
    }

    .comunity-right-border .cr1 {
        padding-left: 20px
    }

    .community-details .community-container + .video-wrapper .property-info-card {
        width: 100%
    }

    .community-details .community-container + .video-wrapper img {
        width: 100%;
        border-radius: 8px
    }

    .essential-slider .slick-slide picture {
        width: 90%;
        height: 240px;
        overflow: hidden;
        display: flex
    }

    .tab3 .gallery-images {
        width: 93% !important;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly
    }

    .tab3 .gallery-images .gradivisimage:not(:last-child) {
        margin-bottom: 0
    }

    .tab3 .gradivisgallery {
        flex-wrap: wrap
    }

    .tab3 .placeholder {
        height: auto
    }

    .tab3 .placeholder img {
        height: 590px;
        -o-object-fit: cover;
        object-fit: cover
    }

    .property-details-page .galler-tabs-wrapper-oputer .gallery-tabs-wrapper-inner {
        margin-top: 0
    }

    .galler-tabs-wrapper-oputer .gallery-tabs-wrapper-inner {
        margin-top: 20px
    }

    .galler-tabs-wrapper-oputer.geolocation-section .tabs-wrapper {
        top: 52px
    }
}

@media only screen and (max-width: 767px) {
    .tab3 .gradivisgallery {
        flex-direction: column !important
    }

    .tab3 .gradivisimage img {
        width: 90% !important;
        height: 100%
    }

    .tab3 .placeholder {
        width: 100% !important
    }

    .community-details-text {
        font-size: 24px
    }

    .select-div {
        width: 100% !important;
        padding: 0 !important;
        margin-bottom: 20px;
        margin-top: 12px
    }

    .select-div select {
        width: 100%
    }

    .second-level-tab .ctab {
        width: 33.33% !important;
        font-size: 12px;
        padding: 10px 0;
        text-align: center;
        margin-right: 0
    }

    .essential-slider .slick-list.draggable {
        padding: 0 20% 0 0 !important
    }

    .essential-slider .slick-slide picture {
        width: 90%;
        height: 240px;
        overflow: hidden;
        display: flex
    }

    .essential-slider .slick-slide img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover
    }

    .hero-tab-slider .slick-list.draggable {
        padding: 0 60% 0 0 !important
    }

    .comunity-right-border img {
        margin: auto;
        width: 38px;
        max-width: 38px
    }

    .community-text p {
        font-size: 16px !important
    }

    .community-details .community-container .content_inner h4 {
        font-size: 20px !important
    }

    .essentials-section {
        background: #FFF
    }

    .tab3 .gallery-images .gradivisimage {
        height: 90px;
        width: 208px;
        overflow: hidden
    }

    .tab3 .placeholder img {
        height: 370px;
        -o-object-fit: cover;
        object-fit: cover
    }

    .galler-tabs-wrapper-oputer .gallery-tabs-wrapper-inner {
        padding-top: 25px
    }

    .property-details-page .galler-tabs-wrapper-oputer .gallery-tabs-wrapper-inner {
        padding-top: 0
    }

    .galler-tabs-wrapper-oputer.geolocation-section .tabs-wrapper {
        transform: translate(0);
        left: 10px !important;
        top: -25px;
        right: 0
    }

    button#viewMap {
        width: 140px !important
    }

    .aguidemap.gallery-content-wrapper #viewMap {
        width: 140px !important;
        top: 43%
    }
}

@media only screen and (max-width: 590px) {
    .essential-slider .slick-slide picture {
        width: 96%;
        height: 180px;
        overflow: hidden;
        display: flex
    }

    .essential-slider .slick-slide img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover
    }

    .tab3 .placeholder img {
        height: 240px
    }
}

body .gradient-heading {
    line-height: 4.1rem
}

.video-wrapper-inner iframe {
    height: 100%;
    width: 100%
}

.content-inner {
    max-width: 608px
}

.property-managment .content-inner {
    max-width: 100%
}

@media screen and (max-width: 1600px) {
    .video-wrapper-inner {
        height: 33.8vw;
        overflow: hidden
    }
}

@media screen and (max-width: 1024px) {
    body .gradient-heading {
        line-height: 2.3rem
    }

    .video-wrapper-inner {
        height: 480px !important
    }

    .property-managment .video-wrapper-inner {
        height: 480px
    }
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
    .modal-section .img-wrapper img {
        height: 475px;
        width: auto;
        margin: auto
    }

    .gallery-section {
        display: inline-block !important
    }
}

@media screen and (max-width: 640px) {
    .video-wrapper-inner {
        height: 280px !important
    }
}

@media screen and (min-width: 1600px) {
    .video-wrapper-inner {
        height: 540px
    }

    .property-managment .video-wrapper-inner {
        height: 385px;
        width: auto;
        aspect-ratio: 16 / 12
    }
}

.modal-wrapper-outer .modal-wrapper-inner .content-wrapper iframe {
    height: 100%;
    width: 100%
}

.modal-wrapper-outer {
    height: 100vh;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    width: 100%;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    display: none !important;
    padding: 0 80px !important;
    z-index: 9999999999
}

.show-modal {
    display: flex !important
}

.modal-wrapper-outer .modal-wrapper-inner .content-wrapper {
    max-height: calc(100vh - 100px);
    overflow: auto;
    border-radius: .375rem;
    background: #fff;
    box-shadow: 0 0 10px #0000001a
}

.modal-wrapper-outer .modal-wrapper-inner .cross-icon {
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center;
    height: 32px;
    width: 32px;
    right: -9px;
    top: -10px;
    z-index: 30;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='Group_1573' data-name='Group 1573' width='30.342' height='30.342' viewBox='0 0 30.342 30.342'%3E%3Cpath id='Path_2197' data-name='Path 2197' d='M12132.873-869.565l-27.709-27.708,2.635-2.634,27.707,27.708Z' transform='translate(-12105.164 899.907)' fill='%23545454'/%3E%3Cpath id='Path_2198' data-name='Path 2198' d='M12107.8-869.565l-2.635-2.634,27.709-27.708,2.633,2.634Z' transform='translate(-12105.164 899.907)' fill='%23545454'/%3E%3C/svg%3E");
    background-color: #fff;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 0 10px #0000001a
}

.modal-iframe-video .modal-wrapper-inner {
    height: 75vh;
    width: auto;
    aspect-ratio: 16/9
}

.modal-iframe-video .modal-wrapper-inner .content-wrapper {
    padding-top: 56.25% !important;
    height: 0 !important;
    aspect-ratio: 16/9;
    background: transparent
}

.modal-iframe-video .modal-wrapper-inner .content-wrapper iframe {
    position: absolute;
    top: 0;
    height: 101%
}

@media screen and (max-width: 1024px) {
    .modal-wrapper-outer .modal-wrapper-inner .cross-icon {
        height: 21px;
        width: 21px;
        background-size: 10px
    }

    .modal-iframe-video .modal-wrapper-inner {
        width: 95vw;
        height: auto;
        aspect-ratio: 16/9
    }
}

.modal-wrapper-outer .modal-wrapper-inner::-webkit-scrollbar {
    width: 12px
}

.modal-wrapper-outer .modal-wrapper-inner::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #00000080;
    border-radius: 8px;
    border: 2px solid rgb(255, 255, 255)
}

.modal-wrapper-outer .modal-wrapper-inner .content-wrapper {
    height: 100%
}

@media screen and (max-width: 767px) {
    .modal-wrapper-outer {
        padding: 0 40px !important
    }

    .modal-wrapper-outer .modal-wrapper-inner .cross-icon {
        right: 0
    }
}

@media screen and (max-width: 480px) {
    .modal-wrapper-outer {
        padding: 0 20px !important
    }
}

.timeline_indicator ul li {
    margin-bottom: 8px;
    position: relative
}

.reverse-section .left_section .timeline-mesh .date {
    left: -94px;
    display: inline-block
}

.reverse-section .left_section .timeline-mesh .date h2 {
    display: inline-block
}

.our-story-page .property-hero-inner {
    padding-bottom: 70px
}

.our-story-page .property-hero-inner .buttons .btn-primary:not(.pink-btn) {
    border: 1px solid #ffffff;
    color: #fff;
    min-width: 190px
}

.our-story-page .property-hero-inner .buttons .btn-primary:not(.pink-btn):hover {
    border-color: #fffc;
    color: #001e60;
    background-color: #fffc;
    gap: 0
}

.our-story-page .property-hero-inner .buttons .btn-primary:not(.pink-btn):hover svg {
    fill: #001e60;
    transform: translate(10px);
    width: 0px;
    transition: all .25s ease-in-out
}

.timeline_indicator ul li a:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 1px;
    width: 56px;
    background-color: #e0e0e0;
    transition: all .4s
}

.timeline_indicator ul li a.active {
    color: #001e60;
    font-weight: 600;
    transition: all .3s;
    padding-left: 90px
}

.timeline_indicator ul li a.active:before {
    width: 65px;
    background-color: #001e60;
    height: 2px;
    transition: all .4s
}

.reverse-section {
    flex-direction: row-reverse
}

.reverse-section .left_section:after {
    left: -1px
}

.reverse-section .left_section:before {
    left: -5px
}

.reverse-section .left_section {
    padding-left: 190px;
    padding-right: 0 !important
}

.reverse-section .right_section {
    padding-right: 80px;
    padding-left: 0 !important
}

.timeline_indicator {
    display: flex;
    max-height: calc(100vh - 30px);
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
    overflow-y: auto;
    top: 30px !important
}

.timeline_indicator::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 27px #001e60
}

.timeline_indicator::-webkit-scrollbar {
    width: 10px
}

.timeline_indicator ul li a {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #919aac;
    transition: color .3s;
    padding-left: 80px
}

.center-bordered-section h5 {
    font-family: 'Montserrat' !important;
    font-weight: 400
}

.timeline-section .container {
    max-width: 1248px !important
}

.timeline-section .container:not(:first-child) {
    margin-top: 4rem
}

.timeline-mesh .date h2 {
    font-family: 'Montserrat' !important;
    font-style: italic;
    font-weight: 400;
    font-size: 56px;
    line-height: 130%;
    background: transparent;
    -webkit-text-fill-color: #001e60;
    color: #001e60
}

.img-placeholder {
    height: 320px;
    width: 440px;
    max-width: 100%
}

.img-placeholder img {
    height: 100%;
    width: 100%
}

.timeline-mesh .date {
    right: -94px;
    top: 24px
}

.center-bordered-section .left_section {
    padding-right: 190px;
    position: relative
}

.center-bordered-section .left_section:after {
    content: "";
    position: absolute;
    right: 0;
    height: calc(100% + 65px);
    background: #e0e0e0;
    width: 1px;
    top: 0
}

.center-bordered-section .left_section:before {
    content: "";
    position: absolute;
    top: 50px;
    height: 11px;
    width: 11px;
    background: #001e60;
    border-radius: 50%;
    right: -5px;
    z-index: 4
}

.center-bordered-section .right_section {
    padding-left: 80px;
    margin-top: 40px
}

@media screen and (max-width: 1470px) {
    .timeline-section .container {
        padding-left: 150px
    }

    .timeline-section .left_section {
        padding-right: 120px
    }

    .reverse-section .left_section {
        padding-left: 120px
    }
}

@media screen and (max-width: 1024px) {
    .timeline-section .container {
        padding-left: 40px
    }

    .timeline-section .center-bordered-section {
        display: block !important;
        margin-top: 100px
    }

    .timeline-section .center-bordered-section .left_section {
        width: 100%;
        padding-right: 0
    }

    .timeline-section .center-bordered-section.reverse-section .left_section {
        padding-left: 0;
        width: 100%;
        padding-right: 0
    }

    .timeline-section .center-bordered-section .left_section:after {
        display: none
    }

    .timeline-section .center-bordered-section .left_section:before {
        display: none
    }

    .timeline-section .center-bordered-section .right_section {
        width: 100%;
        padding-left: 0;
        margin-top: 15px
    }

    .timeline-section .center-bordered-section .left_section .date {
        position: static;
        margin-bottom: 16px
    }

    .timeline-section .center-bordered-section .left_section .timeline-mesh .img-placeholder {
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
        height: 355px;
        -o-object-fit: cover;
        object-fit: cover
    }

    .timeline-section .center-bordered-section .left_section .timeline-mesh .img-placeholder img {
        height: 355px;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%
    }

    .reverse-section .right_section {
        padding-right: 0
    }

    .timeline_indicator {
        top: 0 !important
    }
}

@media screen and (max-width: 640px) {
    .timeline_indicator ul li a:before {
        width: 20px
    }

    .timeline-section .container {
        padding-left: 10px !important
    }

    .timeline_indicator ul li a {
        padding-left: 30px
    }

    .timeline_indicator ul li a.active:before {
        width: 30px
    }

    .timeline_indicator ul li a.active {
        padding-left: 40px
    }

    .timeline-section .center-bordered-section {
        display: block !important;
        margin-top: 20px !important
    }

    .timeline-section.img-placeholder {
        height: 158px
    }

    .timeline-section .center-bordered-section .left_section .timeline-mesh .img-placeholder {
        height: 155px
    }

    .img-placeholder img {
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: 0px -20px;
        object-position: 0px -20px
    }

    .timeline-section .center-bordered-section .left_section .date {
        margin-bottom: 4px
    }

    .img-placeholder img {
        height: 155px !important;
        width: 100%
    }
}

.awards .center-bordered-section .left_section {
    padding-right: 60px
}

.awards .center-bordered-section .left_section:after {
    display: none
}

.awards .center-bordered-section:not(:last-child) {
    border-bottom: 1px solid #f4f4f4
}

.awards .center-bordered-section .left_section:before {
    display: none
}

.awards .center-bordered-section .img-placeholder {
    height: 160px;
    width: 224px
}

.awards .center-bordered-section .left_section .timeline-mesh .date {
    left: -94px;
    top: 0
}

.awards .center-bordered-section .right_section {
    padding-left: 0;
    margin-top: 0
}

.awards .timeline-section .container {
    max-width: 1112px !important
}

.awards .center-bordered-section h5 {
    font-size: 20px !important
}

@media screen and (max-width: 1300px) {
    .awards .timeline-section .container {
        padding-left: 240px !important
    }
}

@media screen and (max-width: 1024px) {
    .awards .center-bordered-section {
        border: 0 !important
    }

    .awards .timeline-section .center-bordered-section {
        margin-top: 0;
        display: flex !important
    }

    .awards .center-bordered-section .left_section {
        padding-right: 60px
    }

    .awards .center-bordered-section h5 {
        margin-top: 16px
    }

    .awards .center-bordered-section .left_section .timeline-mesh .date {
        position: static !important;
        left: auto;
        top: auto
    }

    .awards .timeline-section .container {
        padding-left: 10px !important
    }
}

@media screen and (max-width: 640px) {
    .awards .timeline-section .center-bordered-section {
        display: block !important
    }

    .awards .center-bordered-section .left_section {
        padding-right: 0
    }

    .awards .timeline-section .container {
        padding-left: 10px !important
    }

    .awards .timeline-section .center-bordered-section {
        margin-top: 52px !important
    }
}

[dir=rtl] .top-nav a {
    direction: ltr
}

[dir=rtl] .timeline_indicator {
    right: 0;
    left: auto
}

[dir=rtl] .timeline_indicator ul li a {
    padding-right: 90px
}

[dir=rtl] .timeline_indicator ul li a:before {
    right: 0;
    left: auto
}

[dir=rtl] .center-bordered-section .left_section {
    padding-left: 190px;
    padding-right: 0
}

[dir=rtl] .center-bordered-section.reverse-section .left_section {
    padding-right: 190px !important;
    padding-left: 0
}

[dir=rtl] .center-bordered-section .right_section {
    padding-right: 80px;
    padding-left: 0
}

[dir=rtl] .center-bordered-section.reverse-section .right_section {
    padding-left: 80px !important;
    padding-right: 0
}

[dir=rtl] .center-bordered-section .left_section:after {
    left: 0;
    right: auto
}

[dir=rtl] .center-bordered-section.reverse-section .left_section:after {
    right: -1px;
    left: auto
}

[dir=rtl] .center-bordered-section.reverse-section .left_section:before {
    right: -5px;
    left: auto
}

[dir=rtl] .timeline-mesh .date {
    left: -94px;
    right: auto
}

[dir=rtl] .center-bordered-section.reverse-section .timeline-mesh .date {
    right: -94px;
    left: auto
}

[dir=rtl] .center-bordered-section .left_section:before {
    left: -5px;
    right: auto
}

[dir=rtl] .mr-5 {
    margin-left: 20px;
    margin-right: 0
}

[dir=rtl] .two-col-layout .video-wrapper {
    padding-right: 140px;
    padding-left: 0
}

[dir=rtl] .reverse-column .video-wrapper {
    padding-left: 140px;
    padding-right: 0
}

[dir=rtl] .accordion p {
    padding-left: 15px;
    padding-right: 0
}

[dir=rtl] footer .footer-blocks {
    padding-left: 1rem !important;
    padding-right: 0rem
}

[dir=rtl] footer .quick-links li:last-child:after {
    display: block
}

[dir=rtl] footer .quick-links li:first-child:after {
    display: none
}

[dir=rtl] .property-hero .share-btn {
    direction: ltr !important
}

[dir=rtl] .breadcrumb-wrapper .inline-flex li:first-child {
    margin-left: 15px
}

[dir=rtl] .breadcrumb-wrapper .inline-flex li a {
    margin-right: .5rem;
    margin-left: 0
}

[dir=rtl] .ending-section-two-col .left-section {
    padding-left: 2rem;
    padding-right: 0rem
}

[dir=rtl] .aside-text {
    text-align: right
}

[dir=rtl] .breadcrumb-wrapper .inline-flex svg {
    transform: rotate(180deg)
}

[dir=rtl] .avatar-box {
    text-align: right
}

[dir=rtl] .utility-buttons .select-filter.rounded-l {
    border-radius: 0 4px 4px 0/0px 4px 4px 0px
}

[dir=rtl] .utility-buttons .select-filter.rounded-r {
    border-radius: 4px 0 0 4px/4px 0px 0px 4px
}

[dir=rtl] .search-results ul li:first-child {
    padding-right: 0;
    padding-left: 16px
}

[dir=rtl] .search-results ul li:first-child:after {
    display: none
}

[dir=rtl] .search-results ul li .recent .mr-2 {
    margin-left: .5rem;
    margin-right: 0
}

[dir=rtl] .wide-tab {
    direction: ltr
}

[dir=rtl] .breadcrumb-wrapper .back-link {
    flex-direction: row-reverse;
    padding-right: 0;
    padding-left: 1rem;
    margin-left: 0 !important
}

[dir=rtl] .counter-list li:after {
    right: 2px;
    left: auto
}

[dir=rtl] .counter-list li:before {
    left: auto;
    right: 0
}

[dir=rtl] .counter-list ul li {
    padding-right: 60px;
    padding-left: 0
}

[dir=rtl] .img-outer {
    left: 0;
    right: auto;
    padding-right: 160px;
    padding-left: 0
}

[dir=rtl] .right-section-50 {
    padding-right: 160px
}

[dir=rtl] .breadcrumb-wrapper .back-link:after {
    left: 0;
    right: auto
}

[dir=rtl] .breadcrumb-wrapper .back-link a {
    margin-right: 10px !important
}

[dir=rtl] .breadcrumb-wrapper .back-link > .flex svg {
    transform: rotate(0) !important
}

[dir=rtl] .left-info-section {
    padding-left: 160px;
    padding-right: 0
}

[dir=rtl] .get-in-touch-wrapper .btn-primary {
    margin-right: 0;
    margin-left: 24px
}

[dir=rtl] .left-news-col {
    padding-left: 120px;
    padding-right: 0
}

@media screen and (max-width: 1470px) {
    [dir=rtl] .timeline-section .container {
        padding-right: 150px;
        padding-left: 0
    }
}

@media screen and (max-width: 1280px) {
    [dir=rtl] .left-news-col {
        padding-right: 0;
        padding-left: 60px
    }

    [dir=rtl] .two-col-layout .video-wrapper {
        padding-right: 40px;
        padding-left: 0
    }

    [dir=rtl] .reverse-column .video-wrapper {
        padding-left: 40px;
        padding-right: 0
    }

    [dir=rtl] .left-info-section {
        padding-left: 30px;
        padding-right: 0
    }
}

@media screen and (max-width: 1024px) {
    [dir=rtl] .no-accent-banner .two-col-layout .video-wrapper {
        padding-right: 0;
        padding-left: 0
    }

    [dir=rtl] .timeline-section .center-bordered-section.reverse-section .left_section {
        padding-right: 0 !important
    }

    [dir=rtl] .center-bordered-section .right_section {
        padding-right: 0
    }

    [dir=rtl] .timeline-section .center-bordered-section .left_section {
        padding-left: 0 !important
    }

    [dir=rtl] .left-news-col {
        padding-right: 0;
        padding-left: 0
    }

    [dir=rtl] .ending-section-two-col .left-section {
        padding-left: 0rem;
        padding-right: 0rem
    }

    [dir=rtl] .reverse-column .video-wrapper {
        padding-left: 0;
        padding-right: 0
    }
}

.sectionTitle {
    color: #000;
    text-align: center;
    letter-spacing: .64px;
    font-size: 40px;
    font-weight: 600;
    border-bottom: 2px solid #004b87;
    padding-bottom: 12px;
    display: inline-block;
    margin-bottom: 10px
}

body {
    overflow-x: hidden
}

.ourQualities {
    color: #000;
    line-height: 1;
    margin: 0
}

.ourQualities h2 {
    color: #000;
    letter-spacing: .64px;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 15px
}

.ourQualities .flexWrapper {
    display: flex;
    justify-content: center;
    position: relative
}

.ourQualities .flexWrapper .leftSide {
    position: sticky;
    top: 10vh;
    left: 0;
    height: 65vh
}

.ourQualities .flexWrapper .leftSide > div {
    opacity: 0;
    z-index: 8;
    transition: opacity .2s linear;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
    width: 100%;
    height: 60vh;
    padding: 3.333vw
}

.ourQualities .flexWrapper .leftSide > div iframe, .ourQualities .flexWrapper .leftSide > div img {
    height: 100% !important;
    width: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px
}

.ourQualities .flexWrapper .leftSide .imagesWrapper {
    top: 40%
}

.ourQualities .flexWrapper .leftSide > div.active {
    opacity: 1
}

.ourQualities .flexWrapper .rightSide {
    flex: 1
}

.ourQualities .flexWrapper .rightSide > div {
    min-height: 73vh;
    padding: 100px 0;
    max-width: 608px
}

.ourQualities .imagesWrapper {
    margin-left: 40px
}

.ourQualities .imagesWrapper > div {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.ourQualities .imagesWrapper > div:nth-child(2) {
    margin-top: 25px;
    margin-bottom: 25px
}

.ourQualities .imagesWrapper > div .image {
    width: 100px;
    min-width: 100px;
    position: relative
}

.ourQualities .imagesWrapper > div .image img {
    max-width: 100%
}

.ourQualities .imagesWrapper > div .image.two {
    bottom: -50px;
    left: -25px
}

.ourQualities .imagesWrapper > div .image.three {
    top: -40px;
    left: -70px
}

.ourQualities .imagesWrapper > div .image.four {
    bottom: -50px;
    left: -110px
}

.ourQualities .imagesWrapper > div .image.five {
    left: -140px
}

.ourQualities .imagesWrapper > div .image.six {
    left: -38px
}

.ourQualities .imagesWrapper > div .image.seven {
    right: 5px
}

.ourQualities .imagesWrapper > div .image.nine {
    top: -50px;
    left: -25px
}

.ourQualities .imagesWrapper > div .image.ten {
    bottom: -40px;
    left: -70px
}

.ourQualities .imagesWrapper > div .image.eleven {
    top: -50px;
    left: -110px
}

.ourQualities .imagesWrapper > div .image.twelve {
    left: -140px
}

.ourQualities .TeamBtn {
    text-align: center;
    position: relative;
    left: -20px
}

.ourQualities .TeamBtn label {
    letter-spacing: .16px;
    color: #fff;
    font-size: 10px;
    font-weight: 400;
    background: #004b87 0% 0% no-repeat padding-box;
    border-radius: 45px;
    padding: 16px 14px 14px;
    margin-bottom: 0;
    font-weight: 300
}

.show-on-991 {
    display: none !important
}

.show-on-991 .image iframe {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.video-rep .image {
    height: 480px
}

.animated-box {
    position: relative;
    display: flex;
    flex-direction: row;
    height: 600px;
    justify-content: space-around;
    width: 100%
}

.animated-box-item {
    opacity: 0;
    position: absolute
}

.animated-box-item:first-child {
    opacity: 1;
    visibility: visible
}

@media screen and (min-width: 1601px) {
    .ourQualities .flexWrapper .rightSide > div:first-child {
        padding-top: 19%
    }
}

@media screen and (max-width: 1024px) {
    .ourQualities {
        text-align: left
    }

    .show-on-991 .image {
        display: flex;
        justify-content: center;
        align-items: center
    }

    .ourQualities .imagesWrapper {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 35px;
        padding-left: 25px;
        max-width: 350px
    }

    .ourQualities .TeamBtn label {
        white-space: nowrap
    }

    .ourQualities .flexWrapper {
        display: block
    }

    .ourQualities .flexWrapper .leftSide {
        display: none
    }

    .ourQualities .flexWrapper .rightSide > div {
        padding-top: 40px;
        padding-bottom: 40px;
        width: 100%;
        max-width: 100%;
        min-height: 0px
    }

    .ourQualities .imagesWrapper > div .image {
        width: 85px;
        min-width: 85px
    }

    .ourQualities .flexWrapper .rightSide img {
        max-width: 100%
    }

    .sectionTitle {
        font-size: 30px;
        margin-bottom: 35px
    }

    .ourQualities h2 {
        font-size: 30px
    }

    .show-on-991 {
        display: block !important
    }
}

@media (max-width: 1023px) {
    .animated-box {
        flex-direction: column;
        height: auto
    }

    .animated-box-item {
        opacity: 1;
        position: static
    }
}

@media screen and (max-width: 640px) {
    .ourQualities .flexWrapper .rightSide > div {
        padding-top: 16px;
        padding-bottom: 16px
    }

    .animated-section .content-inner {
        margin-bottom: 20px;
        margin-top: 32px
    }

    .video-rep .image {
        height: 280px
    }
}

.custom-container {
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;
    position: relative
}

@media only screen and (max-width: 575px) {
    body {
        overflow-x: initial !important
    }

    body.remove-overflow {
        overflow-x: hidden !important
    }

    .hide-scroll .header-wrapper-main {
        position: fixed;
        width: 100%;
        left: 0;
        top: 0;
        z-index: 99;
        background-color: #fff
    }
}

[data-aos][data-aos][data-aos-duration="50"], body[data-aos-duration="50"] [data-aos] {
    transition-duration: 50ms
}

[data-aos][data-aos][data-aos-delay="50"], body[data-aos-delay="50"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="50"].aos-animate, body[data-aos-delay="50"] [data-aos].aos-animate {
    transition-delay: 50ms
}

[data-aos][data-aos][data-aos-duration="100"], body[data-aos-duration="100"] [data-aos] {
    transition-duration: .1s
}

[data-aos][data-aos][data-aos-delay="100"], body[data-aos-delay="100"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate, body[data-aos-delay="100"] [data-aos].aos-animate {
    transition-delay: .1s
}

[data-aos][data-aos][data-aos-duration="150"], body[data-aos-duration="150"] [data-aos] {
    transition-duration: .15s
}

[data-aos][data-aos][data-aos-delay="150"], body[data-aos-delay="150"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="150"].aos-animate, body[data-aos-delay="150"] [data-aos].aos-animate {
    transition-delay: .15s
}

[data-aos][data-aos][data-aos-duration="200"], body[data-aos-duration="200"] [data-aos] {
    transition-duration: .2s
}

[data-aos][data-aos][data-aos-delay="200"], body[data-aos-delay="200"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="200"].aos-animate, body[data-aos-delay="200"] [data-aos].aos-animate {
    transition-delay: .2s
}

[data-aos][data-aos][data-aos-duration="250"], body[data-aos-duration="250"] [data-aos] {
    transition-duration: .25s
}

[data-aos][data-aos][data-aos-delay="250"], body[data-aos-delay="250"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="250"].aos-animate, body[data-aos-delay="250"] [data-aos].aos-animate {
    transition-delay: .25s
}

[data-aos][data-aos][data-aos-duration="300"], body[data-aos-duration="300"] [data-aos] {
    transition-duration: .3s
}

[data-aos][data-aos][data-aos-delay="300"], body[data-aos-delay="300"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate, body[data-aos-delay="300"] [data-aos].aos-animate {
    transition-delay: .3s
}

[data-aos][data-aos][data-aos-duration="350"], body[data-aos-duration="350"] [data-aos] {
    transition-duration: .35s
}

[data-aos][data-aos][data-aos-delay="350"], body[data-aos-delay="350"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="350"].aos-animate, body[data-aos-delay="350"] [data-aos].aos-animate {
    transition-delay: .35s
}

[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
    transition-duration: .4s
}

[data-aos][data-aos][data-aos-delay="400"], body[data-aos-delay="400"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate, body[data-aos-delay="400"] [data-aos].aos-animate {
    transition-delay: .4s
}

[data-aos][data-aos][data-aos-duration="450"], body[data-aos-duration="450"] [data-aos] {
    transition-duration: .45s
}

[data-aos][data-aos][data-aos-delay="450"], body[data-aos-delay="450"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="450"].aos-animate, body[data-aos-delay="450"] [data-aos].aos-animate {
    transition-delay: .45s
}

[data-aos][data-aos][data-aos-duration="500"], body[data-aos-duration="500"] [data-aos] {
    transition-duration: .5s
}

[data-aos][data-aos][data-aos-delay="500"], body[data-aos-delay="500"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="500"].aos-animate, body[data-aos-delay="500"] [data-aos].aos-animate {
    transition-delay: .5s
}

[data-aos][data-aos][data-aos-duration="550"], body[data-aos-duration="550"] [data-aos] {
    transition-duration: .55s
}

[data-aos][data-aos][data-aos-delay="550"], body[data-aos-delay="550"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="550"].aos-animate, body[data-aos-delay="550"] [data-aos].aos-animate {
    transition-delay: .55s
}

[data-aos][data-aos][data-aos-duration="600"], body[data-aos-duration="600"] [data-aos] {
    transition-duration: .6s
}

[data-aos][data-aos][data-aos-delay="600"], body[data-aos-delay="600"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="600"].aos-animate, body[data-aos-delay="600"] [data-aos].aos-animate {
    transition-delay: .6s
}

[data-aos][data-aos][data-aos-duration="650"], body[data-aos-duration="650"] [data-aos] {
    transition-duration: .65s
}

[data-aos][data-aos][data-aos-delay="650"], body[data-aos-delay="650"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="650"].aos-animate, body[data-aos-delay="650"] [data-aos].aos-animate {
    transition-delay: .65s
}

[data-aos][data-aos][data-aos-duration="700"], body[data-aos-duration="700"] [data-aos] {
    transition-duration: .7s
}

[data-aos][data-aos][data-aos-delay="700"], body[data-aos-delay="700"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="700"].aos-animate, body[data-aos-delay="700"] [data-aos].aos-animate {
    transition-delay: .7s
}

[data-aos][data-aos][data-aos-duration="750"], body[data-aos-duration="750"] [data-aos] {
    transition-duration: .75s
}

[data-aos][data-aos][data-aos-delay="750"], body[data-aos-delay="750"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="750"].aos-animate, body[data-aos-delay="750"] [data-aos].aos-animate {
    transition-delay: .75s
}

[data-aos][data-aos][data-aos-duration="800"], body[data-aos-duration="800"] [data-aos] {
    transition-duration: .8s
}

[data-aos][data-aos][data-aos-delay="800"], body[data-aos-delay="800"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="800"].aos-animate, body[data-aos-delay="800"] [data-aos].aos-animate {
    transition-delay: .8s
}

[data-aos][data-aos][data-aos-duration="850"], body[data-aos-duration="850"] [data-aos] {
    transition-duration: .85s
}

[data-aos][data-aos][data-aos-delay="850"], body[data-aos-delay="850"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="850"].aos-animate, body[data-aos-delay="850"] [data-aos].aos-animate {
    transition-delay: .85s
}

[data-aos][data-aos][data-aos-duration="900"], body[data-aos-duration="900"] [data-aos] {
    transition-duration: .9s
}

[data-aos][data-aos][data-aos-delay="900"], body[data-aos-delay="900"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="900"].aos-animate, body[data-aos-delay="900"] [data-aos].aos-animate {
    transition-delay: .9s
}

[data-aos][data-aos][data-aos-duration="950"], body[data-aos-duration="950"] [data-aos] {
    transition-duration: .95s
}

[data-aos][data-aos][data-aos-delay="950"], body[data-aos-delay="950"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="950"].aos-animate, body[data-aos-delay="950"] [data-aos].aos-animate {
    transition-delay: .95s
}

[data-aos][data-aos][data-aos-duration="1000"], body[data-aos-duration="1000"] [data-aos] {
    transition-duration: 1s
}

[data-aos][data-aos][data-aos-delay="1000"], body[data-aos-delay="1000"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1000"].aos-animate, body[data-aos-delay="1000"] [data-aos].aos-animate {
    transition-delay: 1s
}

[data-aos][data-aos][data-aos-duration="1050"], body[data-aos-duration="1050"] [data-aos] {
    transition-duration: 1.05s
}

[data-aos][data-aos][data-aos-delay="1050"], body[data-aos-delay="1050"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1050"].aos-animate, body[data-aos-delay="1050"] [data-aos].aos-animate {
    transition-delay: 1.05s
}

[data-aos][data-aos][data-aos-duration="1100"], body[data-aos-duration="1100"] [data-aos] {
    transition-duration: 1.1s
}

[data-aos][data-aos][data-aos-delay="1100"], body[data-aos-delay="1100"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1100"].aos-animate, body[data-aos-delay="1100"] [data-aos].aos-animate {
    transition-delay: 1.1s
}

[data-aos][data-aos][data-aos-duration="1150"], body[data-aos-duration="1150"] [data-aos] {
    transition-duration: 1.15s
}

[data-aos][data-aos][data-aos-delay="1150"], body[data-aos-delay="1150"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1150"].aos-animate, body[data-aos-delay="1150"] [data-aos].aos-animate {
    transition-delay: 1.15s
}

[data-aos][data-aos][data-aos-duration="1200"], body[data-aos-duration="1200"] [data-aos] {
    transition-duration: 1.2s
}

[data-aos][data-aos][data-aos-delay="1200"], body[data-aos-delay="1200"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1200"].aos-animate, body[data-aos-delay="1200"] [data-aos].aos-animate {
    transition-delay: 1.2s
}

[data-aos][data-aos][data-aos-duration="1250"], body[data-aos-duration="1250"] [data-aos] {
    transition-duration: 1.25s
}

[data-aos][data-aos][data-aos-delay="1250"], body[data-aos-delay="1250"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1250"].aos-animate, body[data-aos-delay="1250"] [data-aos].aos-animate {
    transition-delay: 1.25s
}

[data-aos][data-aos][data-aos-duration="1300"], body[data-aos-duration="1300"] [data-aos] {
    transition-duration: 1.3s
}

[data-aos][data-aos][data-aos-delay="1300"], body[data-aos-delay="1300"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1300"].aos-animate, body[data-aos-delay="1300"] [data-aos].aos-animate {
    transition-delay: 1.3s
}

[data-aos][data-aos][data-aos-duration="1350"], body[data-aos-duration="1350"] [data-aos] {
    transition-duration: 1.35s
}

[data-aos][data-aos][data-aos-delay="1350"], body[data-aos-delay="1350"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1350"].aos-animate, body[data-aos-delay="1350"] [data-aos].aos-animate {
    transition-delay: 1.35s
}

[data-aos][data-aos][data-aos-duration="1400"], body[data-aos-duration="1400"] [data-aos] {
    transition-duration: 1.4s
}

[data-aos][data-aos][data-aos-delay="1400"], body[data-aos-delay="1400"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1400"].aos-animate, body[data-aos-delay="1400"] [data-aos].aos-animate {
    transition-delay: 1.4s
}

[data-aos][data-aos][data-aos-duration="1450"], body[data-aos-duration="1450"] [data-aos] {
    transition-duration: 1.45s
}

[data-aos][data-aos][data-aos-delay="1450"], body[data-aos-delay="1450"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1450"].aos-animate, body[data-aos-delay="1450"] [data-aos].aos-animate {
    transition-delay: 1.45s
}

[data-aos][data-aos][data-aos-duration="1500"], body[data-aos-duration="1500"] [data-aos] {
    transition-duration: 1.5s
}

[data-aos][data-aos][data-aos-delay="1500"], body[data-aos-delay="1500"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1500"].aos-animate, body[data-aos-delay="1500"] [data-aos].aos-animate {
    transition-delay: 1.5s
}

[data-aos][data-aos][data-aos-duration="1550"], body[data-aos-duration="1550"] [data-aos] {
    transition-duration: 1.55s
}

[data-aos][data-aos][data-aos-delay="1550"], body[data-aos-delay="1550"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1550"].aos-animate, body[data-aos-delay="1550"] [data-aos].aos-animate {
    transition-delay: 1.55s
}

[data-aos][data-aos][data-aos-duration="1600"], body[data-aos-duration="1600"] [data-aos] {
    transition-duration: 1.6s
}

[data-aos][data-aos][data-aos-delay="1600"], body[data-aos-delay="1600"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1600"].aos-animate, body[data-aos-delay="1600"] [data-aos].aos-animate {
    transition-delay: 1.6s
}

[data-aos][data-aos][data-aos-duration="1650"], body[data-aos-duration="1650"] [data-aos] {
    transition-duration: 1.65s
}

[data-aos][data-aos][data-aos-delay="1650"], body[data-aos-delay="1650"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1650"].aos-animate, body[data-aos-delay="1650"] [data-aos].aos-animate {
    transition-delay: 1.65s
}

[data-aos][data-aos][data-aos-duration="1700"], body[data-aos-duration="1700"] [data-aos] {
    transition-duration: 1.7s
}

[data-aos][data-aos][data-aos-delay="1700"], body[data-aos-delay="1700"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1700"].aos-animate, body[data-aos-delay="1700"] [data-aos].aos-animate {
    transition-delay: 1.7s
}

[data-aos][data-aos][data-aos-duration="1750"], body[data-aos-duration="1750"] [data-aos] {
    transition-duration: 1.75s
}

[data-aos][data-aos][data-aos-delay="1750"], body[data-aos-delay="1750"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1750"].aos-animate, body[data-aos-delay="1750"] [data-aos].aos-animate {
    transition-delay: 1.75s
}

[data-aos][data-aos][data-aos-duration="1800"], body[data-aos-duration="1800"] [data-aos] {
    transition-duration: 1.8s
}

[data-aos][data-aos][data-aos-delay="1800"], body[data-aos-delay="1800"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1800"].aos-animate, body[data-aos-delay="1800"] [data-aos].aos-animate {
    transition-delay: 1.8s
}

[data-aos][data-aos][data-aos-duration="1850"], body[data-aos-duration="1850"] [data-aos] {
    transition-duration: 1.85s
}

[data-aos][data-aos][data-aos-delay="1850"], body[data-aos-delay="1850"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1850"].aos-animate, body[data-aos-delay="1850"] [data-aos].aos-animate {
    transition-delay: 1.85s
}

[data-aos][data-aos][data-aos-duration="1900"], body[data-aos-duration="1900"] [data-aos] {
    transition-duration: 1.9s
}

[data-aos][data-aos][data-aos-delay="1900"], body[data-aos-delay="1900"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1900"].aos-animate, body[data-aos-delay="1900"] [data-aos].aos-animate {
    transition-delay: 1.9s
}

[data-aos][data-aos][data-aos-duration="1950"], body[data-aos-duration="1950"] [data-aos] {
    transition-duration: 1.95s
}

[data-aos][data-aos][data-aos-delay="1950"], body[data-aos-delay="1950"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="1950"].aos-animate, body[data-aos-delay="1950"] [data-aos].aos-animate {
    transition-delay: 1.95s
}

[data-aos][data-aos][data-aos-duration="2000"], body[data-aos-duration="2000"] [data-aos] {
    transition-duration: 2s
}

[data-aos][data-aos][data-aos-delay="2000"], body[data-aos-delay="2000"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2000"].aos-animate, body[data-aos-delay="2000"] [data-aos].aos-animate {
    transition-delay: 2s
}

[data-aos][data-aos][data-aos-duration="2050"], body[data-aos-duration="2050"] [data-aos] {
    transition-duration: 2.05s
}

[data-aos][data-aos][data-aos-delay="2050"], body[data-aos-delay="2050"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2050"].aos-animate, body[data-aos-delay="2050"] [data-aos].aos-animate {
    transition-delay: 2.05s
}

[data-aos][data-aos][data-aos-duration="2100"], body[data-aos-duration="2100"] [data-aos] {
    transition-duration: 2.1s
}

[data-aos][data-aos][data-aos-delay="2100"], body[data-aos-delay="2100"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2100"].aos-animate, body[data-aos-delay="2100"] [data-aos].aos-animate {
    transition-delay: 2.1s
}

[data-aos][data-aos][data-aos-duration="2150"], body[data-aos-duration="2150"] [data-aos] {
    transition-duration: 2.15s
}

[data-aos][data-aos][data-aos-delay="2150"], body[data-aos-delay="2150"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2150"].aos-animate, body[data-aos-delay="2150"] [data-aos].aos-animate {
    transition-delay: 2.15s
}

[data-aos][data-aos][data-aos-duration="2200"], body[data-aos-duration="2200"] [data-aos] {
    transition-duration: 2.2s
}

[data-aos][data-aos][data-aos-delay="2200"], body[data-aos-delay="2200"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2200"].aos-animate, body[data-aos-delay="2200"] [data-aos].aos-animate {
    transition-delay: 2.2s
}

[data-aos][data-aos][data-aos-duration="2250"], body[data-aos-duration="2250"] [data-aos] {
    transition-duration: 2.25s
}

[data-aos][data-aos][data-aos-delay="2250"], body[data-aos-delay="2250"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2250"].aos-animate, body[data-aos-delay="2250"] [data-aos].aos-animate {
    transition-delay: 2.25s
}

[data-aos][data-aos][data-aos-duration="2300"], body[data-aos-duration="2300"] [data-aos] {
    transition-duration: 2.3s
}

[data-aos][data-aos][data-aos-delay="2300"], body[data-aos-delay="2300"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2300"].aos-animate, body[data-aos-delay="2300"] [data-aos].aos-animate {
    transition-delay: 2.3s
}

[data-aos][data-aos][data-aos-duration="2350"], body[data-aos-duration="2350"] [data-aos] {
    transition-duration: 2.35s
}

[data-aos][data-aos][data-aos-delay="2350"], body[data-aos-delay="2350"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2350"].aos-animate, body[data-aos-delay="2350"] [data-aos].aos-animate {
    transition-delay: 2.35s
}

[data-aos][data-aos][data-aos-duration="2400"], body[data-aos-duration="2400"] [data-aos] {
    transition-duration: 2.4s
}

[data-aos][data-aos][data-aos-delay="2400"], body[data-aos-delay="2400"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2400"].aos-animate, body[data-aos-delay="2400"] [data-aos].aos-animate {
    transition-delay: 2.4s
}

[data-aos][data-aos][data-aos-duration="2450"], body[data-aos-duration="2450"] [data-aos] {
    transition-duration: 2.45s
}

[data-aos][data-aos][data-aos-delay="2450"], body[data-aos-delay="2450"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2450"].aos-animate, body[data-aos-delay="2450"] [data-aos].aos-animate {
    transition-delay: 2.45s
}

[data-aos][data-aos][data-aos-duration="2500"], body[data-aos-duration="2500"] [data-aos] {
    transition-duration: 2.5s
}

[data-aos][data-aos][data-aos-delay="2500"], body[data-aos-delay="2500"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2500"].aos-animate, body[data-aos-delay="2500"] [data-aos].aos-animate {
    transition-delay: 2.5s
}

[data-aos][data-aos][data-aos-duration="2550"], body[data-aos-duration="2550"] [data-aos] {
    transition-duration: 2.55s
}

[data-aos][data-aos][data-aos-delay="2550"], body[data-aos-delay="2550"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2550"].aos-animate, body[data-aos-delay="2550"] [data-aos].aos-animate {
    transition-delay: 2.55s
}

[data-aos][data-aos][data-aos-duration="2600"], body[data-aos-duration="2600"] [data-aos] {
    transition-duration: 2.6s
}

[data-aos][data-aos][data-aos-delay="2600"], body[data-aos-delay="2600"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2600"].aos-animate, body[data-aos-delay="2600"] [data-aos].aos-animate {
    transition-delay: 2.6s
}

[data-aos][data-aos][data-aos-duration="2650"], body[data-aos-duration="2650"] [data-aos] {
    transition-duration: 2.65s
}

[data-aos][data-aos][data-aos-delay="2650"], body[data-aos-delay="2650"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2650"].aos-animate, body[data-aos-delay="2650"] [data-aos].aos-animate {
    transition-delay: 2.65s
}

[data-aos][data-aos][data-aos-duration="2700"], body[data-aos-duration="2700"] [data-aos] {
    transition-duration: 2.7s
}

[data-aos][data-aos][data-aos-delay="2700"], body[data-aos-delay="2700"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2700"].aos-animate, body[data-aos-delay="2700"] [data-aos].aos-animate {
    transition-delay: 2.7s
}

[data-aos][data-aos][data-aos-duration="2750"], body[data-aos-duration="2750"] [data-aos] {
    transition-duration: 2.75s
}

[data-aos][data-aos][data-aos-delay="2750"], body[data-aos-delay="2750"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2750"].aos-animate, body[data-aos-delay="2750"] [data-aos].aos-animate {
    transition-delay: 2.75s
}

[data-aos][data-aos][data-aos-duration="2800"], body[data-aos-duration="2800"] [data-aos] {
    transition-duration: 2.8s
}

[data-aos][data-aos][data-aos-delay="2800"], body[data-aos-delay="2800"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2800"].aos-animate, body[data-aos-delay="2800"] [data-aos].aos-animate {
    transition-delay: 2.8s
}

[data-aos][data-aos][data-aos-duration="2850"], body[data-aos-duration="2850"] [data-aos] {
    transition-duration: 2.85s
}

[data-aos][data-aos][data-aos-delay="2850"], body[data-aos-delay="2850"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2850"].aos-animate, body[data-aos-delay="2850"] [data-aos].aos-animate {
    transition-delay: 2.85s
}

[data-aos][data-aos][data-aos-duration="2900"], body[data-aos-duration="2900"] [data-aos] {
    transition-duration: 2.9s
}

[data-aos][data-aos][data-aos-delay="2900"], body[data-aos-delay="2900"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2900"].aos-animate, body[data-aos-delay="2900"] [data-aos].aos-animate {
    transition-delay: 2.9s
}

[data-aos][data-aos][data-aos-duration="2950"], body[data-aos-duration="2950"] [data-aos] {
    transition-duration: 2.95s
}

[data-aos][data-aos][data-aos-delay="2950"], body[data-aos-delay="2950"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="2950"].aos-animate, body[data-aos-delay="2950"] [data-aos].aos-animate {
    transition-delay: 2.95s
}

[data-aos][data-aos][data-aos-duration="3000"], body[data-aos-duration="3000"] [data-aos] {
    transition-duration: 3s
}

[data-aos][data-aos][data-aos-delay="3000"], body[data-aos-delay="3000"] [data-aos] {
    transition-delay: 0s
}

[data-aos][data-aos][data-aos-delay="3000"].aos-animate, body[data-aos-delay="3000"] [data-aos].aos-animate {
    transition-delay: 3s
}

[data-aos] {
    pointer-events: none
}

[data-aos].aos-animate {
    pointer-events: auto
}

[data-aos][data-aos][data-aos-easing=linear], body[data-aos-easing=linear] [data-aos] {
    transition-timing-function: cubic-bezier(.25, .25, .75, .75)
}

[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
    transition-timing-function: ease
}

[data-aos][data-aos][data-aos-easing=ease-in], body[data-aos-easing=ease-in] [data-aos] {
    transition-timing-function: ease-in
}

[data-aos][data-aos][data-aos-easing=ease-out], body[data-aos-easing=ease-out] [data-aos] {
    transition-timing-function: ease-out
}

[data-aos][data-aos][data-aos-easing=ease-in-out], body[data-aos-easing=ease-in-out] [data-aos] {
    transition-timing-function: ease-in-out
}

[data-aos][data-aos][data-aos-easing=ease-in-back], body[data-aos-easing=ease-in-back] [data-aos] {
    transition-timing-function: cubic-bezier(.6, -.28, .735, .045)
}

[data-aos][data-aos][data-aos-easing=ease-out-back], body[data-aos-easing=ease-out-back] [data-aos] {
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.275)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-back], body[data-aos-easing=ease-in-out-back] [data-aos] {
    transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55)
}

[data-aos][data-aos][data-aos-easing=ease-in-sine], body[data-aos-easing=ease-in-sine] [data-aos] {
    transition-timing-function: cubic-bezier(.47, 0, .745, .715)
}

[data-aos][data-aos][data-aos-easing=ease-out-sine], body[data-aos-easing=ease-out-sine] [data-aos] {
    transition-timing-function: cubic-bezier(.39, .575, .565, 1)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-sine], body[data-aos-easing=ease-in-out-sine] [data-aos] {
    transition-timing-function: cubic-bezier(.445, .05, .55, .95)
}

[data-aos][data-aos][data-aos-easing=ease-in-quad], body[data-aos-easing=ease-in-quad] [data-aos] {
    transition-timing-function: cubic-bezier(.55, .085, .68, .53)
}

[data-aos][data-aos][data-aos-easing=ease-out-quad], body[data-aos-easing=ease-out-quad] [data-aos] {
    transition-timing-function: cubic-bezier(.25, .46, .45, .94)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quad], body[data-aos-easing=ease-in-out-quad] [data-aos] {
    transition-timing-function: cubic-bezier(.455, .03, .515, .955)
}

[data-aos][data-aos][data-aos-easing=ease-in-cubic], body[data-aos-easing=ease-in-cubic] [data-aos] {
    transition-timing-function: cubic-bezier(.55, .085, .68, .53)
}

[data-aos][data-aos][data-aos-easing=ease-out-cubic], body[data-aos-easing=ease-out-cubic] [data-aos] {
    transition-timing-function: cubic-bezier(.25, .46, .45, .94)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic], body[data-aos-easing=ease-in-out-cubic] [data-aos] {
    transition-timing-function: cubic-bezier(.455, .03, .515, .955)
}

[data-aos][data-aos][data-aos-easing=ease-in-quart], body[data-aos-easing=ease-in-quart] [data-aos] {
    transition-timing-function: cubic-bezier(.55, .085, .68, .53)
}

[data-aos][data-aos][data-aos-easing=ease-out-quart], body[data-aos-easing=ease-out-quart] [data-aos] {
    transition-timing-function: cubic-bezier(.25, .46, .45, .94)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quart], body[data-aos-easing=ease-in-out-quart] [data-aos] {
    transition-timing-function: cubic-bezier(.455, .03, .515, .955)
}

@media screen {
    html:not(.no-js) [data-aos^=fade][data-aos^=fade] {
        opacity: 0;
        transition-property: opacity, transform
    }

    html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate {
        opacity: 1;
        transform: none
    }

    html:not(.no-js) [data-aos=fade-up] {
        transform: translate3d(0, 100px, 0)
    }

    html:not(.no-js) [data-aos=fade-down] {
        transform: translate3d(0, -100px, 0)
    }

    html:not(.no-js) [data-aos=fade-right] {
        transform: translate3d(-100px, 0, 0)
    }

    html:not(.no-js) [data-aos=fade-left] {
        transform: translate3d(100px, 0, 0)
    }

    html:not(.no-js) [data-aos=fade-up-right] {
        transform: translate3d(-100px, 100px, 0)
    }

    html:not(.no-js) [data-aos=fade-up-left] {
        transform: translate3d(100px, 100px, 0)
    }

    html:not(.no-js) [data-aos=fade-down-right] {
        transform: translate3d(-100px, -100px, 0)
    }

    html:not(.no-js) [data-aos=fade-down-left] {
        transform: translate3d(100px, -100px, 0)
    }

    html:not(.no-js) [data-aos^=zoom][data-aos^=zoom] {
        opacity: 0;
        transition-property: opacity, transform
    }

    html:not(.no-js) [data-aos^=zoom][data-aos^=zoom].aos-animate {
        opacity: 1;
        transform: translateZ(0) scale(1)
    }

    html:not(.no-js) [data-aos=zoom-in] {
        transform: scale(.6)
    }

    html:not(.no-js) [data-aos=zoom-in-up] {
        transform: translate3d(0, 100px, 0) scale(.6)
    }

    html:not(.no-js) [data-aos=zoom-in-down] {
        transform: translate3d(0, -100px, 0) scale(.6)
    }

    html:not(.no-js) [data-aos=zoom-in-right] {
        transform: translate3d(-100px, 0, 0) scale(.6)
    }

    html:not(.no-js) [data-aos=zoom-in-left] {
        transform: translate3d(100px, 0, 0) scale(.6)
    }

    html:not(.no-js) [data-aos=zoom-out] {
        transform: scale(1.2)
    }

    html:not(.no-js) [data-aos=zoom-out-up] {
        transform: translate3d(0, 100px, 0) scale(1.2)
    }

    html:not(.no-js) [data-aos=zoom-out-down] {
        transform: translate3d(0, -100px, 0) scale(1.2)
    }

    html:not(.no-js) [data-aos=zoom-out-right] {
        transform: translate3d(-100px, 0, 0) scale(1.2)
    }

    html:not(.no-js) [data-aos=zoom-out-left] {
        transform: translate3d(100px, 0, 0) scale(1.2)
    }

    html:not(.no-js) [data-aos^=slide][data-aos^=slide] {
        transition-property: transform;
        visibility: hidden
    }

    html:not(.no-js) [data-aos^=slide][data-aos^=slide].aos-animate {
        visibility: visible;
        transform: translateZ(0)
    }

    html:not(.no-js) [data-aos=slide-up] {
        transform: translate3d(0, 100%, 0)
    }

    html:not(.no-js) [data-aos=slide-down] {
        transform: translate3d(0, -100%, 0)
    }

    html:not(.no-js) [data-aos=slide-right] {
        transform: translate3d(-100%, 0, 0)
    }

    html:not(.no-js) [data-aos=slide-left] {
        transform: translate3d(100%, 0, 0)
    }

    html:not(.no-js) [data-aos^=flip][data-aos^=flip] {
        backface-visibility: hidden;
        transition-property: transform
    }

    html:not(.no-js) [data-aos=flip-left] {
        transform: perspective(2500px) rotateY(-100deg)
    }

    html:not(.no-js) [data-aos=flip-left].aos-animate {
        transform: perspective(2500px) rotateY(0)
    }

    html:not(.no-js) [data-aos=flip-right] {
        transform: perspective(2500px) rotateY(100deg)
    }

    html:not(.no-js) [data-aos=flip-right].aos-animate {
        transform: perspective(2500px) rotateY(0)
    }

    html:not(.no-js) [data-aos=flip-up] {
        transform: perspective(2500px) rotateX(-100deg)
    }

    html:not(.no-js) [data-aos=flip-up].aos-animate {
        transform: perspective(2500px) rotateX(0)
    }

    html:not(.no-js) [data-aos=flip-down] {
        transform: perspective(2500px) rotateX(100deg)
    }

    html:not(.no-js) [data-aos=flip-down].aos-animate {
        transform: perspective(2500px) rotateX(0)
    }
}

.prime-header-blue {
    background-color: #171d45
}

.prime-header-blue .list-wrapper li svg {
    filter: brightness(0) invert(1)
}

.prime-page-1 .testimononial-card .image-wrapper-avatar {
    height: 480px;
    width: 480px
}

.prime-page-1 .testimonials-section .testimononial-card {
    background: transparent;
    box-shadow: none
}

.prime-header-blue .header-wrapper-main .line {
    background: #ffffff
}

.prime-header-blue .header-wrapper-main .bottom-nav > ul > li > a {
    color: #fff !important;
    position: relative
}

.prime-header-blue .header-wrapper-main .bottom-nav > ul > li > a:hover:after {
    width: 100%;
    transition: all .3s ease-in-out;
    right: auto;
    left: 0
}

.prime-header-blue .header-wrapper-main .top-nav ul li a {
    color: #fff !important
}

.prime-header-blue .header-wrapper-main .top-nav ul li a svg {
    filter: brightness(0) invert(1)
}

.prime-header-blue .header-wrapper-main .nav-btn {
    color: #fff
}

.prime-header-blue .header-wrapper-main .nav-btn:after {
    background: #dea36d
}

.prime-hero-section-full .hero-inner {
    height: calc(100vh - 120px)
}

.prime-hero-section-full .hero-inner img {
    height: 100%;
    width: 100%
}

.multi-color-bg-section {
    background: linear-gradient(to bottom, #171d45 60%, #ffffff 40%);
    background-size: cover
}

.multi-color-bg-section .h2 {
    -webkit-text-fill-color: #ffffff
}

.multi-color-bg-section p {
    color: #fff
}

.wrapper-img {
    height: 500px
}

.horizontal-gallery-inner .third-gallery {
    transform: translate(-75px)
}

.horizontal-gallery-inner .single-column .img-wrapper {
    width: 536px;
    height: 392px
}

.horizontal-gallery-inner .infiniteslide_wrap {
    padding-top: 16px;
    padding-bottom: 5px
}

.horizontal-gallery-inner .single-column .img-wrapper:hover {
    transform: scale(1.02)
}

.prime-page-2 .wrapper-img img {
    height: 100%;
    width: 100%
}

.prime-page-2 .testimonials-slider-wrapper-outer .img-container {
    height: 322px;
    width: 100%
}

.prime-page-2 .button-group .select-filter:first-child {
    border: 1px solid
}

.prime-page-2 .testimonials-slider-wrapper-outer .slider-card {
    box-shadow: 0 0 1px #0003, 0 1px 1px #0000000f, 0 2px 6px #0000000f
}

.prime-page-2 .testimonials-slider-wrapper-outer .slider-details {
    border-radius: 0 0 4px 4px/0px 0px 4px 4px
}

.prime-page .testimonials-slider-wrapper-outer .img-container img {
    height: 100%;
    width: 100%
}

.linda-mahoney-section h2 {
    -webkit-text-fill-color: #ffffff
}

.linda-mahoney-section .linda-mahoney-image {
    height: 43.6vw;
    border-radius: 8px;
    overflow: hidden
}

.linda-mahoney-section .linda-mahoney-image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media screen and (max-width: 1024px) {
    .prime-hero-section-full .hero-inner {
        height: 480px
    }

    .wrapper-img {
        height: 400px
    }

    .multi-slider-wrap {
        height: 450px
    }

    .prime-page-2 .swiper-pagination {
        text-align: left;
        display: block !important
    }

    .horizontal-gallery-inner .single-column .img-wrapper {
        width: 400px;
        height: 280px
    }
}

@media screen and (max-width: 640px) {
    .wrapper-img {
        height: 320px
    }

    .prime-hero-section-full .hero-inner {
        height: 350px
    }

    .horizontal-gallery-inner .single-column .img-wrapper {
        width: 300px;
        height: 200px
    }

    .multi-slider-wrap {
        height: 350px
    }
}

.tab {
    border: 0px;
    outline: none;
    padding: 12px;
    font-size: 10px;
    color: var(--grey-primary);
    background: #f4f4f4;
    border-radius: .24rem;
    text-transform: uppercase;
    font-family: 'Montserrat' !important;
    cursor: pointer;
    letter-spacing: 1px;
    align-items: center
}

.inspiration-section .tabs-wrapper .tab {
    font-family: 'Montserrat' !important;
    letter-spacing: .1em;
    font-weight: 400;
    border: 1px solid transparent
}

.tab:hover {
    background-color: #e9eaec !important
}

.tab span {
    line-height: 11px
}

.gallery-slider-section .swiper {
    width: 100%;
    height: 371px
}

.image-wrapper {
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    height: 174px
}

.swiper-pagination {
    display: none
}

.first-slide {
    height: 367px !important
}

.image-wrapper:after {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    z-index: 0;
    opacity: 1;
    background: linear-gradient(0deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), linear-gradient(360deg, rgba(0, 0, 0, .4) 0%, rgba(0, 0, 0, 0) 23.39%)
}

.image-wrapper:hover:after {
    opacity: 0;
    visibility: hidden;
    transition: all .3s
}

.image-wrapper .image-caption {
    left: 24px;
    bottom: 24px;
    z-index: 2
}

.image-wrapper .image-caption p {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat';
}

.image-wrapper img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media screen and (max-width: 1024px) {
    .swiper-pagination {
        display: block;
        bottom: 0 !important
    }

    .swiper-pagination .swiper-pagination-bullet {
        border: 2px solid #e0e0e0;
        background-color: transparent;
        cursor: pointer;
        opacity: 1
    }

    .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        border: 2px solid var(--primary-blue)
    }

    .gallery-slider-section .swiper {
        width: 100%;
        height: 420px
    }

    .trustedSwiper .swiper-pagination {
        bottom: -25px !important;
        text-align: left
    }
}

@media screen and (max-width: 600px) {
    .tab {
        padding: 10px
    }
}

@media screen and (max-width: 575px) {
    .swiper-pagination {
        display: none
    }

    .gallery-slider-section .swiper-wrapper {
        display: block !important;
        transform: translateZ(0) !important
    }

    .gallery-slider-section .swiper {
        height: 100%
    }

    .first-slide {
        height: 158px !important;
        width: auto !important
    }

    .gallery-slider-section .swiper-slide {
        display: flex;
        margin-right: 0 !important;
        margin-top: 1rem !important;
        gap: 1rem
    }

    .swiper-slide:first-child {
        margin-top: 0 !important
    }

    .swiper-slide .mt-5 {
        margin-top: 0
    }

    .image-wrapper {
        height: 116px;
        width: 50%
    }

    .image-wrapper .image-caption p {
        font-size: 14px !important
    }

    .image-wrapper .image-caption {
        left: 16px;
        bottom: 16px
    }

    .trustedSwiper .swiper-pagination {
        display: block
    }
}

.area-tab.active {
    color: #001e60;
    background-color: transparent !important;
    border: 1px solid #001e60
}

.area-tab {
    text-transform: uppercase
}

ul.social-icons .custom-dropdown-share {
    padding: 16px;
    transition: all .4s;
    visibility: hidden;
    opacity: 0;
    font-family: 'Montserrat';
    background-color: #fff;
    border-radius: 0 0 4px 4px;
    top: 40px;
    z-index: 9999;
    min-width: 180px;
    box-shadow: #0000001a 0 10px 15px -3px, #0000000d 0 4px 6px -2px
}

.property-hero .property-hero-inner .font-italic-font {
    font-family: 'Montserrat' !important;
    font-weight: 300
}

.custom-dropdown-share #st-1 {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.custom-dropdown-share #st-1 .st-btn {
    margin-right: 0
}

ul.social-icons li:hover ul.custom-dropdown-share {
    visibility: visible;
    top: 30px;
    transition: all .3s;
    opacity: 1
}

.gallery-tabs-wrapper-inner {
    overflow: hidden
}

.gallery-inner-grid {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%
}

.back-link {
    position: relative
}

.schedule-form-wrapper .expandable-button {
    border: 1px solid #e0e0e0;
    border-radius: 4px !important
}

.gallery-tabs.tabs-wrapper .tab.active {
    background-color: #001e60;
    color: #fff !important
}

.gallery-tabs.tabs-wrapper .tab.active:hover {
    color: #001e60
}

.schedule-form-wrapper .btn-grp-schedule button {
    color: #545c6c !important;
    border: none !important;
    background: #f4f4f4;
    font-weight: 400
}

.date-selection-cards {
    margin-right: -8px;
    margin-left: -8px
}

.toggleable-content {
    display: none
}

.icons-slider .thumbnail-wrapper p {
    font-size: 12px !important;
    font-weight: 400;
    color: #545c6c;
    margin-top: 8px;
    transition: all .4s ease
}

.icons-slider .thumbnail-wrapper .img-wrapper {
    transition: all .4s ease
}

.icons-slider .thumbnail-wrapper:hover .img-wrapper {
    transform: scale(1.2);
    transition: all .4s ease
}

.sub-footer-section .card-wrapper {
    background: #ffffff
}

.icons-slider .swiper-slide {
    text-align: center;
    max-width: 110px
}

.icons-slider .thumbnail-wrapper:hover .rotatable-div {
    transform: rotateY(360deg);
    transition: all .4s ease
}

.icons-slider .thumbnail-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all .4s ease
}

.date-selection-cards .date-time-card {
    border-radius: 4px;
    background: #f4f4f4;
    color: #545c6c !important;
    margin-right: 8px;
    margin-left: 8px;
    cursor: pointer
}

.date-selection-cards .date-time-card.active {
    border: 1px solid #001e60;
    background: #ffffff
}

.date-selection-cards .date-time-card.active span {
    font-weight: 600 !important;
    color: #001e60 !important
}

.date-selection-cards .date-time-card span {
    font-family: 'Montserrat';
}

.date-selection-cards .date-time-card span.date {
    margin-top: 4px
}

.checkbox-main {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    color: #545c6c
}

.checkbox-main input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.checkbox-main .checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 16px;
    width: 16px;
    border: 1px solid #e0e0e0
}

.book-form .iti--allow-dropdown {
    width: 100%;
    margin-top: 12px
}

.book-form textarea {
    color: #545c6c
}

.book-form .iti--allow-dropdown .iti__selected-flag .iti__selected-dial-code {
    color: #545c6c;
    font-size: 14px
}

.book-form input[type=tel] {
    padding-left: 90px !important
}

.show-content .toggleable-content {
    display: block
}

.show-content .expand-toggle {
    transform: rotate(180deg)
}

.btn-grp-schedule {
    border-top: 1px solid #e0e0e0
}

.checkbox-main .checkmark:after {
    content: "";
    position: absolute;
    display: none
}

.container input:checked ~ .checkmark:after {
    display: block
}

.checkbox-main .checkmark:after {
    left: 6px;
    top: 2px;
    width: 3px;
    height: 9px;
    border: 1px solid #545c6c;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg)
}

.book-form button {
    background-color: var(--pink);
    font-size: 14px !important;
    font-family: 'Montserrat';
}

.schedule-form-wrapper .btn-grp-schedule button.active {
    border: 1px solid #001e60 !important;
    color: #001e60 !important;
    background: #ffffff;
    font-weight: 600
}

.details-section-inner .left-info-section .info-wrapper {
    display: none
}

.price-wrapper h6 {
    line-height: 26px
}

.property-details-page .show-map-section button {
    width: 260px !important;
    max-width: 100%
}

.property-info-card .consultant-apointment .button-group .pink-btn span {
    font-size: 14px;
    line-height: 18.2px;
    font-family: 'Montserrat';
    font-weight: 600
}

.consultant-apointment .avatar-info p {
    font-family: 'Montserrat';
}

.back-link:after {
    height: 16px;
    background: #e0e0e0;
    width: 1px;
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translatey(-50%)
}

.galler-tabs-wrapper-oputer .image-holder {
    border-radius: 4px;
    overflow: hidden;
    height: 100%
}

button.text-pink {
    margin-top: 24px
}

.galler-tabs-wrapper-oputer .image-holder img {
    height: 100%;
    width: 100%;
    -o-object-fit: unset;
    object-fit: unset
}

.galler-tabs-wrapper-oputer .gallery-tabs .tab {
    background-color: #f4f4f4;
    font-size: .775rem;
    line-height: 18px;
    font-family: 'Montserrat';
    font-weight: 600;
    color: var(--primary-blue)
}

.gallery-tabs.details-tabs .tab {
    text-transform: capitalize;
    color: #545c6c
}

.gallery-tabs.details-tabs .tab.active {
    background-color: #545c6c !important
}

.gallery-tabs.details-tabs .tab:hover {
    background-color: #e9eaec;
    color: #545c6c
}

.galler-tabs-wrapper-oputer .gallery-tabs {
    position: absolute;
    bottom: 28px;
    left: 44px;
    z-index: 2
}

.nearby-top-wrapper .tab .minus {
    display: none !important
}

.galler-tabs-wrapper-oputer .video-wrapper iframe {
    height: 100%;
    width: 100%
}

.details-services-section {
    padding-top: 50px
}

.description-section .overlay-span:after {
    content: "";
    height: 64px;
    background: linear-gradient(180deg, rgba(252, 252, 252, 0) 0%, #fcfcfc 100%);
    left: 0;
    bottom: 0;
    position: absolute;
    width: 100%
}

.description-section {
    border-bottom: 1px solid #f4f4f4
}

.details-services-section h5 {
    color: black;
    background: transparent;
    -webkit-text-fill-color: black;
    /*font-family: messina_sans_SemiBold;*/
    font-weight: 550
}

.amenities-wrapper {
    border-top: 1px solid #f4f4f4;
    border-bottom: 1px solid #f4f4f4
}

.map-wrapper-location iframe {
    height: 100%;
    width: 100%
}

.mortgagage-section {
    box-shadow: 0 0 1px #0003, 0 1px 1px #0000000f, 0 2px 6px #0000000f;
    border-radius: 4px
}

.mortgagage-section .select-filter ul {
    position: absolute;
    top: 47px;
    left: 0;
    width: 100%;
    height: 0px;
    visibility: hidden;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    border-radius: 0 0 4px 4px/0px 0px 4px 4px;
    border-top: 0px;
    color: #545c6c;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: .875rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 9px 8px;
    transition: height .3s
}

.get-in-touch-wrapper .btn-primary {
    font-size: 14px !important;
    line-height: 18.2px
}

.sub-footer-section h5 {
    line-height: 31.2px;
    font-weight: 600
}

.nearby-services .tabs-wrapper {
    display: flex !important
}

.prices-stats-section .prices-indicator {
    font-size: 1rem !important;
    line-height: 1.5rem
}

.prices-stats-section .green-text {
    color: #73a74a;
    font-weight: 600
}

.get-in-touch-wrapper .whatsapp-wrap span, .get-in-touch-wrapper .whatsapp-wrap a {
    line-height: 1.5rem;
    font-size: 1rem !important
}

.mortgagage-section .select-filter {
    width: 100%
}

.distance-table td {
    line-height: 24px
}

.results-wrapper h4 sup {
    font-size: 16px
}

.mortgagage-section .form-wrap .form-field select {
    color: #545c6c !important
}

.mortgagage-section .form-wrap .form-field input::-moz-placeholder {
    color: #545c6c !important
}

.mortgagage-section .form-wrap .form-field input::placeholder {
    color: #545c6c !important
}

.nearby-top-wrapper .tabs-wrapper .tab.active {
    background-color: #fff !important;
    border: 1px solid var(--primary-blue);
    font-weight: 700
}

.nearby-top-wrapper .tabs-wrapper .tab.active svg path {
    stroke: #001e60
}

.property-info-card {
    box-shadow: 0 0 1px #0003, 0 1px 1px #0000000f, 0 2px 6px #0000000f
}

.form-field {
    display: flex;
    flex-direction: column
}

.form-field label {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 130%;
    color: #545c6c;
    margin-bottom: 8px
}

.mortgagage-section .results-wrapper p {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 12px !important;
    line-height: 150%
}

.get-in-touch-wrapper {
    border-top: 1px solid #f4f4f4
}

.properties-nearby table tr:nth-child(2n) {
    background: #ecf1fd
}

.sub-footer-section {
    background: #f4f4f4
}

.sub-footer-section h5 {
    color: black;
    background: transparent;
    -webkit-text-fill-color: black;
}

.consultant-apointment {
    border-top: 1px solid #f4f4f4
}

.avatar-wrapper {
    border-radius: 4px
}

.avatar-wrapper img, .map-wrapper-tabs iframe {
    height: 100%;
    width: 100%
}

.prices-stats-section {
    box-shadow: 0 0 1px #0003, 0 1px 1px #0000000f, 0 2px 6px #0000000f;
    border-radius: 4px
}

.right-info {
    width: auto;
}

.left-info-section {
    width: calc(100% - 480px) !important
}

.nearby-top-wrapper .tabs-wrapper .tab span:not(.responsive-tab-icon.plus) {
    display: block
}

.ultility-icons-fixed {
    display: none
}

.properties-wrapper-slider {
    padding-right: 5px;
    padding-left: 5px
}

.properties-nearby .row {
    padding: 20px 5px 20px 16px
}

.properties-nearby .row:nth-child(odd) {
    background: #eeeeee
}

.residencia .date {
    font-size: 10px;
    font-weight: 400;
    display: block
}

.results-tabs.active {
    max-height: fit-content;
    height: 100%;
    transition: all .3s
}

.view-more-btn {
    position: absolute;
    bottom: 1.25rem;
    right: 1rem;
    color: #fff;
    font-size: .875rem;
    font-weight: 600;
    border-radius: 4px;
    padding: .5rem .75rem;
    display: flex;
    gap: .5rem;
    align-items: center;
    justify-content: center;
    background-color: #545c6cbf
}

@media screen and (max-width: 1024px) {
    .details-section-inner .left-info-section .info-wrapper {
        display: flex
    }

    .details-services-section .property-info-card {
        width: 100% !important
    }

    .right-info {
        width: 100%
    }

    .left-info-section {
        width: 100% !important
    }

    .galler-tabs-wrapper-oputer .container {
        width: 100%;
        padding-right: 0;
        padding-left: 0
    }

    .ultility-icons-fixed button {
        border-radius: 0;
        padding: 12px 5px;
        border-right: 1px solid #001e60 !important;
        font-size: 14px !important
    }

    .ultility-icons-fixed button:last-child {
        border-right: 1px solid var(--pink) !important
    }

    .ultility-icons-fixed {
        display: grid
    }

    .ultility-icons-fixed .only-icon-btn svg {
        height: 20px;
        width: 20px;
        margin-right: 0
    }

    .ultility-icons-fixed .button-group:after {
        content: "";
        height: 65px;
        background: linear-gradient(180deg, rgba(252, 252, 252, 0) 0%, #fcfcfc 100%);
        left: 0;
        bottom: 0;
        position: absolute;
        width: 100%;
        z-index: -1
    }

    .ultility-icons-fixed .button-group .only-icon-btn {
        width: auto !important;
        min-width: auto !important;
        height: 48px;
        text-align: center;
        border-radius: 4px;
        border-width: 0px !important;
        padding: .75rem !important
    }

    .ultility-icons-fixed .button-group .only-icon-btn {
        width: auto !important;
        min-width: auto !important;
        height: 48px;
        text-align: center;
        border-radius: 4px;
        border-width: 0px !important;
        padding: .75rem !important;
        align-items: center
    }

    .ultility-icons-fixed .button-group .only-icon-btn.only-icon-btn-border {
        border-width: 1px !important
    }

    .ultility-icons-fixed .button-group {
        display: flex;
        gap: .8rem;
        justify-content: center;
        position: relative
    }

    .ultility-icons-fixed .button-group:after {
        content: "";
        height: 75px;
        background: linear-gradient(180deg, rgba(252, 252, 252, 0) 0%, #fcfcfc 100%);
        left: 0;
        bottom: 0;
        position: absolute;
        width: 100%;
        z-index: -1
    }

    .ultility-icons-fixed .button-group button.schedule {
        width: 216px !important;
        border-radius: 4px
    }

    .slider-outer-wrapper .swiper-pagination {
        display: none
    }
}

@media screen and (max-width: 767px) {
    button.text-pink {
        margin-top: 16px
    }

    .galler-tabs-wrapper-oputer .gallery-tabs {
        display: flex !important;
        bottom: -56px;
        left: 20px
    }

    .slider-outer-wrapper .swiper-pagination {
        display: block;
        text-align: left
    }

    .map-wrapper-location {
        height: 300px
    }

    .gallery-inner-grid {
        position: static;
        height: auto;
        width: auto
    }

    .gallery-tabs-wrapper-inner {
        padding-bottom: unset;
        height: 220px !important;
        overflow: visible
    }

    .tabll-wrapper .residencia {
        width: 100%
    }

    .tabll-wrapper .row {
        flex-direction: column;
        align-items: flex-start
    }

    .tabll-wrapper .price {
        width: 100%
    }

    .tabll-wrapper .found-properties {
        width: 100%;
        margin-top: 8px
    }

    .tabll-wrapper .found-properties .justify-end {
        justify-content: flex-start
    }

    .ultility-icons-fixed .only-icon-btn svg {
        height: 20px;
        width: 20px;
        margin-right: 0
    }

    .galler-tabs-wrapper-oputer .image-holder {
        height: 220px !important
    }
}

@media screen and (max-width: 640px) {
    .back-link:after {
        display: none
    }

    .galler-tabs-wrapper-oputer .image-holder {
        border-radius: 0
    }

    .nearby-top-wrapper .expanded ~ .tab {
        display: flex
    }

    .nearby-top-wrapper .tabs-wrapper .expanded.tab .responsive-tab-icon.minus, .nearby-top-wrapper .tab .plus {
        display: block !important
    }

    .nearby-top-wrapper .tab .minus, .nearby-top-wrapper .expanded.tab .responsive-tab-icon.plus {
        display: none !important
    }

    .galler-tabs-wrapper-oputer .image-holder img {
        height: auto
    }

    .details-services-section {
        padding-top: 24px
    }
}

@media only screen and (max-width: 480px) {
    .filtered-content-wrap {
        width: calc(100% - 60px)
    }
}

.YACSSTooltip {
    border-radius: 5px;
    padding: 5px 0;
    font-size: 14px;
    width: 120px;
    color: #fff;
    font-family: 'Montserrat';
    font-weight: 600;
    max-width: 250px;
    line-break: auto;
    word-break: normal;
    word-spacing: 0px;
    white-space: normal;
    text-align: center;
    display: flex;
    align-items: center;
    overflow-wrap: normal;
    background-color: #001e60 !important;
    height: 70px
}

.mislaligned-heading-wrapper {
    max-width: 1240px;
    margin: 0 auto
}

.links-tabs li a {
    color: #545c6c;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 18px
}

.team-members-wrapper .avatar-box p {
    color: var(--primary-blue);
    margin-top: 1.75rem !important;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 24px !important;
    line-height: 130%
}

.team-members-wrapper .avatar-box .project-card p {
    margin-top: 0 !important;
    line-height: 100% !important
}

.team-members-wrapper .image-wrapper-avatar {
    width: auto !important
}

.team-members-wrapper .avatar-box span {
    margin-top: .5rem;
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 400;
    font-size: 14px !important;
    line-height: 150%;
    color: #545c6c
}

.image-wrapper-avatar {
    overflow: hidden;
    border-radius: 4px;
    position: relative
}

.image-wrapper-avatar img {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.avatar-box {
    text-align: left
}

.avatar-box .play-button {
    position: absolute;
    right: 16px;
    top: 45%;
    cursor: pointer;
    height: 56px;
    width: 56px
}

.links-tabs ul {
    white-space: nowrap;
    overflow-y: hidden;
    overflow-x: auto
}

.links-tabs ::-webkit-scrollbar {
    display: none
}

.links-tabs ::-webkit-scrollbar-thumb {
    border: none !important;
    background: none !important;
    box-shadow: none
}

.teams-inner-wrapper .active {
    text-decoration: underline
}

.team-details .team-heading h2 {
    font-weight: 300;
    font-size: 4rem
}

.team-details .team-heading h5 {
    background: transparent;
    font-weight: 300;
    font-style: italic;
    color: #545c6c;
    -webkit-text-fill-color: #545c6c;
    margin-top: 1rem;
    line-height: 150%
}

.team-members-wrapper .image-wrapper-avatar {
    height: 354px
}

.team-button-group a {
    display: inline-flex !important;
    width: 256px
}

.team-details .two-column .left-col .description-wrapper {
    margin-top: 66px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 350;
    font-size: 18px;
    color: #545c6c
}

.team-details .two-column .left-col {
    width: calc(100% - 640px) !important
}

.team-details .two-column .right-col {
    width: 480px !important
}

.team-details .two-column .right-col .avatar-box {
    height: 480px
}

.team-details .two-column .right-col .image-wrapper-avatar {
    height: auto
}

.team-details .two-column .right-col .avatar-box img {
    height: 100%;
    width: 100%
}

.team-details .testimonials-section .testimononial-card {
    background: transparent;
    box-shadow: none
}

.team-details .testimonials-section .testimononial-card .image-wrapper-avatar {
    height: 70vh;
    max-height: 480px;
    width: 480px
}

.careers-page .testimonials-section .testimononial-card p {
    margin-top: 16px !important
}

@media screen and (min-width: 1400px) {
    .magazine-image-wrapper img {
        min-height: 565px
    }
}

@media screen and (max-width: 1366px) and (min-width: 1152px) {
    .publication-page .testimonials-section .left-content-outer {
        display: flex;
        align-self: flex-start
    }
}

@media screen and (max-width: 1280px) and (min-width: 1152px) {
    .publication-page .testimonials-section .swiper-slide {
        width: 400px !important
    }

    .publication-page {
        padding-bottom: 0 !important
    }

    .publication-page .magazine-image-wrapper img {
        -o-object-fit: contain;
        object-fit: contain
    }

    .publication-page .testimonials-section .testimonials-slider-wrapper {
        height: 620px
    }

    .publication-page .publications-slider-section h5 {
        margin-top: 10px !important
    }

    .publication-page .magazine-image-wrapper {
        height: 70vh
    }
}

@media screen and (max-width: 1280px) {
    .team-details .two-column .left-col {
        width: calc(100% - 520px) !important
    }
}

@media screen and (max-width: 1024px) {
    .mislaligned-heading-wrapper h1 {
        text-align: left
    }

    .team-details .two-column .left-col .description-wrapper {
        margin-top: 40px
    }

    .team-details .two-column .right-col .avatar-box {
        height: 41.4vw;
        width: 420px;
        max-width: 100%
    }

    .team-details .two-column .right-col, .team-details .two-column .left-col {
        width: 100% !important
    }

    .mislaligned-heading-wrapper .aside-text {
        display: inline-block
    }

    .team-details .testimonials-section .testimononial-card .image-wrapper-avatar {
        width: 100%;
        height: 420px
    }

    .image-wrapper-avatar {
        max-height: 490px !important
    }

    .careers-page .testimonials-section .testimononial-card p {
        margin-top: 0 !important
    }

    .careers-page .testimonials-section .testimononial-card {
        min-height: 510px !important;
        height: 510px
    }

    .team-details .right-col img {
        -o-object-fit: contain;
        object-fit: contain
    }

    .meet-team-details img {
        min-height: auto
    }

    .meet-team-slider .slick-dots {
        bottom: 0
    }

    .meet-team-slider .slick-dots li {
        float: left;
        width: 8px;
        height: 8px
    }

    .meet-team-slider .slick-dots li button {
        border: 2px solid #e0e0e0;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        padding: 0
    }

    .meet-team-slider .slick-dots li.slick-active button {
        border: 2px solid #001e60
    }

    .meet-team-slider .slick-dots li button:before {
        display: none
    }

    .new-video-thumbnail-section .video-thumbnail-wrap {
        height: auto;
        width: 80vw;
        aspect-ratio: 16/9
    }
}

@media screen and (max-width: 640px) {
    .image-wrapper-avatar {
        max-height: 475px !important
    }

    .avatar-box .play-button {
        height: 36px;
        width: 36px;
        right: 12px;
        top: 12px
    }

    .team-details .two-column .left-col .description-wrapper {
        margin-top: 24px
    }

    .careers-page .testimonials-section .testimononial-card {
        min-height: 400px !important;
        height: 400px
    }

    .careers-page .swiper-slide .avatar-box .play-button {
        transform: translate(-50%, -50%);
        top: 45%;
        left: 50%
    }

    .team-details .right-col img {
        -o-object-fit: cover;
        object-fit: cover
    }

    #why-betterhomes img {
        height: 54px;
        width: 54px
    }

    .new-video-thumbnail-section .video-thumbnail-wrap {
        height: auto;
        width: 85vw;
        aspect-ratio: 16/9
    }

    .more-out-button a img {
        width: 24px;
        height: 24px
    }
}

.counter-list ul li {
    position: relative;
    padding-left: 60px;
    margin-bottom: 32px
}

.counter-list {
    counter-reset: section
}

.counter-list li h5 {
    font-size: 20px !important
}

.counter-list li:before {
    counter-increment: section;
    position: absolute;
    top: -2px;
    left: 0;
    font-family: "Montserrat";
    /*font-style: italic;*/
    font-weight: 400;
    /*color: #001e60;*/
    color: black;
    line-height: 32px;
    content: counter(section);
    font-size: 35px !important
}

.counter-list li:after {
    /*content: "";*/
    /*position: absolute;*/
    /*width: 24px;*/
    /*height: 24px;*/
    /*left: 2px;*/
    /*top: 4px;*/
    /*background: #4bbe89;*/
    /*opacity: .3;*/
    /*border-radius: 50%*/
}

@media screen and (max-width: 640px) {
    .counter-list ul li {
        margin-bottom: 24px
    }
}

.main-content {
    background-image: url(/frontend/images//coming-soon-b50756d5.jpg);
    width: 100%;
    height: calc(100vh - 110px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 55px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.main-content:after {
    background: rgba(0, 30, 96, .3);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: ""
}

.main-content-width {
    position: relative;
    z-index: 2;
    background-color: #fffffff0;
    border-radius: 18px;
    max-width: 100%;
    width: 75vw;
    min-height: calc(100vh - 300px);
    padding: 50px 30px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center
}

.timer-wrapper .time-card {
    background: #001e60;
    padding: 10px;
    height: 100px;
    width: 100px;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.timer-wrapper .time-digits {
    font-size: 48px;
    line-height: 1.1
}

.timer-wrapper .time-units {
    font-size: 14px
}

.main-content-width h2 {
    font-size: 70px;
    margin-top: 40px;
    font-weight: 600;
    font-family: 'Montserrat';
}

.main-content-width .logo-wrapper {
    width: 316px;
    height: 43px
}

.main-content-width .logo-wrapper img {
    height: 100%;
    width: 100%
}

@media screen and (max-width: 767px) {
    .timer-wrapper .time-card {
        height: 75px;
        width: 75px
    }

    .timer-wrapper .time-digits {
        font-size: 30px
    }

    .timer-wrapper {
        gap: 1rem
    }

    .main-content {
        padding-left: 0;
        padding-right: 0
    }

    .main-content-width {
        padding-top: 30px;
        padding-bottom: 30px;
        width: 100%
    }
}

.accordion {
    background: #FFFFFF;
    cursor: pointer;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    border: none;
    text-align: left;
    outline: none;
    border-radius: 8px;
    box-shadow: 0 0 1px #0003, 0 1px 1px #0000000f, 0 2px 6px #0000000f
}

#project-type .plus-icon-wrapper {
    width: 160px;
    padding-right: 6px;
    padding-left: 6px;
    justify-content: center
}

.accordion-main-wrapper {
    margin-bottom: 16px
}

.accordion-main-wrapper:last-child {
    margin-bottom: 0
}

.accordion.active {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.accordion.active .vertical-line {
    opacity: 0;
    transition: all .4s
}

.accordion p + .plus-icon-wrapper {
    position: absolute;
    right: 20px;
    top: 42%
}

.accordion p + .plus-icon-wrapper .plus {
    width: 1px;
    height: 15px;
    background-color: #264598;
    position: absolute;
    right: 7px;
    opacity: 1;
    transition: all .2s
}

.accordion.active p + .plus-icon-wrapper .plus {
    opacity: 0
}

.accordion p + .plus-icon-wrapper .mins {
    width: 15px;
    height: 1px;
    background-color: #264598;
    position: absolute;
    top: 7px;
    right: 0
}

.faqs-section.job-vacancies .faqs-inner-wrapper .accordion .plus-icon-wrapper {
    right: 0
}

.accordion .vertical-line {
    position: absolute;
    opacity: 1;
    transition: all .4s;
    -o-object-fit: contain;
    object-fit: contain
}

.accordion p {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    color: black;
    padding-right: 15px
}

.panel {
    padding: 0 32px;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height .2s ease-out;
    color: #545c6c;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    box-shadow: 0 0 1px #0003, 0 1px 1px #0000000f, 0 2px 6px #0000000f
}

@media screen and (max-width: 640px) {
    .accordion svg {
        width: 13px
    }
}

.property-hero {
    position: relative;
    z-index: 2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.property-hero .breadcrumb-wrapper ul li svg {
    filter: brightness(0) invert(1)
}

.grey-breadcrumb li span {
    color: #545c6c !important
}

.white-breadcrumb li span {
    color: #fff !important
}

.white-breadcrumb ul li svg {
    filter: brightness(0) invert(1) !important
}

.property-hero:before {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: rgba(46, 52, 63, .5);
    z-index: -1
}

.property-hero-inner {
    min-height: calc(100vh - 108px);
    padding-top: 24px;
    padding-bottom: 120px;
    justify-content: space-between;
    flex-direction: column;
    display: flex
}

.property-hero .property-hero-inner .content-property {
    max-width: 750px
}

.testimononial-card:not(.video-testimonials) p:nth-of-type(1) {
    overflow-y: auto
}

.property-hero .breadcrumb-wrapper ul li a {
    color: #fff
}

.breadcrumb-wrapper .breadrumb-text {
    color: #fff;
    cursor: pointer
}

.teams-inner-wrapper .breadcrumb-wrapper .breadrumb-text {
    color: #545c6c
}

.property-hero .breadcrumb-wrapper button {
    display: flex;
    color: #fff;
    align-items: center;
    font-size: 12px
}

.property-hero .h2 {
    font-family: 'Montserrat';
    font-style: normal;
    font-size: 64px !important;
    background: transparent;
    -webkit-text-fill-color: #ffffff;
    font-weight: 400;
    line-height: 70px !important
}

.useful-links {
    padding: 104px 0;
    background: #f4f4f4
}

.useful-links .useful-links-inner-wrapper p {
    font-size: 14px !important
}

.gallery-grid-wrapper .details-content h6 {
    font-size: 18px;
    line-height: 23px;
    font-family: 'Montserrat';
    font-weight: 600
}

.thumbnail-wrapper p {
    font-weight: 600;
    line-height: 18px;
    font-size: 14px !important;
    font-family: 'Montserrat';
}

.faqs-section {
    background: #fafafa
}

.form-section h2 {
    margin-top: 32px
}

.inner-features .icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #919aac;
    flex-shrink: 0
}

.inner-features .description p {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    padding: 0
}

.get-started .left-col-wrapper h2 {
    color: #ffffffd4;
    background: transparent;
    -webkit-text-fill-color: unset
}

.get-started .left-col-wrapper .inner-features .description p, .get-started .left-col-wrapper .inner-features .description {
    color: #ffffffd4
}

.right-col-outer form label {
    color: #545c6c
}

.right-col-outer form p {
    font-size: 12px !important
}

.cta-section {
    background-color: #545c6c
}

.cta-section h3 {
    -webkit-text-fill-color: #ffffff;
    background: transparent
}

.cta-section p {
    color: #fff
}

@media screen and (max-width: 1024px) {
    .useful-links {
        padding: 64px 0
    }

    .property-hero .h2 {
        font-size: 48px !important;
        line-height: normal !important
    }

    .property-hero .property-hero-inner {
        height: 492px;
        min-height: 0;
        padding-bottom: 64px
    }

    .useful-links-inner-wrapper .thumbnails-slider .swiper-button-next {
        display: block
    }

    .useful-links-inner-wrapper .thumbnails-slider:after {
        display: block
    }
}

@media screen and (max-width: 640px) {
    .form-section .select-filter {
        width: 100%
    }

    .property-hero .h2 {
        font-size: 32px !important
    }

    .property-hero .breadcrumb-wrapper button {
        display: none
    }

    .property-hero .property-hero-inner {
        height: 460px;
        min-height: 0px
    }

    .useful-links {
        padding: 40px 0
    }

    .property-hero p {
        display: none
    }

    .property-hero .property-hero-inner {
        min-height: 0;
        height: 460px;
        padding-bottom: 48px
    }

    .property-hero h2 {
        line-height: 35.2px
    }
}

.conveyancing-fixed-wrapper .property-hero button.btn-primary:not(.pink-btn) {
    border: 1px solid #ffffff;
    color: #fff;
    font-size: 16px !important;
    background-color: transparent;
    min-width: 190px
}

.conveyancing-fixed-wrapper .property-hero button.btn-primary:not(.pink-btn):hover {
    background-color: #fffc;
    color: #001e60;
    border: 1px solid #ffffffcc;
    gap: 0
}

.conveyancing-fixed-wrapper .property-hero button.btn-primary:not(.pink-btn):hover svg {
    fill: #001e60;
    transform: translate(10px);
    width: 0px;
    transition: all .25s ease-in-out
}

.hero-tabs {
    counter-reset: section
}

.property-hero .share-btn {
    display: none !important
}

.hero-tabs ul li a {
    position: relative;
    padding-top: 30px;
    color: #545c6c;
    cursor: pointer;
    display: inline-flex
}

.hero-tabs a:before {
    counter-increment: section;
    position: absolute;
    top: 13px;
    font-weight: 600;
    color: #919aac;
    content: "0" counter(section);
    font-size: 10px !important;
    font-family: 'Montserrat' !important;
}

.hero-tabs a.active {
    border-bottom: 2px solid #001e60;
    color: #001e60;
    font-weight: 600
}

.partners-slider-outer .swiper-slide img {
    width: 100%
}

.partners-slider-outer {
    height: 100px
}

.grey-form-bg h2 {
    /*-webkit-text-fill-color: #001e60*/
}

.grey-form-bg .description p {
    color: black;
}

.grey-form-bg .description span {
    color: #545c6c
}

@media screen and (max-width: 1024px) {
    .trusted-partners {
        margin-top: 40px
    }

    .partners-slider-outer .swiper-pagination {
        text-align: left;
        display: block !important
    }

    .hero-tabs ul {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto
    }

    .hero-tabs ul li {
        flex: 0 0 auto;
        width: auto
    }

    .topscroll .hero-tabs ul li {
        padding-right: 40px
    }

    .topscroll .hero-tabs ul li:last-child {
        padding-right: 0
    }

    .hero-tabs ul::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 0px transparent;
        border-radius: 0;
        background-color: transparent;
        border: none
    }

    .hero-tabs ul::-webkit-scrollbar {
        width: 0px;
        background-color: transparent
    }

    .hero-tabs ul::-webkit-scrollbar-thumb {
        -webkit-box-shadow: inset 0 0 0px transparent;
        border-radius: 0;
        background-color: transparent;
        border: none
    }
}

@media screen and (max-width: 640px) {
    .trusted-partners {
        margin-top: 32px
    }
}

@media screen and (max-width: 575px) {
    .partners-slider-outer {
        height: 150px
    }
}

.featured-image-wrapper {
    border-radius: 4px;
    height: 640px;
    overflow: hidden
}

.home-maintenance .thumbnail-wrapper {
    height: 50px
}

.home-maintenance .swiper-wrapper .swiper-slide a {
    text-align: center
}

.home-maintenance .swiper-wrapper .swiper-slide .thumbnail-wrapper svg {
    height: 100%;
    width: 100%
}

.home-maintenance .swiper-wrapper .swiper-slide .thumbnail-wrapper svg path {
    fill: #545c6c !important;
    stroke: #545c6c !important
}

.useful-links-inner-wrapper .thumbnails-slider .preffered-box {
    height: auto;
    background-color: #fff;
    border-radius: 4px
}

.featured-image-wrapper img {
    height: 100%;
    width: 100%
}

.news-page h5:not(.useful-links h5) {
    background: transparent;
    font-weight: 600;
    -webkit-text-fill-color: black;
}

.featured-news span {
    color: #545c6c
}

.news-right .featured-image-wrapper {
    height: 356px
}

.inner-wrapper-news {
    border-top: 1px solid #e0e0e0;
    padding-top: 32px;
    margin-bottom: 80px
}

.left-thumbnail {
    width: 96px;
    height: 64px
}

.left-thumbnail img {
    width: 100%;
    height: 100%
}

.img-outer {
    height: 718px;
    padding-left: 160px
}

.right-section-50 {
    min-height: 718px
}

.img-outer img {
    height: 100%;
    width: 100%
}

.right-section-50 {
    padding-left: 0
}

.inner-wrapper-news .content-wrapper {
    width: calc(100% - 128px)
}

body .news-details .left-info-section h5 {
    /*color: #2e343f !important*/
    color: black !important;
}

.news-details .left-info-section h6 {
    font-size: 20px;
    color: var(--primary-blue);
    font-weight: 600
}

.recommended-posts .slider-heading {
    font-weight: 400 !important;
    font-size: 24px !important
}

.news-details .left-info-section .info-wrapper {
    border-top: 1px solid #f4f4f4
}

.blog-image img {
    height: 100%;
    width: 100%
}

@media screen and (max-width: 1280px) {
    .img-outer {
        padding-left: 40px;
        height: 100%
    }

    .right-section-50 {
        min-height: 500px
    }
}

@media screen and (max-width: 1024px) {
    .posts-slider-section-outer .featured-image-wrapper {
        height: 280px
    }

    .featured-image-wrapper {
        height: 222px !important
    }

    .right-section-50 {
        width: calc(100% + 48px);
        padding-left: 0;
        height: auto;
        min-height: 100%
    }

    .right-side-full-image .left-section-heading {
        width: 100%
    }

    .right-section-50 .img-outer, .guide-right-section-50 .img-outer {
        width: 100%;
        position: static !important;
        height: 100%
    }

    .inner-wrapper-news {
        border-top: 1px solid #e0e0e0;
        padding-top: 32px;
        margin-bottom: 32px
    }

    .hidden-tab-view {
        display: none !important
    }
}

@media screen and (max-width: 850px) {
    .news-page .pagination-wrapper .pagination-tab {
        height: auto;
        width: 48px !important
    }

    .news-page .pagination-wrapper .pagination-tab.wide-tab {
        width: 120px !important
    }
}

@media screen and (max-width: 700px) {
    .news-page .pagination-wrapper .hidden-sm {
        display: none !important
    }
}

@media screen and (max-width: 640px) {
    .posts-slider-section-outer .swiper-pagination {
        margin-top: 10px;
        position: static;
        display: block !important;
        text-align: left
    }

    .news-page .pagination-wrapper .pagination-tab {
        width: 40px !important;
        height: 40px !important
    }

    .news-page .pagination-wrapper .pagination-tab.wide-tab {
        width: auto !important;
        padding: 0 12px
    }

    .news-page .pagination-wrapper .pagination-tab.wide-tab svg {
        margin-right: 0;
        margin-left: 0
    }

    .hidden-mob-text {
        display: none
    }

    .news-page h5 {
        font-size: 18px !important
    }

    .news-page .inner-wrapper-news {
        gap: 24px
    }

    .right-side-full-image img {
        -o-object-fit: contain !important;
        object-fit: contain !important
    }
}

.publication-page .publications-slider-section .left-content {
    width: 100%;
    max-width: 100%
}

.publication-page .publications-slider-section h5 {
    margin-top: 24px;
    -webkit-text-fill-color: #2e343f;
    background-color: transparent;
    font-weight: 600
}

.publication-page .show-mobile-list .list-mobile, .show-mobile-list .list-mobile {
    display: block !important
}

.publication-page .testimonials-section {
    background-color: transparent
}

.publication-page .breadcrumb-wrapper .breadrumb-text {
    color: #545c6c
}

.magazine-image-wrapper {
    width: 480px;
    max-height: 600px;
    height: 75vh;
    display: flex
}

.magazine-image-wrapper img {
    height: 100%;
    width: 100%
}

.publication-page .testimonials-section .testimonials-slider-wrapper .swiper-slide {
    display: flex;
    flex-direction: column
}

@media screen and (max-width: 1023px) {
    .publications-slider-tab-mob .magazine-image-wrapper {
        width: auto !important;
        height: 480px
    }

    .publications-mobile-show {
        display: flex !important
    }

    .publication-page .testimonials-swiper h5 {
        margin-top: 24px;
        -webkit-text-fill-color: #2e343f;
        background-color: transparent;
        font-weight: 600;
        font-size: 20px !important
    }

    .publications-mobile-show .slick-slide {
        margin-right: 16px;
        margin-left: 16px
    }

    .publications-slider-tab-mob .magazine-image-wrapper img {
        -o-object-fit: fill;
        object-fit: fill
    }

    .publications-mobile-show {
        display: block !important
    }

    .publications-slider-section {
        display: none
    }

    .publications-slider-tab-mob .swiper-slide {
        width: 423px !important
    }

    .publications-slider-tab-mob {
        display: block !important
    }
}

@media screen and (max-width: 640px) {
    .magazine-image-wrapper img {
        -o-object-fit: unset;
        object-fit: unset
    }

    .magazine-image-wrapper {
        height: 340px;
        width: 100%
    }

    .publications-mobile-show .slick-slide {
        margin-right: 12px;
        margin-left: 12px
    }

    .publication-page .publications-slider-tab-mob h5 {
        font-size: 16px !important;
        margin-top: 16px
    }

    .publications-slider-tab-mob .swiper-slide {
        width: 240px !important
    }

    .publications-slider-tab-mob .magazine-image-wrapper {
        height: 332px
    }
}

@media screen and (max-width: 768px) {
    .publication-page .left-content .h1 {
        line-height: 50px
    }
}

@media screen and (max-width: 480px) {
    .publications-mobile-show .slick-slide {
        width: 240px
    }

    .magazine-image-wrapper img {
        -o-object-fit: fill;
        object-fit: fill
    }
}

.publication-page .testimonials-section .active {
    text-decoration: underline
}

.careers-page .cta-btn-group .btn {
    width: 240px;
    max-width: 100%
}

.careers-page .career-content {
    top: 50%;
    transform: translateY(-50%);
    max-width: 610px
}

.careers-page .testimonials-section .testimononial-card {
    box-shadow: none;
    background: transparent
}

.testimonials-section .testimononial-card .designation {
    font-family: 'Montserrat' !important;
    font-style: normal !important;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #545c6c
}

.careers-page .testimonials-section {
    background: #ffffff
}

.job-vacancies .location-text {
    color: #545c6c;
    font-weight: 400
}

.job-vacancies .pink-text {
    color: #4bbe89
}

.job-vacancies .plus-icon-wrapper {
    width: 200px;
    padding-right: 20px;
    padding-left: 20px;
    position: relative
}

.job-vacancies .plus-icon-wrapper:last-child {
    padding-right: 0
}

.job-vacancies .plus-icon-wrapper:last-child:after {
    display: none
}

.job-vacancies .plus-icon-wrapper:after {
    content: "";
    position: absolute;
    height: 20px;
    width: 1px;
    background: #e0e0e0;
    right: 0
}

.apply-hover-state svg {
    transition: transform .4s ease-in-out
}

.careers-page .job-vacancies .accordion {
    cursor: default
}

.careers-details-page .location-wrapper .plus-icon-wrapper:first-child {
    position: relative
}

.careers-details-page .location-wrapper .plus-icon-wrapper:first-child:after {
    content: "";
    height: 20px;
    width: 1px;
    position: absolute;
    right: 0;
    background: #e0e0e0
}

.careers-details-page .details-services-section h5 {
    -webkit-text-fill-color: #2e343f
}

.video-wrapper-thumbnail {
    background-color: #545c6c;
    height: 380px
}

.apply-hover-state:hover svg {
    transform: scale(1.1);
    transition: transform .4s ease-in-out
}

.video-wrapper-thumbnail .play-button-log {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

.conventional-list ul li {
    font-size: 18px;
    color: #545c6c;
    position: relative
}

.conventional-list ul li::marker {
    font-size: 10px
}

@media screen and (max-width: 1024px) {
    .careers-page .career-content {
        position: static;
        transform: translateY(0);
        width: 100%
    }

    .careers-page .testimonials-section .testimonials-slider-mob-tab .testimonials-box {
        margin-right: 8px;
        margin-left: 8px
    }

    .property-info-card {
        width: calc(100% + 30px)
    }

    .job-vacancies .plus-icon-wrapper {
        gap: 0;
        padding-left: 0;
        width: auto
    }

    .job-vacancies .plus-icon-wrapper:last-child {
        gap: 12px
    }

    .job-vacancies .accordion svg {
        width: auto;
        height: auto
    }

    .careers-page .overlapping-section .video-wrapper-inner {
        height: 480px !important
    }

    .careers-details-page .right-info {
        width: calc(100% + 0px);
        position: relative;
        left: 0
    }

    html body .avatar-box p {
        font-size: 20px !important
    }
}

@media screen and (max-width: 640px) {
    html body .avatar-box p {
        font-size: 16px !important
    }

    .conventional-list ul li {
        font-size: 14px
    }

    .video-wrapper-thumbnail {
        height: 280px
    }

    .careers-page .overlapping-section .video-wrapper-inner {
        height: 280px !important
    }

    .job-vacancies .pink-text {
        display: none !important
    }
}

.contained-text {
    max-width: 992px;
    margin: 0 auto;
    width: 100%;
    text-align: left
}

.area-guides-grid-page .image-wrapper-avatar {
    height: 240px
}

.area-guides-grid-page .image-wrapper-avatar img {
    transition: all .3s ease-in-out
}

.area-guides-grid-page .image-wrapper-avatar:hover img {
    transform: scale(1.2) translate(-50%, -50%);
    transform-origin: center center;
    transition: all .4s ease-in-out
}

.area-guides-grid-page .avatar-box p {
    margin-top: 24px !important;
    font-size: 20px !important
}

.off-plan-listings-page .team-members-wrapper .avatar-box .image-wrapper-avatar {
    min-height: 222px;
    max-height: 222px;
    overflow: hidden;
    border-end-start-radius: 0px;
    border-bottom-right-radius: 0
}

.off-plan-listings-page .team-members-wrapper .avatar-box .image-wrapper-avatar img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    position: static;
    transform: none
}

.off-plan-listings-page .search-wrapper .secondary-search-bar {
    background: none;
    padding: 13px 20px;
    width: 100%;
    height: 100%;
    box-shadow: none;
    border: 1px solid #e0e0e0
}

.off-plan-listings-page .toggle-map .team-members-wrapper {
    grid-template-columns:repeat(2, 1fr)
}

.off-plan-listings-page .search-wrapper {
    max-width: 740px;
    width: 100%
}

.off-plan-listings-page .avatar-box span {
    font-style: normal;
    font-family: 'Montserrat';
    font-size: 14px;
    max-width: 220px
}

.off-plan-listings-page .avatar-box {
    background: #ffffff;
    box-shadow: 0 0 1px #0003, 0 1px 1px #0000000f, 0 2px 6px #0000000f
}

.off-plan-listings-page .team-members-wrapper .avatar-box p {
    margin-top: 0;
    font-size: 18px !important
}

@media screen and (max-width: 1024px) {
    .off-plan-listings-page .team-members-wrapper .avatar-box .image-wrapper-avatar {
        height: 236px
    }
}

@media screen and (max-width: 640px) {
    .off-plan-listings-page .team-members-wrapper .avatar-box .image-wrapper-avatar {
        height: 224px
    }

    .off-plan-listings-page .toggle-map .team-members-wrapper {
        grid-template-columns:repeat(1, 1fr)
    }
}

.geolocation-section .tab {
    color: #545c6c !important
}

.geolocation-section .tabs-wrapper {
    top: 52px;
    bottom: auto !important
}

.off-plan-page .form-section {
    background-color: #fafafa
}

.form-outer {
    box-shadow: 0 0 1px #0003, 0 1px 1px #0000000f, 0 2px 6px #0000000f
}

.off-plan-page .form-section h2 {
    -webkit-text-fill-color: black;
}

.form-section .form-outer textarea {
    width: 100%;
    height: 96px
}

.off-plan-page .form-section .description {
    display: flex;
    flex-direction: column-reverse
}

.off-plan-page .form-section .description p, .off-plan-page .form-section .description span {
    color: black !important
}

.area-guides .play-button-abs {
    height: 100%;
    width: 100%
}

.area-guides .sub-footer-section {
    background-color: #fff
}

.area-guides .tabs-wrapper .tab {
    letter-spacing: 1.6px;
    border: 1px solid transparent
}

.area-guides .tabs-wrapper .tab.active {
    border: 1px solid #001e60;
    color: #001e60 !important;
    text-decoration: none;
    background-color: #fff
}

.area-guides .tabs-wrapper .tab.active svg * {
    stroke: #001e60
}

@media screen and (max-width: 639px) {
    .geolocation-section .tabs-wrapper {
        top: 60px
    }
}

.area-guides .agTabSecActive {
    display: block
}

.area-guides .agTabSecHidden {
    display: none
}

.off-plan-detail .availaibility-wrapper .plus-icon-wrapper {
    padding-right: 0;
    padding-left: 0;
    width: auto
}

.off-plan-detail .availaibility-wrapper .plus-icon-wrapper:after {
    display: none
}

.off-plan-detail .accordion {
    padding: 16px 24px;
    cursor: default
}

.off-plan-listings-page .breadcrumb-wrapper .breadrumb-text {
    color: #545c6c
}

.off-plan-detail .off-plan-details-acc .accordion {
    cursor: pointer;
    transition: all .3s !important
}

.off-plan-detail .off-plan-details-acc .accordion.active .plus-icon-wrapper {
    transform: rotate(180deg);
    transition: all .3s
}

.similar-projects {
    background-color: #f4f4f4
}

.similar-projects .card-content-wrapper {
    background: #ffffff;
    border-radius: 0 0 4px 4px/0px 0px 4px 4px
}

.similar-projects .card-content-wrapper p {
    margin-top: 0
}

.bottom-section-abs {
    bottom: 56px
}

.off-plan-detail .gallery-tabs {
    position: static
}

.bottom-section-abs h2 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 56px;
    line-height: 130%;
    -webkit-text-fill-color: #ffffff
}

.bottom-section-abs ul {
    list-style-type: disc;
    padding-left: 22px
}

.bottom-section-abs ul li {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 130%;
    color: #fff
}

.gallery-section-off-plan .swiper-slide {
    width: 240px !important
}

.gallery-section-off-plan {
    position: relative !important
}

.gallery-section-off-plan .swiper-button-next:after {
    content: "" !important;
    height: 32px;
    width: 32px;
    background-size: cover;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cg filter='url(%23filter0_dd_1939_12599)'%3E%3Cpath d='M16 28C22.6274 28 28 22.6274 28 16C28 9.37258 22.6274 4 16 4C9.37258 4 4 9.37258 4 16C4 22.6274 9.37258 28 16 28Z' fill='white'/%3E%3C/g%3E%3Cpath d='M16.7573 20.2426L20.9999 15.9999L16.7573 11.7573' stroke='%23919AAC' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 16H21' stroke='%23919AAC' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cdefs%3E%3Cfilter id='filter0_dd_1939_12599' x='0' y='0' width='32' height='32' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='1'/%3E%3CfeGaussianBlur stdDeviation='1'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_1939_12599'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation='2'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3CfeBlend mode='normal' in2='effect1_dropShadow_1939_12599' result='effect2_dropShadow_1939_12599'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect2_dropShadow_1939_12599' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E")
}

.gallery-section-off-planswiper-button-next, .gallery-section-off-plan .swiper-button-prev {
    width: auto
}

.gallery-section-off-plan .swiper-button-prev:after {
    content: "" !important;
    height: 32px;
    width: 32px;
    background-size: cover;
    transform: rotate(180deg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cg filter='url(%23filter0_dd_1939_12599)'%3E%3Cpath d='M16 28C22.6274 28 28 22.6274 28 16C28 9.37258 22.6274 4 16 4C9.37258 4 4 9.37258 4 16C4 22.6274 9.37258 28 16 28Z' fill='white'/%3E%3C/g%3E%3Cpath d='M16.7573 20.2426L20.9999 15.9999L16.7573 11.7573' stroke='%23919AAC' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 16H21' stroke='%23919AAC' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cdefs%3E%3Cfilter id='filter0_dd_1939_12599' x='0' y='0' width='32' height='32' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='1'/%3E%3CfeGaussianBlur stdDeviation='1'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_1939_12599'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation='2'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3CfeBlend mode='normal' in2='effect1_dropShadow_1939_12599' result='effect2_dropShadow_1939_12599'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect2_dropShadow_1939_12599' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E")
}

.gallery-section-off-plan:after {
    background: linear-gradient(270deg, #ffffff 21.88%, rgba(255, 255, 255, 0) 100%);
    height: 100%;
    width: 200px;
    right: 0;
    bottom: 0;
    content: "";
    position: absolute;
    z-index: 9
}

.breadcrumb-wrapper-abs .breadcrumb-wrapper a {
    color: #fff
}

.breadcrumb-wrapper-abs .breadcrumb-wrapper div svg {
    filter: brightness(0) invert(1)
}

.off-plan-detail .gallery-tabs-wrapper-inner:before {
    content: "";
    background: rgba(0, 0, 0, .3);
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute
}

.off-plan-detail .gallery-content-wrapper video {
    -o-object-fit: cover;
    object-fit: cover
}

.off-plan-detail .galler-tabs-wrapper-oputer .container {
    padding-right: 30px;
    padding-left: 30px
}

@media screen and (max-width: 1024px) {
    .off-plan-detail .galler-tabs-wrapper-oputer .container {
        padding-right: 20px;
        padding-left: 20px
    }
}

@media screen and (max-width: 767px) {
    .bottom-section-abs {
        position: static !important;
        background-color: #f4f4f4
    }

    .full-section-inner {
        flex-direction: column-reverse;
        padding-top: 16px;
        padding-bottom: 24px
    }

    .full-section-inner .left-section h2 {
        -webkit-text-fill-color: #2e343f
    }

    .gallery-tabs-wrapper-inner {
        display: flex;
        flex-direction: column-reverse
    }

    .gallery-tabs-wrapper-inner .bottom-section-abs ul li {
        color: #2e343f;
        font-size: 14px
    }

    .gallery-tabs-wrapper-inner .bottom-section-abs ul {
        margin-top: 24px
    }

    .gallery-tabs-wrapper-inner:before {
        display: none
    }
}

.privacy-hero {
    min-height: 500px;
    background: url(./hero-bg-c11bb1f9.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative
}

.privacy-hero:before {
    height: 100%;
    content: "";
    width: 100%;
    position: absolute;
    background-color: #0000001a;
    top: 0;
    left: 0
}

.privacy-hero h1 {
    font-size: 5rem;
    -webkit-text-fill-color: #ffffff
}

.privacy-hero .breadcrumb-wrapper ul li a {
    color: #fff;
    cursor: pointer
}

.privacy-hero .content-inner {
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    max-width: 1536px !important;
    text-align: left;
    width: 100%;
    padding-right: 30px;
    padding-left: 30px
}

.privacy-hero .breadcrumb-wrapper ul li svg {
    filter: brightness(0) invert(1)
}

.privacy-bottom .container {
    max-width: 1000px !important
}

#sitemap-div {
    background-image: url(/frontend/images/glob-2-0e38a900.png);
    background-size: 600px;
    background-repeat: no-repeat;
    background-position: center center
}

.sitemap-section:first-child {
    margin-top: 0
}

.sitemap-section {
    margin-top: 50px
}

.sitemap-section ul {
    margin-top: 20px
}

.sitemap-section ul li {
    font-size: 16px;
    color: #001e60;
    margin-bottom: 10px;
    font-weight: 400;
    width: 20%;
    padding-right: 20px;
    display: inline-block
}

.sitemap-section ul li:last-child {
    margin-bottom: 0
}

.sitemap-section h2 {
    font-size: 30px;
    font-weight: 600
}

.site-map-heading {
    font-weight: 600;
    font-size: 70px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    border-bottom: 3px solid #001e60
}

@media screen and (max-width: 1024px) {
    .privacy-hero {
        min-height: 400px
    }

    .sitemap-section ul li {
        width: 30%
    }

    .sitemap-section {
        margin-top: 40px
    }
}

@media screen and (max-width: 640px) {
    .privacy-hero .content-inner {
        padding-right: 0;
        padding-left: 0
    }

    .privacy-hero {
        min-height: 280px
    }

    .sitemap-section ul li {
        width: 50%;
        font-size: 16px
    }

    .sitemap-section {
        margin-top: 30px
    }
}

.mortgages-page .left-col-wrapper h2 {
    -webkit-text-fill-color: #001e60
}

.team-member-desc {
    background-color: #fafafa
}

.mortgages-page .testimonials-section .testimonials-slider-wrapper .swiper-pagination {
    display: none
}

.currency-exchange .video-wrapper {
    height: 32vw
}

.mortgagage-section .select-filter {
    text-indent: 1rem;
    height: 48px;
    padding: 0 !important
}

.currency-exchange .content-inner {
    max-width: 100%
}

.currency-exchange .video-wrapper img {
    width: 100%;
    height: 100%
}

@media screen and (max-width: 767px) {
    .currency-exchange .video-wrapper {
        height: 480px
    }
}

.head-top h4 {
    -webkit-text-fill-color: #ffffff !important;
    font-weight: 600;
    font-size: 26px !important
}

.head-top {
    padding: 16px;
    background-color: var(--pink);
    text-align: center
}

.exchange-rate h2 {
    font-size: 60px;
    font-weight: 600;
    -webkit-text-fill-color: #ffffff
}

.main-content-box .box-heading-sm {
    color: #4bbe89
}

.preferred-partners-hero .privacy-hero {
    background-image: url(/frontend/images/preferred-partners-hero-bg-aad9a520.jpg)
}

.preferred-partners-outer .container {
    max-width: 1330px !important
}

.preffered-boxes-wrapper {
    margin-top: 70px;
    grid-template-columns:repeat(5, 1fr) !important
}

.preffered-box {
    padding: .5rem .75rem;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px #0000001a !important;
    height: 200px
}

.hidden-content {
    transition: height .4s ease
}

.hidden-content h5 {
    font-size: 30px !important;
    font-family: 'Montserrat';
}

.preferred-partners-outer .active-box:after {
    transform: translate(-50%) rotate(180deg);
    transition: all .4s ease
}

.show-box-content {
    height: 164px !important;
    overflow: unset;
    transition: height .4s ease
}

.complaints-inner h4 {
    font-size: 30px !important
}

.complaints-inner p {
    font-size: 16px !important;
    color: #001e60
}

.steps-wrap h3 {
    font-size: 20px !important
}

.steps-wrap ul li {
    font-size: 16px;
    color: #001e60
}

.complaint-form .absolute-trigger-btn {
    left: 50%;
    transform: translate(-50%);
    top: -42px;
    padding: 15px 40px;
    font-size: 28px !important;
    line-height: 48px;
    font-weight: 400;
    border-radius: 20px
}

.complaint-form .apply-form-component {
    max-width: 1300px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px
}

.inner-form {
    height: 0px;
    overflow: hidden;
    transition: all .4s ease;
    display: none
}

.inner-form.adaptive-height {
    height: auto;
    opacity: 1;
    display: block
}

.show-form.inner-form {
    overflow: visible;
    height: 100%;
    transition: all .4s ease
}

.apply-form-component .form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #001e60;
    margin-bottom: 8px
}

.apply-form-component .form-group {
    margin-bottom: 30px
}

.apply-form-component .form-group input, .apply-form-component .form-group textarea, .apply-form-component .form-group select {
    width: 100%;
    outline: none;
    font-size: 14px !important
}

.apply-form-component h3 {
    font-size: 30px !important;
    font-weight: 600;
    line-height: 33px
}

.apply-form-component p {
    font-size: 16px !important
}

.complaint-form .apply-form-component label.required:after {
    content: "*";
    margin-left: 2px;
    color: #c00
}

.complaint-form .right-form-data {
    margin-left: 40px
}

.complaint-form .form-group .iti--allow-dropdown {
    width: 100%
}

.closing-button .pink-btn {
    padding: 15px 40px;
    font-size: 20px !important;
    line-height: 30px;
    font-weight: 400;
    border-radius: 20px;
    margin-top: 50px;
    cursor: pointer;
    display: inline-flex;
    background-color: var(--pink)
}

@media screen and (max-width: 1024px) {
    .preffered-box:after {
        content: "";
        height: 20px;
        width: 20px
    }

    .preffered-boxes-wrapper {
        margin-top: 40px
    }

    .complaint-form .apply-form-component {
        padding-right: 40px;
        padding-left: 40px
    }

    .preferred-text p {
        font-size: 20px !important
    }

    .hidden-content h5 {
        font-size: 24px !important
    }

    .hidden-content span {
        font-size: 20px !important
    }
}

@media screen and (max-width: 767px) {
    .preffered-boxes-wrapper {
        grid-template-columns:repeat(3, 1fr) !important
    }

    .complaint-form .right-form-data {
        margin-left: 0;
        margin-top: 30px
    }

    .apply-form-component .form-group {
        margin-bottom: 20px
    }

    .apply-form-component h3 {
        font-size: 24px !important
    }

    .preferred-text p {
        font-size: 18px !important
    }

    .complaint-form .absolute-trigger-btn {
        top: -34px;
        font-size: 24px !important;
        line-height: 37px
    }

    .hidden-content h5 {
        font-size: 20px !important
    }

    .complaint-form .apply-form-component {
        padding: 30px
    }
}

@media screen and (max-width: 575px) {
    .complaint-form .absolute-trigger-btn {
        padding-right: 25px;
        padding-left: 25px;
        width: calc(100% - 40px) !important;
        font-size: 20px !important;
        line-height: 30px
    }

    .closing-button .pink-btn {
        padding-right: 25px;
        padding-left: 25px;
        width: calc(100% - 20px) !important;
        line-height: 30px
    }
}

@media screen and (max-width: 480px) {
    .preffered-boxes-wrapper {
        grid-template-columns:repeat(2, 1fr) !important
    }

    .complaint-form .absolute-trigger-btn {
        padding-right: 20px;
        padding-left: 20px;
        font-size: 18px !important
    }

    .hidden-content span {
        font-size: 18px !important
    }

    .hidden-content h5 {
        font-size: 20px !important
    }

    .preffered-box {
        height: 40vw
    }
}

.survey-page .privacy-hero {
    background-image: url(/frontend/images/survey-hero-488c42b1.png);
    padding-top: 64px;
    min-height: 0 !important;
    padding-bottom: 64px
}

.survey-page .privacy-hero .content-inner {
    font-size: 63px;
    max-width: 745px !important;
    position: static;
    transform: translate(0)
}

.survey-page .privacy-hero .content-inner h1 {
    line-height: 77px
}

.survey-page .introductory-text p {
    font-size: 16px !important
}

.survey-page .survey-card {
    box-shadow: 2px 0 40px #00000029;
    background: #ffffff;
    border-radius: 20px;
    padding-right: 44px;
    padding-left: 44px;
    max-width: 675px;
    width: 100%
}

.survey-page .survey-card .my-rating {
    margin-top: 28px
}

.survey-page .survey-card .text-area-survey {
    width: 100%;
    margin-top: 30px
}

.survey-page .survey-card .text-area-survey textarea {
    padding: 20px;
    width: 100%;
    border: 1px solid #0c1d5a;
    border-radius: 20px;
    color: #0c1d5a;
    font-size: 15px !important
}

.survey-page .survey-card .my-rating .jq-star:not(:last-child) {
    margin-right: 25px
}

.survey-page .submit-btn-wrapper input[type=submit] {
    background: #4bbe89;
    width: 256px !important;
    max-width: 100% !important;
    cursor: pointer;
    border-radius: 10px;
    margin: 0 auto
}

.survey-page .submit-btn-wrapper input[type=submit]:hover {
    background: #ffffff
}

@media screen and (max-width: 767px) {
    .survey-page .survey-card .my-rating .jq-star {
        height: 25px !important;
        width: 25px !important
    }
}

@media screen and (max-width: 575px) {
    .consent-wrapper button {
        font-size: 14px
    }

    .survey-page .survey-card .my-rating {
        margin-top: 20px
    }

    .consent-wrapper {
        margin-top: 20px !important
    }

    .survey-page .survey-card {
        padding-right: 30px;
        padding-left: 30px
    }

    .survey-page .survey-card .my-rating .jq-star:not(:last-child) {
        margin-right: 15px
    }
}

@media screen and (max-width: 480px) {
    .consent-wrapper {
        width: 100% !important
    }

    .survey-page .survey-card {
        margin-top: 20px
    }
}

.video-gallery-page .img-surround {
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 6px;
    overflow: hidden
}

.video-gallery-page .breadcrumb-wrapper .breadrumb-text {
    color: #545c6c
}

.video-gallery-page .img-surround img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.video-gallery-page .reverse-gallery .content-thumbnails {
    flex-direction: row-reverse
}

.video-gallery-page .reverse-gallery .left-section {
    padding-left: 80px
}

.video-gallery-page .reverse-gallery .right-section {
    margin-left: 0
}

.video-gallery-page .play-button-thumb {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer
}

.video-filter .tabs-wrapper {
    -moz-column-gap: 0;
    column-gap: 0
}

.video-gallery-sections {
    display: none
}

.video-gallery-sections .thumbnail-box {
    opacity: 0;
    transition: all .4s ease
}

.show-active.video-gallery-sections {
    display: block
}

.show-active.video-gallery-sections .thumbnail-box {
    opacity: 1;
    transition: all .4s ease
}

.video-gallery-page .mislaligned-heading-wrapper .second-row {
    font-family: 'Montserrat';
}

.video-filter .tabs-wrapper .tab {
    padding-right: 30px;
    padding-left: 30px;
    font-size: 14px;
    margin-right: 10px !important;
    text-align: center
}

.video-filter .tabs-wrapper .tab.active {
    background-color: #001e60;
    color: #fff;
    font-weight: 600
}

.video-filter .tabs-wrapper .tab:last-child {
    border: none
}

.video-filter .tabs-wrapper .tab svg {
    display: none
}

@media screen and (max-width: 1024px) {
    .video-gallery-page .inner-col-wrapper {
        grid-template-columns:repeat(3, minmax(0, 1fr))
    }

    .reverse-gallery .content-thumbnails {
        flex-direction: column !important
    }

    .reverse-gallery .content-thumbnails .left-section {
        padding-left: 0;
        width: 100%
    }
}

@media screen and (max-width: 767px) {
    .video-gallery-page .inner-col-wrapper {
        grid-template-columns:repeat(2, minmax(0, 1fr))
    }

    .video-gallery-page {
        margin-top: 24px
    }
}

@media screen and (max-width: 575px) {
    .video-filter .inner-col-wrapper {
        grid-template-columns:repeat(1, minmax(0, 1fr))
    }

    .content-thumbnails .right-section {
        margin-top: 20px
    }

    .content-thumbnails h2 {
        line-height: 36px
    }
}

.fixed-height-sect {
    height: calc(100vh - 100px)
}

.fixed-height-sect .left-image-section {
    position: relative;
    background-image: url(/frontend/images/valuation-3-1826fb67.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center
}

.fixed-height-sect .left-image-section img {
    -o-object-fit: cover;
    object-fit: cover
}

.fixed-height-sect .left-image-section:after {
    content: "";
    position: absolute;
    opacity: .3;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0
}

.initial-step {
    display: block !important;
    position: relative
}

.property_valuation .breadcrumb-wrapper .breadrumb-text {
    color: #545c6c
}

.initial-step .heading-wrap {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    max-width: 560px;
    text-wrap: pre-wrap
}

.initial-step .heading-wrap .h2 {
    font-size: 70px !important;
    line-height: 88px !important
}

.propety-valuation-2 .right-section-questionaire {
    background: linear-gradient(137deg, #4bbe89 0%, #001e60 55.06%) !important
}

.propety-valuation-2 .left-image-section:after {
    display: none
}

.propety-valuation-2 .right-section-questionaire h2 {
    -webkit-text-fill-color: #ffffff;
    background: transparent
}

.propety-valuation-2 .right-section-questionaire .h5 {
    -webkit-text-fill-color: #ffffff
}

.propety-valuation-2 .right-section-questionaire button {
    background: #4bbe89
}

.propety-valuation-2 .right-section-questionaire button:hover {
    background: #fff;
    color: #4bbe89
}

.propety-valuation-2 .step1-filter .check-container {
    color: #fff
}

.propety-valuation-2 .step1-filter .check-container .checkmark {
    border: 1px solid #ffffff
}

.propety-valuation-2 .step1-filter .check-container .checkmark:after {
    border-color: #fff
}

.right-section-questionaire .gradient-search input {
    width: 100%;
    font-size: 16px
}

.step1-filter .check-container {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    color: #919aac;
    font-weight: 700;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.step1-filter .check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.step1-filter .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #001e60;
    border-radius: 4px;
    margin-top: 2px
}

.step1-filter .checkmark:after {
    content: "";
    position: absolute;
    display: none
}

.step1-filter .check-container input:checked ~ .checkmark:after {
    display: block
}

.step1-filter .check-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
    border-color: #001e60
}

.gradient-search.active:after {
    width: 100%;
    transition: width .4s ease
}

.gradient-search input:focus {
    border: 1px solid linear-gradient(to bottom right, #4bbe89 0%, #001e60 55.06%) !important
}

.content-toggle-wrap {
    justify-content: start;
    visibility: hidden;
    transition: all .5s ease;
    width: 100%;
    background-color: #fff;
    order: 1;
    display: none
}

.content-toggle-wrap.active:first-child {
    display: block;
    visibility: visible;
    transition: all .5s ease;
    transform: translateY(-50px)
}

.content-toggle-wrap.active {
    display: block;
    visibility: visible;
    transition: all .5s ease;
    order: 0
}

.initial-step {
    align-items: flex-start
}

.right-content-inner {
    padding-right: 0 !important;
    padding-left: 0 !important
}

.right-content-inner .content-toggle-wrap {
    padding-right: 80px;
    padding-left: 80px
}

.post-code-section .iti--allow-dropdown {
    width: 100%
}

.cta-btn_first_step span {
    animation-name: arrow;
    animation-duration: 1.8s;
    animation-iteration-count: infinite
}

.content-toggle-wrap h1 {
    font-size: 70px !important;
    line-height: 83px !important
}

.grey-bg-section {
    background-color: #fafafa
}

.initial-step .post-code-section {
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important
}

.right-section-questionaire .post-code-section {
    padding: 44px;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 6px #00000029;
    transition: all .4s ease;
    margin-top: 0;
    max-width: 586px;
    width: 100%
}

.bedrooms .field-wrap .beds-btn {
    background: #f4f4f4;
    font-size: 16px;
    color: #919aac;
    border-radius: 15px;
    padding: 4px 10px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    line-height: .85
}

body .property_valuation#property_valuation .content-toggle-wrap select, body .property_valuation#property_valuation .content-toggle-wrap tel, body .property_valuation#property_valuation .content-toggle-wrap input {
    border-radius: 4px;
    padding-top: 20px !important;
    padding-right: 20px !important;
    padding-bottom: 20px !important;
    outline: none !important;
    color: #545c6c
}

.content-toggle-wrap:not(.checbox-wrap) .filter-wrapper {
    margin-bottom: 30px
}

.content-toggle-wrap .post-code-section button {
    font-size: 14px;
    padding: 16px 54px !important;
    display: block !important
}

.stepsContainer {
    width: 100%;
    display: flex;
    align-items: flex-start
}

.valuation-card {
    flex: 1 1 0%;
    color: #e0e0e0;
    text-align: center;
    padding: 10px
}

.valuation-card:after {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background-color: #e0e0e0;
    position: absolute;
    top: 43px;
    z-index: 0
}

.valuation-card.complete {
    color: #001e60
}

.valuation-step {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 66px;
    width: 66px;
    border-radius: 50%;
    z-index: 1;
    background-color: #e0e0e0
}

.valuation-card.complete .valuation-step {
    background-color: #001e60
}

.faqTitle {
    background: linear-gradient(250deg, #001e60 0%, #000613 55.06%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.content-toggle-wrap .button-wrap {
    justify-content: flex-start;
    margin-top: 48px
}

.content-toggle-wrap .button-wrap button.previous {
    background-color: transparent;
    color: var(--primary-blue)
}

.content-toggle-wrap .button-wrap button.next, .content-toggle-wrap .button-wrap button:hover {
    background: var(--primary-blue);
    color: #fff
}

.content-toggle-wrap .previous {
    margin-right: 10px
}

.content-toggle-wrap .cta-btn_first_step {
    width: 187px;
    font-size: 14px;
    font-weight: 600;
    max-width: 100%
}

.post-code-section .double-fields {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px
}

.post-code-section .double-fields > div {
    flex: 1 1 0%
}

@keyframes arrow {
    0% {
        transform: rotate(-180deg) translate(0)
    }
    50% {
        transform: rotate(-180deg) translate(-10px)
    }
    to {
        transform: rotate(-180deg) translate(0)
    }
}

@media screen and (max-width: 1400px) {
    .post-code-section .content-toggle-wrap {
        padding-top: 20px;
        padding-bottom: 20px
    }

    .content-toggle-wrap h2 {
        font-size: 35px;
        line-height: 1.3 !important
    }

    .content-toggle-wrap .post-code-section span {
        font-size: 18px !important
    }

    .content-toggle-wrap .button-wrap button {
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 14px !important
    }
}

@media screen and (max-width: 1200px) {
    .right-content-inner .content-toggle-wrap {
        padding-right: 60px;
        padding-left: 60px
    }

    .content-toggle-wrap h1 {
        font-size: 50px !important
    }

    .right-section-questionaire .post-code-section {
        padding: 30px
    }

    .initial-step .heading-wrap {
        max-width: 400px
    }
}

@media screen and (max-width: 1024px) {
    #valuation .modal-wrapper-outer {
        height: 100%
    }

    .right-content-inner .content-toggle-wrap {
        padding-right: 40px;
        padding-left: 40px
    }

    .initial-step .heading-wrap {
        max-width: 100%;
        transform: none;
        position: static
    }

    .initial-step {
        display: flex !important
    }

    .content-toggle-wrap h1 {
        line-height: normal !important;
        font-size: 40px !important
    }
}

@media screen and (max-width: 768px) {
    .content-toggle-wrap .post-code-section button {
        padding: 15px 35px !important
    }

    .stepsContainer {
        width: calc(100% + 3rem);
        margin-left: -1.5rem;
        overflow: hidden
    }

    .valuation-card {
        min-width: 50vw
    }

    .propertyValuation .breadcrumb-wrapper {
        display: block
    }

    .propertyValuation .initial-step .heading-wrap .h2 {
        font-size: 2rem !important;
        line-height: 1.5 !important
    }

    .values-icon svg {
        height: 80px;
        width: auto
    }

    .faqTitle {
        background: linear-gradient(250deg, #001e60 0%, #001e60 55.06%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent
    }

    .valuation-card:first-child:after {
        width: 50%;
        right: 0
    }

    .valuation-card:last-child:after {
        width: 50%;
        left: 0
    }

    .content-toggle-wrap .post-code-section button {
        padding: 15px 30px !important
    }

    .fixed-height-sect {
        height: auto
    }

    .long-form-responsive .post-code-section {
        height: auto;
        min-height: 400px;
        overflow-y: auto
    }

    .content-toggle-wrap h1 {
        font-size: 30px !important
    }

    .fixed-height-sect .left-image-section {
        height: 480px
    }

    .right-section-questionaire {
        height: 500px
    }

    .right-section-questionaire .post-code-section {
        padding: 20px
    }

    .content-toggle-wrap:not(.checbox-wrap) .filter-wrapper {
        margin-bottom: 15px
    }

    .content-toggle-wrap .button-wrap {
        margin-top: 48px;
        flex-direction: column
    }

    .right-content-inner .content-toggle-wrap {
        padding-right: 20px;
        padding-left: 20px
    }

    .right-section-questionaire .post-code-section {
        max-width: 100%
    }

    body .property_valuation#property_valuation .content-toggle-wrap select, body .property_valuation#property_valuation .content-toggle-wrap input {
        font-size: 14px;
        padding: 15px !important
    }

    .content-toggle-wrap .h5 {
        font-size: 1.3rem !important
    }

    body .property_valuation#property_valuation .content-toggle-wrap .post-code-section .gradient-search .iti--allow-dropdown input {
        padding-left: 20px !important
    }

    .post-code-section .double-fields {
        display: block
    }
}

@media screen and (max-width: 575px) {
    .right-content-inner .h2 {
        line-height: normal !important
    }

    .right-section-questionaire {
        height: 500px
    }

    .button-wrap {
        margin-right: -10px;
        margin-left: -10px
    }

    .button-wrap button {
        margin-right: 10px;
        margin-left: 10px
    }

    .fixed-height-sect .left-image-section {
        height: 320px
    }

    .step1-filter .check-container {
        font-size: 18px
    }

    .post-code-section .button-wrap button:nth-child(1) + button {
        margin-left: 0 !important
    }
}

.parsley-errors-list {
    color: red
}

.post-code-section .double-fields .mb-6 {
    margin-bottom: 20px
}

.post-code-section .filter-wrapper .mb-6 {
    margin-bottom: 0
}

#valuation .modal-wrapper-outer {
    height: 100%
}

:root {
    --ck-color-base-active: hsl(208, 88%, 52%);
    --ck-color-image-caption-background: hsl(0, 0%, 97%);
    --ck-color-image-caption-text: hsl(0, 0%, 20%);
    --ck-color-mention-background: hsla(341, 100%, 30%, .1);
    --ck-color-mention-text: hsl(341, 100%, 30%);
    --ck-color-table-caption-background: hsl(0, 0%, 97%);
    --ck-color-table-caption-text: hsl(0, 0%, 20%);
    --ck-color-table-column-resizer-hover: var(--ck-color-base-active);
    --ck-highlight-marker-blue: hsl(201, 97%, 72%);
    --ck-highlight-marker-green: hsl(120, 93%, 68%);
    --ck-highlight-marker-pink: hsl(345, 96%, 73%);
    --ck-highlight-marker-yellow: hsl(60, 97%, 73%);
    --ck-highlight-pen-green: hsl(112, 100%, 27%);
    --ck-highlight-pen-red: hsl(0, 85%, 49%);
    --ck-image-style-spacing: 1.5em;
    --ck-inline-image-style-spacing: calc(var(--ck-image-style-spacing) / 2);
    --ck-table-column-resizer-position-offset: calc(var(--ck-table-column-resizer-width) * -.5 - .5px);
    --ck-table-column-resizer-width: 7px;
    --ck-todo-list-checkmark-size: 16px;
    --ck-z-default: 1
}

.ck-content h1 {
    font-family: 'Montserrat' !important;
    font-size: 3rem !important;
    padding-bottom: .825rem;
    background: none;
    -webkit-text-fill-color: var(--primary-blue)
}

.ck-content h2 {
    /*font-family: Messina Sans, sans-serif !important;*/
    font-size: 2rem !important;
    padding-bottom: .75rem;
    background: none;
    -webkit-text-fill-color: black;
}

.ck-content h3 {
    font-size: 1.5rem !important;
    color: black;
    font-weight: 600 !important;
    background: none !important;
    -webkit-text-fill-color: black;
    line-height: normal;
    /*font-family: Messina Sans, sans-serif;*/
    line-height: 44px;
    padding-bottom: .75rem
}

.ck-content h4, .ck-content h5 {
    font-size: 1.25rem !important;
    padding-bottom: .625rem
}

.ck-content h6 {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    padding-bottom: .625rem;
    color: #2e343f
}

.ck-content p {
    font-size: 1rem !important;
    padding-bottom: 10px;
    color: #2e343f
}

.ck-content a {
    text-decoration: underline;
    color: var(--primary-blue)
}

.ck-content ul {
    padding-left: 40px;
    font-size: 1rem !important;
    list-style: square;
    color: #2e343f
}

.ck-content ul li::marker {
    font-size: 8px
}

.ck-content ol {
    padding-left: 40px;
    font-size: 1rem !important;
    list-style: decimal
}

.ck-content ol li ol {
    list-style: lower-alpha
}

.ck-content blockquote {
    overflow: hidden;
    padding: 2.5rem 3.75rem;
    margin-left: 0;
    margin-right: 0;
    font-style: italic;
    border-left: solid 5px #4bbe89;
    background-color: #f4f4f4
}

.ck-content blockquote p {
    padding-bottom: 1.875rem;
    font-family: "Montserrat";
    font-style: italic;
    color: #2e343f;
    font-size: 1.5rem !important
}

.ck-content blockquote p:last-child {
    font-size: 1.25rem !important;
    padding-bottom: 0;
    font-style: normal
}

.ck-content[dir=rtl] blockquote {
    border-left: 0;
    border-right: solid 5px #4bbe89
}

.ck-content .marker-blue {
    background-color: var(--ck-highlight-marker-blue)
}

.ck-content .image {
    display: table;
    clear: both;
    text-align: center;
    margin: .9em auto;
    min-width: 50px
}

.ck-content .image img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    min-width: 100%;
    border-radius: .25rem
}

.ck-content span[lang] {
    font-style: italic
}

.ck-content .table table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    height: 100%;
    border: 1px double hsl(0, 0%, 70%)
}

.ck-content .table table td, .ck-content .table table th {
    min-width: 2em;
    padding: .4em;
    border: 1px solid hsl(0, 0%, 75%)
}

.ck-content .table table th {
    font-weight: 700;
    background: hsla(0, 0%, 0%, 5%)
}

.ck-content[dir=rtl] .table th {
    text-align: right
}

.ck-content[dir=ltr] .table th {
    text-align: left
}

.ck-content .table table {
    overflow: hidden;
    table-layout: fixed
}

.ck-content .table td, .ck-content .table th {
    position: relative
}

.ck-content pre {
    padding: 1em;
    color: #353535;
    background: hsla(0, 0%, 78%, .3);
    border: 1px solid hsl(0, 0%, 77%);
    border-radius: 2px;
    text-align: left;
    direction: ltr;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    white-space: pre-wrap;
    font-style: normal;
    min-width: 200px
}

.ck-content pre code {
    background: unset;
    padding: 0;
    border-radius: 0
}

.ck-content hr {
    margin: 15px 0;
    height: 4px;
    background: hsl(0, 0%, 87%);
    border: 0
}

@media screen and (max-width: 1024px) {
    .ck-content h1 {
        font-size: 3rem
    }

    .ck-content h2 {
        font-size: 2.5rem
    }

    .ck-content h3 {
        font-size: 2rem !important
    }

    .ck-content h4 {
        font-size: 2rem !important;
        color: var(--primary-blue);
        line-height: 1.3em
    }

    .ck-content h5 {
        font-size: 1.5rem !important
    }
}

@media screen and (max-width: 640px) {
    .ck-content h1 {
        font-size: 2rem
    }

    .ck-content h2 {
        font-size: 1.5rem
    }

    h4, .h4 {
        font-size: 1.5rem !important
    }

    p {
        font-size: .875rem !important
    }
}

.splide__container {
    box-sizing: border-box;
    position: relative
}

.splide__list {
    backface-visibility: hidden;
    display: flex;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important
}

.splide.is-initialized:not(.is-active) .splide__list {
    display: block
}

.splide__pagination {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    pointer-events: none
}

.splide__pagination li {
    display: inline-block;
    line-height: 1;
    list-style-type: none;
    margin: 0;
    pointer-events: auto
}

.splide:not(.is-overflow) .splide__pagination {
    display: none
}

.splide__progress__bar {
    width: 0
}

.splide {
    position: relative;
    visibility: hidden
}

.splide.is-initialized, .splide.is-rendered {
    visibility: visible
}

.splide__slide {
    backface-visibility: hidden;
    box-sizing: border-box;
    flex-shrink: 0;
    list-style-type: none !important;
    margin: 0;
    position: relative
}

.splide__slide img {
    vertical-align: bottom
}

.splide__spinner {
    animation: splide-loading 1s linear infinite;
    border: 2px solid #999;
    border-left-color: transparent;
    border-radius: 50%;
    bottom: 0;
    contain: strict;
    display: inline-block;
    height: 20px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 20px
}

.splide__sr {
    clip: rect(0 0 0 0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
    display: none
}

.splide__toggle.is-active .splide__toggle__pause {
    display: inline
}

.splide__track {
    overflow: hidden;
    position: relative;
    z-index: 0
}

@keyframes splide-loading {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(1turn)
    }
}

.splide__track--draggable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.splide__track--fade > .splide__list > .splide__slide {
    margin: 0 !important;
    opacity: 0;
    z-index: 0
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
    opacity: 1;
    z-index: 1
}

.splide--rtl {
    direction: rtl
}

.splide__track--ttb > .splide__list {
    display: block
}

.splide__arrow {
    align-items: center;
    background: #ccc;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    height: 2em;
    justify-content: center;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2em;
    z-index: 1
}

.splide__arrow svg {
    fill: #000;
    height: 1.2em;
    width: 1.2em
}

.splide__arrow:hover:not(:disabled) {
    opacity: .9
}

.splide__arrow:disabled {
    opacity: .3
}

.splide__arrow:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: 3px
}

.splide__arrow--prev {
    left: 1em
}

.splide__arrow--prev svg {
    transform: scaleX(-1)
}

.splide__arrow--next {
    right: 1em
}

.splide.is-focus-in .splide__arrow:focus {
    outline: 3px solid #0bf;
    outline-offset: 3px
}

.splide__pagination {
    bottom: .5em;
    left: 0;
    padding: 0 1em;
    position: absolute;
    right: 0;
    z-index: 1
}

.splide__pagination__page {
    background: #ccc;
    border: 0;
    border-radius: 50%;
    display: inline-block;
    height: 8px;
    margin: 3px;
    opacity: .7;
    padding: 0;
    position: relative;
    transition: transform .2s linear;
    width: 8px
}

.splide__pagination__page.is-active {
    background: #fff;
    transform: scale(1.4);
    z-index: 1
}

.splide__pagination__page:hover {
    cursor: pointer;
    opacity: .9
}

.splide__pagination__page:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: 3px
}

.splide.is-focus-in .splide__pagination__page:focus {
    outline: 3px solid #0bf;
    outline-offset: 3px
}

.splide__progress__bar {
    background: #ccc;
    height: 3px
}

.splide__slide {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.splide__slide:focus {
    outline: 0
}

@supports (outline-offset:-3px) {
    .splide__slide:focus-visible {
        outline: 3px solid #0bf;
        outline-offset: -3px
    }
}

@media screen and (-ms-high-contrast: none) {
    .splide__slide:focus-visible {
        border: 3px solid #0bf
    }
}

@supports (outline-offset:-3px) {
    .splide.is-focus-in .splide__slide:focus {
        outline: 3px solid #0bf;
        outline-offset: -3px
    }
}

@media screen and (-ms-high-contrast: none) {
    .splide.is-focus-in .splide__slide:focus {
        border: 3px solid #0bf
    }

    .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
        border-color: #0bf
    }
}

.splide__toggle {
    cursor: pointer
}

.splide__toggle:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: 3px
}

.splide.is-focus-in .splide__toggle:focus {
    outline: 3px solid #0bf;
    outline-offset: 3px
}

.splide__track--nav > .splide__list > .splide__slide {
    border: 3px solid transparent;
    cursor: pointer
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
    border: 3px solid #000
}

.splide__arrows--rtl .splide__arrow--prev {
    left: auto;
    right: 1em
}

.splide__arrows--rtl .splide__arrow--prev svg {
    transform: scaleX(1)
}

.splide__arrows--rtl .splide__arrow--next {
    left: 1em;
    right: auto
}

.splide__arrows--rtl .splide__arrow--next svg {
    transform: scaleX(-1)
}

.splide__arrows--ttb .splide__arrow {
    left: 50%;
    transform: translate(-50%)
}

.splide__arrows--ttb .splide__arrow--prev {
    top: 1em
}

.splide__arrows--ttb .splide__arrow--prev svg {
    transform: rotate(-90deg)
}

.splide__arrows--ttb .splide__arrow--next {
    bottom: 1em;
    top: auto
}

.splide__arrows--ttb .splide__arrow--next svg {
    transform: rotate(90deg)
}

.splide__pagination--ttb {
    bottom: 0;
    display: flex;
    flex-direction: column;
    left: auto;
    padding: 1em 0;
    right: .5em;
    top: 0
}

.mCSB_container {
    width: auto;
    margin-right: 30px;
    overflow: hidden
}

.mCSB_container.mCS_no_scrollbar {
    margin-right: 0
}

.mCS_disabled > .mCustomScrollBox > .mCSB_container.mCS_no_scrollbar, .mCS_destroyed > .mCustomScrollBox > .mCSB_container.mCS_no_scrollbar {
    margin-right: 30px
}

.mCustomScrollBox > .mCSB_scrollTools {
    width: 16px;
    height: 100%;
    top: 0;
    right: 0
}

.mCSB_scrollTools .mCSB_draggerContainer {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: auto
}

.mCSB_scrollTools a + .mCSB_draggerContainer {
    margin: 20px 0
}

.mCSB_scrollTools .mCSB_draggerRail {
    width: 2px;
    height: 100%;
    margin: 0 auto;
    border-radius: 10px
}

.mCSB_scrollTools .mCSB_dragger {
    cursor: pointer;
    width: 100%;
    height: 30px
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 4px;
    height: 100%;
    margin: 0 auto;
    border-radius: 10px;
    text-align: center
}

.mCSB_scrollTools .mCSB_buttonUp, .mCSB_scrollTools .mCSB_buttonDown {
    display: block;
    position: relative;
    height: 20px;
    overflow: hidden;
    margin: 0 auto;
    cursor: pointer
}

.mCSB_scrollTools .mCSB_buttonDown {
    top: 100%;
    margin-top: -40px
}

.mCSB_horizontal > .mCSB_container {
    height: auto;
    margin-right: 0;
    margin-bottom: 30px;
    overflow: hidden
}

.mCSB_horizontal > .mCSB_container.mCS_no_scrollbar {
    margin-bottom: 0
}

.mCS_disabled > .mCSB_horizontal > .mCSB_container.mCS_no_scrollbar, .mCS_destroyed > .mCSB_horizontal > .mCSB_container.mCS_no_scrollbar {
    margin-right: 0;
    margin-bottom: 30px
}

.mCSB_horizontal.mCustomScrollBox > .mCSB_scrollTools {
    width: 100%;
    height: 16px;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    overflow: hidden
}

.mCSB_horizontal > .mCSB_scrollTools a + .mCSB_draggerContainer {
    margin: 0 20px
}

.mCSB_horizontal > .mCSB_scrollTools .mCSB_draggerRail {
    width: 100%;
    height: 2px;
    margin: 7px 0;
    border-radius: 10px
}

.mCSB_horizontal > .mCSB_scrollTools .mCSB_dragger {
    width: 30px;
    height: 100%
}

.mCSB_horizontal > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 4px;
    margin: 6px auto;
    border-radius: 10px
}

.mCSB_horizontal > .mCSB_scrollTools .mCSB_buttonLeft, .mCSB_horizontal > .mCSB_scrollTools .mCSB_buttonRight {
    display: block;
    position: relative;
    width: 20px;
    height: 100%;
    overflow: hidden;
    margin: 0 auto;
    cursor: pointer;
    float: left
}

.mCSB_horizontal > .mCSB_scrollTools .mCSB_buttonRight {
    margin-left: -40px;
    float: right
}

.mCustomScrollBox {
    -ms-touch-action: none
}

.mCustomScrollBox > .mCSB_scrollTools {
    opacity: .75;
    filter: "alpha(opacity=75)";
    -ms-filter: "alpha(opacity=75)"
}

.mCustomScrollBox:hover > .mCSB_scrollTools {
    opacity: 1;
    filter: "alpha(opacity=100)";
    -ms-filter: "alpha(opacity=100)"
}

.mCSB_scrollTools .mCSB_draggerRail {
    background: #000;
    background: rgba(0, 0, 0, .4);
    filter: "alpha(opacity=40)";
    -ms-filter: "alpha(opacity=40)"
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background: #fff;
    background: rgba(255, 255, 255, .75);
    filter: "alpha(opacity=75)";
    -ms-filter: "alpha(opacity=75)"
}

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background: rgba(255, 255, 255, .85);
    filter: "alpha(opacity=85)";
    -ms-filter: "alpha(opacity=85)"
}

.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background: rgba(255, 255, 255, .9);
    filter: "alpha(opacity=90)";
    -ms-filter: "alpha(opacity=90)"
}

.mCSB_scrollTools .mCSB_buttonUp, .mCSB_scrollTools .mCSB_buttonDown, .mCSB_scrollTools .mCSB_buttonLeft, .mCSB_scrollTools .mCSB_buttonRight {
    background-image: url(/frontend/images/mCSB_buttons-e98cac48.png);
    background-repeat: no-repeat;
    opacity: .4;
    filter: "alpha(opacity=40)";
    -ms-filter: "alpha(opacity=40)"
}

.mCSB_scrollTools .mCSB_buttonUp {
    background-position: 0 0
}

.mCSB_scrollTools .mCSB_buttonDown {
    background-position: 0 -20px
}

.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: 0 -40px
}

.mCSB_scrollTools .mCSB_buttonRight {
    background-position: 0 -56px
}

.mCSB_scrollTools .mCSB_buttonUp:hover, .mCSB_scrollTools .mCSB_buttonDown:hover, .mCSB_scrollTools .mCSB_buttonLeft:hover, .mCSB_scrollTools .mCSB_buttonRight:hover {
    opacity: .75;
    filter: "alpha(opacity=75)";
    -ms-filter: "alpha(opacity=75)"
}

.mCSB_scrollTools .mCSB_buttonUp:active, .mCSB_scrollTools .mCSB_buttonDown:active, .mCSB_scrollTools .mCSB_buttonLeft:active, .mCSB_scrollTools .mCSB_buttonRight:active {
    opacity: .9;
    filter: "alpha(opacity=90)";
    -ms-filter: "alpha(opacity=90)"
}

.mCS-dark > .mCSB_scrollTools .mCSB_draggerRail {
    background: #000;
    background: rgba(0, 0, 0, .15)
}

.mCS-dark > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background: #000;
    background: rgba(0, 0, 0, .75)
}

.mCS-dark > .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background: rgba(0, 0, 0, .85)
}

.mCS-dark > .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-dark > .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background: rgba(0, 0, 0, .9)
}

.mCS-dark > .mCSB_scrollTools .mCSB_buttonUp {
    background-position: -80px 0
}

.mCS-dark > .mCSB_scrollTools .mCSB_buttonDown {
    background-position: -80px -20px
}

.mCS-dark > .mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -80px -40px
}

.mCS-dark > .mCSB_scrollTools .mCSB_buttonRight {
    background-position: -80px -56px
}

.mCS-light-2 > .mCSB_scrollTools .mCSB_draggerRail {
    width: 4px;
    background: #fff;
    background: rgba(255, 255, 255, .1);
    border-radius: 1px
}

.mCS-light-2 > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 4px;
    background: #fff;
    background: rgba(255, 255, 255, .75);
    border-radius: 1px
}

.mCS-light-2.mCSB_horizontal > .mCSB_scrollTools .mCSB_draggerRail {
    width: 100%;
    height: 4px;
    margin: 6px 0
}

.mCS-light-2.mCSB_horizontal > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 4px;
    margin: 6px auto
}

.mCS-light-2 > .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background: rgba(255, 255, 255, .85)
}

.mCS-light-2 > .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-light-2 > .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background: rgba(255, 255, 255, .9)
}

.mCS-light-2 > .mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px 0
}

.mCS-light-2 > .mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -20px
}

.mCS-light-2 > .mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -40px
}

.mCS-light-2 > .mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -56px
}

.mCS-dark-2 > .mCSB_scrollTools .mCSB_draggerRail {
    width: 4px;
    background: #000;
    background: rgba(0, 0, 0, .1);
    border-radius: 1px
}

.mCS-dark-2 > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 4px;
    background: #000;
    background: rgba(0, 0, 0, .75);
    border-radius: 1px
}

.mCS-dark-2.mCSB_horizontal > .mCSB_scrollTools .mCSB_draggerRail {
    width: 100%;
    height: 4px;
    margin: 6px 0
}

.mCS-dark-2.mCSB_horizontal > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 4px;
    margin: 6px auto
}

.mCS-dark-2 > .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background: rgba(0, 0, 0, .85)
}

.mCS-dark-2 > .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-dark-2 > .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background: rgba(0, 0, 0, .9)
}

.mCS-dark-2 > .mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px 0
}

.mCS-dark-2 > .mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -20px
}

.mCS-dark-2 > .mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -40px
}

.mCS-dark-2 > .mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -56px
}

.mCS-light-thick > .mCSB_scrollTools .mCSB_draggerRail {
    width: 4px;
    background: #fff;
    background: rgba(255, 255, 255, .1);
    border-radius: 2px
}

.mCS-light-thick > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 6px;
    background: #fff;
    background: rgba(255, 255, 255, .75);
    border-radius: 2px
}

.mCS-light-thick.mCSB_horizontal > .mCSB_scrollTools .mCSB_draggerRail {
    width: 100%;
    height: 4px;
    margin: 6px 0
}

.mCS-light-thick.mCSB_horizontal > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 6px;
    margin: 5px auto
}

.mCS-light-thick > .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background: rgba(255, 255, 255, .85)
}

.mCS-light-thick > .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-light-thick > .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background: rgba(255, 255, 255, .9)
}

.mCS-light-thick > .mCSB_scrollTools .mCSB_buttonUp {
    background-position: -16px 0
}

.mCS-light-thick > .mCSB_scrollTools .mCSB_buttonDown {
    background-position: -16px -20px
}

.mCS-light-thick > .mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -20px -40px
}

.mCS-light-thick > .mCSB_scrollTools .mCSB_buttonRight {
    background-position: -20px -56px
}

.mCS-dark-thick > .mCSB_scrollTools .mCSB_draggerRail {
    width: 4px;
    background: #000;
    background: rgba(0, 0, 0, .1);
    border-radius: 2px
}

.mCS-dark-thick > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 6px;
    background: #000;
    background: rgba(0, 0, 0, .75);
    border-radius: 2px
}

.mCS-dark-thick.mCSB_horizontal > .mCSB_scrollTools .mCSB_draggerRail {
    width: 100%;
    height: 4px;
    margin: 6px 0
}

.mCS-dark-thick.mCSB_horizontal > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 6px;
    margin: 5px auto
}

.mCS-dark-thick > .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background: rgba(0, 0, 0, .85)
}

.mCS-dark-thick > .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-dark-thick > .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background: rgba(0, 0, 0, .9)
}

.mCS-dark-thick > .mCSB_scrollTools .mCSB_buttonUp {
    background-position: -96px 0
}

.mCS-dark-thick > .mCSB_scrollTools .mCSB_buttonDown {
    background-position: -96px -20px
}

.mCS-dark-thick > .mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -100px -40px
}

.mCS-dark-thick > .mCSB_scrollTools .mCSB_buttonRight {
    background-position: -100px -56px
}

.mCS-light-thin > .mCSB_scrollTools .mCSB_draggerRail {
    background: #fff;
    background: rgba(255, 255, 255, .1)
}

.mCS-light-thin > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 2px
}

.mCS-light-thin.mCSB_horizontal > .mCSB_scrollTools .mCSB_draggerRail {
    width: 100%
}

.mCS-light-thin.mCSB_horizontal > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 2px;
    margin: 7px auto
}

.mCS-dark-thin > .mCSB_scrollTools .mCSB_draggerRail {
    background: #000;
    background: rgba(0, 0, 0, .15)
}

.mCS-dark-thin > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 2px;
    background: #000;
    background: rgba(0, 0, 0, .75)
}

.mCS-dark-thin.mCSB_horizontal > .mCSB_scrollTools .mCSB_draggerRail {
    width: 100%
}

.mCS-dark-thin.mCSB_horizontal > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 2px;
    margin: 7px auto
}

.mCS-dark-thin > .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background: rgba(0, 0, 0, .85)
}

.mCS-dark-thin > .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-dark-thin > .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background: rgba(0, 0, 0, .9)
}

.mCS-dark-thin > .mCSB_scrollTools .mCSB_buttonUp {
    background-position: -80px 0
}

.mCS-dark-thin > .mCSB_scrollTools .mCSB_buttonDown {
    background-position: -80px -20px
}

.mCS-dark-thin > .mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -80px -40px
}

.mCS-dark-thin > .mCSB_scrollTools .mCSB_buttonRight {
    background-position: -80px -56px
}

.social-wrapper ul li {
    position: relative
}

.social-wrapper ul + ul li:after {
    content: "/";
    font-size: inherit;
    color: #f4f4f4;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -11px
}

footer .footer-blocks {
    padding-left: 80px
}

footer .footer-blocks .list-wrapper {
    padding-right: 20px
}

.social-wrapper ul + ul li:last-child:after {
    display: none
}

.quick-links li {
    font-size: 14px
}

.list-wrapper span {
    line-height: 24px;
    font-family: 'Montserrat'
}

footer ul li a {
    font-size: 16px
}

@media screen and (max-width: 1180px) {
    footer .footer-blocks {
        padding-left: 40px
    }
}

@media screen and (max-width: 1024px) {
    footer .footer-blocks {
        padding-left: 0
    }
}

@media screen and (max-width: 768px) {
    footer {
        position: relative;
        z-index: 11
    }
}

@media screen and (max-width: 640px) {
    footer .footer-blocks {
        flex-wrap: wrap
    }

    .footer-blocks .list-wrapper:nth-of-type(3) {
        margin-top: 0
    }

    .footer-blocks .list-wrapper {
        width: 50%
    }

    .footer-blocks .list-wrapper:not(:last-child) {
        margin-bottom: 40px
    }
}

@media screen and (max-width: 440px) {
    .footer-blocks .list-wrapper:not(:last-child) {
        margin-bottom: 30px
    }
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: 0
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list, .slick-slider .slick-track {
    transform: translateZ(0)
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.slick-track:after, .slick-track:before {
    display: table;
    content: ""
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

.slick-loading .slick-list {
    background: #fff url(./ajax-loader-e7b44c86.gif) center center no-repeat
}

@font-face {
    font-family: 'Montserrat';
    font-weight: 400;
    font-style: normal;
    font-display: "swap";
    src: url(./slick-06d80cf0.eot);
    src: url(./slick-06d80cf0.eot?#iefix) format("embedded-opentype"), url(./slick-26726bac.woff) format("woff"), url(./slick-37bc99cf.ttf) format("truetype"), url(./slick-12459f22.svg#slick) format("svg")
}

.slick-next, .slick-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    transform: translateY(-50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: 0;
    background: 0 0
}

.slick-next:focus, .slick-next:hover, .slick-prev:focus, .slick-prev:hover {
    color: transparent;
    outline: 0;
    background: 0 0
}

.slick-next:focus:before, .slick-next:hover:before, .slick-prev:focus:before, .slick-prev:hover:before {
    opacity: 1
}

.slick-next.slick-disabled:before, .slick-prev.slick-disabled:before {
    opacity: .25
}

.slick-next:before, .slick-prev:before {
    font-family: 'Montserrat';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-prev {
    left: -25px
}

[dir=rtl] .slick-prev {
    right: -25px;
    left: auto
}

.slick-prev:before {
    content: "←"
}

[dir=rtl] .slick-prev:before {
    content: "→"
}

.slick-next {
    right: -25px
}

[dir=rtl] .slick-next {
    right: auto;
    left: -25px
}

.slick-next:before {
    content: "→"
}

[dir=rtl] .slick-next:before {
    content: "←"
}

.slick-dotted.slick-slider {
    margin-bottom: 30px
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: 0;
    background: 0 0
}

.slick-dots li button:focus, .slick-dots li button:hover {
    outline: 0
}

.slick-dots li button:focus:before, .slick-dots li button:hover:before {
    opacity: 1
}

.slick-dots li button:before {
    font-family: 'Montserrat';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: "•";
    text-align: center;
    opacity: .25;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: #000
}

*, :before, :after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb
}

:before, :after {
    --tw-content: ""
}

html, :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    font-family: "Montserrat";
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent
}

body {
    margin: 0;
    line-height: inherit
}

hr {
    height: 0;
    color: inherit;
    border-top-width: 1px
}

abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit
}

a {
    color: inherit;
    text-decoration: inherit
}

b, strong {
    font-weight: bolder
}

code, kbd, samp, pre {
    font-family: 'Montserrat';
    font-feature-settings: normal;
    font-variation-settings: normal;
    font-size: 1em
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0
}

button, select {
    text-transform: none
}

button, input:where([type=button]), input:where([type=reset]), input:where([type=submit]) {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none
}

:-moz-focusring {
    outline: auto
}

:-moz-ui-invalid {
    box-shadow: none
}

progress {
    vertical-align: baseline
}

::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

summary {
    display: list-item
}

blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre {
    margin: 0
}

fieldset {
    margin: 0;
    padding: 0
}

legend {
    padding: 0
}

ol, ul, menu {
    list-style: none;
    margin: 0;
    padding: 0
}

dialog {
    padding: 0
}

textarea {
    resize: vertical
}

input::-moz-placeholder, textarea::-moz-placeholder {
    opacity: 1;
    color: #9ca3af
}

input::placeholder, textarea::placeholder {
    opacity: 1;
    color: #9ca3af
}

button, [role=button] {
    cursor: pointer
}

:disabled {
    cursor: default
}

img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle
}

img, video {
    max-width: 100%;
    height: auto
}

[hidden] {
    display: none
}

*, :before, :after {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style:
}

::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style:
}

.container {
    width: 100%;
    padding-right: 1.25rem;
    padding-left: 1.25rem
}

@media (min-width: 440px) {
    .container {
        max-width: 440px
    }
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
        padding-right: 1.5rem;
        padding-left: 1.5rem
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
        padding-right: 1.875rem;
        padding-left: 1.875rem
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1536px
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0
}

.not-sr-only {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal
}

.pointer-events-none {
    pointer-events: none
}

.pointer-events-auto {
    pointer-events: auto
}

.visible {
    visibility: visible
}

.invisible {
    visibility: hidden
}

.collapse {
    visibility: collapse
}

.static {
    position: static
}

.fixed {
    position: fixed
}

.absolute {
    position: absolute
}

.relative {
    position: relative
}

.sticky {
    position: sticky
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.inset-y-0 {
    top: 0;
    bottom: 0
}

.\!right-\[-1px\] {
    right: -1px !important
}

.\!right-\[45\%\] {
    right: 45% !important
}

.\!top-\[-8px\] {
    top: -8px !important
}

.\!top-\[45\%\] {
    top: 45% !important
}

.-bottom-2 {
    bottom: -.5rem
}

.bottom-0 {
    bottom: 0
}

.bottom-12 {
    bottom: 3rem
}

.bottom-5 {
    bottom: 1.25rem
}

.left-0 {
    left: 0
}

.left-2\/4 {
    left: 50%
}

.left-3 {
    left: .75rem
}

.left-5 {
    left: 1.25rem
}

.right-0 {
    right: 0
}

.right-2 {
    right: .5rem
}

.right-5 {
    right: 1.25rem
}

.right-6 {
    right: 1.5rem
}

.right-\[20px\] {
    right: 20px
}

.top-0 {
    top: 0
}

.top-1 {
    top: .25rem
}

.top-2 {
    top: .5rem
}

.top-2\/4 {
    top: 50%
}

.top-4 {
    top: 1rem
}

.top-5 {
    top: 1.25rem
}

.top-6 {
    top: 1.5rem
}

.top-\[0\] {
    top: 0
}

.top-\[113px\] {
    top: 113px
}

.top-\[115px\] {
    top: 115px
}

.top-\[14px\] {
    top: 14px
}

.top-\[20px\] {
    top: 20px
}

.top-\[3\.5rem\] {
    top: 3.5rem
}

.top-\[54px\] {
    top: 54px
}

.isolate {
    isolation: isolate
}

.isolation-auto {
    isolation: auto
}

.z-0 {
    z-index: 0
}

.z-10 {
    z-index: 10
}

.z-20 {
    z-index: 20
}

.z-50 {
    z-index: 50
}

.z-\[9999\] {
    z-index: 9999
}

.order-1 {
    order: 1
}

.order-2 {
    order: 2
}

.order-3 {
    order: 3
}

.order-4 {
    order: 4
}

.order-7 {
    order: 7
}

.order-first {
    order: -9999
}

.order-last {
    order: 9999
}

.order-none {
    order: 0
}

.col-span-1 {
    grid-column: span 1 / span 1
}

.col-span-2 {
    grid-column: span 2 / span 2
}

.col-span-4 {
    grid-column: span 4 / span 4
}

.col-span-5 {
    grid-column: span 5 / span 5
}

.col-span-8 {
    grid-column: span 8 / span 8
}

.row-span-2 {
    grid-row: span 2 / span 2
}

.float-right {
    float: right
}

.float-left {
    float: left
}

.float-none {
    float: none
}

.clear-left {
    clear: left
}

.clear-right {
    clear: right
}

.clear-both {
    clear: both
}

.clear-none {
    clear: none
}

.m-auto {
    margin: auto
}

.\!mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important
}

.\!my-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important
}

.-mx-1 {
    margin-left: -.25rem;
    margin-right: -.25rem
}

.-mx-1\.5 {
    margin-left: -.375rem;
    margin-right: -.375rem
}

.-mx-\[22px\] {
    margin-left: -22px;
    margin-right: -22px
}

.-my-1 {
    margin-top: -.25rem;
    margin-bottom: -.25rem
}

.-my-1\.5 {
    margin-top: -.375rem;
    margin-bottom: -.375rem
}

.mx-2 {
    margin-left: .5rem;
    margin-right: .5rem
}

.mx-3 {
    margin-left: .75rem;
    margin-right: .75rem
}

.mx-4 {
    margin-left: 1rem;
    margin-right: 1rem
}

.mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem
}

.my-16 {
    margin-top: 4rem;
    margin-bottom: 4rem
}

.my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem
}

.my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem
}

.my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem
}

.my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem
}

.my-\[18px\] {
    margin-top: 18px;
    margin-bottom: 18px
}

.\!mb-0 {
    margin-bottom: 0 !important
}

.\!mb-4 {
    margin-bottom: 1rem !important
}

.\!mt-0 {
    margin-top: 0 !important
}

.-ml-px {
    margin-left: -1px
}

.-mt-px {
    margin-top: -1px
}

.mb-0 {
    margin-bottom: 0
}

.mb-1 {
    margin-bottom: .25rem
}

.mb-10 {
    margin-bottom: 2.5rem
}

.mb-11 {
    margin-bottom: 2.75rem
}

.mb-12 {
    margin-bottom: 3rem
}

.mb-2 {
    margin-bottom: .5rem
}

.mb-2\.5 {
    margin-bottom: .625rem
}

.mb-20 {
    margin-bottom: 5rem
}

.mb-3 {
    margin-bottom: .75rem
}

.mb-4 {
    margin-bottom: 1rem
}

.mb-5 {
    margin-bottom: 1.25rem
}

.mb-6 {
    margin-bottom: 1.5rem
}

.mb-7 {
    margin-bottom: 1.75rem
}

.mb-8 {
    margin-bottom: 2rem
}

.mb-\[15px\] {
    margin-bottom: 15px
}

.mb-\[16px\] {
    margin-bottom: 16px
}

.mb-\[22px\] {
    margin-bottom: 22px
}

.mb-\[24px\] {
    margin-bottom: 24px
}

.mb-\[28px\] {
    margin-bottom: 28px
}

.mb-\[40px\] {
    margin-bottom: 40px
}

.mb-\[50px\] {
    margin-bottom: 50px
}

.mb-\[6px\] {
    margin-bottom: 6px
}

.mb-\[9px\] {
    margin-bottom: 9px
}

.ml-0 {
    margin-left: 0
}

.ml-1 {
    margin-left: .25rem
}

.ml-12 {
    margin-left: 3rem
}

.ml-2 {
    margin-left: .5rem
}

.ml-2\.5 {
    margin-left: .625rem
}

.ml-3 {
    margin-left: .75rem
}

.ml-4 {
    margin-left: 1rem
}

.ml-5 {
    margin-left: 1.25rem
}

.ml-8 {
    margin-left: 2rem
}

.ml-\[20px\] {
    margin-left: 20px
}

.ml-\[25px\] {
    margin-left: 25px
}

.ml-auto {
    margin-left: auto
}

.mr-0 {
    margin-right: 0
}

.mr-1 {
    margin-right: .25rem
}

.mr-1\.5 {
    margin-right: .375rem
}

.mr-2 {
    margin-right: .5rem
}

.mr-2\.5 {
    margin-right: .625rem
}

.mr-3 {
    margin-right: .75rem
}

.mr-4 {
    margin-right: 1rem
}

.mr-5 {
    margin-right: 1.25rem
}

.mr-8 {
    margin-right: 2rem
}

.mr-\[100px\] {
    margin-right: 100px
}

.mr-\[40px\] {
    margin-right: 40px
}

.mr-\[5px\] {
    margin-right: 5px
}

.mr-\[8px\] {
    margin-right: 8px
}

.mt-0 {
    margin-top: 0
}

.mt-1 {
    margin-top: .25rem
}

.mt-10 {
    margin-top: 2.5rem
}

.mt-12 {
    margin-top: 3rem
}

.mt-16 {
    margin-top: 4rem
}

.mt-2 {
    margin-top: .5rem
}

.mt-2\.5 {
    margin-top: .625rem
}

.mt-20 {
    margin-top: 5rem
}

.mt-3 {
    margin-top: .75rem
}

.mt-32 {
    margin-top: 8rem
}

.mt-4 {
    margin-top: 1rem
}

.mt-5 {
    margin-top: 1.25rem
}

.mt-6 {
    margin-top: 1.5rem
}

.mt-7 {
    margin-top: 1.75rem
}

.mt-8 {
    margin-top: 2rem
}

.mt-\[-4px\] {
    margin-top: -4px
}

.mt-\[15px\] {
    margin-top: 15px
}

.mt-\[22px\] {
    margin-top: 22px
}

.mt-\[30px\] {
    margin-top: 30px
}

.mt-\[40px\] {
    margin-top: 40px
}

.mt-\[50px\] {
    margin-top: 50px
}

.mt-\[56px\] {
    margin-top: 56px
}

.box-border {
    box-sizing: border-box
}

.box-content {
    box-sizing: content-box
}

.block {
    display: block
}

.inline-block {
    display: inline-block
}

.inline {
    display: inline
}

.\!flex {
    display: flex !important
}

.flex {
    display: flex
}

.inline-flex {
    display: inline-flex
}

.table {
    display: table
}

.inline-table {
    display: inline-table
}

.table-caption {
    display: table-caption
}

.table-cell {
    display: table-cell
}

.table-column {
    display: table-column
}

.table-column-group {
    display: table-column-group
}

.table-footer-group {
    display: table-footer-group
}

.table-header-group {
    display: table-header-group
}

.table-row-group {
    display: table-row-group
}

.table-row {
    display: table-row
}

.flow-root {
    display: flow-root
}

.grid {
    display: grid
}

.inline-grid {
    display: inline-grid
}

.contents {
    display: contents
}

.list-item {
    display: list-item
}

.\!hidden {
    display: none !important
}

.hidden {
    display: none
}

.aspect-3\/2 {
    aspect-ratio: 3 / 2
}

.aspect-\[3\/2\] {
    aspect-ratio: 3/2
}

.aspect-video {
    aspect-ratio: 16 / 9
}

.\!h-\[100px\] {
    height: 100px !important
}

.\!h-\[180px\] {
    height: 180px !important
}

.\!h-\[200px\] {
    height: 200px !important
}

.\!h-\[280px\] {
    height: 280px !important
}

.\!h-\[355px\] {
    height: 355px !important
}

.\!h-\[45px\] {
    height: 45px !important
}

.\!h-\[506px\] {
    height: 506px !important
}

.\!h-\[54px\] {
    height: 54px !important
}

.\!h-\[57px\] {
    height: 57px !important
}

.\!h-auto {
    height: auto !important
}

.h-10 {
    height: 2.5rem
}

.h-12 {
    height: 3rem
}

.h-14 {
    height: 3.5rem
}

.h-16 {
    height: 4rem
}

.h-2 {
    height: .5rem
}

.h-3 {
    height: .75rem
}

.h-32 {
    height: 8rem
}

.h-5 {
    height: 1.25rem
}

.h-6 {
    height: 1.5rem
}

.h-60 {
    height: 15rem
}

.h-8 {
    height: 2rem
}

.h-9 {
    height: 2.25rem
}

.h-96 {
    height: 24rem
}

.h-\[100\%\] {
    height: 100%
}

.h-\[120px\] {
    height: 120px
}

.h-\[150px\] {
    height: 150px
}

.h-\[15px\] {
    height: 15px
}

.h-\[160px\] {
    height: 160px
}

.h-\[180px\] {
    height: 180px
}

.h-\[18px\] {
    height: 18px
}

.h-\[20px\] {
    height: 20px
}

.h-\[220px\] {
    height: 220px
}

.h-\[240px\] {
    height: 240px
}

.h-\[255px\] {
    height: 255px
}

.h-\[260px\] {
    height: 260px
}

.h-\[270px\] {
    height: 270px
}

.h-\[280px\] {
    height: 280px
}

.h-\[290px\] {
    height: 290px
}

.h-\[336px\] {
    height: 336px
}

.h-\[420px\] {
    height: 420px
}

.h-\[42px\] {
    height: 42px
}

.h-\[45px\] {
    height: 45px
}

.h-\[463px\] {
    height: 463px
}

.h-\[49\%\] {
    height: 49%
}

.h-\[49px\] {
    height: 49px
}

.h-\[500px\] {
    height: 500px
}

.h-\[54px\] {
    height: 54px
}

.h-\[550px\] {
    height: 550px
}

.h-\[56px\] {
    height: 56px
}

.h-\[760px\] {
    height: 760px
}

.h-\[78px\] {
    height: 78px
}

.h-\[90px\] {
    height: 90px
}

.h-\[92px\] {
    height: 92px
}

.h-auto {
    height: auto
}

.h-full {
    height: 100%
}

.h-screen {
    height: 100vh
}

.\!max-h-\[calc\(100vh-40px\)\] {
    max-height: calc(100vh - 40px) !important
}

.max-h-16 {
    max-height: 4rem
}

.max-h-\[220px\] {
    max-height: 220px
}

.max-h-\[260px\] {
    max-height: 260px
}

.max-h-\[300px\] {
    max-height: 300px
}

.max-h-\[33px\] {
    max-height: 33px
}

.max-h-\[50vh\] {
    max-height: 50vh
}

.max-h-\[550px\] {
    max-height: 550px
}

.max-h-\[78px\] {
    max-height: 78px
}

.\!min-h-0 {
    min-height: 0px !important
}

.min-h-0 {
    min-height: 0px
}

.min-h-\[220px\] {
    min-height: 220px
}

.min-h-\[550px\] {
    min-height: 550px
}

.min-h-\[80\%\] {
    min-height: 80%
}

.min-h-\[84px\] {
    min-height: 84px
}

.min-h-full {
    min-height: 100%
}

.min-h-screen {
    min-height: 100vh
}

.\!w-52 {
    width: 13rem !important
}

.\!w-64 {
    width: 16rem !important
}

.\!w-\[135px\] {
    width: 135px !important
}

.\!w-\[150px\] {
    width: 150px !important
}

.\!w-\[220px\] {
    width: 220px !important
}

.\!w-\[450px\] {
    width: 450px !important
}

.\!w-\[45px\] {
    width: 45px !important
}

.\!w-\[500px\] {
    width: 500px !important
}

.\!w-auto {
    width: auto !important
}

.\!w-fit {
    width: -moz-fit-content !important;
    width: fit-content !important
}

.\!w-full {
    width: 100% !important
}

.\!w-max {
    width: -moz-max-content !important;
    width: max-content !important
}

.w-0 {
    width: 0px
}

.w-1\/2 {
    width: 50%
}

.w-1\/3 {
    width: 33.333333%
}

.w-10 {
    width: 2.5rem
}

.w-10\/12 {
    width: 83.333333%
}

.w-12 {
    width: 3rem
}

.w-2\/3 {
    width: 66.666667%
}

.w-2\/5 {
    width: 40%
}

.w-2\/6 {
    width: 33.333333%
}

.w-28 {
    width: 7rem
}

.w-3\/5 {
    width: 60%
}

.w-36 {
    width: 9rem
}

.w-4\/6 {
    width: 66.666667%
}

.w-48 {
    width: 12rem
}

.w-5 {
    width: 1.25rem
}

.w-6 {
    width: 1.5rem
}

.w-8 {
    width: 2rem
}

.w-80 {
    width: 20rem
}

.w-\[110px\] {
    width: 110px
}

.w-\[120px\] {
    width: 120px
}

.w-\[125px\] {
    width: 125px
}

.w-\[130px\] {
    width: 130px
}

.w-\[150px\] {
    width: 150px
}

.w-\[15px\] {
    width: 15px
}

.w-\[16px\] {
    width: 16px
}

.w-\[18px\] {
    width: 18px
}

.w-\[206px\] {
    width: 206px
}

.w-\[20px\] {
    width: 20px
}

.w-\[240px\] {
    width: 240px
}

.w-\[269px\] {
    width: 269px
}

.w-\[29rem\] {
    width: 29rem
}

.w-\[300px\] {
    width: 300px
}

.w-\[32\%\] {
    width: 32%
}

.w-\[36\%\] {
    width: 36%
}

.w-\[36rem\] {
    width: 36rem
}

.w-\[380px\] {
    width: 380px
}

.w-\[40\%\] {
    width: 40%
}

.w-\[55\%\] {
    width: 55%
}

.w-\[56px\] {
    width: 56px
}

.w-\[60\%\] {
    width: 60%
}

.w-\[70px\] {
    width: 70px
}

.w-\[90\%\] {
    width: 90%
}

.w-\[92px\] {
    width: 92px
}

.w-auto {
    width: auto
}

.w-fit {
    width: -moz-fit-content;
    width: fit-content
}

.w-full {
    width: 100%
}

.w-max {
    width: -moz-max-content;
    width: max-content
}

.w-screen {
    width: 100vw
}

.min-w-\[130px\] {
    min-width: 130px
}

.min-w-\[140px\] {
    min-width: 140px
}

.min-w-\[165px\] {
    min-width: 165px
}

.min-w-\[177px\] {
    min-width: 177px
}

.min-w-\[240px\] {
    min-width: 240px
}

.min-w-\[250px\] {
    min-width: 250px
}

.min-w-\[280px\] {
    min-width: 280px
}

.min-w-\[56px\] {
    min-width: 56px
}

.min-w-\[65px\] {
    min-width: 65px
}

.\!max-w-\[1120px\] {
    max-width: 1120px !important
}

.\!max-w-\[500px\] {
    max-width: 500px !important
}

.\!max-w-\[550px\] {
    max-width: 550px !important
}

.\!max-w-\[600px\] {
    max-width: 600px !important
}

.\!max-w-\[690px\] {
    max-width: 690px !important
}

.\!max-w-\[810px\] {
    max-width: 810px !important
}

.\!max-w-none {
    max-width: none !important
}

.max-w-6xl {
    max-width: 72rem
}

.max-w-7xl {
    max-width: 80rem
}

.max-w-80 {
    max-width: 20rem
}

.max-w-\[1000px\] {
    max-width: 1000px
}

.max-w-\[1108px\] {
    max-width: 1108px
}

.max-w-\[14rem\] {
    max-width: 14rem
}

.max-w-\[18rem\] {
    max-width: 18rem
}

.max-w-\[200px\] {
    max-width: 200px
}

.max-w-\[250px\] {
    max-width: 250px
}

.max-w-\[265px\] {
    max-width: 265px
}

.max-w-\[26rem\] {
    max-width: 26rem
}

.max-w-\[700px\] {
    max-width: 700px
}

.max-w-\[900px\] {
    max-width: 900px
}

.max-w-\[950px\] {
    max-width: 950px
}

.max-w-full {
    max-width: 100%
}

.max-w-sm {
    max-width: 24rem
}

.max-w-xl {
    max-width: 36rem
}

.max-w-xs {
    max-width: 20rem
}

.flex-1 {
    flex: 1 1 0%
}

.flex-auto {
    flex: 1 1 auto
}

.flex-shrink {
    flex-shrink: 1
}

.flex-shrink-0 {
    flex-shrink: 0
}

.shrink {
    flex-shrink: 1
}

.flex-grow, .grow {
    flex-grow: 1
}

.basis-1\/6 {
    flex-basis: 16.666667%
}

.basis-5\/6 {
    flex-basis: 83.333333%
}

.table-auto {
    table-layout: auto
}

.table-fixed {
    table-layout: fixed
}

.border-collapse {
    border-collapse: collapse
}

.border-separate {
    border-collapse: separate
}

.-translate-x-2\/4 {
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.-translate-y-2\/4 {
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.rotate-180 {
    --tw-rotate: 180deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.transform, .transform-cpu {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.transform-gpu {
    transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.transform-none {
    transform: none
}

@keyframes pulse {
    50% {
        opacity: .5
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.animate-spin {
    animation: spin 1s linear infinite
}

.cursor-default {
    cursor: default
}

.cursor-not-allowed {
    cursor: not-allowed
}

.cursor-pointer {
    cursor: pointer
}

.touch-auto {
    touch-action: auto
}

.touch-none {
    touch-action: none
}

.touch-pan-x {
    --tw-pan-x: pan-x;
    touch-action: var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom)
}

.touch-pan-left {
    --tw-pan-x: pan-left;
    touch-action: var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom)
}

.touch-pan-right {
    --tw-pan-x: pan-right;
    touch-action: var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom)
}

.touch-pan-y {
    --tw-pan-y: pan-y;
    touch-action: var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom)
}

.touch-pan-up {
    --tw-pan-y: pan-up;
    touch-action: var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom)
}

.touch-pan-down {
    --tw-pan-y: pan-down;
    touch-action: var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom)
}

.touch-pinch-zoom {
    --tw-pinch-zoom: pinch-zoom;
    touch-action: var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom)
}

.touch-manipulation {
    touch-action: manipulation
}

.select-none {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.select-text {
    -webkit-user-select: text;
    -moz-user-select: text;
    user-select: text
}

.select-all {
    -webkit-user-select: all;
    -moz-user-select: all;
    user-select: all
}

.select-auto {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    user-select: auto
}

.resize-none {
    resize: none
}

.resize-y {
    resize: vertical
}

.resize-x {
    resize: horizontal
}

.resize {
    resize: both
}

.snap-none {
    scroll-snap-type: none
}

.snap-x {
    scroll-snap-type: x var(--tw-scroll-snap-strictness)
}

.snap-y {
    scroll-snap-type: y var(--tw-scroll-snap-strictness)
}

.snap-both {
    scroll-snap-type: both var(--tw-scroll-snap-strictness)
}

.snap-mandatory {
    --tw-scroll-snap-strictness: mandatory
}

.snap-proximity {
    --tw-scroll-snap-strictness: proximity
}

.snap-start {
    scroll-snap-align: start
}

.snap-end {
    scroll-snap-align: end
}

.snap-center {
    scroll-snap-align: center
}

.snap-align-none {
    scroll-snap-align: none
}

.snap-normal {
    scroll-snap-stop: normal
}

.snap-always {
    scroll-snap-stop: always
}

.list-inside {
    list-style-position: inside
}

.list-outside {
    list-style-position: outside
}

.list-disc {
    list-style-type: disc
}

.appearance-none {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.break-before-auto {
    -moz-column-break-before: auto;
    break-before: auto
}

.break-before-avoid {
    -moz-column-break-before: avoid;
    break-before: avoid
}

.break-before-all {
    -moz-column-break-before: all;
    break-before: all
}

.break-before-avoid-page {
    -moz-column-break-before: avoid;
    break-before: avoid-page
}

.break-before-page {
    -moz-column-break-before: page;
    break-before: page
}

.break-before-left {
    -moz-column-break-before: left;
    break-before: left
}

.break-before-right {
    -moz-column-break-before: right;
    break-before: right
}

.break-before-column {
    -moz-column-break-before: column;
    break-before: column
}

.break-inside-auto {
    -moz-column-break-inside: auto;
    break-inside: auto
}

.break-inside-avoid {
    -moz-column-break-inside: avoid;
    break-inside: avoid
}

.break-inside-avoid-page {
    break-inside: avoid-page
}

.break-inside-avoid-column {
    -moz-column-break-inside: avoid;
    break-inside: avoid-column
}

.break-after-auto {
    -moz-column-break-after: auto;
    break-after: auto
}

.break-after-avoid {
    -moz-column-break-after: avoid;
    break-after: avoid
}

.break-after-all {
    -moz-column-break-after: all;
    break-after: all
}

.break-after-avoid-page {
    -moz-column-break-after: avoid;
    break-after: avoid-page
}

.break-after-page {
    -moz-column-break-after: page;
    break-after: page
}

.break-after-left {
    -moz-column-break-after: left;
    break-after: left
}

.break-after-right {
    -moz-column-break-after: right;
    break-after: right
}

.break-after-column {
    -moz-column-break-after: column;
    break-after: column
}

.grid-flow-row {
    grid-auto-flow: row
}

.grid-flow-col {
    grid-auto-flow: column
}

.grid-flow-dense {
    grid-auto-flow: dense
}

.grid-flow-row-dense {
    grid-auto-flow: row dense
}

.grid-flow-col-dense {
    grid-auto-flow: column dense
}

.grid-cols-1 {
    grid-template-columns:repeat(1, minmax(0, 1fr))
}

.grid-cols-2 {
    grid-template-columns:repeat(2, minmax(0, 1fr))
}

.grid-cols-3 {
    grid-template-columns:repeat(3, minmax(0, 1fr))
}

.grid-cols-4 {
    grid-template-columns:repeat(4, minmax(0, 1fr))
}

.grid-cols-5 {
    grid-template-columns:repeat(5, minmax(0, 1fr))
}

.grid-cols-6 {
    grid-template-columns:repeat(6, minmax(0, 1fr))
}

.grid-rows-2 {
    grid-template-rows:repeat(2, minmax(0, 1fr))
}

.flex-row {
    flex-direction: row
}

.flex-row-reverse {
    flex-direction: row-reverse
}

.flex-col {
    flex-direction: column
}

.flex-col-reverse {
    flex-direction: column-reverse
}

.flex-wrap {
    flex-wrap: wrap
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse
}

.flex-nowrap {
    flex-wrap: nowrap
}

.place-content-center {
    place-content: center
}

.place-content-start {
    place-content: start
}

.place-content-end {
    place-content: end
}

.place-content-between {
    place-content: space-between
}

.place-content-around {
    place-content: space-around
}

.place-content-evenly {
    place-content: space-evenly
}

.place-content-stretch {
    place-content: stretch
}

.place-items-start {
    place-items: start
}

.place-items-end {
    place-items: end
}

.place-items-center {
    place-items: center
}

.place-items-stretch {
    place-items: stretch
}

.content-center {
    align-content: center
}

.content-start {
    align-content: flex-start
}

.content-end {
    align-content: flex-end
}

.content-between {
    align-content: space-between
}

.content-around {
    align-content: space-around
}

.content-evenly {
    align-content: space-evenly
}

.items-start {
    align-items: flex-start
}

.items-end {
    align-items: flex-end
}

.items-center {
    align-items: center
}

.items-baseline {
    align-items: baseline
}

.items-stretch {
    align-items: stretch
}

.justify-start {
    justify-content: flex-start
}

.justify-end {
    justify-content: flex-end
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}

.justify-around {
    justify-content: space-around
}

.justify-evenly {
    justify-content: space-evenly
}

.justify-items-start {
    justify-items: start
}

.justify-items-end {
    justify-items: end
}

.justify-items-center {
    justify-items: center
}

.justify-items-stretch {
    justify-items: stretch
}

.gap-0 {
    gap: 0px
}

.gap-1 {
    gap: .25rem
}

.gap-2 {
    gap: .5rem
}

.gap-2\.5 {
    gap: .625rem
}

.gap-20 {
    gap: 5rem
}

.gap-3 {
    gap: .75rem
}

.gap-4 {
    gap: 1rem
}

.gap-5 {
    gap: 1.25rem
}

.gap-6 {
    gap: 1.5rem
}

.gap-7 {
    gap: 1.75rem
}

.gap-8 {
    gap: 2rem
}

.gap-\[10px\] {
    gap: 10px
}

.gap-\[28px\] {
    gap: 28px
}

.gap-x-4 {
    -moz-column-gap: 1rem;
    column-gap: 1rem
}

.gap-x-8 {
    -moz-column-gap: 2rem;
    column-gap: 2rem
}

.gap-y-3 {
    row-gap: .75rem
}

.gap-y-4 {
    row-gap: 1rem
}

.gap-y-6 {
    row-gap: 1.5rem
}

.gap-y-8 {
    row-gap: 2rem
}

.space-x-1 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(.25rem * var(--tw-space-x-reverse));
    margin-left: calc(.25rem * calc(1 - var(--tw-space-x-reverse)))
}

.space-x-12 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(3rem * var(--tw-space-x-reverse));
    margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse)))
}

.space-x-16 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(4rem * var(--tw-space-x-reverse));
    margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse)))
}

.space-x-3 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(.75rem * var(--tw-space-x-reverse));
    margin-left: calc(.75rem * calc(1 - var(--tw-space-x-reverse)))
}

.space-x-\[27px\] > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(27px * var(--tw-space-x-reverse));
    margin-left: calc(27px * calc(1 - var(--tw-space-x-reverse)))
}

.space-y-1 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(.25rem * var(--tw-space-y-reverse))
}

.space-y-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(.5rem * var(--tw-space-y-reverse))
}

.space-y-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse))
}

.space-y-5 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse))
}

.space-y-reverse > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 1
}

.space-x-reverse > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 1
}

.divide-x > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-x-reverse: 0;
    border-right-width: calc(1px * var(--tw-divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)))
}

.divide-y > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(1px * var(--tw-divide-y-reverse))
}

.divide-y-reverse > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-y-reverse: 1
}

.divide-x-reverse > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-x-reverse: 1
}

.divide-solid > :not([hidden]) ~ :not([hidden]) {
    border-style: solid
}

.divide-dashed > :not([hidden]) ~ :not([hidden]) {
    border-style: dashed
}

.divide-dotted > :not([hidden]) ~ :not([hidden]) {
    border-style: dotted
}

.divide-double > :not([hidden]) ~ :not([hidden]) {
    border-style: double
}

.divide-none > :not([hidden]) ~ :not([hidden]) {
    border-style: none
}

.divide-slate-200 > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-opacity: 1;
    border-color: rgb(226 232 240 / var(--tw-divide-opacity))
}

.place-self-auto {
    place-self: auto
}

.place-self-start {
    place-self: start
}

.place-self-end {
    place-self: end
}

.place-self-center {
    place-self: center
}

.place-self-stretch {
    place-self: stretch
}

.self-auto {
    align-self: auto
}

.self-start {
    align-self: flex-start
}

.self-end {
    align-self: flex-end
}

.self-center {
    align-self: center
}

.self-stretch {
    align-self: stretch
}

.self-baseline {
    align-self: baseline
}

.justify-self-auto {
    justify-self: auto
}

.justify-self-start {
    justify-self: start
}

.justify-self-end {
    justify-self: end
}

.justify-self-center {
    justify-self: center
}

.justify-self-stretch {
    justify-self: stretch
}

.overflow-auto {
    overflow: auto
}

.overflow-hidden {
    overflow: hidden
}

.overflow-clip {
    overflow: clip
}

.overflow-visible {
    overflow: visible
}

.overflow-scroll {
    overflow: scroll
}

.overflow-x-auto {
    overflow-x: auto
}

.overflow-y-auto {
    overflow-y: auto
}

.overflow-x-hidden {
    overflow-x: hidden
}

.\!overflow-y-hidden {
    overflow-y: hidden !important
}

.overflow-y-hidden {
    overflow-y: hidden
}

.overflow-x-clip {
    overflow-x: clip
}

.overflow-y-clip {
    overflow-y: clip
}

.overflow-x-visible {
    overflow-x: visible
}

.overflow-y-visible {
    overflow-y: visible
}

.overflow-x-scroll {
    overflow-x: scroll
}

.overflow-y-scroll {
    overflow-y: scroll
}

.overscroll-auto {
    overscroll-behavior: auto
}

.overscroll-contain {
    overscroll-behavior: contain
}

.overscroll-none {
    overscroll-behavior: none
}

.overscroll-y-auto {
    overscroll-behavior-y: auto
}

.overscroll-y-contain {
    overscroll-behavior-y: contain
}

.overscroll-y-none {
    overscroll-behavior-y: none
}

.overscroll-x-auto {
    overscroll-behavior-x: auto
}

.overscroll-x-contain {
    overscroll-behavior-x: contain
}

.overscroll-x-none {
    overscroll-behavior-x: none
}

.scroll-auto {
    scroll-behavior: auto
}

.scroll-smooth {
    scroll-behavior: smooth
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.overflow-ellipsis, .text-ellipsis {
    text-overflow: ellipsis
}

.text-clip {
    text-overflow: clip
}

.whitespace-normal {
    white-space: normal
}

.whitespace-nowrap {
    white-space: nowrap
}

.whitespace-pre {
    white-space: pre
}

.whitespace-pre-line {
    white-space: pre-line
}

.whitespace-pre-wrap {
    white-space: pre-wrap
}

.break-normal {
    overflow-wrap: normal;
    word-break: normal
}

.break-words {
    overflow-wrap: break-word
}

.break-all {
    word-break: break-all
}

.\!rounded-\[10px\] {
    border-radius: 10px !important
}

.rounded {
    border-radius: .25rem
}

.rounded-3xl {
    border-radius: 1.5rem
}

.rounded-\[10px\] {
    border-radius: 10px
}

.rounded-\[4px\] {
    border-radius: 4px
}

.rounded-\[6px\] {
    border-radius: 6px
}

.rounded-\[8px\] {
    border-radius: 8px
}

.rounded-full {
    border-radius: 9999px
}

.rounded-lg {
    border-radius: .5rem
}

.rounded-md {
    border-radius: .375rem
}

.rounded-sm {
    border-radius: .125rem
}

.rounded-b {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.rounded-l {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.rounded-l-md {
    border-top-left-radius: .375rem;
    border-bottom-left-radius: .375rem
}

.rounded-r {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem
}

.rounded-r-md {
    border-top-right-radius: .375rem;
    border-bottom-right-radius: .375rem
}

.rounded-t {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem
}

.rounded-t-xl {
    border-top-left-radius: .75rem;
    border-top-right-radius: .75rem
}

.\!rounded-bl-\[0px\] {
    border-bottom-left-radius: 0 !important
}

.\!rounded-br-\[0px\] {
    border-bottom-right-radius: 0 !important
}

.\!rounded-tl-\[0px\] {
    border-top-left-radius: 0 !important
}

.\!rounded-tr-\[0px\] {
    border-top-right-radius: 0 !important
}

.rounded-bl {
    border-bottom-left-radius: .25rem
}

.rounded-bl-\[4px\] {
    border-bottom-left-radius: 4px
}

.rounded-br {
    border-bottom-right-radius: .25rem
}

.rounded-tl {
    border-top-left-radius: .25rem
}

.rounded-tl-\[4px\] {
    border-top-left-radius: 4px
}

.rounded-tl-md {
    border-top-left-radius: .375rem
}

.rounded-tr {
    border-top-right-radius: .25rem
}

.rounded-tr-md {
    border-top-right-radius: .375rem
}

.\!border {
    border-width: 1px !important
}

.border {
    border-width: 1px
}

.border-0 {
    border-width: 0px
}

.border-2 {
    border-width: 2px
}

.border-x {
    border-left-width: 1px;
    border-right-width: 1px
}

.border-y {
    border-top-width: 1px;
    border-bottom-width: 1px
}

.\!border-l-\[0px\] {
    border-left-width: 0px !important
}

.border-b, .border-b-\[1px\] {
    border-bottom-width: 1px
}

.border-l {
    border-left-width: 1px
}

.border-l-4 {
    border-left-width: 4px
}

.border-r {
    border-right-width: 1px
}

.border-t {
    border-top-width: 1px
}

.border-solid {
    border-style: solid
}

.border-dashed {
    border-style: dashed
}

.border-dotted {
    border-style: dotted
}

.border-double {
    border-style: double
}

.border-hidden {
    border-style: hidden
}

.border-none {
    border-style: none
}

.\!border-\[\#E0E0E0\] {
    --tw-border-opacity: 1 !important;
    border-color: rgb(224 224 224 / var(--tw-border-opacity)) !important
}

.\!border-\[\#4bbe89\] {
    --tw-border-opacity: 1 !important;
    border-color: rgb(239 96 121 / var(--tw-border-opacity)) !important
}

.border-\[\#707070\/10\] {
    border-color: #707070/10
}

.border-\[\#E0E0E0\] {
    --tw-border-opacity: 1;
    border-color: rgb(224 224 224 / var(--tw-border-opacity))
}

.border-\[\#EBEBEB\] {
    --tw-border-opacity: 1;
    border-color: rgb(235 235 235 / var(--tw-border-opacity))
}

.border-\[\#F4F4F4\] {
    --tw-border-opacity: 1;
    border-color: rgb(244 244 244 / var(--tw-border-opacity))
}

.border-gray-200 {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity))
}

.border-gray-300 {
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity))
}

.border-gray-400 {
    --tw-border-opacity: 1;
    border-color: rgb(156 163 175 / var(--tw-border-opacity))
}

.border-gray-500 {
    --tw-border-opacity: 1;
    border-color: rgb(107 114 128 / var(--tw-border-opacity))
}

.border-light-grey {
    --tw-border-opacity: 1;
    border-color: rgb(244 244 244 / var(--tw-border-opacity))
}

.border-orange-500 {
    --tw-border-opacity: 1;
    border-color: rgb(249 115 22 / var(--tw-border-opacity))
}

.border-slate-100 {
    --tw-border-opacity: 1;
    border-color: rgb(241 245 249 / var(--tw-border-opacity))
}

.border-slate-200 {
    --tw-border-opacity: 1;
    border-color: rgb(226 232 240 / var(--tw-border-opacity))
}

.border-slate-300 {
    --tw-border-opacity: 1;
    border-color: rgb(203 213 225 / var(--tw-border-opacity))
}

.border-slate-600 {
    --tw-border-opacity: 1;
    border-color: rgb(71 85 105 / var(--tw-border-opacity))
}

.\!bg-\[\#1A5CEB\] {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(26 92 235 / var(--tw-bg-opacity)) !important
}

.bg-\[\#001441\] {
    --tw-bg-opacity: 1;
    background-color: rgb(0 20 65 / var(--tw-bg-opacity))
}

.bg-\[\#1A5CEB\] {
    --tw-bg-opacity: 1;
    background-color: rgb(26 92 235 / var(--tw-bg-opacity))
}

.bg-\[\#F7F7F7\] {
    --tw-bg-opacity: 1;
    background-color: rgb(247 247 247 / var(--tw-bg-opacity))
}

.bg-\[\#FAFAFA\] {
    --tw-bg-opacity: 1;
    background-color: rgb(250 250 250 / var(--tw-bg-opacity))
}

.bg-\[\#4bbe89\] {
    --tw-bg-opacity: 1;
    background-color: rgb(239 96 121 / var(--tw-bg-opacity))
}

.bg-\[\#f7f7f7\] {
    --tw-bg-opacity: 1;
    background-color: rgb(247 247 247 / var(--tw-bg-opacity))
}

.bg-black {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity))
}

.bg-black\/\[\.5\] {
    background-color: #00000080
}

.bg-black\/\[0\.4\] {
    background-color: #0006
}

.bg-black\/\[0\.5\] {
    background-color: #00000080
}

.bg-blue-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(219 234 254 / var(--tw-bg-opacity))
}

.bg-gray-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity))
}

.bg-gray-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity))
}

.bg-gray-300 {
    --tw-bg-opacity: 1;
    background-color: rgb(209 213 219 / var(--tw-bg-opacity))
}

.bg-gray-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity))
}

.bg-gray-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(107 114 128 / var(--tw-bg-opacity))
}

.bg-green-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(220 252 231 / var(--tw-bg-opacity))
}

.bg-light-grey {
    --tw-bg-opacity: 1;
    background-color: rgb(244 244 244 / var(--tw-bg-opacity))
}

.bg-neutral-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(245 245 245 / var(--tw-bg-opacity))
}

.bg-orange-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 237 213 / var(--tw-bg-opacity))
}

.bg-primary-blue {
    --tw-bg-opacity: 1;
    background-color: rgb(0 30 96 / var(--tw-bg-opacity))
}

.bg-red-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 226 226 / var(--tw-bg-opacity))
}

.bg-slate-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(226 232 240 / var(--tw-bg-opacity))
}

.bg-slate-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(248 250 252 / var(--tw-bg-opacity))
}

.bg-transparent {
    background-color: transparent
}

.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}

.bg-yellow-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 249 195 / var(--tw-bg-opacity))
}

.bg-opacity-30 {
    --tw-bg-opacity: .3
}

.bg-opacity-50 {
    --tw-bg-opacity: .5
}

.bg-opacity-75 {
    --tw-bg-opacity: .75
}

.bg-none {
    background-image: none
}

.decoration-slice {
    -webkit-box-decoration-break: slice;
    box-decoration-break: slice
}

.decoration-clone {
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone
}

.box-decoration-slice {
    -webkit-box-decoration-break: slice;
    box-decoration-break: slice
}

.box-decoration-clone {
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone
}

.bg-contain {
    background-size: contain
}

.bg-cover {
    background-size: cover
}

.bg-fixed {
    background-attachment: fixed
}

.bg-local {
    background-attachment: local
}

.bg-scroll {
    background-attachment: scroll
}

.bg-clip-border {
    background-clip: border-box
}

.bg-clip-padding {
    background-clip: padding-box
}

.bg-clip-content {
    background-clip: content-box
}

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text
}

.bg-center {
    background-position: center
}

.bg-repeat {
    background-repeat: repeat
}

.bg-no-repeat {
    background-repeat: no-repeat
}

.bg-repeat-x {
    background-repeat: repeat-x
}

.bg-repeat-y {
    background-repeat: repeat-y
}

.bg-repeat-round {
    background-repeat: round
}

.bg-repeat-space {
    background-repeat: space
}

.bg-origin-border {
    background-origin: border-box
}

.bg-origin-padding {
    background-origin: padding-box
}

.bg-origin-content {
    background-origin: content-box
}

.object-contain {
    -o-object-fit: contain;
    object-fit: contain
}

.object-cover {
    -o-object-fit: cover;
    object-fit: cover
}

.object-fill {
    -o-object-fit: fill;
    object-fit: fill
}

.object-none {
    -o-object-fit: none;
    object-fit: none
}

.object-scale-down {
    -o-object-fit: scale-down;
    object-fit: scale-down
}

.\!p-0 {
    padding: 0 !important
}

.p-0 {
    padding: 0
}

.p-1 {
    padding: .25rem
}

.p-1\.5 {
    padding: .375rem
}

.p-10 {
    padding: 2.5rem
}

.p-2 {
    padding: .5rem
}

.p-2\.5 {
    padding: .625rem
}

.p-3 {
    padding: .75rem
}

.p-4 {
    padding: 1rem
}

.p-5 {
    padding: 1.25rem
}

.p-6 {
    padding: 1.5rem
}

.p-7 {
    padding: 1.75rem
}

.p-8 {
    padding: 2rem
}

.p-\[10px\] {
    padding: 10px
}

.p-\[22px\] {
    padding: 22px
}

.\!px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important
}

.\!px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important
}

.\!px-2 {
    padding-left: .5rem !important;
    padding-right: .5rem !important
}

.\!px-3 {
    padding-left: .75rem !important;
    padding-right: .75rem !important
}

.\!px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important
}

.\!px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important
}

.\!px-7 {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important
}

.\!py-\[0\.95rem\] {
    padding-top: .95rem !important;
    padding-bottom: .95rem !important
}

.px-0 {
    padding-left: 0;
    padding-right: 0
}

.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem
}

.px-14 {
    padding-left: 3.5rem;
    padding-right: 3.5rem
}

.px-16 {
    padding-left: 4rem;
    padding-right: 4rem
}

.px-2 {
    padding-left: .5rem;
    padding-right: .5rem
}

.px-3 {
    padding-left: .75rem;
    padding-right: .75rem
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem
}

.px-\[12px\] {
    padding-left: 12px;
    padding-right: 12px
}

.px-\[15px\] {
    padding-left: 15px;
    padding-right: 15px
}

.px-\[27px\] {
    padding-left: 27px;
    padding-right: 27px
}

.px-\[2px\] {
    padding-left: 2px;
    padding-right: 2px
}

.py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem
}

.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem
}

.py-11 {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem
}

.py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem
}

.py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem
}

.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem
}

.py-\[12px\] {
    padding-top: 12px;
    padding-bottom: 12px
}

.py-\[15px\] {
    padding-top: 15px;
    padding-bottom: 15px
}

.py-\[27px\] {
    padding-top: 27px;
    padding-bottom: 27px
}

.py-\[30px\] {
    padding-top: 30px;
    padding-bottom: 30px
}

.py-\[33px\] {
    padding-top: 33px;
    padding-bottom: 33px
}

.py-\[6px\] {
    padding-top: 6px;
    padding-bottom: 6px
}

.\!pb-0 {
    padding-bottom: 0 !important
}

.\!pl-0 {
    padding-left: 0 !important
}

.\!pt-0 {
    padding-top: 0 !important
}

.pb-0 {
    padding-bottom: 0
}

.pb-1 {
    padding-bottom: .25rem
}

.pb-10 {
    padding-bottom: 2.5rem
}

.pb-12 {
    padding-bottom: 3rem
}

.pb-14 {
    padding-bottom: 3.5rem
}

.pb-16 {
    padding-bottom: 4rem
}

.pb-2 {
    padding-bottom: .5rem
}

.pb-20 {
    padding-bottom: 5rem
}

.pb-3 {
    padding-bottom: .75rem
}

.pb-36 {
    padding-bottom: 9rem
}

.pb-4 {
    padding-bottom: 1rem
}

.pb-5 {
    padding-bottom: 1.25rem
}

.pb-6 {
    padding-bottom: 1.5rem
}

.pb-7 {
    padding-bottom: 1.75rem
}

.pb-8 {
    padding-bottom: 2rem
}

.pb-80 {
    padding-bottom: 20rem
}

.pb-\[25px\] {
    padding-bottom: 25px
}

.pb-\[3px\] {
    padding-bottom: 3px
}

.pb-\[47px\] {
    padding-bottom: 47px
}

.pb-\[64px\] {
    padding-bottom: 64px
}

.pb-\[6px\] {
    padding-bottom: 6px
}

.pb-\[80px\] {
    padding-bottom: 80px
}

.pl-0 {
    padding-left: 0
}

.pl-1 {
    padding-left: .25rem
}

.pl-16 {
    padding-left: 4rem
}

.pl-2 {
    padding-left: .5rem
}

.pl-20 {
    padding-left: 5rem
}

.pl-24 {
    padding-left: 6rem
}

.pl-3 {
    padding-left: .75rem
}

.pl-4 {
    padding-left: 1rem
}

.pl-5 {
    padding-left: 1.25rem
}

.pl-6 {
    padding-left: 1.5rem
}

.pl-7 {
    padding-left: 1.75rem
}

.pl-8 {
    padding-left: 2rem
}

.pr-0 {
    padding-right: 0
}

.pr-2 {
    padding-right: .5rem
}

.pr-20 {
    padding-right: 5rem
}

.pr-3 {
    padding-right: .75rem
}

.pr-4 {
    padding-right: 1rem
}

.pr-5 {
    padding-right: 1.25rem
}

.pr-6 {
    padding-right: 1.5rem
}

.pt-0 {
    padding-top: 0
}

.pt-1 {
    padding-top: .25rem
}

.pt-10 {
    padding-top: 2.5rem
}

.pt-14 {
    padding-top: 3.5rem
}

.pt-2 {
    padding-top: .5rem
}

.pt-20 {
    padding-top: 5rem
}

.pt-3 {
    padding-top: .75rem
}

.pt-36 {
    padding-top: 9rem
}

.pt-4 {
    padding-top: 1rem
}

.pt-40 {
    padding-top: 10rem
}

.pt-5 {
    padding-top: 1.25rem
}

.pt-6 {
    padding-top: 1.5rem
}

.pt-7 {
    padding-top: 1.75rem
}

.pt-8 {
    padding-top: 2rem
}

.pt-\[40px\] {
    padding-top: 40px
}

.pt-\[60px\] {
    padding-top: 60px
}

.pt-\[64px\] {
    padding-top: 64px
}

.text-left {
    text-align: left
}

.text-center {
    text-align: center
}

.text-right {
    text-align: right
}

.text-justify {
    text-align: justify
}

.text-start {
    text-align: start
}

.text-end {
    text-align: end
}

.align-baseline {
    vertical-align: baseline
}

.align-top {
    vertical-align: top
}

.align-middle {
    vertical-align: middle
}

.align-bottom {
    vertical-align: bottom
}

.align-text-top {
    vertical-align: text-top
}

.align-text-bottom {
    vertical-align: text-bottom
}

.align-sub {
    vertical-align: sub
}

.align-super {
    vertical-align: super
}

.font-italic-font {
    font-family: 'Montserrat'
}

.font-primary-font {
    font-family: 'Montserrat';
}

.font-secondary-font {
    font-family: 'Montserrat';
}

.\!text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem !important
}

.\!text-\[0\.875rem\] {
    font-size: .875rem !important
}

.\!text-\[1\.125rem\] {
    font-size: 1.125rem !important
}

.\!text-\[1\.25rem\] {
    font-size: 1.25rem !important
}

.\!text-\[1\.65rem\] {
    font-size: 1.65rem !important
}

.\!text-\[12px\] {
    font-size: 12px !important
}

.\!text-\[13px\] {
    font-size: 13px !important
}

.\!text-\[14px\] {
    font-size: 14px !important
}

.\!text-\[16px\] {
    font-size: 16px !important
}

.\!text-\[18px\] {
    font-size: 18px !important
}

.\!text-\[1rem\] {
    font-size: 1rem !important
}

.\!text-\[20px\] {
    font-size: 20px !important
}

.\!text-\[24px\] {
    font-size: 24px !important
}

.\!text-\[2rem\] {
    font-size: 2rem !important
}

.\!text-base {
    font-size: 1rem !important;
    line-height: 1.5rem !important
}

.\!text-sm {
    font-size: .875rem !important;
    line-height: 1.25rem !important
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem
}

.text-5xl {
    font-size: 3rem;
    line-height: 1
}

.text-\[12px\] {
    font-size: 12px
}

.text-\[13px\] {
    font-size: 13px
}

.text-\[14px\] {
    font-size: 14px
}

.text-\[15px\] {
    font-size: 15px
}

.text-\[16px\] {
    font-size: 16px
}

.text-\[18px\] {
    font-size: 18px
}

.text-\[20px\] {
    font-size: 20px
}

.text-\[22px\] {
    font-size: 22px
}

.text-\[24px\] {
    font-size: 24px
}

.text-\[28px\] {
    font-size: 28px
}

.text-\[35px\] {
    font-size: 35px
}

.text-\[48px\] {
    font-size: 48px
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem
}

.text-xs {
    font-size: .75rem;
    line-height: 1rem
}

.\!font-\[400\] {
    font-weight: 400 !important
}

.\!font-bold {
    font-weight: 700 !important
}

.\!font-medium {
    font-weight: 500 !important
}

.\!font-normal {
    font-weight: 400 !important
}

.\!font-semibold {
    font-weight: 600 !important
}

.font-bold {
    font-weight: 700
}

.font-extrabold {
    font-weight: 800
}

.font-light {
    font-weight: 300
}

.font-medium {
    font-weight: 500
}

.font-normal {
    font-weight: 400
}

.font-semibold {
    font-weight: 600
}

.uppercase {
    text-transform: uppercase
}

.lowercase {
    text-transform: lowercase
}

.capitalize {
    text-transform: capitalize
}

.normal-case {
    text-transform: none
}

.italic {
    font-style: italic
}

.not-italic {
    font-style: normal
}

.normal-nums {
    font-variant-numeric: normal
}

.ordinal {
    --tw-ordinal: ordinal;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)
}

.slashed-zero {
    --tw-slashed-zero: slashed-zero;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)
}

.lining-nums {
    --tw-numeric-figure: lining-nums;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)
}

.oldstyle-nums {
    --tw-numeric-figure: oldstyle-nums;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)
}

.proportional-nums {
    --tw-numeric-spacing: proportional-nums;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)
}

.tabular-nums {
    --tw-numeric-spacing: tabular-nums;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)
}

.diagonal-fractions {
    --tw-numeric-fraction: diagonal-fractions;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)
}

.stacked-fractions {
    --tw-numeric-fraction: stacked-fractions;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)
}

.\!leading-\[18px\] {
    line-height: 18px !important
}

.\!leading-\[9px\] {
    line-height: 9px !important
}

.\!leading-normal {
    line-height: 1.5 !important
}

.leading-5 {
    line-height: 1.25rem
}

.leading-6 {
    line-height: 1.5rem
}

.leading-7 {
    line-height: 1.75rem
}

.leading-\[16px\] {
    line-height: 16px
}

.leading-\[18px\] {
    line-height: 18px
}

.leading-\[20px\] {
    line-height: 20px
}

.leading-\[23px\] {
    line-height: 23px
}

.leading-\[29px\] {
    line-height: 29px
}

.leading-\[96px\] {
    line-height: 96px
}

.leading-none {
    line-height: 1
}

.leading-normal {
    line-height: 1.5
}

.leading-snug {
    line-height: 1.375
}

.tracking-\[\.1em\] {
    letter-spacing: .1em
}

.tracking-\[0\.5px\] {
    letter-spacing: .5px
}

.tracking-\[1\.6px\] {
    letter-spacing: 1.6px
}

.tracking-wider {
    letter-spacing: .05em
}

.\!text-\[\#001E60\] {
    --tw-text-opacity: 1 !important;
    color: rgb(0 30 96 / var(--tw-text-opacity)) !important
}

.\!text-\[\#2E343F\] {
    --tw-text-opacity: 1 !important;
    color: rgb(46 52 63 / var(--tw-text-opacity)) !important
}

.\!text-\[\#545C6C\] {
    --tw-text-opacity: 1 !important;
    color: rgb(84 92 108 / var(--tw-text-opacity)) !important
}

.\!text-\[\#4bbe89\] {
    --tw-text-opacity: 1 !important;
    color: rgb(239 96 121 / var(--tw-text-opacity)) !important
}

.\!text-\[\#ffffff\], .\!text-white {
    --tw-text-opacity: 1 !important;
    color: rgb(255 255 255 / var(--tw-text-opacity)) !important
}

.text-\[\#001E60\], .text-\[\#001e60\] {
    --tw-text-opacity: 1;
    color: rgb(0 30 96 / var(--tw-text-opacity))
}

.text-\[\#0C1D58\] {
    --tw-text-opacity: 1;
    color: rgb(12 29 88 / var(--tw-text-opacity))
}

.text-\[\#1A5CEB\] {
    --tw-text-opacity: 1;
    color: rgb(26 92 235 / var(--tw-text-opacity))
}

.text-\[\#1f1f1f\] {
    --tw-text-opacity: 1;
    color: rgb(31 31 31 / var(--tw-text-opacity))
}

.text-\[\#27292F\] {
    --tw-text-opacity: 1;
    color: rgb(39 41 47 / var(--tw-text-opacity))
}

.text-\[\#2E343F\] {
    --tw-text-opacity: 1;
    color: rgb(46 52 63 / var(--tw-text-opacity))
}

.text-\[\#363636\] {
    --tw-text-opacity: 1;
    color: rgb(54 54 54 / var(--tw-text-opacity))
}

.text-\[\#545C6C\] {
    --tw-text-opacity: 1;
    color: rgb(84 92 108 / var(--tw-text-opacity))
}

.text-\[\#575C6A\] {
    --tw-text-opacity: 1;
    color: rgb(87 92 106 / var(--tw-text-opacity))
}

.text-\[\#8A8A8A\] {
    --tw-text-opacity: 1;
    color: rgb(138 138 138 / var(--tw-text-opacity))
}

.text-\[\#b3b3b3\] {
    --tw-text-opacity: 1;
    color: rgb(179 179 179 / var(--tw-text-opacity))
}

.text-\[\#ebebeb\] {
    --tw-text-opacity: 1;
    color: rgb(235 235 235 / var(--tw-text-opacity))
}

.text-blue-700 {
    --tw-text-opacity: 1;
    color: rgb(29 78 216 / var(--tw-text-opacity))
}

.text-dark-blue {
    --tw-text-opacity: 1;
    color: rgb(0 20 65 / var(--tw-text-opacity))
}

.text-gray-200 {
    --tw-text-opacity: 1;
    color: rgb(229 231 235 / var(--tw-text-opacity))
}

.text-gray-300 {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity))
}

.text-gray-400 {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity))
}

.text-gray-500 {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity))
}

.text-gray-600 {
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity))
}

.text-gray-700 {
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity))
}

.text-gray-900 {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity))
}

.text-green-500 {
    --tw-text-opacity: 1;
    color: rgb(34 197 94 / var(--tw-text-opacity))
}

.text-green-700 {
    --tw-text-opacity: 1;
    color: rgb(21 128 61 / var(--tw-text-opacity))
}

.text-grey-primary {
    --tw-text-opacity: 1;
    color: rgb(84 92 108 / var(--tw-text-opacity))
}

.text-light-grey {
    --tw-text-opacity: 1;
    color: rgb(244 244 244 / var(--tw-text-opacity))
}

.text-medium-grey {
    --tw-text-opacity: 1;
    color: rgb(145 154 172 / var(--tw-text-opacity))
}

.text-orange-500 {
    --tw-text-opacity: 1;
    color: rgb(249 115 22 / var(--tw-text-opacity))
}

.text-orange-700 {
    --tw-text-opacity: 1;
    color: rgb(194 65 12 / var(--tw-text-opacity))
}

.text-pink {
    --tw-text-opacity: 1;
    color: rgb(239 96 121 / var(--tw-text-opacity))
}

.text-primary-blue {
    --tw-text-opacity: 1;
    color: rgb(0 30 96 / var(--tw-text-opacity))
}

.text-red-500 {
    --tw-text-opacity: 1;
    color: rgb(239 68 68 / var(--tw-text-opacity))
}

.text-red-700 {
    --tw-text-opacity: 1;
    color: rgb(185 28 28 / var(--tw-text-opacity))
}

.text-slate-600 {
    --tw-text-opacity: 1;
    color: rgb(71 85 105 / var(--tw-text-opacity))
}

.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity))
}

.text-yellow-700 {
    --tw-text-opacity: 1;
    color: rgb(161 98 7 / var(--tw-text-opacity))
}

.underline {
    text-decoration-line: underline
}

.overline {
    text-decoration-line: overline
}

.line-through {
    text-decoration-line: line-through
}

.no-underline {
    text-decoration-line: none
}

.decoration-solid {
    text-decoration-style: solid
}

.decoration-double {
    text-decoration-style: double
}

.decoration-dotted {
    text-decoration-style: dotted
}

.decoration-dashed {
    text-decoration-style: dashed
}

.decoration-wavy {
    text-decoration-style: wavy
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.subpixel-antialiased {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto
}

.opacity-50 {
    opacity: .5
}

.bg-blend-normal {
    background-blend-mode: normal
}

.bg-blend-multiply {
    background-blend-mode: multiply
}

.bg-blend-screen {
    background-blend-mode: screen
}

.bg-blend-overlay {
    background-blend-mode: overlay
}

.bg-blend-darken {
    background-blend-mode: darken
}

.bg-blend-lighten {
    background-blend-mode: lighten
}

.bg-blend-color-dodge {
    background-blend-mode: color-dodge
}

.bg-blend-color-burn {
    background-blend-mode: color-burn
}

.bg-blend-hard-light {
    background-blend-mode: hard-light
}

.bg-blend-soft-light {
    background-blend-mode: soft-light
}

.bg-blend-difference {
    background-blend-mode: difference
}

.bg-blend-exclusion {
    background-blend-mode: exclusion
}

.bg-blend-hue {
    background-blend-mode: hue
}

.bg-blend-saturation {
    background-blend-mode: saturation
}

.bg-blend-color {
    background-blend-mode: color
}

.bg-blend-luminosity {
    background-blend-mode: luminosity
}

.mix-blend-normal {
    mix-blend-mode: normal
}

.mix-blend-multiply {
    mix-blend-mode: multiply
}

.mix-blend-screen {
    mix-blend-mode: screen
}

.mix-blend-overlay {
    mix-blend-mode: overlay
}

.mix-blend-darken {
    mix-blend-mode: darken
}

.mix-blend-lighten {
    mix-blend-mode: lighten
}

.mix-blend-color-dodge {
    mix-blend-mode: color-dodge
}

.mix-blend-color-burn {
    mix-blend-mode: color-burn
}

.mix-blend-hard-light {
    mix-blend-mode: hard-light
}

.mix-blend-soft-light {
    mix-blend-mode: soft-light
}

.mix-blend-difference {
    mix-blend-mode: difference
}

.mix-blend-exclusion {
    mix-blend-mode: exclusion
}

.mix-blend-hue {
    mix-blend-mode: hue
}

.mix-blend-saturation {
    mix-blend-mode: saturation
}

.mix-blend-color {
    mix-blend-mode: color
}

.mix-blend-luminosity {
    mix-blend-mode: luminosity
}

.mix-blend-plus-lighter {
    mix-blend-mode: plus-lighter
}

.shadow {
    --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-\[0px_2px_4px_\#00000014\] {
    --tw-shadow: 0px 2px 4px #00000014;
    --tw-shadow-colored: 0px 2px 4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-\[0px_3px_16px_\#00000029\] {
    --tw-shadow: 0px 3px 16px #00000029;
    --tw-shadow-colored: 0px 3px 16px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-\[0px_3px_6px_\#00000029\] {
    --tw-shadow: 0px 3px 6px #00000029;
    --tw-shadow-colored: 0px 3px 6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-sm {
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-xl {
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.outline-none {
    outline: 2px solid transparent;
    outline-offset: 2px
}

.outline {
    outline-style: solid
}

.outline-dashed {
    outline-style: dashed
}

.outline-dotted {
    outline-style: dotted
}

.outline-double {
    outline-style: double
}

.outline-0 {
    outline-width: 0px
}

.ring-inset {
    --tw-ring-inset: inset
}

.ring-gray-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity))
}

.blur {
    --tw-blur: blur(8px);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.drop-shadow {
    --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / .1)) drop-shadow(0 1px 1px rgb(0 0 0 / .06));
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.grayscale {
    --tw-grayscale: grayscale(100%);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.invert {
    --tw-invert: invert(100%);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.sepia {
    --tw-sepia: sepia(100%);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.filter {
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.filter-none {
    filter: none
}

.backdrop-blur {
    --tw-backdrop-blur: blur(8px);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
}

.backdrop-blur-none {
    --tw-backdrop-blur: blur(0);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
}

.backdrop-grayscale {
    --tw-backdrop-grayscale: grayscale(100%);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
}

.backdrop-invert {
    --tw-backdrop-invert: invert(100%);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
}

.backdrop-sepia {
    --tw-backdrop-sepia: sepia(100%);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
}

.backdrop-filter {
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
}

.backdrop-filter-none {
    -webkit-backdrop-filter: none;
    backdrop-filter: none
}

.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.duration-150 {
    transition-duration: .15s
}

.ease-in {
    transition-timing-function: cubic-bezier(.4, 0, 1, 1)
}

.ease-in-out {
    transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

.ease-linear {
    transition-timing-function: linear
}

.ease-out {
    transition-timing-function: cubic-bezier(0, 0, .2, 1)
}

.iti {
    position: relative;
    display: inline-block
}

.iti * {
    box-sizing: border-box;
    -moz-box-sizing: border-box
}

.iti__hide {
    display: none
}

.iti__v-hide {
    visibility: hidden
}

.iti input, .iti input[type=text], .iti input[type=tel] {
    position: relative;
    z-index: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-right: 36px;
    margin-right: 0
}

.iti__flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 1px
}

.iti__selected-flag {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 6px 0 8px
}

.iti__arrow {
    margin-left: 6px;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid #555
}

.iti__arrow--up {
    border-top: none;
    border-bottom: 4px solid #555
}

.iti__country-list {
    position: absolute;
    z-index: 2;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0 0 0 -1px;
    box-shadow: 1px 1px 4px #0003;
    background-color: #fff;
    border: 1px solid #CCC;
    white-space: nowrap;
    max-height: 200px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch
}

.iti__country-list--dropup {
    bottom: 100%;
    margin-bottom: -1px
}

@media (max-width: 500px) {
    .iti__country-list {
        white-space: normal
    }
}

.iti__flag-box {
    display: inline-block;
    width: 20px
}

.iti__divider {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #CCC
}

.iti__country {
    padding: 5px 10px;
    outline: none
}

.iti__dial-code {
    color: #999
}

.iti__country.iti__highlight {
    background-color: #0000000d
}

.iti__flag-box, .iti__country-name, .iti__dial-code {
    vertical-align: middle
}

.iti__flag-box, .iti__country-name {
    margin-right: 6px
}

.iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0
}

.iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {
    right: auto;
    left: 0
}

.iti--allow-dropdown .iti__flag-container:hover {
    cursor: pointer
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: #0000000d
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover, .iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
    cursor: default
}

.iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag, .iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
    background-color: transparent
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: #0000000d
}

.iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 6px
}

.iti--container {
    position: absolute;
    top: -1000px;
    left: -1000px;
    z-index: 1060;
    padding: 1px
}

.iti--container:hover {
    cursor: pointer
}

.iti-mobile .iti--container {
    top: 30px;
    bottom: 30px;
    left: 30px;
    right: 30px;
    position: fixed
}

.iti-mobile .iti__country-list {
    max-height: 100%;
    width: 100%
}

.iti-mobile .iti__country {
    padding: 10px;
    line-height: 1.5em
}

.iti__flag {
    width: 20px
}

.iti__flag.iti__be {
    width: 18px
}

.iti__flag.iti__ch {
    width: 15px
}

.iti__flag.iti__mc {
    width: 19px
}

.iti__flag.iti__ne {
    width: 18px
}

.iti__flag.iti__np {
    width: 13px
}

.iti__flag.iti__va {
    width: 15px
}

@media (-webkit-min-device-pixel-ratio: 2),(min-resolution: 192dpi) {
    .iti__flag {
        background-size: 5652px 15px
    }
}

.iti__flag.iti__ac {
    height: 10px;
    background-position: 0px 0px
}

.iti__flag.iti__ad {
    height: 14px;
    background-position: -22px 0px
}

.iti__flag.iti__ae {
    height: 10px;
    background-position: -44px 0px
}

.iti__flag.iti__af {
    height: 14px;
    background-position: -66px 0px
}

.iti__flag.iti__ag {
    height: 14px;
    background-position: -88px 0px
}

.iti__flag.iti__ai {
    height: 10px;
    background-position: -110px 0px
}

.iti__flag.iti__al {
    height: 15px;
    background-position: -132px 0px
}

.iti__flag.iti__am {
    height: 10px;
    background-position: -154px 0px
}

.iti__flag.iti__ao {
    height: 14px;
    background-position: -176px 0px
}

.iti__flag.iti__aq {
    height: 14px;
    background-position: -198px 0px
}

.iti__flag.iti__ar {
    height: 13px;
    background-position: -220px 0px
}

.iti__flag.iti__as {
    height: 10px;
    background-position: -242px 0px
}

.iti__flag.iti__at {
    height: 14px;
    background-position: -264px 0px
}

.iti__flag.iti__au {
    height: 10px;
    background-position: -286px 0px
}

.iti__flag.iti__aw {
    height: 14px;
    background-position: -308px 0px
}

.iti__flag.iti__ax {
    height: 13px;
    background-position: -330px 0px
}

.iti__flag.iti__az {
    height: 10px;
    background-position: -352px 0px
}

.iti__flag.iti__ba {
    height: 10px;
    background-position: -374px 0px
}

.iti__flag.iti__bb {
    height: 14px;
    background-position: -396px 0px
}

.iti__flag.iti__bd {
    height: 12px;
    background-position: -418px 0px
}

.iti__flag.iti__be {
    height: 15px;
    background-position: -440px 0px
}

.iti__flag.iti__bf {
    height: 14px;
    background-position: -460px 0px
}

.iti__flag.iti__bg {
    height: 12px;
    background-position: -482px 0px
}

.iti__flag.iti__bh {
    height: 12px;
    background-position: -504px 0px
}

.iti__flag.iti__bi {
    height: 12px;
    background-position: -526px 0px
}

.iti__flag.iti__bj {
    height: 14px;
    background-position: -548px 0px
}

.iti__flag.iti__bl {
    height: 14px;
    background-position: -570px 0px
}

.iti__flag.iti__bm {
    height: 10px;
    background-position: -592px 0px
}

.iti__flag.iti__bn {
    height: 10px;
    background-position: -614px 0px
}

.iti__flag.iti__bo {
    height: 14px;
    background-position: -636px 0px
}

.iti__flag.iti__bq {
    height: 14px;
    background-position: -658px 0px
}

.iti__flag.iti__br {
    height: 14px;
    background-position: -680px 0px
}

.iti__flag.iti__bs {
    height: 10px;
    background-position: -702px 0px
}

.iti__flag.iti__bt {
    height: 14px;
    background-position: -724px 0px
}

.iti__flag.iti__bv {
    height: 15px;
    background-position: -746px 0px
}

.iti__flag.iti__bw {
    height: 14px;
    background-position: -768px 0px
}

.iti__flag.iti__by {
    height: 10px;
    background-position: -790px 0px
}

.iti__flag.iti__bz {
    height: 14px;
    background-position: -812px 0px
}

.iti__flag.iti__ca {
    height: 10px;
    background-position: -834px 0px
}

.iti__flag.iti__cc {
    height: 10px;
    background-position: -856px 0px
}

.iti__flag.iti__cd {
    height: 15px;
    background-position: -878px 0px
}

.iti__flag.iti__cf {
    height: 14px;
    background-position: -900px 0px
}

.iti__flag.iti__cg {
    height: 14px;
    background-position: -922px 0px
}

.iti__flag.iti__ch {
    height: 15px;
    background-position: -944px 0px
}

.iti__flag.iti__ci {
    height: 14px;
    background-position: -961px 0px
}

.iti__flag.iti__ck {
    height: 10px;
    background-position: -983px 0px
}

.iti__flag.iti__cl {
    height: 14px;
    background-position: -1005px 0px
}

.iti__flag.iti__cm {
    height: 14px;
    background-position: -1027px 0px
}

.iti__flag.iti__cn {
    height: 14px;
    background-position: -1049px 0px
}

.iti__flag.iti__co {
    height: 14px;
    background-position: -1071px 0px
}

.iti__flag.iti__cp {
    height: 14px;
    background-position: -1093px 0px
}

.iti__flag.iti__cr {
    height: 12px;
    background-position: -1115px 0px
}

.iti__flag.iti__cu {
    height: 10px;
    background-position: -1137px 0px
}

.iti__flag.iti__cv {
    height: 12px;
    background-position: -1159px 0px
}

.iti__flag.iti__cw {
    height: 14px;
    background-position: -1181px 0px
}

.iti__flag.iti__cx {
    height: 10px;
    background-position: -1203px 0px
}

.iti__flag.iti__cy {
    height: 14px;
    background-position: -1225px 0px
}

.iti__flag.iti__cz {
    height: 14px;
    background-position: -1247px 0px
}

.iti__flag.iti__de {
    height: 12px;
    background-position: -1269px 0px
}

.iti__flag.iti__dg {
    height: 10px;
    background-position: -1291px 0px
}

.iti__flag.iti__dj {
    height: 14px;
    background-position: -1313px 0px
}

.iti__flag.iti__dk {
    height: 15px;
    background-position: -1335px 0px
}

.iti__flag.iti__dm {
    height: 10px;
    background-position: -1357px 0px
}

.iti__flag.iti__do {
    height: 14px;
    background-position: -1379px 0px
}

.iti__flag.iti__dz {
    height: 14px;
    background-position: -1401px 0px
}

.iti__flag.iti__ea {
    height: 14px;
    background-position: -1423px 0px
}

.iti__flag.iti__ec {
    height: 14px;
    background-position: -1445px 0px
}

.iti__flag.iti__ee {
    height: 13px;
    background-position: -1467px 0px
}

.iti__flag.iti__eg {
    height: 14px;
    background-position: -1489px 0px
}

.iti__flag.iti__eh {
    height: 10px;
    background-position: -1511px 0px
}

.iti__flag.iti__er {
    height: 10px;
    background-position: -1533px 0px
}

.iti__flag.iti__es {
    height: 14px;
    background-position: -1555px 0px
}

.iti__flag.iti__et {
    height: 10px;
    background-position: -1577px 0px
}

.iti__flag.iti__eu {
    height: 14px;
    background-position: -1599px 0px
}

.iti__flag.iti__fi {
    height: 12px;
    background-position: -1621px 0px
}

.iti__flag.iti__fj {
    height: 10px;
    background-position: -1643px 0px
}

.iti__flag.iti__fk {
    height: 10px;
    background-position: -1665px 0px
}

.iti__flag.iti__fm {
    height: 11px;
    background-position: -1687px 0px
}

.iti__flag.iti__fo {
    height: 15px;
    background-position: -1709px 0px
}

.iti__flag.iti__fr {
    height: 14px;
    background-position: -1731px 0px
}

.iti__flag.iti__ga {
    height: 15px;
    background-position: -1753px 0px
}

.iti__flag.iti__gb {
    height: 10px;
    background-position: -1775px 0px
}

.iti__flag.iti__gd {
    height: 12px;
    background-position: -1797px 0px
}

.iti__flag.iti__ge {
    height: 14px;
    background-position: -1819px 0px
}

.iti__flag.iti__gf {
    height: 14px;
    background-position: -1841px 0px
}

.iti__flag.iti__gg {
    height: 14px;
    background-position: -1863px 0px
}

.iti__flag.iti__gh {
    height: 14px;
    background-position: -1885px 0px
}

.iti__flag.iti__gi {
    height: 10px;
    background-position: -1907px 0px
}

.iti__flag.iti__gl {
    height: 14px;
    background-position: -1929px 0px
}

.iti__flag.iti__gm {
    height: 14px;
    background-position: -1951px 0px
}

.iti__flag.iti__gn {
    height: 14px;
    background-position: -1973px 0px
}

.iti__flag.iti__gp {
    height: 14px;
    background-position: -1995px 0px
}

.iti__flag.iti__gq {
    height: 14px;
    background-position: -2017px 0px
}

.iti__flag.iti__gr {
    height: 14px;
    background-position: -2039px 0px
}

.iti__flag.iti__gs {
    height: 10px;
    background-position: -2061px 0px
}

.iti__flag.iti__gt {
    height: 13px;
    background-position: -2083px 0px
}

.iti__flag.iti__gu {
    height: 11px;
    background-position: -2105px 0px
}

.iti__flag.iti__gw {
    height: 10px;
    background-position: -2127px 0px
}

.iti__flag.iti__gy {
    height: 12px;
    background-position: -2149px 0px
}

.iti__flag.iti__hk {
    height: 14px;
    background-position: -2171px 0px
}

.iti__flag.iti__hm {
    height: 10px;
    background-position: -2193px 0px
}

.iti__flag.iti__hn {
    height: 10px;
    background-position: -2215px 0px
}

.iti__flag.iti__hr {
    height: 10px;
    background-position: -2237px 0px
}

.iti__flag.iti__ht {
    height: 12px;
    background-position: -2259px 0px
}

.iti__flag.iti__hu {
    height: 10px;
    background-position: -2281px 0px
}

.iti__flag.iti__ic {
    height: 14px;
    background-position: -2303px 0px
}

.iti__flag.iti__id {
    height: 14px;
    background-position: -2325px 0px
}

.iti__flag.iti__ie {
    height: 10px;
    background-position: -2347px 0px
}

.iti__flag.iti__il {
    height: 15px;
    background-position: -2369px 0px
}

.iti__flag.iti__im {
    height: 10px;
    background-position: -2391px 0px
}

.iti__flag.iti__in {
    height: 14px;
    background-position: -2413px 0px
}

.iti__flag.iti__io {
    height: 10px;
    background-position: -2435px 0px
}

.iti__flag.iti__iq {
    height: 14px;
    background-position: -2457px 0px
}

.iti__flag.iti__ir {
    height: 12px;
    background-position: -2479px 0px
}

.iti__flag.iti__is {
    height: 15px;
    background-position: -2501px 0px
}

.iti__flag.iti__it {
    height: 14px;
    background-position: -2523px 0px
}

.iti__flag.iti__je {
    height: 12px;
    background-position: -2545px 0px
}

.iti__flag.iti__jm {
    height: 10px;
    background-position: -2567px 0px
}

.iti__flag.iti__jo {
    height: 10px;
    background-position: -2589px 0px
}

.iti__flag.iti__jp {
    height: 14px;
    background-position: -2611px 0px
}

.iti__flag.iti__ke {
    height: 14px;
    background-position: -2633px 0px
}

.iti__flag.iti__kg {
    height: 12px;
    background-position: -2655px 0px
}

.iti__flag.iti__kh {
    height: 13px;
    background-position: -2677px 0px
}

.iti__flag.iti__ki {
    height: 10px;
    background-position: -2699px 0px
}

.iti__flag.iti__km {
    height: 12px;
    background-position: -2721px 0px
}

.iti__flag.iti__kn {
    height: 14px;
    background-position: -2743px 0px
}

.iti__flag.iti__kp {
    height: 10px;
    background-position: -2765px 0px
}

.iti__flag.iti__kr {
    height: 14px;
    background-position: -2787px 0px
}

.iti__flag.iti__kw {
    height: 10px;
    background-position: -2809px 0px
}

.iti__flag.iti__ky {
    height: 10px;
    background-position: -2831px 0px
}

.iti__flag.iti__kz {
    height: 10px;
    background-position: -2853px 0px
}

.iti__flag.iti__la {
    height: 14px;
    background-position: -2875px 0px
}

.iti__flag.iti__lb {
    height: 14px;
    background-position: -2897px 0px
}

.iti__flag.iti__lc {
    height: 10px;
    background-position: -2919px 0px
}

.iti__flag.iti__li {
    height: 12px;
    background-position: -2941px 0px
}

.iti__flag.iti__lk {
    height: 10px;
    background-position: -2963px 0px
}

.iti__flag.iti__lr {
    height: 11px;
    background-position: -2985px 0px
}

.iti__flag.iti__ls {
    height: 14px;
    background-position: -3007px 0px
}

.iti__flag.iti__lt {
    height: 12px;
    background-position: -3029px 0px
}

.iti__flag.iti__lu {
    height: 12px;
    background-position: -3051px 0px
}

.iti__flag.iti__lv {
    height: 10px;
    background-position: -3073px 0px
}

.iti__flag.iti__ly {
    height: 10px;
    background-position: -3095px 0px
}

.iti__flag.iti__ma {
    height: 14px;
    background-position: -3117px 0px
}

.iti__flag.iti__mc {
    height: 15px;
    background-position: -3139px 0px
}

.iti__flag.iti__md {
    height: 10px;
    background-position: -3160px 0px
}

.iti__flag.iti__me {
    height: 10px;
    background-position: -3182px 0px
}

.iti__flag.iti__mf {
    height: 14px;
    background-position: -3204px 0px
}

.iti__flag.iti__mg {
    height: 14px;
    background-position: -3226px 0px
}

.iti__flag.iti__mh {
    height: 11px;
    background-position: -3248px 0px
}

.iti__flag.iti__mk {
    height: 10px;
    background-position: -3270px 0px
}

.iti__flag.iti__ml {
    height: 14px;
    background-position: -3292px 0px
}

.iti__flag.iti__mm {
    height: 14px;
    background-position: -3314px 0px
}

.iti__flag.iti__mn {
    height: 10px;
    background-position: -3336px 0px
}

.iti__flag.iti__mo {
    height: 14px;
    background-position: -3358px 0px
}

.iti__flag.iti__mp {
    height: 10px;
    background-position: -3380px 0px
}

.iti__flag.iti__mq {
    height: 14px;
    background-position: -3402px 0px
}

.iti__flag.iti__mr {
    height: 14px;
    background-position: -3424px 0px
}

.iti__flag.iti__ms {
    height: 10px;
    background-position: -3446px 0px
}

.iti__flag.iti__mt {
    height: 14px;
    background-position: -3468px 0px
}

.iti__flag.iti__mu {
    height: 14px;
    background-position: -3490px 0px
}

.iti__flag.iti__mv {
    height: 14px;
    background-position: -3512px 0px
}

.iti__flag.iti__mw {
    height: 14px;
    background-position: -3534px 0px
}

.iti__flag.iti__mx {
    height: 12px;
    background-position: -3556px 0px
}

.iti__flag.iti__my {
    height: 10px;
    background-position: -3578px 0px
}

.iti__flag.iti__mz {
    height: 14px;
    background-position: -3600px 0px
}

.iti__flag.iti__na {
    height: 14px;
    background-position: -3622px 0px
}

.iti__flag.iti__nc {
    height: 10px;
    background-position: -3644px 0px
}

.iti__flag.iti__ne {
    height: 15px;
    background-position: -3666px 0px
}

.iti__flag.iti__nf {
    height: 10px;
    background-position: -3686px 0px
}

.iti__flag.iti__ng {
    height: 10px;
    background-position: -3708px 0px
}

.iti__flag.iti__ni {
    height: 12px;
    background-position: -3730px 0px
}

.iti__flag.iti__nl {
    height: 14px;
    background-position: -3752px 0px
}

.iti__flag.iti__no {
    height: 15px;
    background-position: -3774px 0px
}

.iti__flag.iti__np {
    height: 15px;
    background-position: -3796px 0px
}

.iti__flag.iti__nr {
    height: 10px;
    background-position: -3811px 0px
}

.iti__flag.iti__nu {
    height: 10px;
    background-position: -3833px 0px
}

.iti__flag.iti__nz {
    height: 10px;
    background-position: -3855px 0px
}

.iti__flag.iti__om {
    height: 10px;
    background-position: -3877px 0px
}

.iti__flag.iti__pa {
    height: 14px;
    background-position: -3899px 0px
}

.iti__flag.iti__pe {
    height: 14px;
    background-position: -3921px 0px
}

.iti__flag.iti__pf {
    height: 14px;
    background-position: -3943px 0px
}

.iti__flag.iti__pg {
    height: 15px;
    background-position: -3965px 0px
}

.iti__flag.iti__ph {
    height: 10px;
    background-position: -3987px 0px
}

.iti__flag.iti__pk {
    height: 14px;
    background-position: -4009px 0px
}

.iti__flag.iti__pl {
    height: 13px;
    background-position: -4031px 0px
}

.iti__flag.iti__pm {
    height: 14px;
    background-position: -4053px 0px
}

.iti__flag.iti__pn {
    height: 10px;
    background-position: -4075px 0px
}

.iti__flag.iti__pr {
    height: 14px;
    background-position: -4097px 0px
}

.iti__flag.iti__ps {
    height: 10px;
    background-position: -4119px 0px
}

.iti__flag.iti__pt {
    height: 14px;
    background-position: -4141px 0px
}

.iti__flag.iti__pw {
    height: 13px;
    background-position: -4163px 0px
}

.iti__flag.iti__py {
    height: 11px;
    background-position: -4185px 0px
}

.iti__flag.iti__qa {
    height: 8px;
    background-position: -4207px 0px
}

.iti__flag.iti__re {
    height: 14px;
    background-position: -4229px 0px
}

.iti__flag.iti__ro {
    height: 14px;
    background-position: -4251px 0px
}

.iti__flag.iti__rs {
    height: 14px;
    background-position: -4273px 0px
}

.iti__flag.iti__ru {
    height: 14px;
    background-position: -4295px 0px
}

.iti__flag.iti__rw {
    height: 14px;
    background-position: -4317px 0px
}

.iti__flag.iti__sa {
    height: 14px;
    background-position: -4339px 0px
}

.iti__flag.iti__sb {
    height: 10px;
    background-position: -4361px 0px
}

.iti__flag.iti__sc {
    height: 10px;
    background-position: -4383px 0px
}

.iti__flag.iti__sd {
    height: 10px;
    background-position: -4405px 0px
}

.iti__flag.iti__se {
    height: 13px;
    background-position: -4427px 0px
}

.iti__flag.iti__sg {
    height: 14px;
    background-position: -4449px 0px
}

.iti__flag.iti__sh {
    height: 10px;
    background-position: -4471px 0px
}

.iti__flag.iti__si {
    height: 10px;
    background-position: -4493px 0px
}

.iti__flag.iti__sj {
    height: 15px;
    background-position: -4515px 0px
}

.iti__flag.iti__sk {
    height: 14px;
    background-position: -4537px 0px
}

.iti__flag.iti__sl {
    height: 14px;
    background-position: -4559px 0px
}

.iti__flag.iti__sm {
    height: 15px;
    background-position: -4581px 0px
}

.iti__flag.iti__sn {
    height: 14px;
    background-position: -4603px 0px
}

.iti__flag.iti__so {
    height: 14px;
    background-position: -4625px 0px
}

.iti__flag.iti__sr {
    height: 14px;
    background-position: -4647px 0px
}

.iti__flag.iti__ss {
    height: 10px;
    background-position: -4669px 0px
}

.iti__flag.iti__st {
    height: 10px;
    background-position: -4691px 0px
}

.iti__flag.iti__sv {
    height: 12px;
    background-position: -4713px 0px
}

.iti__flag.iti__sx {
    height: 14px;
    background-position: -4735px 0px
}

.iti__flag.iti__sy {
    height: 14px;
    background-position: -4757px 0px
}

.iti__flag.iti__sz {
    height: 14px;
    background-position: -4779px 0px
}

.iti__flag.iti__ta {
    height: 10px;
    background-position: -4801px 0px
}

.iti__flag.iti__tc {
    height: 10px;
    background-position: -4823px 0px
}

.iti__flag.iti__td {
    height: 14px;
    background-position: -4845px 0px
}

.iti__flag.iti__tf {
    height: 14px;
    background-position: -4867px 0px
}

.iti__flag.iti__tg {
    height: 13px;
    background-position: -4889px 0px
}

.iti__flag.iti__th {
    height: 14px;
    background-position: -4911px 0px
}

.iti__flag.iti__tj {
    height: 10px;
    background-position: -4933px 0px
}

.iti__flag.iti__tk {
    height: 10px;
    background-position: -4955px 0px
}

.iti__flag.iti__tl {
    height: 10px;
    background-position: -4977px 0px
}

.iti__flag.iti__tm {
    height: 14px;
    background-position: -4999px 0px
}

.iti__flag.iti__tn {
    height: 14px;
    background-position: -5021px 0px
}

.iti__flag.iti__to {
    height: 10px;
    background-position: -5043px 0px
}

.iti__flag.iti__tr {
    height: 14px;
    background-position: -5065px 0px
}

.iti__flag.iti__tt {
    height: 12px;
    background-position: -5087px 0px
}

.iti__flag.iti__tv {
    height: 10px;
    background-position: -5109px 0px
}

.iti__flag.iti__tw {
    height: 14px;
    background-position: -5131px 0px
}

.iti__flag.iti__tz {
    height: 14px;
    background-position: -5153px 0px
}

.iti__flag.iti__ua {
    height: 14px;
    background-position: -5175px 0px
}

.iti__flag.iti__ug {
    height: 14px;
    background-position: -5197px 0px
}

.iti__flag.iti__um {
    height: 11px;
    background-position: -5219px 0px
}

.iti__flag.iti__un {
    height: 14px;
    background-position: -5241px 0px
}

.iti__flag.iti__us {
    height: 11px;
    background-position: -5263px 0px
}

.iti__flag.iti__uy {
    height: 14px;
    background-position: -5285px 0px
}

.iti__flag.iti__uz {
    height: 10px;
    background-position: -5307px 0px
}

.iti__flag.iti__va {
    height: 15px;
    background-position: -5329px 0px
}

.iti__flag.iti__vc {
    height: 14px;
    background-position: -5346px 0px
}

.iti__flag.iti__ve {
    height: 14px;
    background-position: -5368px 0px
}

.iti__flag.iti__vg {
    height: 10px;
    background-position: -5390px 0px
}

.iti__flag.iti__vi {
    height: 14px;
    background-position: -5412px 0px
}

.iti__flag.iti__vn {
    height: 14px;
    background-position: -5434px 0px
}

.iti__flag.iti__vu {
    height: 12px;
    background-position: -5456px 0px
}

.iti__flag.iti__wf {
    height: 14px;
    background-position: -5478px 0px
}

.iti__flag.iti__ws {
    height: 10px;
    background-position: -5500px 0px
}

.iti__flag.iti__xk {
    height: 15px;
    background-position: -5522px 0px
}

.iti__flag.iti__ye {
    height: 14px;
    background-position: -5544px 0px
}

.iti__flag.iti__yt {
    height: 14px;
    background-position: -5566px 0px
}

.iti__flag.iti__za {
    height: 14px;
    background-position: -5588px 0px
}

.iti__flag.iti__zm {
    height: 14px;
    background-position: -5610px 0px
}

.iti__flag.iti__zw {
    height: 10px;
    background-position: -5632px 0px
}

.iti__flag {
    height: 15px;
    box-shadow: 0 0 1px #888;
    background-image: url(/frontend/images/flags-0a012cf8.png);
    background-repeat: no-repeat;
    background-color: #dbdbdb;
    background-position: 20px 0
}

@media (-webkit-min-device-pixel-ratio: 2),(min-resolution: 192dpi) {
    .iti__flag {
        background-image: url(/frontend/images/flags@2x-8ab4e961.png)
    }
}

.iti__flag.iti__np {
    background-color: transparent
}

@font-face {
    font-family: 'Montserrat';
    src: url(https://use.typekit.net/af/46d891/00000000000000007735cacd/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3) format("woff2"), url(https://use.typekit.net/af/46d891/00000000000000007735cacd/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3) format("woff"), url(https://use.typekit.net/af/46d891/00000000000000007735cacd/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3) format("opentype");
    font-display: auto;
    font-style: normal;
    font-weight: 300;
    font-stretch: normal
}

html, body {
    height: 100%
}

body {
    color: #545c6c;
    font-size: 18px;
    font-weight: 400
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat';
}

:root {
    --primary-blue: #001e60;
    --grey-primary: #545c6c;
    --light-grey: #f4f4f4;
    --pink: #4bbe89
}

html {
    scroll-behavior: smooth !important
}

@media screen and (max-width: 768px) {
    html {
        overflow-x: hidden
    }
}

@media screen and (min-width: 640px) {
    .container {
        max-width: 100% !important
    }
}

@media screen and (min-width: 1536px) {
    .container {
        max-width: 1536px !important
    }
}

.margin-0 {
    margin: 0 !important
}

body .font-messina-light {
    font-family: 'Montserrat';
    font-weight: 300
}

body .font-messina-serif {
    font-family: 'Montserrat' !important;
    font-weight: 300
}

body .text-normal {
    font-weight: 400
}

input[type=date]::-webkit-inner-spin-button, input[type=date]::-webkit-calendar-picker-indicator {
    opacity: 0;
    -webkit-appearance: none
}

::-webkit-datetime-edit-year-field:not([aria-valuenow]), ::-webkit-datetime-edit-month-field:not([aria-valuenow]), ::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
    color: transparent
}

h1, .h1 {
    font-size: 5rem !important;
    /*background: linear-gradient(97.08deg, #4bbe89 0%, #001e60 55.06%);*/
    background: black ;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    line-height: 88px;
    font-weight: 300;
    font-family: 'Montserrat' !important
}

.dark-bg {
    background-color: #2e343f !important
}

[dir=rtl] .h1, [dir=rtl] h1 {
    /*background: linear-gradient(-97.08deg, #4bbe89 0%, #001e60 55.06%)*/
    color: black;
}

[dir=rtl] .no-gradient-text {
    background: none
}

h2, .h2 {
    font-size: 3rem !important;
    line-height: 57px !important;
    /*background: linear-gradient(97.08deg, #4bbe89 0%, #001e60 55.06%);*/
    color: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 300;
    font-family: 'Montserrat' !important;
}

[dir=rtl] .h2, [dir=rtl] h2, [dir=rtl] .h3, [dir=rtl] h3, [dir=rtl] .h4, [dir=rtl] h4, [dir=rtl] .h5, [dir=rtl] h5, [dir=rtl] .h6, [dir=rtl] h6 {
    /*background: linear-gradient(-97.08deg, #4bbe89 0%, #001e60 55.06%);*/
    color: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent
}

h3, .h3 {
    font-size: 2.5rem !important;
    /*color: var(--primary-blue);*/
    color: black;
    line-height: 44px;
    /*background: linear-gradient(97.08deg, #4bbe89 0%, #001e60 55.06%);*/
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-family: 'Montserrat' !important;
    font-weight: 300
}

h4, .h4 {
    font-size: 2rem !important;
    color: var(--primary-blue);
    line-height: 1.3em;
    font-family:'Montserrat';
    font-weight: 400
}

h5, .h5 {
    font-size: 1.5rem !important;
    /*color: var(--primary-blue);*/
    line-height: 1.3em;
    /*background: linear-gradient(97.08deg, #4bbe89 0%, #001e60 55.06%);*/
    color: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-family: 'Montserrat';
}

h6, .h6 {
    font-family: 'Montserrat';
    font-weight: 700
}

.no-gradient-text {
    background: transparent;
    -webkit-text-fill-color: #001e60;
    line-height: normal !important
}

.remove-text-gradient {
    background: initial;
    -webkit-text-fill-color: initial;
    line-height: normal !important
}

.no-gradient-white {
    -webkit-text-fill-color: #ffffff !important
}

.btn-primary {
    border-radius: .25rem;
    padding: .75rem 3rem;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    font-family: 'Montserrat' !important;
    font-weight: 600;
    font-size: 1rem
}

.btn-primary:hover svg {
    filter: brightness(0) invert(1)
}

.btn-primary:hover {
    background-color: var(--primary-blue);
    color: #fff
}

.pink-btn:hover {
    background-color: #4bbe89 !important;
    border: 1px solid #4bbe89 !important
}

.orange-brown-btn {
    background-color: #dea36d;
    border: 1px solid #dea36d !important;
    color: #fff !important
}

.orange-brown-btn:hover {
    background-color: transparent;
    color: #dea36d !important
}

.pink-btn:hover svg {
    filter: invert(55%) sepia(32%) saturate(3209%) hue-rotate(313deg) brightness(96%) contrast(95%)
}

.cta-btn-pink {
    color: var(--pink);
    font-weight: 600;
    font-family: 'Montserrat';
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    gap: 1rem;
    border: none;
    outline: none;
    transition: transform .3s ease-in-out;
    font-family: 'Montserrat' !important
}

.pink-btn {
    background-color: var(--pink) !important;
    color: #fff !important;
    border: 1px solid #4bbe89 !important;
    font-size: 1rem;
    line-height: 24px
}

.whatsapp-btn {
    background-color: #25d366 !important;
    color: #fff !important;
    border: 1px solid #25d366 !important;
    font-size: 1rem;
    line-height: 24px
}

.whatsapp-btn:hover {
    background-color: #2ebd63 !important;
    border: 1px solid #2ebd63 !important
}

.icon {
    transition: all .3s ease-in-out
}

.cta-btn-pink:hover .icon {
    transform: scale(1.2);
    padding-right: 5px;
    transition: transform .25s ease-in-out, padding .25s ease-in-out
}

.accent {
    font-family: 'Montserrat';
    text-transform: uppercase;
    font-size: 12px !important;
    color: #919aac;
    font-style: normal;
    font-weight: 700;
    line-height: 13.2px;
    margin-bottom: 2rem;
    letter-spacing: .1em
}

.cta-btn-blue {
    color: var(--primary-blue)
}


.font-italic-font {
    line-height: inherit !important;
    font-family: 'Montserrat' !important;
}

a.btn, a.btn-primary, a.pink-btn {
    display: inline-block
}

.messina-bold {
    font-family: 'Montserrat';
}

@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: .001dpcm) {
    @supports (-webkit-appearance: none) {
        .img-placeholder img {
            -o-object-fit: initial;
            object-fit: initial;
            -o-object-position: initial;
            object-position: initial
        }

        .custom-select-style {
            color: #545c6c !important
        }
    }
}

@media screen and (max-width: 1024px) {
    h1, .h1 {
        font-size: 3rem !important;
        line-height: 62.4px
    }

    h2, .h2 {
        font-size: 2.5rem !important;
        line-height: 44px
    }

    h3, .h3 {
        font-size: 2rem !important
    }

    h4, .h4 {
        font-size: 2rem !important;
        color: var(--primary-blue);
        line-height: 1.3em
    }

    h5, .h5 {
        font-size: 1.5rem !important
    }



    .btn-primary {
        border-radius: .25rem;
        padding: .75rem 2.375rem;
        border: 1px solid var(--primary-blue);
        color: var(--primary-blue);
        font-family: 'Montserrat';
        font-weight: 600
    }

    .accent {
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 700;
        font-size: 12px;
        color: #919aac;
        margin-bottom: 1rem
    }

    .banner-mobile {
        padding-top: 30px;
        padding-bottom: 30px
    }

    .banner-mobile a.btn-primary {
        width: 50% !important;
        justify-content: center
    }

    .essentials-section .slick-prev, .hero-tabs.hero-tab-common .slick-prev {
        display: none !important;
        left: 0
    }

    .hero-tabs.hero-tab-common .slick-next, .essentials-section .slick-next {
        display: none !important;
        right: 0
    }

    section.galler-tabs-wrapper-oputer.geolocation-section .container {
        padding-right: 1.25rem;
        padding-left: 1.25rem;
        width: auto
    }

    .banner-mobile h1 {
        font-size: 32px !important
    }
}

@media screen and (max-width: 640px) {
    h1, .h1 {
        font-size: 2rem !important;
        /*background: linear-gradient(97.08deg, #4bbe89 0%, #001e60 55.06%);*/
        color: black;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
        line-height: 35.2px !important
    }

    h2, .h2 {
        font-size: 1.5rem !important;
        line-height: 35.2px !important
    }

    h3, .h3 {
        font-size: 1.5rem !important;
        line-height: 28.8px !important
    }

    h4, .h4 {
        font-size: 18px !important
    }



    .btn-primary {
        font-size: .875rem !important;
        width: 100% !important
    }

    .cta-btn-pink {
        font-size: 14px;
        gap: 8px
    }

    .cta-btn-pink span svg {
        height: 24px;
        width: 24px
    }

    .banner-btns-for-mobile a {
        display: block
    }

    .wrk-wth-us a {
        display: block;
        width: 100%
    }
}

.filter-section-wrapper ::-webkit-scrollbar {
    width: 4px
}

.filter-section-wrapper ::-webkit-scrollbar-track {
    background-color: transparent
}

.filter-section-wrapper ::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 6px #0000004d;
    border-radius: 8px
}

::-webkit-scrollbar {
    width: 12px
}

::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 6px #00000080;
    border-radius: 8px;
    border: 2px solid rgb(255, 255, 255)
}

.remove-gradient {
    background: none !important;
    -webkit-text-fill-color: initial
}

.toggle-button input[type=checkbox] {
    height: 0;
    width: 0;
    display: none
}

.toggle-button label {
    cursor: pointer;
    text-indent: -9999px;
    width: 60px;
    height: 30px;
    background: #0000001a;
    display: block;
    border-radius: 100px;
    position: relative
}

.toggle-button label:after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 20px;
    height: 20px;
    background: #919aac;
    border-radius: 90px;
    transition: .3s
}

.toggle-button input:checked + label {
    background: #919aac
}

.toggle-button input:checked + label:after {
    background: #ffffff;
    left: calc(100% - 5px);
    transform: translate(-100%)
}

input[type=search] {
    padding: 1.375rem 3.5rem 1.375rem 1.5rem;
    color: #545c6c;
    outline: none;
    border: none;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 0 1px #0003, 0 1px 2px #0000000f, 0 4px 8px #0000000f
}

input[type=number], input[type=email], input[type=password], input[type=text], input[type=tel], textarea, select {
    padding: .8rem 1rem !important;
    color: #545c6c;
    outline: none;
    background: #ffffff !important;
    border-radius: 4px !important;
    border: 1px solid #e0e0e0 !important;
    font-size: .875rem
}

input[type=number]:focus, input[type=email]:focus, input[type=password]:focus, input[type=text]:focus, textarea:focus {
    outline: none;
    border: 1px solid #e0e0e0
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}

input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-results-button, input[type=search]::-webkit-search-results-decoration {
    -webkit-appearance: none
}

#KeywordSearch, .main-search {
    padding: 1.375rem 3.5rem 1.375rem 1.5rem !important;
    color: #545c6c !important;
    outline: none !important;
    border: none;
    background: #ffffff !important;
    border-radius: 4px !important;
    box-shadow: 0 0 1px #0003, 0 1px 2px #0000000f, 0 4px 8px #0000000f !important;
    -webkit-appearance: none
}

.ellipse-two-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px
}

.ellipse-many-lines {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.lead {
    font-style: italic !important;
    font-family: "Montserrat" !important
}

.font-messina-sans {
    font-family: 'Montserrat' !important
}

.font-messina-serif-light {
    font-family: "Montserrat" !important
}

.text-fill-primary {
    -webkit-text-fill-color: #001e60 !important
}

img {
    -o-object-fit: cover;
    object-fit: cover
}

.theme-checkbox span {
    cursor: pointer;
    font-weight: 300
}

.theme-checkbox input:checked + span {
    border: 1px solid #001e60;
    color: #001e60 !important;
    font-weight: 600;
    background-color: #fff
}

.calenderSwiper .swiper-slide.active > div {
    border: 1px solid #001e60;
    color: #001e60 !important
}

.sitemap-breadcrumb .breadrumb-text {
    color: #545c6c
}

@media screen and (max-width: 575px) {
    input[type=search] {
        padding: 1rem 3.5rem 1rem 1rem
    }
}

.branches-description {
    font-size: .875rem !important
}

.branches-description a {
    opacity: .7;
    margin-bottom: .5rem
}

.my-account-page .tabs .tabs-link.active:after {
    position: absolute;
    content: " ";
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    border-radius: 0 2px 2px 0;
    background: #001e60
}

.my-account-page .tabs {
    box-shadow: 0 2px 6px #00000029
}

.tabs-content .tabs-content-item {
    animation: fadeEffect .3s
}

.tabs-content .content-item-box {
    box-shadow: 0 4px 4px #00000014
}

@keyframes fadeEffect {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.guides-detail > h4 {
    font-size: 1.5rem !important;
    color: #2e343f;
    font-family: 'Montserrat';
}

.btn-group {
    display: inline-flex;
    border-radius: .25rem
}

.btn-tab {
    border: 1px solid #e0e0e0;
    outline: none;
    padding: 12px;
    font-size: 10px;
    font-weight: 600;
    color: var(--grey-primary);
    background: #f4f4f4;
    text-transform: capitalize;
    font-family: 'Montserrat' !important;
    cursor: pointer;
    letter-spacing: 1px;
    align-items: center;
    border-radius: .25rem 0 0 .25rem
}

.btn-tab:last-child {
    border-radius: 0 .25rem .25rem 0
}

.btn-active {
    color: #001e60;
    background-color: transparent !important;
    border: 1px solid #001e60
}

.btn-prime {
    color: #001e60;
    font-size: 1rem;
    text-transform: capitalize;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 1px;
    align-items: center;
    padding: .75rem 2rem;
    border: 1px solid #001e60;
    border-radius: .25rem;
    letter-spacing: 0
}

.btn-prime:hover {
    background: #ffffff
}

.stats-card {
    background-color: #fff;
    border-radius: .625rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 185px;
    box-shadow: 0 0 1px #0003, 0 1px 1px #0000000f, 0 2px 6px #0000000f
}

.stats-footer-text {
    color: #001e60;
    font-size: 1.125rem;
    font-weight: 600
}

.stats-credit {
    font-size: .625rem;
    color: #919aac;
    letter-spacing: 1px;
    font-weight: 700
}

.play-button {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    cursor: pointer
}

#location-drop {
    display: none
}

#location-drop.openDrop {
    display: flex
}

#location-drop .tab {
    font-size: 1rem;
    color: #545c6c;
    background: #e8e8e8;
    border: 1px solid #e8e8e8;
    text-transform: capitalize;
    transition: all .3s
}

#location-drop .tab:hover, #location-drop .tab.active {
    color: #001e60;
    border: 1px solid #001e60;
    background: #ffffff !important;
    transition: all .3s
}

@media screen and (max-width: 767px) {
    .breadcrumb-wrapper {
        display: none
    }

    .property-hero-inner {
        justify-content: end
    }

    .stats-card {
        width: calc(100vw - 88px);
        padding: 1.25rem;
        min-height: 125px
    }

    .stats-card svg {
        width: 14px
    }

    .pricing-detail h5 {
        font-size: 1.25rem !important;
        text-align: center
    }

    .stats-footer-text, .stats-credit {
        text-align: center
    }

    .stats-credit {
        border-top: 1px solid #e0e0e0;
        padding-top: 1.25rem;
        width: 100%
    }

    .pricing-chart {
        overflow: auto
    }

    .pricing-chart div {
        width: 500px
    }

    #location-drop {
        display: none;
        position: absolute;
        z-index: 1;
        padding: 12px;
        margin-top: 0;
        border-radius: 10px;
        max-width: calc(100% - 80px);
        max-height: 300px;
        overflow: auto;
        background: white;
        border: 1px solid #e8e8e8;
        --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
        --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
        box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
    }

    #location-drop.openDrop {
        display: grid
    }

    #location-drop .tab {
        font-size: .75rem;
        padding: 5px;
        background: #ffffff;
        border-color: #fff
    }

    #location-drop .tab:hover, #location-drop .tab.active {
        color: #545c6c;
        border-color: #e8e8e8;
        background: #e8e8e8 !important
    }

    .drop-icon {
        border: 1px solid;
        border-radius: 100%;
        width: 24px;
        height: 24px;
        padding: 3px
    }

    .btn-prime {
        width: 100%;
        padding: .75rem;
        background: #ffffff
    }

    .properties-nearby .stats-credit {
        border-top: none;
        padding-top: 0
    }

    .stats-footer-text {
        font-size: 14px
    }

    .video-text {
        font-size: 24px !important;
        font-weight: 300
    }
}

div#datepicker-holder {
    position: relative
}

#datepicker-holder .xdsoft_datetimepicker {
    top: -80px !important;
    left: 0 !important
}

#datepicker-holder .xdsoft_datepicker.active, #datepicker-holder .xdsoft_datetimepicker .xdsoft_timepicker.active {
    text-decoration: none !important
}

#datepicker-holder .xdsoft_datetimepicker .xdsoft_calendar td:hover, #datepicker-holder .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
    background: #4bbe89 !important
}

.custom-dd-arrow {
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    background-image: url(../images/caret-down-2ee69b3f.svg) !important;
    background-position: right 0px center !important;
    background-repeat: no-repeat !important
}

.slick-sell-betterhomes .slick-list {
    margin: 0 -20px
}

.slick-sell-betterhomes .slick-slide {
    margin: 0 20px
}

.slick-sell-betterhomes .slick-dots li {
    height: auto;
    width: auto
}

.slick-sell-betterhomes .slick-dots li button {
    color: transparent;
    border: 2px solid #364565;
    padding: 0 !important;
    height: 8px;
    width: 8px;
    border-radius: 50%
}

.slick-sell-betterhomes .slick-dots li button:before {
    display: none
}

.slick-sell-betterhomes .slick-dots li.slick-active button {
    border-color: #fff
}

.sticky-form-height {
    max-height: calc(100vh - 2rem)
}

@media only screen and (max-width: 1024px) {
    .slick-sell-betterhomes .slick-arrow {
        display: none !important
    }

    .slick-sell-betterhomes .slick-next, .reviews-slider .slick-next {
        right: 0;
        display: none !important
    }

    .slick-sell-betterhomes .slick-prev, .reviews-slider .slick-prev {
        left: 0;
        display: none !important
    }

    .slick-sell-betterhomes .slick-slide img {
        border-radius: 10px
    }

    .slick-sell-betterhomes .whitespace-pre-line {
        margin-bottom: 14px
    }

    .calenderSwiper.thumbnails-slider .swiper-pagination {
        display: none
    }

    .calenderSwiper.thumbnails-slider .swiper-button-next, .calenderSwiper.thumbnails-slider .swiper-button-prev {
        display: flex
    }

    .property-details-page .thumbnails-slider {
        overflow: auto !important
    }
}

@media only screen and (max-width: 640px) {
    .property-details-page ~ #sucessMessage .modal-wrapper-inner {
        height: 65vh
    }

    #scheduleViewing .thumbnails-slider {
        padding-bottom: 3rem
    }

    #scheduleViewing .thumbnails-slider .swiper-button-next {
        left: 40px !important;
        right: 0 !important;
        margin: auto;
        top: auto;
        bottom: 0;
        align-items: end;
        width: 33px
    }

    #scheduleViewing .thumbnails-slider .swiper-button-prev {
        left: 0 !important;
        right: 40px !important;
        margin: auto;
        top: auto;
        bottom: -2px;
        align-items: end;
        width: 33px
    }
}

.property-details-page ~ #sucessMessage .modal-wrapper-inner .content-wrapper {
    height: 50%;
    align-items: center;
    justify-content: center
}

.plusicon .plus-icon-wrapper > svg.vertical-line {
    position: relative;
    top: -.7px
}

.reraText, .reraImg {
    width: 100%
}

@media screen and (min-width: 768px) {
    .reraText {
        width: 80%
    }

    .reraImg {
        width: 20%
    }
}

@media screen and (max-width: 440px) {
    .headingMob {
        font-size: 1rem !important
    }

    .paddingMob {
        padding: .75rem 1rem !important
    }
}

@media screen and (max-width: 767px) {
    .mortageBtn_mob {
        width: 100%
    }
}

@media (min-width: 1024px) {
    .lg\:container {
        width: 100%;
        padding-right: 1.25rem;
        padding-left: 1.25rem
    }

    @media (min-width: 440px) {
        .lg\:container {
            max-width: 440px
        }
    }@media (min-width: 640px) {
    .lg\:container {
        max-width: 640px;
        padding-right: 1.5rem;
        padding-left: 1.5rem
    }
}@media (min-width: 768px) {
    .lg\:container {
        max-width: 768px
    }
}@media (min-width: 1024px) {
    .lg\:container {
        max-width: 1024px;
        padding-right: 1.875rem;
        padding-left: 1.875rem
    }
}@media (min-width: 1280px) {
    .lg\:container {
        max-width: 1280px
    }
}@media (min-width: 1536px) {
    .lg\:container {
        max-width: 1536px
    }
}
}

.after\:absolute:after {
    content: var(--tw-content);
    position: absolute
}

.after\:bottom-0:after {
    content: var(--tw-content);
    bottom: 0
}

.after\:left-0:after {
    content: var(--tw-content);
    left: 0
}

.after\:right-0:after {
    content: var(--tw-content);
    right: 0
}

.after\:z-\[-1\]:after {
    content: var(--tw-content);
    z-index: -1
}

.after\:h-\[50\%\]:after {
    content: var(--tw-content);
    height: 50%
}

.after\:w-full:after {
    content: var(--tw-content);
    width: 100%
}

.after\:bg-\[\#FAFAFA\]:after {
    content: var(--tw-content);
    --tw-bg-opacity: 1;
    background-color: rgb(250 250 250 / var(--tw-bg-opacity))
}

.hover\:scale-105:hover {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.hover\:scale-125:hover {
    --tw-scale-x: 1.25;
    --tw-scale-y: 1.25;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.hover\:border-\[\#545C6C79\]:hover {
    border-color: #545c6c79
}

.hover\:\!bg-\[\#E0E0E0\]:hover {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(224 224 224 / var(--tw-bg-opacity)) !important
}

.hover\:\!bg-\[\#4bbe89\]:hover {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(239 96 121 / var(--tw-bg-opacity)) !important
}

.hover\:bg-\[\#F4F4F4\]:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(244 244 244 / var(--tw-bg-opacity))
}

.hover\:bg-gray-100:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity))
}

.hover\:bg-primary-blue:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(0 30 96 / var(--tw-bg-opacity))
}

.hover\:bg-red-200:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(254 202 202 / var(--tw-bg-opacity))
}

.hover\:bg-white:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}

.hover\:\!text-white:hover {
    --tw-text-opacity: 1 !important;
    color: rgb(255 255 255 / var(--tw-text-opacity)) !important
}

.hover\:text-gray-400:hover {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity))
}

.hover\:text-gray-500:hover {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity))
}

.hover\:text-gray-900:hover {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity))
}

.hover\:text-primary-blue:hover {
    --tw-text-opacity: 1;
    color: rgb(0 30 96 / var(--tw-text-opacity))
}

.hover\:text-white:hover {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity))
}

.hover\:underline:hover {
    text-decoration-line: underline
}

.hover\:no-underline:hover {
    text-decoration-line: none
}

.hover\:decoration-auto:hover {
    text-decoration-thickness: auto
}

.hover\:shadow-\[0px_3px_6px_\#00000029\]:hover {
    --tw-shadow: 0px 3px 6px #00000029;
    --tw-shadow-colored: 0px 3px 6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.focus\:z-10:focus {
    z-index: 10
}

.focus\:border-blue-300:focus {
    --tw-border-opacity: 1;
    border-color: rgb(147 197 253 / var(--tw-border-opacity))
}

.focus\:border-blue-500:focus {
    --tw-border-opacity: 1;
    border-color: rgb(59 130 246 / var(--tw-border-opacity))
}

.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px
}

.focus\:ring:focus {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

.focus\:ring-2:focus {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

.focus\:ring-blue-500:focus {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity))
}

.focus\:ring-gray-300:focus {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity))
}

.focus\:ring-red-400:focus {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(248 113 113 / var(--tw-ring-opacity))
}

.active\:bg-gray-100:active {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity))
}

.active\:text-gray-500:active {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity))
}

.active\:text-gray-700:active {
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity))
}

@media (min-width: 440px) {
    .xs\:w-2\/6 {
        width: 33.333333%
    }

    .xs\:\!text-\[14px\] {
        font-size: 14px !important
    }
}

@media (min-width: 640px) {
    .sm\:mx-3 {
        margin-left: .75rem;
        margin-right: .75rem
    }

    .sm\:my-0 {
        margin-top: 0;
        margin-bottom: 0
    }

    .sm\:mr-2 {
        margin-right: .5rem
    }

    .sm\:mr-2\.5 {
        margin-right: .625rem
    }

    .sm\:mt-0 {
        margin-top: 0
    }

    .sm\:mt-8 {
        margin-top: 2rem
    }

    .sm\:\!block {
        display: block !important
    }

    .sm\:block {
        display: block
    }

    .sm\:inline {
        display: inline
    }

    .sm\:flex {
        display: flex
    }

    .sm\:\!grid {
        display: grid !important
    }

    .sm\:\!hidden {
        display: none !important
    }

    .sm\:hidden {
        display: none
    }

    .sm\:\!h-\[240px\] {
        height: 240px !important
    }

    .sm\:\!h-\[500px\] {
        height: 500px !important
    }

    .sm\:h-full {
        height: 100%
    }

    .sm\:w-2\/3 {
        width: 66.666667%
    }

    .sm\:w-64 {
        width: 16rem
    }

    .sm\:w-\[200px\] {
        width: 200px
    }

    .sm\:w-auto {
        width: auto
    }

    .sm\:min-w-0 {
        min-width: 0px
    }

    .sm\:min-w-40 {
        min-width: 10rem
    }

    .sm\:flex-1 {
        flex: 1 1 0%
    }

    .sm\:grid-cols-2 {
        grid-template-columns:repeat(2, minmax(0, 1fr))
    }

    .sm\:grid-cols-3 {
        grid-template-columns:repeat(3, minmax(0, 1fr))
    }

    .sm\:flex-row {
        flex-direction: row
    }

    .sm\:items-center {
        align-items: center
    }

    .sm\:justify-start {
        justify-content: flex-start
    }

    .sm\:justify-between {
        justify-content: space-between
    }

    .sm\:gap-2 {
        gap: .5rem
    }

    .sm\:gap-3 {
        gap: .75rem
    }

    .sm\:space-x-3 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(.75rem * var(--tw-space-x-reverse));
        margin-left: calc(.75rem * calc(1 - var(--tw-space-x-reverse)))
    }

    .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(0px * var(--tw-space-y-reverse))
    }

    .sm\:overflow-hidden {
        overflow: hidden
    }

    .sm\:border-r-\[1px\] {
        border-right-width: 1px
    }

    .sm\:p-8 {
        padding: 2rem
    }

    .sm\:px-0 {
        padding-left: 0;
        padding-right: 0
    }

    .sm\:px-16 {
        padding-left: 4rem;
        padding-right: 4rem
    }

    .sm\:px-4 {
        padding-left: 1rem;
        padding-right: 1rem
    }

    .sm\:px-5 {
        padding-left: 1.25rem;
        padding-right: 1.25rem
    }

    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }

    .sm\:py-16 {
        padding-top: 4rem;
        padding-bottom: 4rem
    }

    .sm\:pb-0 {
        padding-bottom: 0
    }

    .sm\:pb-8 {
        padding-bottom: 2rem
    }

    .sm\:pt-0 {
        padding-top: 0
    }

    .sm\:pt-12 {
        padding-top: 3rem
    }

    .sm\:pt-16 {
        padding-top: 4rem
    }

    .sm\:text-left {
        text-align: left
    }

    .sm\:text-\[14px\] {
        font-size: 14px
    }

    .sm\:text-sm {
        font-size: .875rem;
        line-height: 1.25rem
    }
}

@media (min-width: 768px) {
    .md\:-right-2 {
        right: -.5rem
    }

    .md\:bottom-0 {
        bottom: 0
    }

    .md\:order-1 {
        order: 1
    }

    .md\:order-2 {
        order: 2
    }

    .md\:order-none {
        order: 0
    }

    .md\:col-span-1 {
        grid-column: span 1 / span 1
    }

    .md\:col-span-2 {
        grid-column: span 2 / span 2
    }

    .md\:col-span-4 {
        grid-column: span 4 / span 4
    }

    .md\:mx-6 {
        margin-left: 1.5rem;
        margin-right: 1.5rem
    }

    .md\:mx-auto {
        margin-left: auto;
        margin-right: auto
    }

    .md\:my-12 {
        margin-top: 3rem;
        margin-bottom: 3rem
    }

    .md\:my-4 {
        margin-top: 1rem;
        margin-bottom: 1rem
    }

    .md\:mb-0 {
        margin-bottom: 0
    }

    .md\:mb-2 {
        margin-bottom: .5rem
    }

    .md\:mb-8 {
        margin-bottom: 2rem
    }

    .md\:mb-\[100px\] {
        margin-bottom: 100px
    }

    .md\:mb-\[64px\] {
        margin-bottom: 64px
    }

    .md\:ml-2 {
        margin-left: .5rem
    }

    .md\:ml-5 {
        margin-left: 1.25rem
    }

    .md\:mr-6 {
        margin-right: 1.5rem
    }

    .md\:mt-0 {
        margin-top: 0
    }

    .md\:mt-10 {
        margin-top: 2.5rem
    }

    .md\:mt-12 {
        margin-top: 3rem
    }

    .md\:mt-20 {
        margin-top: 5rem
    }

    .md\:mt-24 {
        margin-top: 6rem
    }

    .md\:mt-4 {
        margin-top: 1rem
    }

    .md\:mt-6 {
        margin-top: 1.5rem
    }

    .md\:mt-7 {
        margin-top: 1.75rem
    }

    .md\:mt-8 {
        margin-top: 2rem
    }

    .md\:mt-\[40px\] {
        margin-top: 40px
    }

    .md\:mt-\[69px\] {
        margin-top: 69px
    }

    .md\:block {
        display: block
    }

    .md\:flex {
        display: flex
    }

    .md\:grid {
        display: grid
    }

    .md\:hidden {
        display: none
    }

    .md\:aspect-\[25\/11\.1\] {
        aspect-ratio: 25/11.1
    }

    .md\:\!h-\[640px\] {
        height: 640px !important
    }

    .md\:h-8 {
        height: 2rem
    }

    .md\:h-96 {
        height: 24rem
    }

    .md\:h-\[125px\] {
        height: 125px
    }

    .md\:h-\[200px\] {
        height: 200px
    }

    .md\:h-\[360px\] {
        height: 360px
    }

    .md\:h-\[420px\] {
        height: 420px
    }

    .md\:h-\[440px\] {
        height: 440px
    }

    .md\:h-\[480px\] {
        height: 480px
    }

    .md\:h-\[640px\] {
        height: 640px
    }

    .md\:h-auto {
        height: auto
    }

    .md\:h-full {
        height: 100%
    }

    .md\:\!max-h-\[calc\(100vh-100px\)\] {
        max-height: calc(100vh - 100px) !important
    }

    .md\:max-h-\[37px\] {
        max-height: 37px
    }

    .md\:\!w-full {
        width: 100% !important
    }

    .md\:w-1\/2 {
        width: 50%
    }

    .md\:w-1\/4 {
        width: 25%
    }

    .md\:w-2\/3 {
        width: 66.666667%
    }

    .md\:w-2\/6 {
        width: 33.333333%
    }

    .md\:w-4\/6 {
        width: 66.666667%
    }

    .md\:w-48 {
        width: 12rem
    }

    .md\:w-\[115px\] {
        width: 115px
    }

    .md\:w-\[200px\] {
        width: 200px
    }

    .md\:w-\[210px\] {
        width: 210px
    }

    .md\:w-auto {
        width: auto
    }

    .md\:w-full {
        width: 100%
    }

    .md\:min-w-\[210px\] {
        min-width: 210px
    }

    .md\:max-w-3xl {
        max-width: 48rem
    }

    .md\:max-w-sm {
        max-width: 24rem
    }

    .md\:grid-cols-12 {
        grid-template-columns:repeat(12, minmax(0, 1fr))
    }

    .md\:grid-cols-2 {
        grid-template-columns:repeat(2, minmax(0, 1fr))
    }

    .md\:grid-cols-3 {
        grid-template-columns:repeat(3, minmax(0, 1fr))
    }

    .md\:grid-cols-4 {
        grid-template-columns:repeat(4, minmax(0, 1fr))
    }

    .md\:grid-cols-6 {
        grid-template-columns:repeat(6, minmax(0, 1fr))
    }

    .md\:flex-row {
        flex-direction: row
    }

    .md\:flex-col-reverse {
        flex-direction: column-reverse
    }

    .md\:flex-wrap {
        flex-wrap: wrap
    }

    .md\:flex-nowrap {
        flex-wrap: nowrap
    }

    .md\:items-start {
        align-items: flex-start
    }

    .md\:items-end {
        align-items: flex-end
    }

    .md\:items-center {
        align-items: center
    }

    .md\:justify-start {
        justify-content: flex-start
    }

    .md\:justify-center {
        justify-content: center
    }

    .md\:justify-between {
        justify-content: space-between
    }

    .md\:gap-0 {
        gap: 0px
    }

    .md\:gap-1 {
        gap: .25rem
    }

    .md\:gap-10 {
        gap: 2.5rem
    }

    .md\:gap-16 {
        gap: 4rem
    }

    .md\:gap-3 {
        gap: .75rem
    }

    .md\:gap-4 {
        gap: 1rem
    }

    .md\:gap-6 {
        gap: 1.5rem
    }

    .md\:gap-7 {
        gap: 1.75rem
    }

    .md\:gap-8 {
        gap: 2rem
    }

    .md\:gap-\[40px\] {
        gap: 40px
    }

    .md\:gap-y-12 {
        row-gap: 3rem
    }

    .md\:space-x-3 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(.75rem * var(--tw-space-x-reverse));
        margin-left: calc(.75rem * calc(1 - var(--tw-space-x-reverse)))
    }

    .md\:rounded-\[10px\] {
        border-radius: 10px
    }

    .md\:rounded-none {
        border-radius: 0
    }

    .md\:p-0 {
        padding: 0
    }

    .md\:p-10 {
        padding: 2.5rem
    }

    .md\:p-20 {
        padding: 5rem
    }

    .md\:p-4 {
        padding: 1rem
    }

    .md\:p-5 {
        padding: 1.25rem
    }

    .md\:\!px-3 {
        padding-left: .75rem !important;
        padding-right: .75rem !important
    }

    .md\:px-10 {
        padding-left: 2.5rem;
        padding-right: 2.5rem
    }

    .md\:px-2 {
        padding-left: .5rem;
        padding-right: .5rem
    }

    .md\:px-4 {
        padding-left: 1rem;
        padding-right: 1rem
    }

    .md\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }

    .md\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem
    }

    .md\:px-\[62px\] {
        padding-left: 62px;
        padding-right: 62px
    }

    .md\:px-\[80px\] {
        padding-left: 80px;
        padding-right: 80px
    }

    .md\:py-10 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem
    }

    .md\:py-12 {
        padding-top: 3rem;
        padding-bottom: 3rem
    }

    .md\:py-14 {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem
    }

    .md\:py-16 {
        padding-top: 4rem;
        padding-bottom: 4rem
    }

    .md\:py-2 {
        padding-top: .5rem;
        padding-bottom: .5rem
    }

    .md\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem
    }

    .md\:py-3 {
        padding-top: .75rem;
        padding-bottom: .75rem
    }

    .md\:py-8 {
        padding-top: 2rem;
        padding-bottom: 2rem
    }

    .md\:py-\[50px\] {
        padding-top: 50px;
        padding-bottom: 50px
    }

    .md\:pb-14 {
        padding-bottom: 3.5rem
    }

    .md\:pb-16 {
        padding-bottom: 4rem
    }

    .md\:pb-24 {
        padding-bottom: 6rem
    }

    .md\:pb-3 {
        padding-bottom: .75rem
    }

    .md\:pb-8 {
        padding-bottom: 2rem
    }

    .md\:pb-\[40px\] {
        padding-bottom: 40px
    }

    .md\:pl-2 {
        padding-left: .5rem
    }

    .md\:pl-3 {
        padding-left: .75rem
    }

    .md\:pt-0 {
        padding-top: 0
    }

    .md\:pt-10 {
        padding-top: 2.5rem
    }

    .md\:pt-14 {
        padding-top: 3.5rem
    }

    .md\:pt-6 {
        padding-top: 1.5rem
    }

    .md\:text-left {
        text-align: left
    }

    .md\:text-center {
        text-align: center
    }

    .md\:\!text-\[32px\] {
        font-size: 32px !important
    }

    .md\:\!text-\[3rem\] {
        font-size: 3rem !important
    }

    .md\:\!text-\[40px\] {
        font-size: 40px !important
    }

    .md\:\!text-\[64px\] {
        font-size: 64px !important
    }

    .md\:text-\[2\.5rem\] {
        font-size: 2.5rem
    }

    .md\:text-base {
        font-size: 1rem;
        line-height: 1.5rem
    }

    .md\:text-sm {
        font-size: .875rem;
        line-height: 1.25rem
    }

    .md\:font-medium {
        font-weight: 500
    }

    .md\:font-thin {
        font-weight: 100
    }

    .md\:text-\[\#1f1f1f\] {
        --tw-text-opacity: 1;
        color: rgb(31 31 31 / var(--tw-text-opacity))
    }
}

@media (min-width: 1024px) {
    .lg\:absolute {
        position: absolute
    }

    .lg\:sticky {
        position: sticky
    }

    .lg\:top-\[48px\] {
        top: 48px
    }

    .lg\:order-none {
        order: 0
    }

    .lg\:col-span-1 {
        grid-column: span 1 / span 1
    }

    .lg\:col-span-2 {
        grid-column: span 2 / span 2
    }

    .lg\:col-span-5 {
        grid-column: span 5 / span 5
    }

    .lg\:m-0 {
        margin: 0
    }

    .lg\:-mx-\[28px\] {
        margin-left: -28px;
        margin-right: -28px
    }

    .lg\:mx-0 {
        margin-left: 0;
        margin-right: 0
    }

    .lg\:my-\[104px\] {
        margin-top: 104px;
        margin-bottom: 104px
    }

    .lg\:my-\[60px\] {
        margin-top: 60px;
        margin-bottom: 60px
    }

    .lg\:\!mr-0 {
        margin-right: 0 !important
    }

    .lg\:mb-0 {
        margin-bottom: 0
    }

    .lg\:mb-12 {
        margin-bottom: 3rem
    }

    .lg\:mb-4 {
        margin-bottom: 1rem
    }

    .lg\:mb-5 {
        margin-bottom: 1.25rem
    }

    .lg\:mb-\[110px\] {
        margin-bottom: 110px
    }

    .lg\:mb-\[12px\] {
        margin-bottom: 12px
    }

    .lg\:mb-\[196px\] {
        margin-bottom: 196px
    }

    .lg\:ml-0 {
        margin-left: 0
    }

    .lg\:ml-12 {
        margin-left: 3rem
    }

    .lg\:ml-5 {
        margin-left: 1.25rem
    }

    .lg\:mt-0 {
        margin-top: 0
    }

    .lg\:mt-10 {
        margin-top: 2.5rem
    }

    .lg\:mt-12 {
        margin-top: 3rem
    }

    .lg\:mt-16 {
        margin-top: 4rem
    }

    .lg\:mt-2 {
        margin-top: .5rem
    }

    .lg\:mt-20 {
        margin-top: 5rem
    }

    .lg\:mt-4 {
        margin-top: 1rem
    }

    .lg\:mt-6 {
        margin-top: 1.5rem
    }

    .lg\:mt-7 {
        margin-top: 1.75rem
    }

    .lg\:mt-8 {
        margin-top: 2rem
    }

    .lg\:mt-\[104px\] {
        margin-top: 104px
    }

    .lg\:mt-\[115px\] {
        margin-top: 115px
    }

    .lg\:mt-\[52px\] {
        margin-top: 52px
    }

    .lg\:mt-\[56px\] {
        margin-top: 56px
    }

    .lg\:mt-\[88px\] {
        margin-top: 88px
    }

    .lg\:\!block {
        display: block !important
    }

    .lg\:block {
        display: block
    }

    .lg\:inline-block {
        display: inline-block
    }

    .lg\:\!flex {
        display: flex !important
    }

    .lg\:flex {
        display: flex
    }

    .lg\:grid {
        display: grid
    }

    .lg\:\!hidden {
        display: none !important
    }

    .lg\:hidden {
        display: none
    }

    .lg\:\!h-\[114px\] {
        height: 114px !important
    }

    .lg\:\!h-\[228px\] {
        height: 228px !important
    }

    .lg\:\!h-\[355px\] {
        height: 355px !important
    }

    .lg\:\!h-\[480px\] {
        height: 480px !important
    }

    .lg\:\!h-auto {
        height: auto !important
    }

    .lg\:h-\[113px\] {
        height: 113px
    }

    .lg\:h-\[236px\] {
        height: 236px
    }

    .lg\:h-\[360px\] {
        height: 360px
    }

    .lg\:h-\[469px\] {
        height: 469px
    }

    .lg\:h-\[522px\] {
        height: 522px
    }

    .lg\:h-\[600px\] {
        height: 600px
    }

    .lg\:h-\[640px\] {
        height: 640px
    }

    .lg\:h-\[660px\] {
        height: 660px
    }

    .lg\:h-\[680px\] {
        height: 680px
    }

    .lg\:h-\[700px\] {
        height: 700px
    }

    .lg\:h-\[calc\(100vh-10px\)\] {
        height: calc(100vh - 10px)
    }

    .lg\:h-auto {
        height: auto
    }

    .lg\:h-full {
        height: 100%
    }

    .lg\:h-screen {
        height: 100vh
    }

    .lg\:min-h-\[710px\] {
        min-height: 710px
    }

    .lg\:w-1\/2 {
        width: 50%
    }

    .lg\:w-1\/3 {
        width: 33.333333%
    }

    .lg\:w-1\/4 {
        width: 25%
    }

    .lg\:w-2\/3 {
        width: 66.666667%
    }

    .lg\:w-2\/5 {
        width: 40%
    }

    .lg\:w-2\/6 {
        width: 33.333333%
    }

    .lg\:w-3\/5 {
        width: 60%
    }

    .lg\:w-4\/6 {
        width: 66.666667%
    }

    .lg\:w-48 {
        width: 12rem
    }

    .lg\:w-5\/6 {
        width: 83.333333%
    }

    .lg\:w-9\/12 {
        width: 75%
    }

    .lg\:w-\[118px\] {
        width: 118px
    }

    .lg\:w-\[180px\] {
        width: 180px
    }

    .lg\:w-\[200px\] {
        width: 200px
    }

    .lg\:w-\[208px\] {
        width: 208px
    }

    .lg\:w-\[240px\] {
        width: 240px
    }

    .lg\:w-\[37\%\] {
        width: 37%
    }

    .lg\:w-\[420px\] {
        width: 420px
    }

    .lg\:w-\[48\.5\%\] {
        width: 48.5%
    }

    .lg\:w-\[50\%\] {
        width: 50%
    }

    .lg\:w-\[60\%\] {
        width: 60%
    }

    .lg\:w-\[608px\] {
        width: 608px
    }

    .lg\:w-\[63\%\] {
        width: 63%
    }

    .lg\:w-auto {
        width: auto
    }

    .lg\:w-full {
        width: 100%
    }

    .lg\:min-w-\[130px\] {
        min-width: 130px
    }

    .lg\:max-w-\[500px\] {
        max-width: 500px
    }

    .lg\:max-w-\[620px\] {
        max-width: 620px
    }

    .lg\:max-w-full {
        max-width: 100%
    }

    .lg\:grid-cols-1 {
        grid-template-columns:repeat(1, minmax(0, 1fr))
    }

    .lg\:grid-cols-12 {
        grid-template-columns:repeat(12, minmax(0, 1fr))
    }

    .lg\:grid-cols-2 {
        grid-template-columns:repeat(2, minmax(0, 1fr))
    }

    .lg\:grid-cols-3 {
        grid-template-columns:repeat(3, minmax(0, 1fr))
    }

    .lg\:grid-cols-4 {
        grid-template-columns:repeat(4, minmax(0, 1fr))
    }

    .lg\:flex-row {
        flex-direction: row
    }

    .lg\:flex-row-reverse {
        flex-direction: row-reverse
    }

    .lg\:flex-col {
        flex-direction: column
    }

    .lg\:flex-nowrap {
        flex-wrap: nowrap
    }

    .lg\:items-start {
        align-items: flex-start
    }

    .lg\:items-center {
        align-items: center
    }

    .lg\:justify-start {
        justify-content: flex-start
    }

    .lg\:justify-center {
        justify-content: center
    }

    .lg\:gap-0 {
        gap: 0px
    }

    .lg\:gap-10 {
        gap: 2.5rem
    }

    .lg\:gap-11 {
        gap: 2.75rem
    }

    .lg\:gap-4 {
        gap: 1rem
    }

    .lg\:gap-6 {
        gap: 1.5rem
    }

    .lg\:gap-8 {
        gap: 2rem
    }

    .lg\:gap-\[30px\] {
        gap: 30px
    }

    .lg\:gap-\[55px\] {
        gap: 55px
    }

    .lg\:gap-x-6 {
        -moz-column-gap: 1.5rem;
        column-gap: 1.5rem
    }

    .lg\:gap-x-8 {
        -moz-column-gap: 2rem;
        column-gap: 2rem
    }

    .lg\:gap-y-16 {
        row-gap: 4rem
    }

    .lg\:space-x-10 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(2.5rem * var(--tw-space-x-reverse));
        margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse)))
    }

    .lg\:space-x-20 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(5rem * var(--tw-space-x-reverse));
        margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse)))
    }

    .lg\:space-x-5 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(1.25rem * var(--tw-space-x-reverse));
        margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)))
    }

    .lg\:space-x-6 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(1.5rem * var(--tw-space-x-reverse));
        margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)))
    }

    .lg\:space-x-8 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-x-reverse: 0;
        margin-right: calc(2rem * var(--tw-space-x-reverse));
        margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)))
    }

    .lg\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(0px * var(--tw-space-y-reverse))
    }

    .lg\:truncate {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .lg\:rounded-md {
        border-radius: .375rem
    }

    .lg\:rounded-none {
        border-radius: 0
    }

    .lg\:rounded-sm {
        border-radius: .125rem
    }

    .lg\:rounded-xl {
        border-radius: .75rem
    }

    .lg\:border-b-\[0px\] {
        border-bottom-width: 0px
    }

    .lg\:object-cover {
        -o-object-fit: cover;
        object-fit: cover
    }

    .lg\:p-0 {
        padding: 0
    }

    .lg\:p-10 {
        padding: 2.5rem
    }

    .lg\:p-12 {
        padding: 3rem
    }

    .lg\:p-8 {
        padding: 2rem
    }

    .lg\:\!px-10 {
        padding-left: 2.5rem !important;
        padding-right: 2.5rem !important
    }

    .lg\:px-0 {
        padding-left: 0;
        padding-right: 0
    }

    .lg\:px-10 {
        padding-left: 2.5rem;
        padding-right: 2.5rem
    }

    .lg\:px-12 {
        padding-left: 3rem;
        padding-right: 3rem
    }

    .lg\:px-20 {
        padding-left: 5rem;
        padding-right: 5rem
    }

    .lg\:px-4 {
        padding-left: 1rem;
        padding-right: 1rem
    }

    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem
    }

    .lg\:px-\[28px\] {
        padding-left: 28px;
        padding-right: 28px
    }

    .lg\:px-\[40px\] {
        padding-left: 40px;
        padding-right: 40px
    }

    .lg\:py-0 {
        padding-top: 0;
        padding-bottom: 0
    }

    .lg\:py-10 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem
    }

    .lg\:py-14 {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem
    }

    .lg\:py-16 {
        padding-top: 4rem;
        padding-bottom: 4rem
    }

    .lg\:py-2 {
        padding-top: .5rem;
        padding-bottom: .5rem
    }

    .lg\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem
    }

    .lg\:py-24 {
        padding-top: 6rem;
        padding-bottom: 6rem
    }

    .lg\:py-28 {
        padding-top: 7rem;
        padding-bottom: 7rem
    }

    .lg\:py-40 {
        padding-top: 10rem;
        padding-bottom: 10rem
    }

    .lg\:py-\[30px\] {
        padding-top: 30px;
        padding-bottom: 30px
    }

    .lg\:py-\[50px\] {
        padding-top: 50px;
        padding-bottom: 50px
    }

    .lg\:py-\[52px\] {
        padding-top: 52px;
        padding-bottom: 52px
    }

    .lg\:pb-0 {
        padding-bottom: 0
    }

    .lg\:pb-10 {
        padding-bottom: 2.5rem
    }

    .lg\:pb-14 {
        padding-bottom: 3.5rem
    }

    .lg\:pb-16 {
        padding-bottom: 4rem
    }

    .lg\:pb-2 {
        padding-bottom: .5rem
    }

    .lg\:pb-20 {
        padding-bottom: 5rem
    }

    .lg\:pb-24 {
        padding-bottom: 6rem
    }

    .lg\:pb-28 {
        padding-bottom: 7rem
    }

    .lg\:pb-3 {
        padding-bottom: .75rem
    }

    .lg\:pb-40 {
        padding-bottom: 10rem
    }

    .lg\:pb-5 {
        padding-bottom: 1.25rem
    }

    .lg\:pb-56 {
        padding-bottom: 14rem
    }

    .lg\:pb-8 {
        padding-bottom: 2rem
    }

    .lg\:pb-\[110px\] {
        padding-bottom: 110px
    }

    .lg\:pb-\[124px\] {
        padding-bottom: 124px
    }

    .lg\:pb-\[40px\] {
        padding-bottom: 40px
    }

    .lg\:pb-\[60px\] {
        padding-bottom: 60px
    }

    .lg\:pb-\[80px\] {
        padding-bottom: 80px
    }

    .lg\:pl-0 {
        padding-left: 0
    }

    .lg\:pl-10 {
        padding-left: 2.5rem
    }

    .lg\:pl-12 {
        padding-left: 3rem
    }

    .lg\:pl-2 {
        padding-left: .5rem
    }

    .lg\:pl-3 {
        padding-left: .75rem
    }

    .lg\:pl-5 {
        padding-left: 1.25rem
    }

    .lg\:pl-\[200px\] {
        padding-left: 200px
    }

    .lg\:pl-\[65px\] {
        padding-left: 65px
    }

    .lg\:pr-0 {
        padding-right: 0
    }

    .lg\:pr-10 {
        padding-right: 2.5rem
    }

    .lg\:pr-20 {
        padding-right: 5rem
    }

    .lg\:pr-\[30px\] {
        padding-right: 30px
    }

    .lg\:pr-\[40px\] {
        padding-right: 40px
    }

    .lg\:pr-\[60px\] {
        padding-right: 60px
    }

    .lg\:pr-\[85px\] {
        padding-right: 85px
    }

    .lg\:pt-0 {
        padding-top: 0
    }

    .lg\:pt-10 {
        padding-top: 2.5rem
    }

    .lg\:pt-11 {
        padding-top: 2.75rem
    }

    .lg\:pt-12 {
        padding-top: 3rem
    }

    .lg\:pt-16 {
        padding-top: 4rem
    }

    .lg\:pt-20 {
        padding-top: 5rem
    }

    .lg\:pt-24 {
        padding-top: 6rem
    }

    .lg\:pt-28 {
        padding-top: 7rem
    }

    .lg\:pt-4 {
        padding-top: 1rem
    }

    .lg\:pt-40 {
        padding-top: 10rem
    }

    .lg\:pt-5 {
        padding-top: 1.25rem
    }

    .lg\:pt-6 {
        padding-top: 1.5rem
    }

    .lg\:pt-8 {
        padding-top: 2rem
    }

    .lg\:pt-\[100px\] {
        padding-top: 100px
    }

    .lg\:pt-\[104px\] {
        padding-top: 104px
    }

    .lg\:pt-\[150px\] {
        padding-top: 150px
    }

    .lg\:text-center {
        text-align: center
    }

    .lg\:\!text-\[24px\] {
        font-size: 24px !important
    }

    .lg\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem
    }

    .lg\:text-5xl {
        font-size: 3rem;
        line-height: 1
    }

    .lg\:text-\[28px\] {
        font-size: 28px
    }

    .lg\:text-\[2rem\] {
        font-size: 2rem
    }

    .lg\:text-\[32px\] {
        font-size: 32px
    }

    .lg\:text-base {
        font-size: 1rem;
        line-height: 1.5rem
    }

    .lg\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem
    }

    .lg\:text-sm {
        font-size: .875rem;
        line-height: 1.25rem
    }

    .lg\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem
    }

    .lg\:font-medium {
        font-weight: 500
    }
}

@media (min-width: 1280px) {
    .xl\:col-span-3 {
        grid-column: span 3 / span 3
    }

    .xl\:mt-20 {
        margin-top: 5rem
    }

    .xl\:mt-\[104px\] {
        margin-top: 104px
    }

    .xl\:grid-cols-4 {
        grid-template-columns:repeat(4, minmax(0, 1fr))
    }

    .xl\:gap-16 {
        gap: 4rem
    }

    .xl\:gap-40 {
        gap: 10rem
    }

    .xl\:gap-x-8 {
        -moz-column-gap: 2rem;
        column-gap: 2rem
    }

    .xl\:gap-y-16 {
        row-gap: 4rem
    }

    .xl\:px-10 {
        padding-left: 2.5rem;
        padding-right: 2.5rem
    }

    .xl\:pl-40 {
        padding-left: 10rem
    }

    .xl\:pr-40 {
        padding-right: 10rem
    }

    .xl\:pr-\[120px\] {
        padding-right: 120px
    }

    .xl\:pr-\[144px\] {
        padding-right: 144px
    }

    .xl\:pr-\[160px\] {
        padding-right: 160px
    }

    .xl\:pr-\[60px\] {
        padding-right: 60px
    }

    .xl\:\!text-\[14px\] {
        font-size: 14px !important
    }

    .xl\:text-base {
        font-size: 1rem;
        line-height: 1.5rem
    }
}

@media (min-width: 1536px) {
    .\32xl\:grid-cols-3 {
        grid-template-columns:repeat(3, minmax(0, 1fr))
    }
}

.rtl\:text-right:where([dir=rtl],[dir=rtl] *) {
    text-align: right
}

@media (prefers-color-scheme: dark) {
    .dark\:border-gray-600 {
        --tw-border-opacity: 1;
        border-color: rgb(75 85 99 / var(--tw-border-opacity))
    }

    .dark\:border-gray-700 {
        --tw-border-opacity: 1;
        border-color: rgb(55 65 81 / var(--tw-border-opacity))
    }

    .dark\:bg-blue-200 {
        --tw-bg-opacity: 1;
        background-color: rgb(191 219 254 / var(--tw-bg-opacity))
    }

    .dark\:bg-gray-700 {
        --tw-bg-opacity: 1;
        background-color: rgb(55 65 81 / var(--tw-bg-opacity))
    }

    .dark\:bg-gray-800 {
        --tw-bg-opacity: 1;
        background-color: rgb(31 41 55 / var(--tw-bg-opacity))
    }

    .dark\:bg-gray-900 {
        --tw-bg-opacity: 1;
        background-color: rgb(17 24 39 / var(--tw-bg-opacity))
    }

    .dark\:bg-green-200 {
        --tw-bg-opacity: 1;
        background-color: rgb(187 247 208 / var(--tw-bg-opacity))
    }

    .dark\:bg-green-800 {
        --tw-bg-opacity: 1;
        background-color: rgb(22 101 52 / var(--tw-bg-opacity))
    }

    .dark\:bg-orange-700 {
        --tw-bg-opacity: 1;
        background-color: rgb(194 65 12 / var(--tw-bg-opacity))
    }

    .dark\:bg-red-200 {
        --tw-bg-opacity: 1;
        background-color: rgb(254 202 202 / var(--tw-bg-opacity))
    }

    .dark\:bg-red-800 {
        --tw-bg-opacity: 1;
        background-color: rgb(153 27 27 / var(--tw-bg-opacity))
    }

    .dark\:bg-yellow-200 {
        --tw-bg-opacity: 1;
        background-color: rgb(254 240 138 / var(--tw-bg-opacity))
    }

    .dark\:text-blue-800 {
        --tw-text-opacity: 1;
        color: rgb(30 64 175 / var(--tw-text-opacity))
    }

    .dark\:text-gray-400 {
        --tw-text-opacity: 1;
        color: rgb(156 163 175 / var(--tw-text-opacity))
    }

    .dark\:text-gray-500 {
        --tw-text-opacity: 1;
        color: rgb(107 114 128 / var(--tw-text-opacity))
    }

    .dark\:text-green-200 {
        --tw-text-opacity: 1;
        color: rgb(187 247 208 / var(--tw-text-opacity))
    }

    .dark\:text-green-800 {
        --tw-text-opacity: 1;
        color: rgb(22 101 52 / var(--tw-text-opacity))
    }

    .dark\:text-orange-200 {
        --tw-text-opacity: 1;
        color: rgb(254 215 170 / var(--tw-text-opacity))
    }

    .dark\:text-red-200 {
        --tw-text-opacity: 1;
        color: rgb(254 202 202 / var(--tw-text-opacity))
    }

    .dark\:text-red-600 {
        --tw-text-opacity: 1;
        color: rgb(220 38 38 / var(--tw-text-opacity))
    }

    .dark\:text-red-800 {
        --tw-text-opacity: 1;
        color: rgb(153 27 27 / var(--tw-text-opacity))
    }

    .dark\:text-white {
        --tw-text-opacity: 1;
        color: rgb(255 255 255 / var(--tw-text-opacity))
    }

    .dark\:text-yellow-800 {
        --tw-text-opacity: 1;
        color: rgb(133 77 14 / var(--tw-text-opacity))
    }

    .dark\:placeholder-gray-400::-moz-placeholder {
        --tw-placeholder-opacity: 1;
        color: rgb(156 163 175 / var(--tw-placeholder-opacity))
    }

    .dark\:placeholder-gray-400::placeholder {
        --tw-placeholder-opacity: 1;
        color: rgb(156 163 175 / var(--tw-placeholder-opacity))
    }

    .dark\:hover\:bg-gray-700:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(55 65 81 / var(--tw-bg-opacity))
    }

    .dark\:hover\:bg-red-300:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(252 165 165 / var(--tw-bg-opacity))
    }

    .dark\:hover\:text-white:hover {
        --tw-text-opacity: 1;
        color: rgb(255 255 255 / var(--tw-text-opacity))
    }

    .dark\:focus\:border-blue-500:focus {
        --tw-border-opacity: 1;
        border-color: rgb(59 130 246 / var(--tw-border-opacity))
    }

    .dark\:focus\:ring-blue-500:focus {
        --tw-ring-opacity: 1;
        --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity))
    }
}
