/*video section*/
section.condo-hotel .search-bar {
    display: none
}

.category-popup {
    /*width: 100%;*/
    min-width: 420px;
    background: var(--lt-bg-color);
    padding: var(--p25);
    position: absolute;
    z-index: 9;
    left: 0;
    top: 69px;
    border-radius: 0;
    display: none;
}

.category-popup .close12 {
    position: absolute;
    right: 10px;
    left: auto;
    top: 0.3rem;
    font-size: var(--f18);
    color: var(--secondary-color);
    cursor: pointer;
    display: block;
}

.category-info {
    display: block;
    /*flex-wrap: wrap;*/
    /*justify-content: space-between;*/
}

.category-list {
    width: 100%;
    border-bottom: 1px solid rgba(46, 39, 57, 0.1);
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    display: flex;
    gap: 10px;
    position: relative;
}


.category-list label {
    padding-left: 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--heading-color);
    text-transform: none;
}

.category-list input[type="radio"]:hover+label {
    color: var(--secondary-color);
}

.scroll .chevron {
    position: absolute;
    width: 28px;
    height: 8px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}

.scroll .chevron:first-child {
    animation: move 3s ease-out 1s infinite;
}

.scroll .chevron:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
}

.scroll .chevron:before,
.scroll .chevron:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: var(--white-color);
}

.scroll .chevron:before {
    left: 0;
    transform: skew(0deg, 30deg);
}

.scroll .chevron:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
}

button.main-btn1.close111 {
    border-radius: 0px;
    padding: 10px;
    height: auto;
    background: var(--btn-color);
    color: #fff;
    border: none;
    width: 100%;
    font-size: 14px;
}

@keyframes move {
    25% {
        opacity: 1;

    }

    33% {
        opacity: 1;
        transform: translateY(30px);
    }

    67% {
        opacity: 1;
        transform: translateY(40px);
    }

    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}

.scroll .text {
    display: block;
    margin-top: 75px;
    margin-left: -30px;
    font-family: var(--primary-font);
    font-size: var(--f12);
    color: var(--white-color);
    text-transform: uppercase;
    white-space: nowrap;
    opacity: .25;
    animation: pulse 2s linear alternate infinite;
}

@keyframes pulse {
    to {
        opacity: 1;
    }
}

.form-control:focus {
    background-color: transparent !important;
    border-color: #e3e3e3 !important;
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, .25) !important;
}

section.staying-section {
    background: var(--beige-color);
}

div#guestsss {
    width: 100%;
    min-width: 260px;
    /* background: var(--white-color); */
    padding: var(--p20);
    position: absolute;
    z-index: 9;
    left: 10px;
    margin-top: 9px;
    border-radius: 4px;
    border: 1px solid #d8dce1;
    display: none;
    /* box-shadow: 0px 0px 3px 0px #888888; */
    background-color: #fff;
    /* border-radius: 0px; */
}

#guestsss .close1 {
    position: absolute;
    right: 10px;
    left: auto;
    top: 0.3rem;
    font-size: var(--f18);
    color: var(--black-color);
    cursor: pointer;
}

#guestsss .adult-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--m10);
}

#guestsss .adult-value {
    display: flex;
    align-items: center;
    gap: 12px;
}



#guestsss button.button1 {
    height: 4px;
    background: transparent;
    height: 44px;
    /* height: 30px; */
    width: 50px;
    text-align: center;
    border-radius: 50%;
    font-size: var(--f25);
    /* line-height: 30px; */
    margin-left: 0;
    border: 1px solid var(--btn-color);
    color: var(--btn-color);
    transition: all .3s;
    cursor: pointer;
    border-radius: 22px 0 0 22px;
    border-right: 0px solid;
}

#guestsss button.button11.button1 {
    margin-left: -4px;
    border-radius: 0 22px 22px 0;
    border-left: none;
    margin-right: 0px;
}

#guestsss button.button1:hover {
    background: var(--btn-hover);
    color: var(--white-color);
    border-color: var(--btn-hover);
}

p.pets-label {
    color: var(--primary-color);
    text-shadow: 0px 0px 0px rgba(2, 1, 1, 0.47843137254901963);
    text-align: left;
    text-transform: none;
    letter-spacing: 0px;
    margin-bottom: 0px;
    margin-left: 0;
}

.pets-value {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pets-calculator {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pets-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-bar p.pets-label {
    padding: 0px;
    margin: 0;
    text-transform: capitalize;
    color: var(--primary-color);
    letter-spacing: 0px;
    text-shadow: 0px 0px 0px rgba(2, 1, 1, 0.47843137254901963);
}

.datepicker-section {
    position: relative;
}

.datepicker-common-2 {
    padding: 0;
}


.scroll .chevron {
    position: absolute;
    width: 28px;
    height: 8px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}

.scroll .chevron:first-child {
    animation: move 3s ease-out 1s infinite;
}

.scroll .chevron:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
}

.scroll .chevron:before,
.scroll .chevron:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: var(--white-color);
}

.scroll .chevron:before {
    left: 0;
    transform: skew(0deg, 30deg);
}

.scroll .chevron:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
}

@keyframes move {
    25% {
        opacity: 1;

    }

    33% {
        opacity: 1;
        transform: translateY(30px);
    }

    67% {
        opacity: 1;
        transform: translateY(40px);
    }

    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}

.scroll .text {
    display: block;
    margin-top: 75px;
    margin-left: -30px;
    font-family: var(--primary-font);
    font-size: var(--f12);
    color: var(--white-color);
    text-transform: uppercase;
    white-space: nowrap;
    opacity: .25;
    animation: pulse 2s linear alternate infinite;
}

@keyframes pulse {
    to {
        opacity: 1;
    }
}

.form-control:focus {
    background-color: transparent !important;
    border-color: transparent !important;
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, .25) !important;
}

.video-cont {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.4);
    padding-top: 0;
    flex-direction: column;
}

.video-cont h2 {
    margin-top: 100px;
    /* font-weight: 600; */
    line-height: 1.3em;
    letter-spacing: 2px;
    text-shadow: 0px 0px 10px rgba(2, 1, 1, 0.47843137254901963);
    text-align: center;
    font-size: 40px;
    margin-bottom: 0px;
    color: var(--white-color);
    /* font-family: var(--primary-font); */
}

.video-cont .container {
    margin-bottom: 0px;
    max-width: 1076px !important;
    /* padding: 10px; */
}

.video-cont .scroll {
    position: absolute;
    bottom: 10px;
    display: none;
}

.video-cont {
    text-align: center;
}

.video-cont h1 {
    max-width: 100%;
    margin: auto;
    margin-bottom: 20px;
    margin-top:90px;
    color: #ffffff;
    text-shadow: 0px 0px 2px #000;
    /*text-transform: capitalize;*/
    font-size: var(--f70);
    text-shadow: 0px 0px 10px rgba(2, 1, 1, 0.47843137254901963);
    line-height: 90px;
    letter-spacing: 0;
    font-family: var(--heading-font);
    font-weight: 400;
    text-align: center;
    position: relative;
    /* text-transform: uppercase; */
}
.video-cont a i{
    font-size:50px;
    color:var(--white-color);
}
.video-cont a.main-btn.video-btn {
    display: inline-block;
    padding: 8px 20px;
    border-color: var(--secondary-color);
    margin: auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 30%, 0);
        transform: translate3d(0, 30%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

.video-cont h1:before {
    position: absolute;
    content: '';
    top: -90px;
    left: 50%;
    width: 1px;
    height: 60px;
    background-color: #be9a78;
    transform: translateX(-50%);
    display: none;
}

.video-cont p {
    /* max-width: 1266px; */
    margin: auto;
    margin-bottom: var(--m20);
    color: var(--white-color);
    text-shadow: 1px 1px 4px #000;
    text-shadow: 0px 0px 10px rgba(2, 1, 1, 0.47843137254901963);
    text-transform: uppercase;
    font-size: var(--f16);
    text-align: center;
    letter-spacing: 1px;
    /* color: var(--secondary-color); */
    margin-top: 0;
    font-weight: 400;
}

.video-cont .features-video {
    display: flex;
    gap: 60px;
    display: none;
}

.video-cont .features-video li {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.video-cont .features-video i {
    font-size: var(--f25);
    color: var(--white-color);
}

.video-cont .features-video span {
    color: var(--white-color);
    font-size: var(--f15);
}

.video-cont .features-video li .active-hotel {
    background: #297cbb;
    padding: var(--p13);
    border-radius: 50%;
}

section.video-banner {
    height: 100vh;
    padding: 0;
    position: relative;
    z-index: 1;
}

section.video-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.video-banner button#play {
    display: none;
}

section.video-banner button#pause {
    display: none;
}

section.video-banner .video-sec {
    width: 100%;
    height: 100%;
}

#datepicker-demo17.datepicker {
    left: 0;
}

/* About css */
section.about-section {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0px;
    padding-right: 0px;
    position: relative;
}

section.about-section .section-shape {
    position: absolute;
    left: 0;
    top: 150px;
}

section.about-section h6 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 400;
    font-family: var(--heading-font);
    position: relative;
    padding-left: 65px;

}

section.about-section h6::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 50%;
    width: 52px;
    height: 12px;
    background-image: url(../images/section__style__two.svg);
    background-repeat: no-repeat;
    transform: translate(0, 50%);
}

section.about-section .about-info {
    margin-right: 40px;
}

section.about-section .abt-para {
    margin-bottom: 45px;
    height: 143px;
    overflow: hidden;
}

section.about-section .about-img1 {
    overflow: hidden;
    width: 100%;
    border-radius: 10px;
    height: 580px;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
}

section.about-section .col-7 {
    display: flex;
    align-items: center;
}

section.studio-section {
    padding-top: 110px;
    background: #1b1b1b;
}

section.studio-section .head-sec-left {
    width: auto;
    text-align: left;
}

section.studio-section .head-sec-left h6 {
    position: relative;
    padding-left: 65px;
}

section.studio-section .head-sec-left h6::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 50%;
    width: 52px;
    height: 12px;
    background-image: url(../images/section__style__two.svg);
    background-repeat: no-repeat;
    transform: translate(0, 50%);
}

section.studio-section .head-sec-right {
    max-width: 645px;
}

section.studio-section .head-sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
}

section.studio-section .studio-image {
    width: 100%;
    height: 570px;
    border-radius: 6px;
    overflow: hidden;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url("../images/studio1.webp");
    transition: all .4s ease;
}

section.studio-section .studio-image:hover {
    background-size: 110%;
}

section.studio-section .studio-content {
    padding: 30px 30px;
    /* position: absolute; */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    border-radius: 6px;
    transition: all .4s ease;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

section.studio-section .studio-content:hover {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

section.studio-section .studio-content h5 {
    font-size: 32px;
    font-weight: 400;
    color: var(--white-color);
    font-family: var(--heading-font);
    line-height: 42px;
    margin-bottom: 0px;
}

section.studio-section .studio-content h5 a {
    color: var(--white-color);
    font-family: var(--heading-font);
}

section.studio-section .studio-list img {
    width: 16px;
}

section.studio-section .studio-list p {
    font-size: 16px;
    color: var(--white-color);
    margin-bottom: 0px;
    line-height: 19px;
}

section.studio-section .studio-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

section.studio-section .studio-info {
    display: flex;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 15px;
}

section.studio-section p.studio-price {
    font-size: 40px;
    font-family: var(--heading-font);
    line-height: 50px;
    margin-bottom: 0;
    margin-top: 15px;
    color: var(--white-color);
}

section.studio-section .owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background: #fff;
    opacity: 0.2;
    display: block;
    -webkit-backface-visibility: visible;
    transition: all .4s ease;
    border-radius: 30px;
}

section.studio-section .owl-theme .owl-dots .owl-dot.active span {
    opacity: 1;
}

section.studio-section .owl-theme .owl-dots {
    margin-top: 30px;
}

section.studio-section .owl-theme .owl-controls .owl-nav [class*='owl-'] {
    margin: 0;
    padding: 4px 7px;
    background: var(--secondary-color);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -23px;
}

section.studio-section .owl-theme .owl-controls .owl-nav .owl-next {
    left: auto;
    right: -23px;
}

section.our-studio-section {
    padding-top: 110px;
    /* padding-bottom: 0; */
}

section.our-studio-section .head-sec {
    text-align: center;
    margin-bottom: 50px;
}

section.our-studio-section .container-fluid {
    padding: 0px;
}

section.our-studio-section .col-6 {
    /* padding: 0px; */
}

.studio-collection-img img {
    width: 100%;
    height: 490px;
    object-fit: cover;
    transition: 0.35s ease-in-out;
}

section.our-studio-section .collection-info {
    position: relative;
}

section.our-studio-section .studio-collection-content {
    width: 100%;
    height: 490px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    /* transition: opacity 0.3s; */
    /* background-color: #000000a3; */
}

section.our-studio-section .studio-collection-content .studio-view {
    max-width: 460px;
    margin: auto;
    text-align: center;
}

section.our-studio-section .studio-collection-content p.studio-info {
    font-size: 12px;
    color: var(--white-color);
    text-shadow: 0 0 2px #000;
    margin-bottom: 0px;
    margin-top: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
}

section.our-studio-section .studio-collection-content h3 {
    font-size: 36px;
    font-weight: 400;
    margin-top: 20px;
    line-height: 48px;
    margin-bottom: 20px;
    text-shadow: 0 0 2px #000;
}

section.our-studio-section .studio-collection-content p.studio-text {
    text-align: center;
    margin-bottom: 0px;
    font-size: 16px;
    color: #fff;
    text-shadow: 0 0 2px #000;
}

section.our-studio-section .studio-collection-content a.main-btn {
    margin-top: 30px;
}

section.our-studio-section .collection-overlay:hover {
    background-color: #000000bd;
}

section.our-studio-section .collection-info .collection-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--secondary-color);
    transform: translate(-10px, -10px);
    transition: all 0.3s;
    will-change: transform, width, height;
    z-index: 1;
}

section.our-studio-section .collection-info:hover .collection-border {
    -webkit-transform: translate(calc(0px - -10px), calc(0px - -10px));
    -ms-transform: translate(calc(0px - -10px), calc(0px - -10px));
    transform: translate(calc(0px - -10px), calc(0px - -10px));
    width: calc(100% + -10px* 2);
    height: calc(100% + -10px* 2);
}

section.our-studio-section .collection-info:hover .studio-collection-img img {
    -webkit-transform: scale(1.07);
    -ms-transform: scale(1.07);
    transform: scale(1.07);
}

section.our-studio-section .collection-inner-img {
    overflow: hidden;
}

section.our-studio-section .collection-overlay {
    width: 100%;
    height: 490px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: opacity 0.3s;
    background-color: #000000a3;
}

section.attraction-section {
    background: url("../images/attraction-bg.jpg");
    background-position: center center;
    background-size: cover;
    padding: 110px 0px 490px 0px;
    margin-bottom: -440px;
    position: relative;
}

section.attraction-section .head-sec {
    text-align: center;
    max-width: 800px;
    margin: auto;
    text-align: center;
    position: relative;
}

section.attraction-section .bg-overlay {
    background-color: #000000;
    opacity: 0.6;
    transition: opacity 0.3s;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

section.attraction-section .head-sec img {
    width: 56px;
    margin: auto;
    margin-bottom: 20px;
    display: block;
}

section.attraction-section .head-sec span {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 20px;
}

section.attraction-section .head-sec h2 {
    margin-bottom: 20px;
    color: white;
}

section.attraction-section .head-sec p {
    text-align: center;
    color: var(--white-color);
}

section.attraction-inner {
    z-index: 1;
    position: relative;
    padding-top: 0;
}

section.attraction-inner .col-4 {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 50px;
}

section.attraction-inner .col-4:first-child {
    padding-left: 0px;
    padding-right: 40px;
    padding-top: 0px;
}

section.attraction-inner .col-4:last-child {
    padding-left: 40px;
    padding-right: 0px;
    padding-top: 0px;
}

section.attraction-inner .attraction-image img {
    width: 100%;
    height: 590px;
    object-fit: cover;
    transition: 0.35s ease-in-out;
}

section.attraction-inner .attraction-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--secondary-color);
    transform: translate(-10px, -10px);
    transition: all 0.3s;
    will-change: transform, width, height;
    z-index: 1;
}

section.attraction-inner .attraction-upper {
    position: relative;
}

section.attraction-inner .attraction-content {
    text-align: center;
    padding-top: 30px;
}

section.attraction-inner .attraction-content h3 {
    font-weight: 400;
}

section.attraction-inner .attraction-content h3 a {
    color: var(--secondary-color);
    font-family: var(--heading-font);
}

section.attraction-inner .attraction-content p {
    text-align: center;
}

section.attraction-inner .attraction-content p a {
    text-align: center;
    color: var(--black-color);
}

section.attraction-inner .attraction-content a.cta-btn {
    padding: 7px 0;
    height: auto;
    background: none;
    color: var(--black-color);
    border-radius: 0;
    position: relative;
}

section.attraction-inner .attraction-content a.cta-btn::before {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background: var(--secondary-color);
    content: "";
    transition: transform 0.2s ease;
    transform-origin: 0 0;
}

section.attraction-inner .attraction-content a.cta-btn:hover::before {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
}

section.attraction-inner .attraction-info:hover .attraction-border {
    -webkit-transform: translate(calc(0px - -10px), calc(0px - -10px));
    -ms-transform: translate(calc(0px - -10px), calc(0px - -10px));
    transform: translate(calc(0px - -10px), calc(0px - -10px));
    width: calc(100% + -10px* 2);
    height: calc(100% + -10px* 2);
}

section.attraction-inner .attraction-info:hover .attraction-image img {
    -webkit-transform: scale(1.07);
    -ms-transform: scale(1.07);
    transform: scale(1.07);
}

section.attraction-inner .attraction-image {
    overflow: hidden;
}

section.review-section {
    padding-top: 90px;
    background: #f5f5f5;
    padding-bottom: 90px;
    position: relative;

}

section.review-section .section-shape {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

section.review-section .head-sec {
    text-align: center;
    margin-bottom: 40px;
}

section.review-section .head-sec h6 {
    margin: auto;
    margin-bottom: 15px;
    font-size: 24px;
    display: inline-block;
    font-weight: 400;
    line-height: 30px;
    font-family: var(--heading-font);
    position: relative;
    text-align: center;
}

section.review-section .head-sec h6::before {
    position: absolute;
    content: "";
    left: -65px;
    bottom: 50%;
    width: 52px;
    height: 12px;
    background-image: url(../images/section__style__three-1.svg);
    background-repeat: no-repeat;
    transform: translate(0, 50%);
}

section.review-section .head-sec h6::after {
    position: absolute;
    content: "";
    right: -65px;
    bottom: 50%;
    width: 52px;
    height: 12px;
    background-image: url(../images/section__style__two.svg);
    background-repeat: no-repeat;
    transform: translate(0, 50%);
}

section.review-section .review-star img {
    width: 30px;
    height: 30px;
}

section.review-section .review-star {
    display: flex;
    margin-bottom: 30px;
    justify-content: center;
    gap: 5px;
}

section.review-section .review-info {
    max-width: 1076px;
    margin: auto;
    text-align: center;
}

section.review-section .review-text p {
    line-height: 42px;
    font-size: 18px;
    text-align: center;
    margin-bottom: 45px;
}

section.review-section .review-owner img {
    width: 66px;
    height: 66px;
    object-fit: cover;
    border-radius: 50%;
}

section.review-section .review-owner {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

section.review-section .review-owner h5 {
    text-align: left;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 30px;
    color: var(--black-color);
}

section.review-section .review-owner p {
    margin-bottom: 0px;
    font-size: 16px;
}

section.review-section .owl-prev,
section.review-section .owl-next {
    background: transparent !important;
    /* font-size: 41px; */
    padding: 0 !important;
    margin: 0 !important;
}

section.review-section .owl-prev i,
section.review-section .owl-next i {
    font-size: 41px;
    color: var(--black-color);
    opacity: 0.8;
    position: absolute;
    left: 10px;
    top: 40%;
}

section.review-section .owl-next i {
    left: auto;
    right: 10px;
}



section.card-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: #f5f5f5;
    padding-top: 85px;
}

.common-button-class {
    border: 1px solid black !important;
}

section .card-sec .head-sec h2 {
    font-size: var(--f56);
}

.all-btn button.active {
    /* border-bottom: 3px solid var(--secondary-color); */
    background-color: var(--secondary-color);
    color: white !important;
}

.all-btn button.active span {
    color: white !important;
}

section.card-sec .container {
    display: block;
    /* justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            justify-content: space-between; */
}

section.card-sec .container .card {
    position: relative;
    min-width: 32%;
    height: auto;
    border-radius: 0;
    transition: 0.5s;
    border: none;
    padding: var(--p20);
}

section.card-sec .container .card h3 {
    color: var(--secondary-color);
    font-size: var(--f32);
    font-weight: 400;
}

section.card-sec .container .card p {
    color: var(--black-color);
    margin-bottom: 0px;
    font-size: var(--f18);
    line-height: 1.5em;
    height: 193px;
    letter-spacing: 1px;
    overflow: hidden;
}

section.card-sec .card-cont {
    padding-bottom: var(--p20);
    border-bottom: 4px solid var(--black-color);
}

section.card-sec .container .card:after {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    background-color: var(--heading-color);
    top: 0px;
    right: 0px;
    border-bottom: 20px solid var(--heading-color);
    border-left: 20px solid var(--heading-color);
    border-right: 20px solid #f5f5f5;
    border-top: 20px solid #f5f5f5;
    position: absolute;
    filter: drop-shadow(-5px 5px 2px rgba(0, 0, 0, 0.5));
    display: none;
}

section.card-sec .container .card:before {
    display: none;
    content: "";
    width: 0px;
    height: 0px;
    border-top: 40px solid var(--heading-color);
    border-right: 40px solid var(--heading-color);
    border-left: 40px solid #f5f5f5;
    border-bottom: 40px solid #f5f5f5;
    bottom: 0px;
    left: 0px;
    position: absolute;
    filter: drop-shadow(7px -7px 3px rgba(0, 0, 0, 0.5));
    margin-right: 10%;
}

section.card-sec .container .card:nth-child(1) .box .content a {
    background: #2196f3;
}

section.card-sec .container .card:nth-child(2) .box .content a {
    background: #e91e63;
}

section.card-sec .container .card:nth-child(3) .box .content a {
    background: #23c186;
}

section.card-sec .container .card .box {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: var(--secondary-color);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: 0.5s;
}

section.card-sec .container .card .box:hover {
    transform: translateY(-50px);
}

section.card-sec .container .card .box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
}

section.card-sec .container .card .box .content {
    padding: 20px;
    text-align: center;
}

section.card-sec .container .card .box .content h2 {
    position: absolute;
    top: -10px;
    right: 30px;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.1);
}

section.card-sec .container .card .box .content h3 {
    font-size: var(--f38);
    color: #fff;
    z-index: 1;
    transition: 0.5s;
    margin-bottom: 15px;
}

section.card-sec .container .card .box .content p {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    z-index: 1;
    transition: 0.5s;
}

section.card-sec .container .card .box .content a {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    background: black;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    margin-top: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
}

section.card-sec .container .card .box .content a:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
    background: #fff;
    color: #000;
}

section.card-sec .card-box {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.card-sec .head-sec h2 {
    color: black;
    text-align: center;

}

/* bottom section */

section.cta-section {
    background-image: url(../images/ct-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.cta-section .overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: transparent;
    background-image: linear-gradient(180deg, #071E2F6B 0%, #1B1B1B 92%);
    opacity: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    z-index: 1;
}

section.cta-section .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

section.cta-section h2 {
    text-align: center;
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 60px;
    color: var(--white-color);
}

section.cta-section h2 span {
    /* color: var(--secondary-color); */
}

section.cta-section a.main-btn {
    display: inline-block;
    margin: auto;
    width: 200px;
    transition: all ease-in-out 300ms;
}

section.cta-section a.main-btn:hover {
    transform: translateY(-4px);
}



/* home banner new section */

section.condo-hotel {
    background: var(--heading-color);
    padding-left: 0px;
    padding-right: 0px;
    position: relative;
    /* padding-bottom: 60px; */
    /* padding-top: 60px; */
}

section.condo-hotel .col-6 {
    padding-left: 12px;
    padding-right: 12px;
}

section.condo-hotel .overlay img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-top: 0;
}

section.condo-hotel .video-sec {
    height: 500px;
    overflow: hidden;
    border-radius: 2.1875rem;
    position: relative;
}

section.condo-hotel .overlay:after {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(35.98%, rgba(46, 39, 57, .4)), color-stop(87.43%, transparent));
    background: linear-gradient(180deg, rgba(46, 39, 57, .4) 35.98%, transparent 87.43%);
    content: "";
    height: 100%;
    left: 0;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    width: 100%;
}

section.condo-hotel .overlay {
    position: relative;
}

section.condo-hotel .condo-hotel-content {
    padding: 50px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    align-items: flex-start;
    gap: 10px;
}

section.condo-hotel h2 a {
    font-size: 60px;
    color: var(--white-color);
    margin-bottom: 0px;
}


section.condo-hotel img {
    margin-top: 24px;
    width: 26px;
}

section.condo-hotel .hotel-sec .video-sec {
    margin-top: 0;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #ffffff;
}

.video_frame{
    padding-top: 40px;
    padding-bottom: 80px;
}



 /*Testimonial css*/
 
 section.testimonial .bg-img{
    background: url('../images/testy.webp');
    height: 600px;
padding: 0;
    background-size: cover ;
position: relative;
z-index: 1;
}
 section.testimonial .attr-bnt {
   position: absolute;
   bottom: 7.7%;
   right: 45%;
   z-index: 1;
}
section.testimonial .para {
max-height: 115px;
overflow: hidden;
}

section.testimonial {
   background: #fff;
   position: relative;
   /* padding: 0; */
   /* padding-bottom: 60px; */
}


section.testimonial .col-6.cont-head{
    margin-top: 88px;
    padding: 105px 27px 0;
    background: transparent url(../images/testi-bg-a.jpg) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    position: relative;
    z-index: 1;
    display: none;
}
section.testimonial .col-6.cont-head::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.50;
}
section.testimonial .head-sec{
    position: relative;
    text-align: left;
    width: 70%;
    margin: auto;
    padding-left: 0;
    padding-top: 0;
    margin-bottom: var(--m20);
}

section.testimonial .icon{
        border-radius: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 0;
        z-index: 1;
        top: -5px;
}
section.testimonial .icon img{
    height: 50px;
}
section.testimonial .testy {
  
    margin: auto;
    padding: 0;
    padding-bottom: 0;
    border-radius: 0px;
    background: transparent;
    position: relative;
    z-index: 1;
}
section.testimonial .item {
    padding-left: var(--p15);
    padding-right: var(--p15);
    padding-bottom: var(--p5);
}
section.testimonial .top-text {
    position: relative;
    /* height: 100px; */
}
section.testimonial .overlay{
   background-color: #fff;
   width: 100%;
   margin: auto;
   padding: 0;
   padding-bottom: 0;
   border-radius: 0px;
   position: relative;
   right: 0px;
   padding: 20px 30px;
}
section.testimonial .owl-nav {
    display: flex;
    gap: 10px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
    justify-content: center;
    width: 80%;
}
.owl-carousel .owl-stage-outer{
   padding-left: 0;
   padding-right: 0px;
}
section.testimonial .owl-prev{
    font-size: 16px !important;
    border-radius: 0px;
    width: 45px;
    height: 45px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: var(--btn-color) !important;
    border: 0px solid !important;
    color: var(--white-color) !important;
}
section.testimonial .owl-next{
    font-size: 16px !important;
    border-radius: 0px;
    width: 45px;
    height: 45px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: var(--btn-color) !important;
    border: 0px solid !important;
    color: var(--white-color) !important;
}
section.testimonial .owl-prev:hover, section.testimonial .owl-next:hover{
    background: var(--btn-hover) !important;
}
section.testimonial .test-pro {
    height: 100px;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
}
section.testimonial .test-pro:before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
}
section.testimonial .test-pro img {
    position: absolute;
    /*top: -35%;*/
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    max-width: none;
}
section.testimonial .user-icon {
    position: absolute;
    z-index: 1;
    left: 17%;
    top: 20%;
    -webkit-transform: translate3d(-50%, -10px, 0);
    -moz-transform: translate3d(-50%, -10px, 0);
    transform: translate3d(-50%, -10px, 0);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
section.testimonial .user-icon img{
    width: 70px;
    height: 70px;
    object-fit:cover;
    border-radius: 50%;
    border: 2px solid var(--white-color);
}


section.testimonial .test-card {
    text-align: center;
    background: var(--white-color);
    border-radius: 0px;
    /* box-shadow: 0px 0px 3px 2px rgba(0,0,0,0.1); */
    padding-bottom: 0;
    max-width: 900px;
    margin: auto;
   box-shadow: 0 2px 13px 0 rgba(0,0,0,.07);
   padding: var(--p25);
   height: 280px;
   width: 100%;
}
section.testimonial .test-card p{
    color: var(--primary-color);
    line-height: 1.6;
    margin-bottom: 0;
    margin-top: var(--m10);
}

section.testimonial .test-card h4 {
    font-size: var(--f20);
    margin-bottom: var(--m7);
    font-weight: 600;
    color: var(--heading-color);
}
section.testimonial .cont-sec{
    margin-top: var(--m70);
    text-align: center;
}
section.testimonial i.fa-solid.fa-star {
    color: #FCAF3D;
    font-size: var(--f10);
    margin-right: var(--m3);
}
section.testimonial hr {
    width: 200px;
    opacity: 1;
    border-top: 3px solid;
    color: var(--white-color);
}
section.testimonial h3 {
  padding-left: 0;
  font-size: var(--f20);
  font-weight: 700;
  text-align: center;
  color: var(--territiary-color);
  margin-bottom: 0;
}
section.testimonial .container-fluid{
    padding: 0;
}

section.testimonial .owl-item.active:first-child .item{
    border-right: 2px solid var(--white-color);
}
section.testimonial .para p{
   text-align: center;
   width: 90%;
   margin: auto;
   padding-left: 0;
   padding-right: 0;
   position: relative;
   color: var(--black-color);
   height: auto;
   max-height: 141px;
   margin-top: var(--m10);
   font-size: var(--f16);
   overflow: hidden;
   margin-bottom: var(--m20);
}
section.testimonial .para i{
    font-size:var(--f30);
}
section.testimonial i.fa-solid.fa-quote-right {
    position: absolute;
    right: 20px;
    bottom: -10px;
}
section.testimonial i.fa-solid.fa-quote-left {
    position: absolute;
    left: 20px;
    top: -10px;
}
section.testimonial p.clt-name{
    color: var(--heading-color);
    font-weight: bold;
    text-transform: uppercase;
    margin-top: var(--m15);
    margin-bottom: 0px;
}

section.testimonial span {
    height: auto;
    overflow: hidden;
    display: block;
}
section.testimonial .test-card:hover .test-pro {
    height: 180px;
}
section.testimonial .test-card:hover .test-pro img {
    top: 0;
    height:100%;
}
section.testimonial a.main-bttn{
   display: inline-block;
   padding: 0px;
}
section.minimal-section {
    background: #f5f5f5;
    padding-top: 110px;
}
.minimal-img {
    text-align: center;
}
.minimal-img img{
    border-radius: 10px;
    width: 80%;
    height: 600px;
    object-fit: cover;
}
.minimal-para {
    margin-bottom: 30px;
    height: 275px;
    overflow: hidden;
}
.minimal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

.space-div{
    width: 70%;
}