.home-slider-area .home-text-style:before {
    background-color: #fc6539;
    content: "";
    height: 50px;
    /* left: -29px; */
    left: 0px;
    position: absolute;
    top: 7px;
    width: 4px;
}

.home-slider-area .home-text-style {
    color: #464444;
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    line-height: 1.364;
    margin-bottom: 26px;
    padding-right: 125px;
    padding-left: 20px;
    position: relative;
}

@media (max-width: 1199px) {
    .home-slider-area .home-text-style {
        padding-right: 10px;
    }

    .home-slider-area .home-text-style:before {
        height: 75px;
    }
}

@media (max-width: 991px) {
    .home-slider-area .home-text-style {
        padding-right: 0px;
    }
}

@media (max-width: 767px) {
    .home-slider-area .home-text-style {
        padding: 0px;
    }

    .home-slider-area .home-text-style:before {
        display: none;
    }
}

@media only screen and (max-width: 479.98px) {
    .home-slider-area .home-text-style {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

/* hero section */
.banner-slide {
    position: relative;
}

/* Override Slick Slider constraints */
.banner-slide.slick-slider {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%);
}

.banner-slide .slick-list {
    width: 100% !important;
    overflow: hidden;
}

.banner-slide .slick-track {
    width: 100% !important;
}

.banner-slide .slick-slide {
    width: 100vw !important;
}

.home-slider-area .container {
    margin-bottom: 80px;
}

.banner-area {
    height: 810px;
    position: relative;
    width: 100% !important;
}

.bg_cover {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.banner-area .banner-slide-number span {
    font-size: 200px;
    font-weight: 700;
    opacity: .45;
    position: absolute;
    right: 0;
    top: -80px;
    z-index: 2;
}

.banner-content {
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.banner-content::before {
    position: absolute;
    content: '';
    left: 0;
    top: 5px;
    width: 2px;
    height: 342px;
    background: linear-gradient(to right, #FEA444 0%, #FC6539 100%);
}

@media (max-width: 1200px) {
    .banner-content::before {
        height: 282px;
    }
}

@media (max-width: 767px) {
    .banner-content::before {
        height: 242px;
    }
}

@media (max-width: 575px) {
    .banner-content::before {
        height: 192px;
    }
}

.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.banner-content span {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    padding-left: 30px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .banner-content span {
        padding-left: 30px !important;
    }
}

@media only screen and (max-width: 767px) {
    .banner-content span {
        padding-left: 5px;
    }
}

.banner-content span img {
    padding-right: 10px;
    width: 34px;
    height: 21px;
}

.banner-content .title {
    font-size: 70px;
    line-height: 1.15;
    /* color: $white; */
    color: #fff;
    padding-left: 30px;
    padding-top: 12px;
    padding-bottom: 40px;
    margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .banner-content .title {
        font-size: 70px;
        line-height: 80px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-area .banner-content .title {
        /* font-size: 77px; */
        font-size: 65px;
        line-height: 86px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .banner-area .banner-content .title {
        font-size: 56px !important;
        font-size: 56px !important;
        line-height: 65px !important;
        padding-left: 30px !important;
    }
}

@media (max-width: 767px) {
    .banner-area .banner-content .title {
        /* font-size: 42px; */
        font-size: 40px;
        line-height: 52px;
        padding-left: 5px;
    }
}

.main-btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border-left: 2px solid #fff;
    padding: 0 40px;
    font-size: 16px;
    line-height: 68px;
    border-radius: 0px;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    transition: all 0.4s ease-out 0s;
    /* @include transition(0.4s); */
    background: linear-gradient(to right, #FEA444 0%, #FC6539 100%);
    position: relative;
    margin-top: 0;
}

.main-btn::before {
    position: absolute;
    content: '';
    left: auto;
    top: 0;
    right: 0;
    height: 100%;
    width: 0px;
    background: #fff;
    transition: all 0.4s ease-out 0s;
    z-index: -1;
}

.main-btn:hover {
    color: #FEA444;
}

.main-btn:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}

.aboutSec-img1 img {
    width: 180px;
}

.aboutSec-img2 img {
    width: 401px;
}

@media only screen and (max-width: 991px) {
    .aboutSec-img1 img {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .about-area.about-default-area {
        padding: 70px 0;
    }
}

.about-area {
    padding: 146px 0 85px;
    position: relative;
}

.about-area .about-content {
    padding-left: 40px;
}

.about-area .content-box-wrp {
    margin-top: 44px;
    /* padding-left: 40px; */
}

@media (max-width: 992px) {
    .about-area .content-box-wrp {
        margin-bottom: 44px;
        /* padding-left: 40px; */
        padding-top: 40px;
    }
}

@media (max-width: 767px) {
    .about-area .content-box-wrp {
        margin-bottom: 44px;
        /* padding-left: 0px; */
        padding-top: 40px;
    }

    .about-area .about-content {
        margin-left: 0;
        padding-left: 0;
    }
}

.about-area:before {
    background-color: #f7f7f7;
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    width: calc(50% - 315px);
    z-index: -1;
}

/* .about-area .layer-style:before {
    background-color: #fff;
    border-radius: 50%;
    content: "";
    height: 546px;
    left: -201px;
    position: absolute;
    top: -331px;
    width: 546px;
    z-index: -1;
} */
.about-area .section-title {
    margin-bottom: 12px;
}

.about-area .thumb.thumb-style {
    margin-top: 64px;
}

.about-area .about-para {
    font-weight: bold;
}

/*===========================
    WE KNOWS css 
===========================*/
.we-knows-area {
    padding-top: 111px;
    position: relative;
    z-index: 10;
}

.we-knows-area .we-knows-content .title {
    /* font-size: 50px; */
    line-height: 1.25;
}

@media only screen and (max-width: 1199px) {
    .we-knows-area .we-knows-content .title {
        /* font-size: 40px; */
        line-height: 1.2;
    }
}

@media only screen and (max-width: 767px) {
    .we-knows-area .we-knows-content .title {
        /* font-size: 36px; */
    }
}

@media only screen and (max-width: 575px) {
    .we-knows-area .we-knows-content .title {
        /* font-size: 30px; */
    }
}

@media only screen and (max-width: 399px) {
    .we-knows-area .we-knows-content .title {
        /* font-size: 27px; */
    }
}

.we-knows-area .we-knows-content p {
    margin-right: -2px;
    padding-top: 39px;
    padding-bottom: 50px;
}

.we-knows-area .we-knows-content img {
    width: 100%;
    /* height: 270px; */
}

.we-knows-area .we-knows-item .we-knows-item-content {
    width: 50%;
    padding: 53px 60px 60px;
    background: #FC6539;
    margin-right: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .we-knows-area .we-knows-item .we-knows-item-content {
        padding: 43px 30px 50px;
    }
}

@media (max-width: 767px) {
    .we-knows-area .we-knows-item .we-knows-item-content {
        padding: 30px;
        width: 100%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .we-knows-area .we-knows-item .we-knows-item-content {
        padding: 30px;
        width: 50%;
    }
}

.we-knows-area .we-knows-item .we-knows-item-content .title {
    font-size: 24px;
    color: #fff;
    line-height: 30px;
    padding-right: 15px;
    padding-bottom: 18px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .we-knows-area .we-knows-item .we-knows-item-content .title {
        font-size: 19px;
    }
}

.we-knows-area .we-knows-item .we-knows-item-content a {
    background: #3f3836;
    /* background: #FEA444; */
    padding: 0 25px;
    min-width: 0 !important;
    line-height: 36px;
    font-size: 14px;
    font-weight: 600;
}

.we-knows-area .we-knows-item .we-knows-item-content a i {
    padding-left: 6px;
}

.we-knows-area .we-knows-item .we-knows-item-thumb {
    margin-left: 5px;
    width: 50%;
}

@media (max-width: 767px) {
    .we-knows-area .we-knows-item .we-knows-item-thumb {
        width: 100%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .we-knows-area .we-knows-item .we-knows-item-thumb {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .we-knows-area .we-knows-item .we-knows-item-thumb {
        margin-left: 0px;
    }

    .we-knows-area .we-knows-item.item-2 .we-knows-item-content {
        margin-left: 0px !important;
    }
}

.we-knows-area .we-knows-item .we-knows-item-thumb img {
    width: 100%;
    height: 312px;
    object-fit: cover;
}

.we-knows-area .we-knows-item.item-2 .we-knows-item-content {
    margin-right: 0;
    margin-left: 5px;
    background: #FEA444;
}

.we-knows-area .we-knows-item.item-2 .we-knows-item-content a {
    background: #3f3836;
    /* background: #FC6539; */
}

.we-knows-area .we-knows-item.item-2 .we-knows-item-thumb {
    margin-left: 0;
    margin-right: 5px;
}

.we-knows-area .we-knows-center {
    position: relative;
}

.we-knows-area .we-knows-center .we-know-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 100px;
    width: 100px;
    background: #fff;
    text-align: center;
    line-height: 100px;
}

.we-knows-area .we-know-line {
    position: absolute;
    top: 145px;
    left: 180px;
    z-index: -1;
    animation: bubbleMover2 linear infinite 5s;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .we-knows-area .we-know-line {
        left: 0;
    }
}

.ustomized-solution-area .customized-btn {}

/* For Bussiness */

.find-space-area {
    padding-top: 111px;
    padding-bottom: 120px;
    position: relative;
    z-index: 10;
}

.find-space-area .find-pattern {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.find-space-area .find-space-item,
.find-space-item1 {
    /* margin-right: -5px; */
    min-width: 25%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .find-space-area .find-space-item,
    .find-space-item1 {
        margin-right: 0;
    }
}

@media (max-width: 767px) {

    .find-space-area .find-space-item,
    .find-space-item1 {
        margin-right: 0;
        min-width: 100%;
    }
}

.find-space-area .find-space-item .find-space-thumb {
    min-width: 285px;
    position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .find-space-area .find-space-item .find-space-thumb {
        min-width: 225px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .find-space-area .find-space-item .find-space-thumb {
        min-width: 50%;
    }
}

@media (max-width: 767px) {
    .find-space-area .find-space-item .find-space-thumb {
        min-width: 50%;
    }
}

.find-space-area .find-space-item .find-space-thumb img {
    width: 100%;
    height: 315px;
    object-fit: cover;
}

.find-space-area .find-space-item .find-space-thumb .business-imgtext {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 22px;
    color: #001d23;
    font-family: "Poppins", sans-serif;
    font-weight: 400
}

.find-space-area .find-space-item .find-space-content {
    border: 1px solid #f7eae8;
    padding: 34px 55px 31px 50px;
    background: #fff;
    transform: scale(0);
    height: 316px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .find-space-area .find-space-item .find-space-content {
        padding: 34px 20px 31px;
        height: 249px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .find-space-area .find-space-item .find-space-content {
        transform: scale(1);
        height: auto;
    }
}

@media (max-width: 767px) {
    .find-space-area .find-space-item .find-space-content {
        padding: 34px 20px 31px;
        transform: scale(1);
        height: auto;
        margin-right: 0 !important;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .find-space-area .find-space-item .find-space-content {
        padding: 34px 20px 31px;
    }
}

.find-space-area .find-space-item .find-space-content p {
    line-height: 28px;
}

.find-space-area .find-space-item .find-space-content h4 {
    /* line-height: 30px; */
}

.find-space-area .find-space-item h4:hover {
    color: #fc6539;
}

.find-space-area .find-space-item1 h4:hover {
    color: #fc6539;
}

.find-space-area .find-space-item.active {
    min-width: 50%;
}

.find-space-area .find-space-item.active .find-space-content {
    transform: scale(1);
    margin-right: 15px;
}

/* find space item 2 */

.find-space-area .find-space-item1 .find-space-thumb {
    min-width: 285px;
    position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .find-space-area .find-space-item1 .find-space-thumb {
        min-width: 225px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .find-space-area .find-space-item1 .find-space-thumb {
        min-width: 50%;
    }
}

@media (max-width: 767px) {
    .find-space-area .find-space-item1 .find-space-thumb {
        min-width: 50%;
    }
}

.find-space-area .find-space-item1 .find-space-thumb img {
    width: 100%;
    height: 315px;
    object-fit: cover;
}

.find-space-area .find-space-item1 .find-space-thumb .business-imgtext {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 22px;
    color: #001d23;
    font-family: "Poppins", sans-serif;
    font-weight: 400
}

.find-space-area .find-space-item1 .find-space-content {
    border: 1px solid #f7eae8;
    padding: 34px 55px 31px 50px;
    background: #fff;
    transform: scale(0);
    height: 316px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .find-space-area .find-space-item1 .find-space-content {
        padding: 34px 20px 31px;
        height: 249px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .find-space-area .find-space-item1 .find-space-content {
        transform: scale(1);
        height: auto;
    }
}

@media (max-width: 767px) {
    .find-space-area .find-space-item1 .find-space-content {
        padding: 34px 20px 31px;
        transform: scale(1);
        height: auto;
        margin-right: 0 !important;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .find-space-area .find-space-item1 .find-space-content {
        padding: 34px 20px 31px;
    }
}

.find-space-area .find-space-item1.active {
    min-width: 50%;
}

.find-space-area .find-space-item1.active .find-space-content {
    transform: scale(1);
    margin-right: 15px;
}

.find-space-area .find-space-preview {
    margin-left: -15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .find-space-area .find-space-preview {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .find-space-area .find-space-preview {
        margin-left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .find-space-area .find-space-preview .thumb {
        width: 50%;
        margin: 0;
    }
}

@media (max-width: 767px) {
    .find-space-area .find-space-preview .thumb {
        margin: 0;
    }
}

.find-space-area .find-space-preview .thumb img {
    width: 100%;
}

/* For building owners */

.leading-area {
    padding-bottom: 85px;
    position: relative;
    z-index: 10;
}

.leading-area .sub-text {
    font-size: 20px;
    font-weight: 300;
}

.leading-area .nav-link {
    color: #fc6539;
    font-size: 18px;
    font-weight: 700;
}

.leading-area .nav-pills .nav-link.active {
    background: #fc6539;
}

.leading-area .tab-content .title {
    font-size: 45px;
}

@media only screen and (max-width: 1399px) {
    .leading-area .tab-content .title {
        font-size: 40px;
    }
}

@media only screen and (max-width: 1199px) {
    .leading-area .tab-content .title {
        font-size: 35px;
    }
}

@media only screen and (max-width: 575px) {
    .leading-area .tab-content .title {
        font-size: 30px;
    }
}

.leading-area .leading-thumb .card {
    background-color: #fc6539;
}

@media (max-width: 575px) {
    .leading-area .leading-thumb .card {
        width: 100% !important;
    }
}

@media (max-width: 375px) {
    .services-area .service-card-text {
        font-size: 12px;
    }
}

.leading-area .leading-thumb .card .mainText {
    font-size: 25px;
    font-weight: 700;
}

.leading-area .leading-thumb .card .white-border-right {
    border-right: 1px solid white;
    height: 70px;
}

.leading-area .leading-thumb {
    position: relative;
}

.leading-area .leading-thumb::before {
    position: absolute;
    content: '';
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 90%;
    /* background: #fbf0ee; */
}

.leading-area .leading-thumb img {
    width: 100%;
    height: 634px;
    object-fit: cover;
}

.leading-area .leading-content {
    margin-top: -4px;
    margin-left: 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .leading-area .leading-content {
        margin-left: 0;
        margin-top: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .leading-area .leading-content {
        margin-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .leading-area .leading-content {
        margin-left: 0;
        margin-top: 30px;
    }
}

.leading-area .leading-content .title {
    /* font-size: 44px; */
    padding-bottom: 40px;
    margin-bottom: 0;
}

.leading-area .leading-content .section-title {
    margin-bottom: 0;
}

@media only screen and (max-width: 479.98px) {
    .leading-area .leading-content .section-title {
        text-align: center;
    }
}

.leading-area .leading-content p {
    padding-bottom: 16px;
    padding-top: 20px;
}

.leading-area .leading-content .list-item .item.item-2 {
    background-color: #fff;
}

.leading-area .leading-content .list-item .item:hover span i {
    transform: scale(1.1);
}

.leading-area .leading-content .item span {
    font-size: 20px;
    font-weight: 700;
    /* color: #001d23; */
}

@media (max-width: 767px) {
    .leading-area .leading-content .item span {
        font-size: 18px;
    }
}

.leading-area .leading-content .item span {
    /* background: #fbf0ee;
    padding: 0 20px;
    line-height: 36px;
    font-size: 14px;
    font-weight: 600;
    margin-right: 15px;
    display: inline-block; */
    font-weight: 600;
    padding: 18px 18px;
    font-size: 40px;
    line-height: 1;
    letter-spacing: 0.16px;
    text-transform: uppercase;
    margin-right: 15px;
    /* box-shadow: 0px 4.8px 24.4px -6px rgba(19, 16, 34, 0.1); */
    /* box-shadow: 0 0 8px rgba(0, 0, 0, 0.3), 0 0 8px rgba(255, 255, 255, 0.3); */
}

@media only screen and (max-width: 1199px) {
    .leading-area .leading-content .item span {
        font-size: 35px;
        padding: 16px 16px;
    }
}

@media only screen and (max-width: 1199px) {
    .leading-area .tab-content .title {
        font-size: 35px;
    }
}

@media only screen and (max-width: 575px) {
    .leading-area .tab-content .title {
        font-size: 30px;
    }
}

.leading-area .leading-content .item span span i {
    padding-left: 5px;
}

.leading-area .leading-content .item {
    /* margin-bottom: 0; */
}

.leading-area .leading-content .item p {
    font-weight: 300;
    letter-spacing: -.3px;
    padding-top: 20px;
    /* color: #fff; */
}

.leading-area .item-owner .title {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 0px;
    margin-bottom: 0;
}

.leading-area .leading-content .item-bussiness span {
    font-weight: 600;
    padding: 8px 8px;
    font-size: 20px;
    /* line-height: 1;
    letter-spacing: 0.16px; */
    text-transform: uppercase;
    /* margin-right: 15px; */
    /* box-shadow: 0px 4.8px 24.4px -6px rgba(19, 16, 34, 0.1); */
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3), 0 0 8px rgba(255, 255, 255, 0.3);
}

.leading-area .leading-content .item-bussiness p {
    font-weight: 300;
    letter-spacing: -.3px;
    padding-top: 10px;
    color: #fff;
}

.leading-area .leading-content .item-bussiness {
    margin-bottom: 0;
}

.leading-area .item-bussiness .number span {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leading-area .item-bussiness .title {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 0px;
    margin-bottom: 0;
}

.leading-area .item-bussiness {
    display: -ms-grid;
    display: grid;
    grid-gap: 0px;
    /* align-items: center;
    grid-template-columns: 100px auto;
    border-bottom: 2px solid rgba(14, 30, 42, 0.1254901961);
    padding-bottom: 15px;
    margin-bottom: 30px; */
}

.leading-area .item-owner-thumb img {
    width: 100%;
    /* height: 434px; */
    object-fit: cover;
}

/* Service Section */

@media only screen and (max-width: 479.98px) {
    .service__area .section-title {
        text-align: center;
    }
}

.service__text p {
    max-width: 445px;
    margin-left: auto;
    /* color: #232323; */
    color: #c2c2c2;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    line-height: 1.364;
    margin-bottom: 26px;
    margin-right: -10px;
    position: relative;
}

@media (max-width: 767px) {
    .service__text p {
        margin-left: 0;
    }
}

@media only screen and (max-width: 479.98px) {
    .service__area .service__text p {
        text-align: center;
    }
}

.service__text {
    padding-top: 37px;
}

.sec-title {
    font-size: 48px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.16px;
    text-transform: capitalize;
    /* color: #1F242C; */
    padding-bottom: 25px;
}

@media (max-width: 1399px) {
    .sec-title {
        font-size: 45px;
    }
}

.service__item .icon {
    width: 110px;
    height: 110px;
    display: flex;
    margin-left: 40px;
    align-items: center;
    justify-content: center;
    transform: translateY(50%);
    background: #fc6539;
    border-radius: 20px;
    padding: 25px;
}

@media (max-width: 1199px) {
    .service__item .icon {
        height: 120px;
        margin-left: 30px;
    }
}

@media (max-width: 991px) {
    .service__item .icon {
        width: 140px;
        height: 100px;
        margin-left: 20px;
    }
}

.service__item .icon img {
    filter: brightness(100);
}

.service__item .icon img {
    transition: 0.4s;
}

.service__item:hover .icon img {
    transform: rotateY(180deg);
}

@media (max-width: 1199px) {
    .service__item .icon img {
        max-width: 80px;
    }
}

@media (max-width: 991px) {
    .service__item .icon img {
        max-width: 60px;
    }
}

.service__content {
    padding: 80px 30px 40px;
    background-color: #F4F5FA;
    border-radius: 20px;
    height: 434px;
}

@media (max-width: 991px) {
    .service__content {
        padding: 70px 20px 30px;
    }
}

/* @media (max-width: 767px) {
    .service__content {
        padding: 60px 20px 20px;
    }
} */

.service__title,
.service__title-3 {
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    line-height: 1.455;
    color: #001d23;
    display: block;
    padding-bottom: 20px;
    transition: all 0.3s;
}

@media (max-width: 991px) {
    .service__title {
        line-height: 1.155;
    }
}

.service__title:hover {
    color: #fc6539;
}

.service__content p {
    /* color: #232323; */
    /* padding-bottom: 32px; */
    margin-bottom: 0;
}

.db-btn-arrow {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    /* color: #252525; */
    color: #fc6539;
    display: inline-block;
    position: relative;
    text-decoration: underline;
}

.learn-more-btn {
    margin-top: 38px;
}

.learn-more-four {
    margin-top: 64px;
}

.about-btn-arrow1 {
    margin-top: 54px !important;
}
.about-btn-arrow2 {
    margin-top: 30px !important;
}
.about-btn-arrow3 {
    margin-top: 57px !important;
}

.db-btn-arrow i {
    font-size: 18px;
    color: #B69974;
    transform: rotate(-45deg);
}

.db-btn-arrow::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    left: 0;
    bottom: -8px;
    transition: all 0.3s;
    /* background-color: #252525; */
}

.about-db-btn-arrow {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    /* color: #252525; */
    /* color: #fc6539; */
    margin-top: 12px;
    color: #fff;
    display: inline-block;
    position: relative;
    text-decoration: underline;
}

.about-db-btn-arrow:hover,
.about-db-btn-arrow:active,
.about-db-btn-arrow:focus {
    color: #fff;
}

/* check cause sec */
.causes-area {
    position: relative;
}

.causes-item {
    position: relative;
    display: flex;
    align-items: center;
    /* margin-bottom: 20px; */
    overflow: hidden;
}

.cabin-thumb {
    /* margin-right: 30px; */
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cabin-content {
    position: absolute;
    bottom: 0;
    left: 0;
    /* width: 100%; */
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 100px 20px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    z-index: 99;
}

.causes-item:hover .cabin-thumb {
    /* filter: blur(1.4px); */
    overflow: hidden;
    transition: all 0.3s linear;
    box-shadow: inset -6px -1px 32px 0px rgba(0, 0, 0, 0.75);
}

.causes-item:hover .cabin-content {
    transition: all 0.8s ease;
    /* background-color: rgba(110, 122, 92, 0.7); */
    background-color: rgba(0, 0, 0, 0.5);
    /* background-color: #d1a97f; */
    transform: translateY(0);
}

.cabin-content .title {
    color: #fff;
    font-weight: 700;
}

.cabin-content p {
    /* color: #c2c2c2; */
    color: #fff;
    font-weight: 400;
}

.events-area {
    position: relative;
}

.shape-pattern {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: right;
    z-index: -1;
}

.shape-pattern img {
    /* height: 462px; */
    max-width: 100%;
}

.we-know-line {
    position: absolute;
    top: 60px;
    left: 20px;
    z-index: -1;
    animation: bubbleMover2 linear infinite 5s;
}

.shape-pattern-2 {
    position: absolute;
    right: 285px;
    top: 0px;
    z-index: -1;
    animation: bubbleMover2 linear infinite 5s;
}

@media (max-width: 992px) {
    .shape-pattern-2 {
        right: 85px;
        top: 0px;
        z-index: -1;
    }
}

@media (max-width: 480px) {
    .shape-pattern-2 {
        display: none;
    }
}

@keyframes bubbleMover2 {
    0% {
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        transform: translateY(10px) translateX(20px) rotate(5deg);
        transform-origin: center center;
    }

    50% {
        transform: translateY(20px) translateX(40px) rotate(20deg);
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(30px) translateX(40px) rotate(5deg);
        transform-origin: left top;
    }

    100% {
        transform: translateY(0px) translateX(0) rotate(0);
        transform-origin: center center;
    }

}

.benefits-dot {
    position: absolute;
    left: 25px;
    bottom: 60px;
    z-index: -1;
    animation: bubbleMover linear infinite 5s;
}

@media (max-width: 992px) {
    .benefits-dot {
        display: none;
    }
}

@keyframes bubbleMover {
    0% {
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        transform: translateY(30px) translateX(50px) rotate(15deg);
        transform-origin: center center;
    }

    50% {
        transform: translateY(50px) translateX(100px) rotate(45deg);
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(30px) translateX(50px) rotate(15deg);
        transform-origin: left top;
    }

    100% {
        transform: translateY(0px) translateX(0) rotate(0);
        transform-origin: center center;
    }
}

.people-img-anime {
    width: 288px;
    height: 288px;
}

.causes-area .thumb img {
    max-width: 100%;
    height: 300px;
    object-fit: cover;
}

/* donate area */
/* .thumb-bg-layer {
  position: relative;
  background-size: cover; 
  background-repeat: no-repeat; 
  background-position: center center; 
  width: 100%;
  height: 80%; 
} */

.custom-button-placement {
    position: absolute;
    top: calc(55% - 105px);
    right: 15%;
}

.custom-button-container {
    position: relative;
}

@media (min-width: 768px) and (max-width: 992px) {
    .custom-button-placement {
        position: absolute;
        top: calc(80% - 105px);
        right: 45%;
    }
}

@media (max-width: 767px) {
    .custom-button-placement {
        position: absolute;
        top: calc(82% - 105px);
        right: 45%;
    }
}

@media (max-width: 480px) {
    .custom-button-placement {
        position: absolute;
        top: calc(85% - 105px);
        right: 42%;
    }
}

/* recent events section */
.who__features {
    /* padding-right: 170px; */
}

.who__feature {
    display: -ms-grid;
    display: grid;
    grid-gap: 30px;
    align-items: center;
    grid-template-columns: 100px auto;
    border-bottom: 2px solid rgba(14, 30, 42, 0.1254901961);
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.who__feature .number span {
    font-weight: 600;
    font-size: 40px;
    line-height: 1;
    letter-spacing: 0.16px;
    text-transform: uppercase;
    /* color: var(--black-2); */
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: var(--white); */
    box-shadow: 0px 4.8px 24.4px -6px rgba(19, 16, 34, 0.1);
}

.who__content .title {
    font-size: 20px;
    line-height: 24px;
    color: #001d23;
    display: block;
    /* line-height: 1.334; */
}

.who__content .title:hover {
    color: #fc6539;
}

@media (max-width: 767px) {
    .who__feature {
        grid-gap: 20px;
        grid-template-columns: 60px auto;
    }

    .who__feature .number span {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
}

@media (max-width: 992px) {
    .who__features {
        padding-right: 10px;
    }
}

.footer-area .widget-gallery ul li p,
a {
    color: #001d23;
    font-size: 17px;
    display: inline-block;
    position: relative;
    margin-top: 6px;
    margin-bottom: 0;
}

.footer-area .widget-gallery ul .footer-icons {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    gap: 18px;
}

.footer-area .widget-gallery ul .footer-icons a {
    margin-top: 6px;
    width: 20px;
    height: 20px;
}

/* contact-icon */

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: -32px;
    border-radius: 50%;
    cursor: pointer;
    height: 64px;
    line-height: 62px;
    text-align: center;
    width: 64px;
    background: #FEA444;
    background: linear-gradient(to right, #FEA444 0%, #FC6539 100%);
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    border: none;
}

.chat-popup {
    display: none;
    position: fixed;
    bottom: 50px;
    z-index: 9999;
    right: 75px;
    width: 268px;
    /* Adjusted width */
    height: 306px;
    /* Adjusted height */
    border-radius: 16px;
    overflow: hidden;
}

.chat-popup video {
    width: 100%;
    /* Make the video fill the container horizontally */
    height: 306px;
    /* Make the video fill the container vertically */
    object-fit: cover;
    /* Ensure the video covers the container while maintaining aspect ratio */
}

.popup-container {
    position: relative;
}

.play-button {
    position: absolute;
    bottom: 60px;
    /* Adjust the top position as needed */
    left: 50%;
    /* Center the button horizontally */
    transform: translateX(-50%);
    padding: 5px 20px;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    border-radius: 30px;
    border: 1px solid #fff;
    cursor: pointer;
    width: 197px;
    font-size: 20px;
    z-index: 999;
}

.chat-popup .close-icon {
    position: absolute;
    top: 8px;
    right: 10px;
    cursor: pointer;
    z-index: 9999;
    background: transparent;
    border: none;
}

.chat-popup .close-icon:hover {
    fill: #000;
}

/* .play-button:hover {
    background-color: #0056b3;
} */

.team-member .thumb img {
    /* height: 290px !important; */
    height: 390px !important;
    object-fit: cover;
}

/* creative part */

.best-creative-area .container {
    position: relative;
}

.best-creative-area .best-service-area {
    position: absolute;
    top: -115px;
    left: 0;
    background: #fff;
    line-height: 56px;
    padding: 30px 60px;
    font-weight: 500;
    width: 100%;
    /* color: #3f3836; */
    color: #001d23;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 83px;
    z-index: 1000 !important;
}

@media (max-width: 1199px) {
    .best-creative-area .best-service-area {
        padding: 30px 20px;
        gap: 75px;
    }

    .service-pair p {
        font-size: 16px !important;
    }

    .service-pair img {
        margin-right: 15px !important;
    }
}

.best-creative-area .best-service-area .service-pair {
    display: flex;
    align-items: center;
    /* padding: 10px 0; */
    position: relative;
    cursor: pointer;
}

@media (max-width: 991px) {
    .best-creative-area .best-service-area .service-pair {
        flex-wrap: wrap;
        justify-content: center;
    }

    .service-pair p {
        font-size: 14px !important;
        line-height: 40px;
    }

    .best-creative-area .best-service-area {
        padding: 20px 20px;
    }

    .best-creative-area .best-service-area {
        gap: 30px;
        top: -105px;
    }
}

@media (max-width: 767px) {
    .service-pair p {
        font-size: 12px !important;
        line-height: 40px;
    }

    .service-pair img {
        margin-right: 0 !important;
    }

    .best-creative-area .best-service-area {
        gap: 25px;
        top: -105px;
    }
}

@media (max-width: 515px) {
    .best-creative-area .best-service-area {
        padding: 15px 15px;
    }

    .service-pair img {
        width: 23px;
    }

    .best-creative-area .best-service-area {
        gap: 40px;
        top: -100px;
    }

    .service-pair p {
        line-height: 18px;
        text-align: center;
        margin-top: 8px !important;
    }

    .service-pair::after {
        bottom: -10px !important;
    }
}

@media (max-width: 375px) {
    .best-creative-area .best-service-area {
        gap: 30px;
    }

    /* .best-creative-area .best-service-area {
        padding: 8px 8px;
    }
    .service-pair p {
        line-height: 30px;
    } */
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#dynamicContent {
    animation: fadeInOut 0.3s ease-in-out;
    /* Adjust timing and easing as needed */
}

.service-pair::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;
}

.service-pair.active::after {
    background-color: #FC6539;
}

.service-pair img {
    width: 30px;
    height: auto;
    margin-right: 20px;
    /* Space between image and text */
    /* filter: grayscale(100%); */
}

.service-pair p {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    /* font-family: "Yeseva One", cursive; */
    font-family: "Poppins", sans-serif;
}

.service-pair p.active {
    font-weight: 700;
}

.best-creative-area .best-creative-bg {
    /* background: #FEA444; */
    background: #f7f7f7;
    padding-bottom: 20px;
    position: relative;
}

/* .best-creative-area .best-creative-bg::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/line.png);
} */

.best-creative-area .best-creative-bg .best-creative-content {
    padding-left: 80px;
    padding-top: 68px;
    padding-bottom: 80px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .best-creative-area .best-creative-bg .best-creative-content {
        padding-left: 60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .best-creative-area .best-creative-bg .best-creative-content {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 767px) {
    .best-creative-area .best-creative-bg .best-creative-content {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.best-creative-area .best-creative-bg .best-creative-content .title {
    font-size: 44px;
    /* color: #001D23; */
    letter-spacing: -1.5px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .best-creative-area .best-creative-bg .best-creative-content .title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .best-creative-area .best-creative-bg .best-creative-content .title {
        font-size: 26px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .best-creative-area .best-creative-bg .best-creative-content .title {
        font-size: 38px;
    }
}

.best-creative-area .best-creative-bg .best-creative-content p {
    letter-spacing: -.7px;
    padding-top: 30px;
    padding-right: 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .best-creative-area .best-creative-bg .best-creative-content p {
        padding-right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .best-creative-area .best-creative-bg .best-creative-content p {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .best-creative-area .best-creative-bg .best-creative-content p {
        font-size: 15px;
        padding-right: 0;
    }
}

.best-creative-area .best-creative-bg .best-creative-list .best-creative-seats {
    background: #FC6539;
    margin-left: 50px;
    padding-left: 155px;
    padding-top: 44px;
    padding-bottom: 34px;
    position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .best-creative-area .best-creative-bg .best-creative-list .best-creative-seats {
        margin-left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .best-creative-area .best-creative-bg .best-creative-list .best-creative-seats {
        margin-right: 50px;
    }
}

@media (max-width: 767px) {
    .best-creative-area .best-creative-bg .best-creative-list .best-creative-seats {
        margin-right: 30px;
        margin-left: 30px;
        padding-left: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .best-creative-area .best-creative-bg .best-creative-list .best-creative-seats {
        margin-right: 30px;
        margin-left: 30px;
        padding-left: 155px;
    }
}

.best-creative-area .best-creative-bg .best-creative-list .best-creative-seats .flaticon-computer {
    position: absolute;
    content: '';
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    color: #fff;
}

@media (max-width: 767px) {
    .best-creative-area .best-creative-bg .best-creative-list .best-creative-seats .flaticon-computer {
        position: static;
        transform: translateY(0);
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .best-creative-area .best-creative-bg .best-creative-list .best-creative-seats .flaticon-computer {
        position: absolute;
        transform: translateY(-50%);
    }
}

.best-creative-area .best-creative-bg .best-creative-list .best-creative-seats .title {
    color: #fff;
    font-size: 44px;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .best-creative-area .best-creative-bg .best-creative-list .best-creative-seats .title {
        margin-top: 10px;
    }
}

.best-creative-area .best-creative-bg .best-creative-list .best-creative-seats p {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0;
}

.best-creative-area .best-creative-bg .best-creative-list .best-creative-seats>span {
    position: absolute;
    top: -56px;
    left: 0;
    background: #fff;
    line-height: 56px;
    padding: 0 60px;
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
    color: #3f3836;
}

@media (max-width: 767px) {
    .best-creative-area .best-creative-bg .best-creative-list .best-creative-seats>span {
        padding: 0 10px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .best-creative-area .best-creative-bg .best-creative-list .best-creative-seats>span {
        padding: 0 30px;
    }
}

.best-creative-area .best-creative-bg .best-creative-list .best-creative-list-item {
    margin-left: 50px;
    padding-top: 47px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .best-creative-area .best-creative-bg .best-creative-list .best-creative-list-item {
        margin-left: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .best-creative-area .best-creative-bg .best-creative-list .best-creative-list-item {
        margin-left: 50px;
    }
}

@media (max-width: 767px) {
    .best-creative-area .best-creative-bg .best-creative-list .best-creative-list-item {
        margin-left: 30px;
    }
}

.best-creative-area .best-creative-bg .best-creative-list .best-creative-list-item ul li {
    font-size: 18px;
    font-weight: 600;
    /* color: #3f3836; */
    line-height: 40px;
    letter-spacing: -.8px;
}

@media (max-width: 767px) {
    .best-creative-area .best-creative-bg .best-creative-list .best-creative-list-item ul li {
        font-size: 16px;
    }
}

.best-creative-area .best-creative-bg .best-creative-list .best-creative-list-item ul li i {
    color: #FC6539;
    padding-right: 28px;
}

@media (max-width: 767px) {
    .best-creative-area .best-creative-bg .best-creative-list .best-creative-list-item ul li i {
        padding-right: 7px;
    }
}

/* gallery area */

.gallery-area {
    background: #3f3836;
    padding-top: 110px;
    position: relative;
    z-index: 11;
}

.gallery-area .gallery-title {
    padding-bottom: 120px;
}

.gallery-area .gallery-title .title {
    color: #fff;
    font-size: 44px;
}

@media (max-width: 767px) {
    .gallery-area .gallery-title .title {
        font-size: 30px;
    }
}

.gallery-area .gallery-itmes {
    border-top: 2px solid #eee;
    border-bottom: 2px solid #eee;
}

.gallery-area .gallery-itmes .gallery-thumb {
    border: 3px solid #eeeeee;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-area .gallery-itmes .gallery-thumb .city-name {
    position: absolute;
    bottom: 0;
    left: 0;
    /* background-color: rgba(255, 255, 255, 0.7); */
    padding: 5px 10px;
    line-height: 35px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.6s ease;
    z-index: 9;
}

.gallery-area .gallery-itmes .gallery-thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
    border-radius: inherit;
}

.gallery-area .gallery-itmes .gallery-thumb:hover::after {
    opacity: 1;
}

.gallery-area .gallery-itmes .gallery-thumb img {
    width: 100%;
    transition: transform 0.6s ease;
    position: relative;
}

.gallery-area .gallery-itmes .gallery-thumb:hover img,
.gallery-area .gallery-itmes .gallery-thumb:hover .city-name {
    will-change: transform;
    transform: perspective(3000px) rotateX(-0.54deg) rotateY(2.94deg) scale3d(1.04, 1.04, 1.04);
}

.gallery-area .gallery-itmes .gallery-thumb a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 116px;
    width: 122px;
    transition: all 0.3s ease-out 0s;
    opacity: 0;
    line-height: 116px;
    background-color: rgba(0, 0, 0, 0.5);
}

.gallery-area .gallery-itmes .gallery-thumb::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(52, 45, 44, 0.4);
    transform: scaleX(0);
    transition: all 0.3s ease-out 0s;
}

/* .gallery-area .gallery-itmes .gallery-thumb:hover a {
    opacity: 1;
}

.gallery-area .gallery-itmes .gallery-thumb:hover::before {
    transform: scaleX(1);
    box-shadow: 0px 15px 40px 0px rgba(63, 56, 54, 0.2);
} */

.gallery-area .gallery-active .col-lg-3 {
    padding-left: 0;
    padding-right: 0;
}

.gallery-area.gallery-page {
    background: #fff;
    padding-bottom: 120px;
    padding-top: 90px;
}

.gallery-area.gallery-page .gallery-itmes {
    border: 0;
}

.gallery-area.gallery-page .gallery-itmes .gallery-thumb {
    border: 0;
}

/*===========================
    JOIN COMMUNITY css 
===========================*/
.join-community-area {
    background: #FC6539;
    padding: 120px 0px;
    position: relative;
    z-index: 10;
}

.join-community-area::before {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    height: 100%;
    min-width: 900px;
    background-image: url(../img/landing-page1/gallery-img1.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .join-community-area::before {
        min-width: 680px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .join-community-area::before {
        min-width: 530px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .join-community-area::before {
        min-width: 0;
    }
}

@media (max-width: 767px) {
    .join-community-area::before {
        min-width: 0;
    }
}

.join-community-area .join-community-content .title {
    font-size: 44px;
    color: #fff;
    padding-right: 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .join-community-area .join-community-content .title {
        padding-right: 40px;
    }
}

@media (max-width: 767px) {
    .join-community-area .join-community-content .title {
        padding-right: 0px;
        font-size: 32px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .join-community-area .join-community-content .title {
        padding-right: 100px;
        font-size: 44px;
    }
}

.join-community-area .join-community-content p {
    color: #ffe2df;
    padding: 40px 110px 50px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .join-community-area .join-community-content p {
        padding: 40px 40px 50px 0;
    }
}

@media (max-width: 767px) {
    .join-community-area .join-community-content p {
        padding: 40px 0px 50px 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .join-community-area .join-community-content p {
        padding: 40px 110px 50px 0;
    }
}

.join-community-area .join-community-content a {
    background: #3f3836;
}

.join-community-area .join-community-counter {
    position: absolute;
    right: 670px;
    top: 50%;
    transform: translateY(-50%);
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .join-community-area .join-community-counter {
        right: 450px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .join-community-area .join-community-counter {
        right: 300px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .join-community-area .join-community-counter {
        display: none;
    }
}

@media (max-width: 767px) {
    .join-community-area .join-community-counter {
        display: none;
    }
}

.join-community-area .join-community-counter .item {
    width: 230px;
    background: #fff;
    padding-left: 55px;
    padding-right: 35px;
    padding-top: 47px;
    padding-bottom: 56px;
}

.join-community-area .join-community-counter .item .title {
    font-size: 44px;
    color: #ff4332;
}

.join-community-area .join-community-counter .item p {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #3f3836;
}

.join-community-area .join-community-counter .item.item-2 {
    background: #f7eae8;
}

.join-community-area .community-logo {
    position: absolute;
    left: 145px;
    top: 0;
    z-index: -1;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .join-community-area .community-logo {
        left: 0;
    }
}

/* Cabin offfice area */

/* .cabin-office-area .cabin-data{
    padding-left: 37.3px;
    padding-top: 60px;
} 
.cabin-office-area .cabin-data .cabin-thumb img{
    width: 100%;
    height: 200px;
    object-fit: cover;
} */

.cabin-office-area {
    position: relative;
}

.cabin-office-container {
    position: relative;
    display: flex;
    align-items: center;
    /* margin-bottom: 0px; */
    overflow: hidden;
}

.cabin-office-container .thumb {
    margin-bottom: 0px;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mono-cabin-area .mono-cabin-thumb {
    position: relative;
}

.mono-cabin-area .mono-cabin-thumb::before {
    position: absolute;
    content: '';
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 90%;
    background: #fbf0ee;
}

.cabin-office-container .cabin-content {
    position: absolute;
    bottom: 0;
    left: 0;
    /* width: 100%; */
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 100px 12px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    z-index: 99;
}

@media only screen and (max-width: 1199px) {
    .cabin-office-container .cabin-content {
        padding: 100px 20px;
    }
}

.cabin-office-container:hover .thumb {
    /* filter: blur(1.4px); */
    overflow: hidden;
    transition: all 0.3s linear;
    box-shadow: inset -6px -1px 32px 0px rgba(0, 0, 0, 0.75);
}

.cabin-office-container:hover .cabin-content {
    transition: all 0.8s ease;
    /* background-color: rgba(110, 122, 92, 0.7); */
    background-color: rgba(0, 0, 0, 0.5);
    /* background-color: #d1a97f; */
    transform: translateY(0);
}

/* momo cabin area */

.mono-cabin-area .mono-cabin-thumb img {
    width: 100%;
    height: 534px;
    object-fit: cover;
}

/* Virtual office area */

.virtual-office-area .virtual-office-content {
    margin-left: 0;
}

.virtual-office-area .virtual-office-thumb {
    margin-left: 70px;
}

@media (max-width: 992px) {
    .virtual-office-area .virtual-office-thumb {
        margin-left: 0px;
    }
}

.virtual-office-area .virtual-office-thumb img {
    width: 100%;
    height: 534px;
    object-fit: cover;
}

.virtual-office-area .virtual-office-thumb {
    position: relative;
}

.virtual-office-area .virtual-office-thumb::after {
    position: absolute;
    content: '';
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 90%;
    background: #fbf0ee;
}

.book-btn-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #FC6539;
    font-weight: 500;
    text-decoration: overline;
}

.book-btn-cta .icon {
    background-color: #fc6539;
}

/* facility area */

.facility-container .thumb img {
    /* height: 290px !important; */
    height: 390px !important;
    object-fit: cover;
    width: 100%;
}

@media only screen and (max-width: 991px) {
    .facility-area .facility-container {
        margin-top: 30px;
    }
}

/* .facility-area ol, ul {
    padding-left: 1rem !important;
}
.facility-area ul li{
    list-style: disc !important;
    padding-left: 1rem !important;
} */

.facility-area ul {
    margin-bottom: 0;
}

.facility-area ul li {
    list-style-type: none;
    margin-bottom: 10px;
    align-items: flex-start;
    display: flex;
}

.facility-area ul li i {
    color: #FC6539;
    margin-right: 10px;
}

/* modal */

.uploadFileModal textarea.form-control {
    height: 130px !important;
}

.uploadFileModal .modal-dialog {
    max-width: 840px;
}

.uploadFolderModal.srtLinkModal .modal-dialog {
    max-width: 600px;
}

.uploadFileModal .modal-body {
    padding: 0 40px 60px 40px;
    position: relative;
}

.uploadFileModal .modal-body .btn-close {
    position: absolute;
    right: 37px;
    top: 43px;
    opacity: 1;
}

.uploadFileModal .modal-header {
    margin-bottom: 0px;
}

.addPlaylistModal .modal-header {
    margin-bottom: 10px;
}

.uploadFileModal .modal-header h5 {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 28px;
    /* margin-bottom: 11px; */
    margin-bottom: 0;
}

.uploadFileModal .modal-header {
    border-bottom: 0;
    padding: 0 40px;
    padding-top: 40px;
}

.uploadFileModal .modal-body p,
.bulkImportModal .modal-body p {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5rem;
    color: #4a505c;
}

.uploadFileModal form {
    padding-top: 40px;
}

.uploadFileModal .modal-footer .btn-secondary {
    border: 1px solid var(--change-theme-primary-color);
    filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.12));
    color: var(--change-theme-primary-color);
    background: #fff;
    margin-right: 0.75rem;
}

.uploadFileModal .modal-footer .btn-primary {
    background: #FC6539;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.12);
    color: #fff;
    border: none;
    padding: 0.75rem 20px !important;
}

.uploadFileModal form label {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5rem;
    color: #4a505c;
}

.uploadFileModal .modal-body form p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--change-theme-text-color);
}

.uploadFileModal .date-container {
    position: relative;
}

.uploadFileModal .date-container .datepicker {
    padding: 0.375rem 0.75remrem;
}

.uploadFileModal .date-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    transform: translate(-10%, -10%);
    pointer-events: all;
    cursor: pointer;
    color: #4a505c;
}

.uploadFileModal .myDatepicker .add-on .date-icon {
    top: 0;
    transform: translateY(-50%);
}

.srtViewDetailModal .modal-body {
    padding-bottom: 0;
}

.srtViewDetailModal .srt-view-detail-content .column {
    display: flex;
    column-gap: 15px;
}

@media (max-width: 575px) {
    .srtViewDetailModal .srt-view-detail-content .column {
        flex-direction: column;
    }
}

.srtViewDetailModal .srt-view-detail-content .input-box {
    width: 100%;
    margin-top: 20px;
}

.srtViewDetailModal .srt-view-detail-content .input-box label {
    color: #001d23;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5rem;
}

.srtViewDetailModal .srt-view-detail-content .input-box input {
    position: relative;
    height: 48px;
    width: 100%;
    padding: 0 15px;
    margin-top: 8px;
    border-radius: 4px;
    border: 1px solid var(--text-secondary-white, #909091);
    background: var(--text-primary-white, #FFF);
    color: var(--text-secondary-black, #4A505C);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    outline: none;
}

.srtViewDetailModal .srt-view-detail-content .input-box textarea {
    position: relative;
    height: 153px;
    width: 100%;
    padding: 0 15px;
    padding-top: 15px;
    margin-top: 8px;
    border-radius: 4px;
    border: 1px solid var(--text-secondary-white, #909091);
    background: var(--text-primary-white, #FFF);
    color: var(--text-secondary-black, #4A505C);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    outline: none;
}

.srtViewDetailModal .srt-view-table-heading h4 {
    color: var(--text-primary-black, #1D2433);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    margin-top: 35px;
}

.srtViewDetailModal .srt-view-table-content .wrap-table-content {
    max-width: 1200px;
    margin: 20px auto 0;
    padding-bottom: 1.2rem;
    border-radius: 10px;
    background: var(--text-primary-white, #FFF);
    border: 1px solid var(--text-disabled-white, #9D9EA1);
}

.srtViewDetailModal .srt-view-table-content .wrap-title,
.wrap-item {
    display: grid;
    grid-template-columns: 40fr 35fr 35fr 25fr !important;
    align-items: center;
    padding-left: 10px;
}

.srtViewDetailModal .srt-view-table-content .wrap-item-color {
    background: var(--primary-bg, #DCEAF3);
}

.srtViewDetailModal .srt-view-table-content .wrap-title p {
    color: var(--text-primary-black, #1D2433);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5rem;
    padding: 10px 0;
}

.srtViewDetailModal .srt-view-table-content .wrap-item svg {
    cursor: pointer;
}

.srtViewDetailModal .srt-view-table-content .wrap-item p {
    color: var(--text-primary-black, #1D2433);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    padding: 10px 0;
}

.srtViewDetailModal .srt-view-table-content .wrap-title {
    border-radius: 10px 10px 0px 0px;
    background: var(--secondary-bg, #E2F5FF);
}

.uploadFileModal .modal-footer {
    padding: 0 40px 40px 40px;
    border: 0;
    position: relative;
    z-index: 1;
}

.uploadFileModal .modal-footer .btn {
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1rem;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    margin-top: 1rem;
}

.contactFromModal {
    z-index: 99999;
}

.contactFromModal .input-box option:hover {
    background: #FC6539 !important;
}

/* Modal popup */
.contactFromModal .dropdown {
    min-width: 170px;
    position: relative;
    margin-top: 1em;
}

.contactFromModal .select {
    /* background-color: transparent; */
    color: var(--change-theme-primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--text-secondary-white, #909091);
    background: var(--text-primary-white, #FFF);
    height: 48px;
    width: 100%;
    padding: 0 15px;
    margin-top: 8px;
    border-radius: 4px;
    cursor: pointer;
}

.contactFromModal .select span {
    color: var(--change-theme-primary-color);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.svg-img-rotate {
    transform: rotate(180deg);
}

.contactFromModal .menu {
    list-style: none;
    padding: 0;
    background: #fff;
    border: 1px solid var(--text-secondary-white, #909091);
    border-radius: 8px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.12);
    position: absolute;
    top: 3.5em;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    display: none;
    z-index: 999999;
    transition: 0.2s;
}

.contactFromModal .menu li {
    padding: 0.5em 1em;
    /* border-radius: 0.5em; */
    cursor: pointer;
    color: #1D2433;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.contactFromModal .menu li:hover {
    background: #FFA17F;
    ;
}

.pending_assessment_cancel_and_retake_cont {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: end;
}

.contactFromModal .active {
    background: #FFA17F;
    ;
}

.contactFromModal .menu.menu-open {
    display: block !important;
}

/* Checkbox container */
.checkbox-field {
    margin-top: 0px;
}

/* Align checkbox + label text */
.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 400;
    color: #1D2433;
}

/* Normalize checkbox appearance */
.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

@media (max-width: 576px) {
    .checkbox-field {
        margin-top: 12px;
    }

    .checkbox-label {
        gap: 8px;
        font-size: 0.95rem;
    }

    .checkbox-label input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }
}


@media (min-width: 577px) and (max-width: 991px) {
    .checkbox-label {
        gap: 9px;
        font-size: 1rem;
    }

    .checkbox-label input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .checkbox-label {
        gap: 10px;
    }
}

@media (pointer: coarse) {
    .checkbox-label input[type="checkbox"] {
        width: 22px;
        height: 22px;
    }
}


/* before after area */

.before-after-area .mono-cabin-thumb::before {
    display: none;
}

.location-area .virtual-office-thumb::after {
    display: none;
}

.location-area .virtual-office-thumb {
    position: absolute;
    background-position: center center;
    right: 0;
    top: 85px;
    width: calc(60% - 155px);
}

@media (max-width: 1600px) {
    .location-area .virtual-office-thumb {
        width: calc(60% - 55px);
    }
}

@media (max-width: 1199px) {
    .location-area .virtual-office-thumb img {
        height: 454px
    }
}

@media (max-width: 992px) {
    .location-area .virtual-office-thumb {
        position: relative;
    }
}

.location-area .location-img-gallery {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.location-area .location-img-gallery img {
    width: 100%;
    max-width: 77px;
    /* height: 147px; */
}

/* support swipper */
.service__area .swiper-container {
    position: relative;
    padding-bottom: 90px;
}

.service__area .swiper-button-next,
.swiper-button-prev {
    top: 92%;
    border: 3px solid #fc6539;
    border-radius: 50%;
    color: #fc6539;
    display: inline-block;
    font-size: 32px !important;
    height: 60px;
    line-height: 52px;
    text-align: center;
    display: flex;
    align-items: center;
    width: 60px;
    /* background: linear-gradient(-30deg, #fc6539 0%, #fea444 100%);
    opacity: 0.502; */
}

.service__area .swiper-button-next {
    right: 44%;
}

.service__area,
.swiper-button-prev {
    left: 44%;
}

.before-after-service-area {
    margin-top: 30px;
    background: #fff;
    line-height: 40px;
    padding: 30px 20px;
    font-weight: 500;
    width: 100%;
    /* color: #3f3836; */
    color: #001d23;
    /* border-top-left-radius: 20px;
    border-top-right-radius: 20px; */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    /* gap: 83px; */
}

@media (max-width: 1199px) {
    .before-after-service-area {
        padding: 30px 20px;
    }

    .before-after-service-area .before-after-num {
        font-size: 30px !important;
    }

    .before-after-service-area .service-pair .before-after-text {
        font-size: 20px !important;
    }
}

@media (max-width: 991px) {
    .before-after-service-area .service-pair .before-after-text {
        font-size: 18px !important;
    }

    .before-after-service-area {
        padding: 30px 10px;
    }
}

@media (max-width: 767px) {
    .before-after-service-area .service-pair .before-after-text {
        font-size: 16px !important;
    }

    .before-after-service-area .before-after-num {
        font-size: 25px !important;
    }

    .before-after-service-area {
        padding: 20px 10px;
    }
}

@media (max-width: 515px) {
    .before-after-service-area .before-after-num {
        line-height: 20px !important;
        font-size: 20px !important;
    }

    .before-after-service-area {
        padding: 10px 0px;
    }
}

.before-after-service-area .before-after-num {
    background: linear-gradient(180deg, #FDAB5D 0%, #FC9C50 39.4%, #FB7B4E 80.9%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px;
    font-weight: 900;
}

.before-after-area .mono-cabin-thumb img {
    /* object-fit: none; */
    width: 100%;
    height: 534px;
    object-fit: contain;
}