:root{
    --primary-color: #337E93;
    --primary-light-color: #28A7B7;
    --secondary-color: #374F5B;
    --third-gray-color: #394F5A;
    --white-color: #fff;
    --black-color: #000;
    --light-gray-color: #C4D0DA;
    --dark-gray-color: #828E94;
    --golden-color: #C5A16D;
    --project-golden-color: #C5A16D;
    --coffee-color: #1B100F;

    --font-family-heebo-light: 'Heebo-Light';
    --font-family-heebo-regular: 'Heebo-Regular';
    --font-family-heebo-medium: 'Heebo-Medium';
    --font-family-heebo-semibold: 'Heebo-SemiBold';
    --font-family-heebo-bold: 'Heebo-Bold';
    --font-family-PoltawskiNowy-Regular: 'PoltawskiNowy-Regular';


    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-mediun: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 600;
    --font-weight-extrabold: 900;
}
*{
    box-sizing: border-box;
}
body{
    /* background: var(--bg-color); */
    font-family: var(--font-family-heebo-regular);
    direction: rtl;
    color: var(--black-color);
    padding-top: 79px;
}
h1,h2,h3,h4,h4,h5{
    /* font-family: 'FbReadingHebEng-Bold'; */
    font-family: var(--font-family-heebo-bold);
    font-weight: bold;
}
a{
    text-decoration: none;
}
p{
    font-family: var(--font-family-heebo-regular);
    margin-bottom: 0;
}
ul, ol{
    list-style: none;
    padding-left: 0;
    padding-right: 0;
}
.global-btn.phone-btn{
    direction: ltr;
}
.global-btn {
    background-color: var(--primary-color);
    font-size: 20px;
    line-height: 24px;
    font-weight: var(--font-weight-semibold);
    padding: 12px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 0;
    color: var(--white-color);
    position: relative;
    font-family: var(--font-family-heebo-semibold);
}
.global-btn:hover {
    background: none;
    color: var(--primary-color);
}
.global-btn.transparent{
    background: none;
    color: var(--primary-color);
}
.global-btn.transparent:hover{
    background-color: var(--primary-color);
    color: var(--white-color);
}
.global-btn.white.transparent{
    background: none;
    color: var(--white-color);
    border-color: var(--white-color);
}
.global-btn.white.transparent:hover{
    background-color: var(--white-color);
    color: var(--primary-color);
}
.global-btn.golden{
    background-color: var(--golden-color);
    border-color: var(--golden-color);
}
.global-btn.golden:hover{
    background: none;
    color: var(--golden-color);
}
.global-btn.icon-btn i{
    margin-right: 5px;
}
.w-fit-content{
    width: fit-content;
}
.max-w-fit-content{
    max-width: fit-content;
}
.min-w-fit-content{
    min-width: fit-content;
}
.h-fit-content{
    height: fit-content;
}
.mb-60{
    margin-bottom: 60px;
}
.mb-70{
    margin-bottom: 70px;
}
.bg-img{
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
form .col-12 > p{
    margin-bottom: 0;
}
input, textarea, select{
    font-size: 16px;
    line-height: 24px;
    font-weight: var(--font-weight-regular);
    background-color: var(--white-color);
    border-radius: 7px;
    border: none;
    color: var(--black-color);
    width: 100%;
    padding: 12px;
}
input::placeholder, textarea::placeholder{
    color: rgba(0, 0, 0, 0.5);
}
select{
    -moz-appearance:none;
    -webkit-appearance:none;
    appearance:none;
}
.select-col .wpcf7-form-control-wrap{
    position: relative;
}
.select-col .wpcf7-form-control-wrap::after{
    content: '';
    display: block;
    position: absolute;
    top: 52%;
    left: 12px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 9px solid var(--black-color);
    transform: translateY(-50%);
}
textarea{
    max-height: 120px;
    resize: none;
}
.wpcf7-not-valid-tip{
    text-align: start;
}
button[type="submit"]{
    font-size: 24px;
    line-height: 28px;
    border-radius: 7px;
    font-weight: var(--font-weight-bold);
    padding: 12px;
}
button[type="submit"]:hover{
    background-color: var(--primary-color) !important;
    color: var(--white-color) !important;
}
button[type="submit"] i {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}
.wpcf7 input[type="url"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"]{
    direction: unset;
}
.wpcf7 form .wpcf7-response-output{
    margin: 20px 0 20px;
    text-align: center;
    color: var(--white-color);
}
.text-justify{
    text-align: justify;
}
.text-justify-center{
    text-align: justify;
    text-align-last: center;
}
.title-area .keyword{
    font-size: 30px;
    line-height: 45px;
    color: var(--secondary-color);
    font-family: var(--font-family-heebo-light);
    font-weight: var(--font-weight-light);
}
.title-area .title{
    font-size: 42px;
    line-height: 46px;
    margin-bottom: 30px;
    color: var(--secondary-color);
}
.title-area .title > span{
    font-weight: var(--font-weight-regular);
    font-family: var(--font-family-heebo-regular);
    color: var(--light-gray-color);
}
.title-area .desc{
    font-size: 18px;
    line-height: 28px;
}
.footer-form-wrapper .title-area .title{
    margin-bottom: 10px;
}
.footer-form-wrapper .title-area .title > span{
    color: var(--primary-light-color);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family-heebo-bold);
}
.footer-form-wrapper .title-area .desc{
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px;
}

/**********
Header CSS
**********/
/**** Header css start ****/
@keyframes stickyAnimation {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.header{
    background-color: var(--white-color);
    transition: all 0.4s ease;
}
.header.sticky{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;
    /* animation: stickyAnimation 0.5s ease forwards; */
    background-color: var(--white-color);
}
.navbar{
    padding: 0 30px 0 0;
    transition: all 0.4s ease;
}
.navbar-light .navbar-brand{
    margin-left: 70px;
}
.navbar-brand .logo{
    max-width: 150px;
    transition: all 0.4s ease;
    object-fit: contain;
}
.right-menu{
    margin-right: 0;
}
.navbar-nav{
    gap: 40px;
}
.header-container{
    gap: 50px;
}
.navbar-nav .menu-item > a{
    font-size: 18px;
    line-height: 24px;
    color: var(--black-color);
    font-weight: var(--font-weight-regular);
    font-family: var(--font-family-heebo-regular);
    position: relative;
}
.navbar-nav .menu-item > a::after{
    content: '';
    width: 0;
    height: 5px;
    background: var(--primary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s ease;
}
.navbar-nav .menu-item > a:hover::after, .navbar-nav .menu-item.current-menu-item > a::after{
    width: 50%;
}
.navbar-nav .menu-item.current-menu-item > a, .navbar-nav .menu-item > a:hover{
    color: var(--primary-color);
}
.navbar-light .navbar-toggler {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.navbar-toggler:focus{
    box-shadow: none;
}
.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28195, 175, 119, 1' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.header-btn:hover, .header-btn:focus{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}
.header-btn::after{
    content: none;
}
.header-btn > img {
    margin-left: 10px;
    max-width: 40px;
}
.header-dropdown .dropdown-menu{
    padding: 16px;
    border-radius: 7px;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
}
.header-dropdown .dropdown-menu .dropdown-item{
    font-size: 16px;
    line-height: 24px;
    color: var(--black-color);
    padding-left: 0;
    padding-right: 0;
}
.header-dropdown .dropdown-menu .dropdown-item:hover{
    background: none;
    color: var(--primary-color);
}
.header-dropdown .dropdown-menu{
    height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease;
}
.header-dropdown .dropdown-menu.show{
    height: auto;
    overflow: visible;
}
.header-social-icons li {
    padding: 6px 20px;
    border-left: 1px solid var(--secondary-color);
}
.header-social-icons li:last-child{
    border-left: 0;
}
.header-social-icons li a{
    color: var(--secondary-color);
    font-size: 20px;
}
.header-social-icons li:first-child {
    padding: 2px 20px;
}
.header-social-icons li:first-child a{
    font-size: 24px;
}

/**** Footer css start ****/
.footer-form{
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 75px 0;
    position: relative;
}
.footer-form::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
}
.footer-form-wrapper{
    max-width: 570px;
    z-index: 2;
    position: relative;
}
form{
    direction: rtl;
}
.footer-sec{
    background-color: var(--secondary-color);
    padding: 30px 0 20px;
}
.footer-title {
    font-size: 14px;
    line-height: 20px;
    font-family: var(--font-family-heebo-light);
    font-weight: var(--font-weight-light);
    margin-bottom: 16px;
}
.footer-wrapper{
    gap: 35px;
}
.footer-social-links {
    gap: 18px;
}
.footer-social-links .item a:hover i{
    color: var(--primary-light-color);
}
.footer-social-links .item a i{
    color: var(--white-color);
    font-size: 20px;
}
.footer-contact-detail .item {
    margin-bottom: 16px;
}
.footer-contact-detail .item a{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
.footer-contact-detail .item .link i{
    font-size: 20px;
    color: var(--main-color);
    margin-left: 16px;
    min-width: 20px;
}
.footer-contact-detail .item .link span{
    font-size: 14px;
    line-height: 22px;
    color: var(--white-color);
}
.footer-contact-detail .item .link:hover span{
    color: var(--main-color);
}
.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 30px;
}
.footer-menu > li{
    /* min-width: 95px; */
}
.footer-menu li a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
}
.footer-menu .menu-item.current-menu-item > a, .footer-menu .menu-item > a:hover{
    color: var(--primary-light-color);
}


.footer-social{
    min-width: 110px;
}
.footer-logo > img {
    min-width: 160px;
}
.footer-contact-detail .item > a {
    font-size: 14px;
    line-height: 20px;
    font-family: var(--font-family-heebo-light);
    font-weight: var(--font-weight-light);
    color: var(--white-color);
    gap: 10px;
    align-items: start;
}
.footer-contact-detail .item > a:hover{
    color: var(--primary-light-color);
}
.footer-contact-detail .item > a > i{
    font-size: 16px;
    line-height: 22px;
}

/*****************
Banner section css
******************/
.banner-video{
    height: 620px;
    object-fit: cover;
    object-position: center center;
}
.banner-icon{
    max-width: 130px;
}
.banner-content {
    flex-direction: column;
    z-index: 2;
    position: relative;
}
.banner-video{
    margin-bottom: -8px;
}
.banner-sec .container::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.3);
    z-index: 0;
}
.banner-content-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 100%;
    transform: translate(-50%, -50%);
    height: 100%;
}
.vertical-line{
    width: 100%;
    height: auto;
    max-width: 0.15rem;
    max-height: 88px;
    object-fit: cover;
}
.banner-title {
    font-size: 60px;
    line-height: 70px;
    color: var(--white-color);
    margin-top: 16px;
}
.banner-title > span {
    font-weight: var(--font-weight-light);
    font-family: var(--font-family-heebo-light);
}

/****************
About section css
*****************/
.about-sec{
    padding: 90px 0;
}
.pl-120{
    padding-left: 120px;
    padding-right: 40px;
}
.mx-w-590{
    max-width: 590px;
}
.mx-w-1050{
    max-width: 1050px;
}
.seprator{
    position: relative;
    margin-bottom: 36px;
}
.seprator::before {
    content: '';
    width: calc(100% - 80px);
    height: 1px;
    background: var(--light-gray-color);
    position: absolute;
    left: 80px;
    top: 12px;
}
.seprator.no-border::before{
    content: none;
}
.seprator.right-sep::before{
    right: 80px;
    left: unset;
}
.about-sec .global-content-wrapper {
    padding-top: 62px;
}

/*****************
Number section css
******************/
.number-sec {
    padding: 100px 0 0;
}
.number-sec::before, .home-project-sec::before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(43, 76, 92,0.9);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.number-detail-wrapper {
    position: relative;
    z-index: 1;
}
.number-detail-wrapper .number-desc{
    margin-bottom: 80px;
    font-size: 26px;
    line-height: 32px;
    font-family: var(--font-family-heebo-light);
    font-weight: var(--font-weight-light);
}
.number-detail-wrapper .number-item{
    margin-bottom: 100px;
}
.number-detail-wrapper .number-item .number{
    color: var(--golden-color);
    font-family: var(--font-family-PoltawskiNowy-Regular);
    font-weight: var(--font-weight-regular);
    font-size: 80px;
    line-height: 60px;
    min-height: 80px;
    margin-bottom: 0;
}
.number-detail-wrapper .number-item .number > span{
    font-size: 40px;
    vertical-align: baseline;
}
.number-detail-wrapper .number-item .text{
    font-size: 26px;
    line-height: 32px;
    font-family: var(--font-family-heebo-light);
    font-weight: var(--font-weight-light);
}

/*******************
Home project section
********************/
.home-project-sec {
    padding: 60px 0 50px;
}
.home-project-item {
    height: 400px !important;
    overflow: hidden;
}
.home-project-item .project-img{
    object-fit: cover;
    object-position: center center;
    transition: all 0.5s ease;
}
.home-project-item:hover .project-img {
    transform: scale(1.13);
}
.home-project-item .proj-cotnent-wrapper{
    max-width: 270px;
    background: rgba(0, 0, 0, 0.7);
    padding: 25px 15px 15px;
    right: -270px;
    transition: all 0.5s ease;
}
.home-project-item:hover .proj-cotnent-wrapper{
    right: 0;
}
.home-project-item .proj-logo-wrapper{
    margin-bottom: 20px;
}
.home-project-item .proj-logo-wrapper .project-logo{
    height: 90px;
    object-fit: contain;
}
.home-project-item .proj-cotnent-wrapper .proj-content .proj-title{
    font-size: 26px;
    line-height: 28px;
    margin-bottom: 0;
}
.home-project-item .proj-cotnent-wrapper .proj-content .proj-location {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
}
.home-project-item .proj-cotnent-wrapper .proj-content .proj-short-desc {
    font-size: 13px;
    line-height: 19px;
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
}

/***************
Blog section css
****************/
.blog-sec{
    padding: 80px 0;
}
.blog-card {
    background-color: var(--white-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.blog-card .blog-detail-body {
    padding: 13px 13px 24px;
}
.blog-card > a {
    max-height: 214px;
    display: block;
    overflow: hidden;
}
.blog-card > a > .blog-thumb{
    min-height: 214px;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: all 0.5s ease;
}
.blog-card > a:hover .blog-thumb{
    transform: scale(1.15);
}
.blog-card .blog-detail-body .blog-title {
    font-size: 20px;
    line-height: 26px;
    color: var(--third-gray-color);
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: bold;
    font-family: var(--font-family-heebo-bold);
}
.blog-card .blog-detail-body .blog-short-desc{
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.blog-card .blog-detail-body :where(.blog-meta-details, a){
    font-size: 12px;
    line-height: 28px;
    color: var(--third-gray-color);
}
.blog-card .blog-detail-body :where(a:hover, a:hover .blog-title){
    color: var(--primary-light-color) !important;
}
.blog-card .blog-detail-body .blog-meta-details .date{
    color: #929EA5;
}

/***********
Activity CSS
************/
.activity-sec {
  padding: 80px 0;
  background-size: 20vw;
  background-repeat: no-repeat;
  background-position: center left;
}
/* .slider-wrap {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    min-height: 420px;
    align-items: stretch;
    position: relative;
    align-items: center;
} */
 .slider-wrap{
    max-width: 90%;
    display: block;
    margin: 0 0 auto;
 }
.activity-slider .owl-item .slide .img-wrapper {
    max-width: 550px;
}
.right-panel {
    position: relative;
}
.slider-circle{
    position: absolute;
    top: 50%;
    right: 20%;
    max-width: 40%;
    width: 100%;
    transform: translateY(-50%) rotate(var(--angle, 0deg));
    transform-origin: 50% 50%;
    transition: transform 500ms ease;
}
.left-panel .slide-content > img {
  max-width: 45px;
  position: absolute;
  right: 36px;
  height: auto !important;
  top: 50%;
  transform: translateY(-50%) !important;
}
/* .activity-slider{
    max-width: 600px;
} */
.activity-slider .slide {
    height: 100%;
}
.activity-slider .owl-item .slide{
    width: 100%;
    max-width: none;
    height: 100%;
    box-sizing: border-box;
    padding: 0 10px;
}
.activity-slider .owl-stage,
.activity-slider .owl-item,
.activity-slider .slide,
.activity-slider .slide img{
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.activity-slider .owl-item img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.right-panel,
.activity-slider .owl-stage-outer,
.activity-slider .owl-item{
    overflow: hidden;
}
.activity-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
/* .left-panel {
    max-width: 550px;
    padding-right: 30px;
    position: relative;
} */
.left-panel {
    max-width: 550px;
    padding-right: 150px;
    position: relative;
}
.left-panel .slide-content{
    max-width: 400px;
    margin: 0 auto;
}

.wheel {
    position: absolute;
    right: -43%;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    width: 300px;
    height: 300px;
    z-index: 0;
}
#rotor {
    transform-origin: 120px 120px;
    transition: transform .4s cubic-bezier(.25, .9, .2, 1);
}
.seg {
    cursor: default;
    pointer-events: none;
}
.seg.active {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .25));
}
.segIcon {
    pointer-events: none;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .35));
}
.mini-nav {
    position: absolute;
    left: 48%;
    bottom: 12px;
    display: flex;
    gap: 16px;
    z-index: 7;
}
.activity-slider .owl-nav{
    position: absolute;
    left: 47%;
    bottom: 12px;
    display: flex;
    gap: 16px;
    z-index: 7;
}
.activity-slider .owl-nav .owl-prev{
    order: 2;
}
.activity-slider .owl-nav .owl-next{
    order: 1;
}
.mini-btn {
    padding: 0;
    border: none;
    background: none;
    font-size: 32px;
    line-height: 32px;
    color: var(--secondary-color);
}
@media(max-width:980px) {
    .slider-wrap {
        grid-template-columns: 1fr;
    }
    .wheel {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 12px 0 0 auto;
    }
    .mini-nav {
        position: relative;
        left: auto;
        bottom: auto;
        margin: 10px 0 0 auto;
    }
}

/*************
Breadcrumb css
**************/
.breadcrumb-sec{
    min-height: 340px;
    padding: 16px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}
.breadcrums-wrapper{
    margin: 5px 0;
}
.breadcrumb-sec::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.4);
}
.breadcrumb-sec h1 {
    font-size: 50px;
    line-height: 56px;
    margin-bottom: 0;
    color: var(--white-color);
    position: relative;
}
.breadcrumbs {
    gap: 10px;
    margin-bottom: 0;
}
.breadcrumbs li {
    color: var(--black-color);
    font-size: 18px;
    line-height: 26px;
    font-weight: var(--font-weight-regular);
    font-family: var(--font-family-heebo-regular);
}
.breadcrumbs li a{
    color: var(--primary-light-color);
}


/****************
About us page css
*****************/
.mission-sec{
    padding: 40px 0 50px;
}
.mission-content .title-area{
    max-width: 825px;
}
.mission-content .title-area p.desc{
    color: var(--third-gray-color);
    margin-bottom: 30px;
}
.journey-sec{
    padding: 40px 0 50px;
}
.journey-sec::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(130deg,rgba(28, 49, 60, 1) 13%, rgba(22, 102, 124, 1) 47%, rgba(26, 48, 60, 1) 98%);
    z-index: 0;
    opacity: 0.8;
}
.timeline {
    position: relative;
    margin: 0 auto;
    max-width: 740px;
}
.timeline::before {
    content: '';
    background-image: url('../images/timeline-vector.svg');
    width: 73px;
    height: 100%;
    background-size: contain;
    background-repeat: repeat-y;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.timeline .timeline-item:nth-child(odd) {
    margin-right: auto;
}
.timeline .timeline-item:nth-child(even) {
    margin-left: auto;
    justify-content: end;
}
.timeline-item {
    position: relative;
    /* margin-bottom: 40px; */
    max-width: 200px;
    min-height: 123px;
    height: 123px;
    display: flex;
    align-items: center;
}
.timeline .timeline-item:nth-child(even)::before{
    /* left: -155px; */
    left: -77%;
    right: unset;
}
.timeline-item::before {
    content: '';
    position: absolute;
    /* right: -155px; */
    right: -77%;
    top: 67px;
    width: 65px;
    height: 2px;
    background-color: var(--white-color);
    transform: translateY(-50%);
}
.timeline-icon {
    position: absolute;
    right: -90px;
    top: 36px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
.timeline .timeline-item:nth-child(even) .timeline-icon{
    left: -90px;
    right: unset;
}
.timeline-icon img {
    width: 100%;
    height: auto;
}
.timeline-content .year{
    font-size: 18px;
    color: var(--golden-color);
    margin-bottom: 10px;
}
.timeline-content p {
    font-size: 16px;
    color: var(--white-color);
}
.timeline-content p.number {
    color: var(--golden-color);
    font-family: var(--font-family-PoltawskiNowy-Regular);
    font-weight: var(--font-weight-regular);
    font-size: 53px;
    line-height: 62px;
}
.value-sec {
    padding: 80px 0;
}
.value-sec .title-area {
    max-width: 630px;
}
.value-sec .title-area .title {
    font-weight: var(--font-weight-light);
    font-family: var(--font-family-heebo-light);
    margin-bottom: 60px;
}
.value-sec .title-area .title > span{
    color: var(--primary-light-color);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family-heebo-bold);
}
.value-list .value-item:last-child {
    margin-bottom: 0;
}
.value-list .value-item {
    margin-bottom: 50px;
}
.value-list .value-item.left {
    flex-direction: row-reverse;
    padding-right: 20px;
}
.value-list .value-item.right {
    flex-direction: row;
    padding-left: 20px;
}
.value-list .value-item.left .value-content-wrapper {
    margin-left: -120px;
    z-index: 1;
}
.value-list .value-item.right .value-content-wrapper {
    margin-right: -120px;
    z-index: 1;
}
.value-list .value-content-wrapper {
    padding: 45px 30px 30px;
    background-color: var(--primary-color);
    max-width: 440px;
    width: 100%;
}
.value-img-wrapper {
    overflow: hidden;
}
.value-img-wrapper:hover > img{
    transform: scale(1.08);
}
.value-list .value-img-wrapper > img {
    min-height: 460px;
    position: relative;
    object-fit: cover;
    object-position: center center;
    max-width: 1200px;
    transition: all 0.5s ease;
}
.value-list .value-content-wrapper .number {
    font-size: 90px;
    line-height: 60px;
    margin-bottom: 10px;
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family-heebo-bold);
}
.value-list .value-content-wrapper .title {
    font-size: 34px;
    line-height: 38px;
    margin-bottom: 10px;
}
.value-list .value-content-wrapper .desc {
    font-size: 16px;
    line-height: 24px;
}
.team-sec{
    padding-bottom: 35px;
}
.team-sec .quote-icon {
    margin-bottom: 40px;
}
.team-row{
    max-width: 1240px;
}
.team-sec .title-area{
    max-width: 835px;
    margin-bottom: 60px;
}
.team-sec .title-area .desc{
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}
.team-sec .title-area .founder {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 0;
    color: var(--dark-gray-color);
}
.team-row > .row > .col-12 {
    margin-bottom: 35px;
}
.team-profile {
    overflow: hidden;
}
.team-profile > img {
    transition: all 0.5s ease;
    max-height: 338px;
}
.team-wrapper:hover .team-profile > img {
    transform: scale(1.1);
}
.team-row .team-wrapper .team-detail-wrapper {
    padding: 10px 16px;
}
.team-row .team-wrapper .team-detail-wrapper::before{
    content: '';
    width: 100%;
    height: 0;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s ease;
}
.team-row .team-wrapper:hover .team-detail-wrapper::before{
    height: 100%;
}
.team-row .team-wrapper .team-detail-wrapper .team-sep {
    width: 30px;
    height: 8px;
    background: var(--primary-color);
    margin: 0 auto 8px;
}
.team-row .team-wrapper:hover .team-sep{
    background: var(--white-color);
    position: relative;
}
.team-row .team-wrapper .team-detail-wrapper .name {
    color: var(--primary-color);
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 8px;
}
.team-row .team-wrapper .team-detail-wrapper .role {
    color: var(--secondary-color);
    font-size: 18px;
    line-height: 22px;
}
.team-row .team-wrapper:hover :where(.name, .role){
    color: var(--white-color) !important;
    position: relative;
}

/****************
Projects page css
*****************/
.projects-tab-sec{
    padding: 40px 0 90px;
}
.projects-tab-sec .title-area{
    max-width: 680px;
    margin-bottom: 60px;
}
.projects-tab-sec .title-area .desc{
    font-size: 24px;
    line-height: 34px;
    font-weight: var(--font-weight-regular);
    font-family: var(--font-family-heebo-regular);
    color: var(--third-gray-color);
    margin-bottom: 20px;
}
.project-tabs > ul{
    margin-bottom: 50px;
    gap: 10px 20px;
}
.project-tabs > ul > .nav-item .nav-link{
    font-size: 24px;
    line-height: 24px;
    font-weight: var(--font-weight-regular);
    font-family: var(--font-family-heebo-regular);
    color: var(--secondary-color);
    border-radius: 50px;
    border: 1px solid rgba(55, 79, 91, 0.41);
    padding: 10px 30px;
    min-width: 140px;
    text-align: center;
}
.project-tabs > ul > .nav-item .nav-link.active, .project-tabs > ul > .nav-item .nav-link:hover{
    color: var(--white-color);
    background-color: var(--coffee-color);
    border-color: var(--coffee-color);
}
.projects-list .project-item :where(.project-img-wrapper, .project-img-wrapper > img){
    height: 315px !important;
    object-fit: cover;
    object-position: center center;
    transition: all 0.5s ease;
}
.projects-list .project-item:hover .project-img {
    transform: scale(1.1);
}
.projects-list .project-item .category-name {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--project-golden-color);
    font-size: 16px;
    line-height: 22px;
    padding: 7px 18px;
    color: var(--white-color);
    z-index: 2;
}
.projects-list .project-item .bg-secondary-color{
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}
.projects-list .project-item .project-link .bg-secondary-color:hover{
    color: var(--secondary-color) !important;
    background: none !important;
}
.projects-list .project-item .bg-primary-light-color{
    background: var(--primary-light-color);
    border-color: var(--primary-light-color);
}
.projects-list .project-item .project-link .bg-primary-light-color:hover{
    color: var(--primary-light-color) !important;
    background: none !important;
}
.projects-list .project-item .bg-primary-color{
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.projects-list .project-item .project-link .bg-primary-color:hover{
    color: var(--primary-color) !important;
    background: none !important;
}
.projects-list .project-item .project-link{
    height: fit-content;
    position: absolute;
    bottom: 0;
    left: 4px;
    width: 30%;
    z-index: 2;
}
.projects-list .project-item{
    position: relative;
    transition: top 0.5s ease, bottom 0.5s ease;
}
/* .projects-list .project-item .project-content {
    position: absolute;
    top: 81%;
    right: 0;
    padding: 25px 10px 15px 0;
    transform: translateY(4px);
    transition: transform 0.6s ease;
}
.projects-list .project-item:hover .project-content {
    top: unset;
    bottom: -1px;
    transform: translateY(0);
} */
.projects-list .project-item .project-content {
    position: absolute;
    right: 0;
    padding: 25px 10px 15px 0;
    transition: all 0.7s ease;
    bottom: -25%;
}
.projects-list .project-item:hover .project-content,
.projects-list .project-item[data-project-id="94"]:hover .project-content{
    bottom: -1px;
}
.projects-list .project-item[data-project-id="94"] .project-content {
    bottom: -23%;
}
.projects-list .project-item[data-project-id="94"] .project-content .proj-title{
    margin-bottom: 10px;
}
.projects-list .project-item .project-content-wrap{
    width: 64%;
    position: relative;
}
.projects-list .project-item .project-content-wrap .project-link{
    width: 30%;
}
.projects-list .project-item .project-content .proj-title {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 16px;
    font-weight: var(--font-weight-mediun);
    font-family: var(--font-family-heebo-bold);
}
.projects-list .project-item .project-content .proj-short-desc {
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
.projects-list .project-item .project-content::before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85)20%, rgb(0, 0, 0) 100%);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}
.projects-list .project-item .project-link .project-footer-btn-text {
    font-size: 16px;
    line-height: 22px;
    color: var(--white-color);
}
.projects-list .project-item {
  overflow: hidden;
}

/**********************
Project detail page css
***********************/
.project-detail-bread{
    min-height: 600px;
}
.project-detail-bread .project-logo{
    max-width: 240px;
}
.project-aemenity-row{
    padding-right: 40px;
}
.about-project-sec {
    padding: 65px 0 100px;
}
.project-aemenity {
    background: rgba(51, 126, 147, 0.2);
    border-radius: 20px;
    padding: 20px 20px;
    min-height: 170px;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-content: center;
}
.project-aemenity > * {
    display: block;
    width: 100%;
}
.project-aemenity .title{
    font-size: 40px;
    line-height: 45px;
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family-heebo-bold);
    color: var(--primary-color);
    margin-bottom: 12px;
}
.project-aemenity .desc{
    font-size: 20px;
    line-height: 22px;
    color: var(--primary-color);
    font-weight: var(--font-weight-regular);
    font-family: var(--font-family-heebo-regular);
}
.about-project-sec .global-content-wrapper .title-area .title{
    font-size: 40px;
    line-height: 46px;
    margin-bottom: 20px;
}
.postid-94 .about-project-sec .global-content-wrapper .title-area .title,
.postid-94 .breadcrumbs li:last-child,
.projects-list .project-item[data-project-id="94"] .project-content .proj-title,
.home-project-wrapper .col-12[data-project-id="94"] .proj-content .proj-title{
    direction: ltr;
    text-align: right;
}
.about-project-sec .global-content-wrapper .title-area .desc{
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
}
.specification-list .specification-item{
    margin-bottom: 79px;
    min-height: 500px;
}
.specification-list .specification-item .specification-img-wrapper > img{
    object-fit: cover;
    object-position: center center;
}
.specification-list .specification-item .specification-img-wrapper a{
    position: absolute;
    left: 0;
    top: 0;
    width: 45px;
    height: 45px;
    background-color: var(--third-gray-color);
    font-size: 24px;
    line-height: 45px;
    text-align: center;
    color: var(--white-color);
}
.specification-list .specification-item.left {
    flex-direction: row;
}
.specification-list .specification-item.right {
    flex-direction: row-reverse;
}
.specification-list .specification-content-wrapper{
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    padding: 40px 70px 40px 100px;
    background: #374F5B;
    color: #fff;
}
.specification-list .specification-item.left .specification-content-wrapper{
    padding-left: 0 !important;
    padding-right: 100px !important;
}
.specification-list .specification-content-wrapper .desc {
    font-size: 16px;
    line-height: 24px;
}
.specification-list .specification-content-wrapper .title {
    font-size: 34px;
    line-height: 38px;
    margin-bottom: 10px;
}
.specification-list .specification-content-wrapper .desc > p:not(:last-child) {
    margin-bottom: 20px;
}

.specification-list .specification-content-wrapper::before {
    content: '';
    width: 100vw;
    height: 100%;
    background-color: var(--bg-color);
    position: absolute;
    top: 0;
    z-index: -1;
}
.specification-item.right .specification-content-wrapper::before {
    right: -100vw;
    left: unset;
}
.specification-item.left .specification-content-wrapper::before {
    left: -100vw;
    right: unset;
}
.project-detail-slider .slick-track{
    display: flex !important;
}
.project-detail-slider .slick-track .slick-slide{
    height: inherit !important;
}
.project-detail-slider .slick-slide > img{
    object-fit: cover;
    object-position: center center;
    max-height: 600px;
}
.project-detail-slider .slick-slide {
    margin: 0 10px;
}
.project-detail-slider .slick-arrow::before{
    content: none !important;
}
.project-detail-slider .slick-prev,
.project-detail-slider .slick-next {
    border: none;
    color: #fff;
    font-size: 44px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.project-detail-slider .slick-prev {
  left: 22%;
}
.project-detail-slider .slick-next {
  right: 22%;
}
.project-detail-slider{
    margin-bottom: 10px;
}
.project-slider-sec {
    padding-bottom: 70px;
}

/**** Tenant Price CSS ****/
.tenant-price-content .title-area{
    max-width: 830px;
}
.tenant-price-content .title-area .title{
    font-size: 40px;
    line-height: 48px;
}
.tenant-price-content .title-area .desc{
    font-size: 20px;
    line-height: 28px;
}
.eligible-sec {
  padding: 40px 0;
}
.eligible-sec .title-area .subtitle{
    font-size: 40px;
    line-height: 48px;
    color: var(--secondary-color);
    margin-bottom: 40px;
}
.eligible-sec .title-area .subtitle > strong {
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family-heebo-bold);
}
.eligible-box {
    padding: 40px 30px;
}
.eligible-box > img{
    margin-bottom: 26px;
}
.eligible-box .desc{
    font-size: 20px;
    line-height: 26px;
    color: var(--white-color);
}
.tenant-project-sec {
    padding: 40px 0;
}
.tenant-project-row.projects-list .project-item .project-content-wrap{
    width: 75%;
}
.tenant-project-row.projects-list .project-item .project-link{
    left: 0px;
    width: fit-content;
}
.tenant-project-row.projects-list .project-item .category-name{
    background-color: var(--primary-color);
}
.tenant-project-row.projects-list .project-item :where(.project-img-wrapper, .project-img-wrapper > img) {
    height: 480px !important;
}
.tenant-project-row.projects-list .project-item .project-content{
    top: unset;
    bottom: -12%;
}
.tenant-project-row.projects-list .project-item:hover .project-content {
    bottom: 0;
    top: unset;
}
.tenant-project-row.projects-list .project-item .project-content .proj-short-desc{
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
}
.tenant-project-row.projects-list .project-item:hover .project-content{
    top: unset;
}
.tenant-faq-sec {
    padding-bottom: 100px;
}
.faq-accordion .accordion-button{
    font-size: 20px;
    line-height: 30px;
    font-weight: var(--font-weight-mediun);
    font-family: var(--font-family-heebo-medium);
    color: var(--secondary-color);
    padding: 16px 20px;
}
.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-button:focus{
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}
.faq-accordion .accordion-button:focus{
    box-shadow: none;
}
.faq-accordion .accordion-body{
    font-size: 18px;
    line-height: 28px;
    font-weight: var(--font-weight-regular);
    font-family: var(--font-family-heebo-regular);
    color: var(--secondary-color);
    padding-top: 0;
}
.faq-accordion .accordion-item:not(:last-child){
    margin-bottom: 6px;
}
.faq-accordion .accordion-item, .faq-accordion .accordion-item .accordion-button {
    background-color: #F1F5F8 !important;
    border: none;
    border-radius: 0 !important;
}

/**** Contact Page CSS ****/
.contact-form::before{
    content: none;
}
.contact-form input, .contact-form textarea, .contact-form select{
    background-color: #F1F5F8 !important;
}
#project_select {
    direction: rtl;
    text-align: right;
}
#project_select option {
    direction: rtl;
    text-align: right;
}
.contact-form .wpcf7 form .wpcf7-response-output{
    color: inherit;
}
.contact-details-row{
    max-width: 1170px;
}
.contact-detail-box {
    background-color: var(--white-color);
    box-shadow: 0 3px 11px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 30px 50px 40px;
}
.contact-detail-box a {
    font-size: 21px;
    line-height: 30px;
    color: var(--primary-color);
}
.google-map-wrapper {
    padding-top: 70px;
}
.google-map-wrapper iframe{
    width: 100%;
    min-height: 400px;
    margin-bottom: -7px;
}

/* Blog page css */
.blog-page-sec-list {
    max-width: 1125px;
}
.nocomments {
    display: none;
}
.banner-content-area{
    z-index: 2;
}
.banner-content-area .page-title{
    font-size: 53px;
    line-height: 63px;
    margin-bottom: 13px;
}
.banner-content-area .page-desc{
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 35px;
}

/***** Blog detail page css start *****/
.blog-content-sec{
    padding: 60px 0;
}
.blog-content-area{
    max-width: 1000px;
}
.blog-content-area .blog-desc-wrapper p{
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 16px;
    color: var(--black-color);
    text-align: justify;
}
.blog-content-area .blog-desc-wrapper figure {
    width: 100% !important;
    height: auto;
    object-fit: cover;
    object-position: center center;
    border: 1px solid var(--primary-color);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.blog-content-area .blog-desc-wrapper figure > img{
    width: 100%;
    margin-bottom: 5px;
    border-radius: 10px;
}
.blog-content-area .blog-desc-wrapper p a {
    color: var(--primary-color);
    text-decoration: underline;
}
.blog-content-area .blog-desc-wrapper p:last-child{
    margin-bottom: 0px;
}

/**** News & Event Page CSS ****/
.news-event-sec {
    padding: 40px 0 80px;
}
.news-event-title {
    background-color: var(--primary-color);
    padding: 10px 16px;
    margin-bottom: 20px;
}
.news-event-title.golden{
    background-color: var(--golden-color);
}
.news-event-title .title {
    color: var(--white-color);
    font-size: 40px;
    line-height: 42px;
}
.news-wrapper {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    background-color: var(--white-color);
    margin-right: 20px;
    height: 100%;
    padding-bottom: 20px;
}
.news-list-wrapper {
    padding: 0 14px 0 20px;
}
.news-list-wrapper .news-item:not(:last-child){
    margin-bottom: 16px;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 16px;
}
.news-list-wrapper .news-item .date-wrapper {
    gap: 16px;
    margin-bottom: 10px;
}
.news-list-wrapper .news-item .date-wrapper .date {
    font-size: 18px;
    line-height: 22px;
    font-family: var(--font-family-heebo-semibold);
    font-weight: var(--font-weight-semibold);
    color: var(--third-gray-color);
}
.news-list-wrapper .news-item .desc {
    font-size: 16px;
    line-height: 20px;
    font-family: var(--font-family-heebo-regular);
    font-weight: var(--font-weight-regular);
    color: var(--third-gray-color);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    text-align: justify;
}
.event-img-wrapper {
    max-width: 370px;
    width: 100%;
    height: 250px;
}
.event-img-wrapper > a > img{
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.event-cotnent-wrapper {
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}
.event-list-wrapper .event-list-item {
    box-shadow: 0 2px 18px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}
.event-list-wrapper .event-list-item:last-child{
    margin-bottom: 0px;
}
.event-cotnent-wrapper .date-wrapper .day {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 12px;
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family-heebo-semibold);
    font-size: 42px;
    line-height: 36px;
    margin-bottom: 4px;
}
.event-cotnent-wrapper .date-wrapper .month {
    font-weight: var(--font-weight-regular);
    font-family: var(--font-family-heebo-regular);
    font-size: 20px;
    line-height: 20px;
    color: var(--primary-color);
}
.event-cotnent-wrapper .title {
    max-width: 380px;
    padding: 0 16px;
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family-heebo-semibold);
    font-size: 32px;
    line-height: 38px;
    color: var(--third-gray-color);
}

/**** Lightbox css start ****/
.lb-outerContainer{
    border-radius: 20px !important;
    overflow: hidden;
}
.lb-nav a{
    width: 38px !important;
    height: 38px;
    background-position: center center !important;
    background-size: 14px !important;
    border-radius: 50% !important;
    background-color: var(--white-color) !important;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    opacity: 1 !important;
}
.lb-nav a.lb-next{
    margin-right: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.lb-nav a.lb-prev{
    margin-left: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.lightboxOverlay{
    max-width: 100%;
    background-color: rgba(0, 0, 0, 0.6) !important;
    opacity: 1 !important;
    backdrop-filter: blur(10px);
}
.lightbox{
    position: fixed !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}
.lb-details{
    display: none;
}
.lb-data{
    top: 10px;
    position: absolute;
    display: block;
    z-index: 99;
    width: 45px !important;
    height: 45px;
    opacity: 1;
    margin-right: 7px;
}
.lb-data .lb-close{
    width: 38px !important;
    height: 38px !important;
    background-position: center center !important;
    background-size: 16px !important;
    border-radius: 50% !important;
    background-color: var(--white-color) !important;
    opacity: 1 !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.lightbox .lb-image{
    border: 0 !important;
}


/**** Commercial Real Estate CSS ****/
.commercial-content .title-area {
    max-width: 860px;
}
.commercial-properties-wrapper {
    padding-top: 50px;
}
.commercial-content-wrapper{
    height: 470px;
    overflow: hidden;
}
.commercial-content-wrapper .commercial-img-wrap::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    transition: all 0.4s ease;
    z-index: 1;
}
.commercial-content-wrapper:hover .commercial-img-wrap::before{
    background: rgba(0, 0, 0, 0.7);
}
.commercial-content-wrapper img {
    object-fit: cover;
    object-position: center center;
    transition: all 0.4s ease;
    z-index: 0;
    position: relative;
}
.commercial-content-wrapper:hover .commercial-img-wrap img{
    transform: scale(1.1);
}
.commercial-content-wrapper .detail-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}
.commercial-content-wrapper .detail-wrapper > p {
    font-size: 30px;
    line-height: 34px;
    font-family: var(--font-family-heebo-semibold);
    font-weight: var(--font-weight-semibold);
    color: var(--white-color);
}

/**** 404 page css ****/
.error-section{
    padding: 80px 0;
}
.error-section .error-content{
    max-width: 570px;
    position: relative;
}
.error-content > p {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 20px;
}
@media(max-width: 767px){
    .error-section{
        padding: 40px 0;
    }
}
.privacy-checkbox .wpcf7-list-item{
    display: flex;
    margin-left: 0;
}
.privacy-checkbox input{
	width: 18px;
    min-width: 18px;
    margin-left: 10px;
    min-height: 18px;
}
.privacy-checkbox.first > p{
    display: flex;
    align-items: center;
}
.privacy-checkbox.first .wpcf7-form-control-wrap .wpcf7-list-item-label {
    display: none;
}
.privacy-checkbox .wpcf7-list-item-label{
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
}
.privacy-checkbox .wpcf7-list-item-label a{
    color: #fff;
    text-decoration: underline;
}
.privacy-checkbox .wpcf7-list-item-label a:hover{
    color: var(--primary-light-color);
}


.privacy-banner{
    min-height: 360px;
    padding: 16px;
    margin-bottom: 60px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}
.privacy-banner::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
}
.page-content{
    margin-bottom: 80px;
}
.page-content ul {
    list-style: disc;
    margin-right: 40px;
}
.page-content ol {
    list-style: number;
    margin-right: 20px;
}
.page-content ol li::marker {
  font-weight: bolder;
}
.page-content .privacy-num-list {
  margin-right: 26px;
}
.page-content ul ul {
    list-style: circle;
}
.page-content :where(ul li, ol li){
    margin-bottom: 10px;
}
.page-content h2, .page-content h3 {
    margin-top: 26px;
}
.page-content p {
    margin-bottom: 16px;
    line-height: 28px;
}
.page-content p a{
    color: var(--primary-color);
}
.privacy-banner h1 {
    font-size: 50px;
    line-height: 56px;
    margin-bottom: 0;
    color: var(--white-color);
}
.privacy-banner-content{
    z-index: 9;
    position: relative;
}
.privacy-banner .breadcrumbs {
    gap: 10px;
    margin-bottom: 0;
}
.privacy-banner .breadcrumbs li {
    color: var(--white-color);
    font-size: 24px;
    line-height: 24px;
    font-weight: var(--font-weight-semibold);
}
.privacy-banner .breadcrumbs li a{
    color: var(--primary-color);
}
.privacy-links {
    gap: 20px;
    margin-top: 16px;
}
.privacy-links a{
    color: var(--primary-color);
    text-decoration: underline;
}
.page-content li a{
    color: var(--primary-color);
    text-decoration: underline;
}
.page-id-316 .privacy-checkbox .wpcf7-list-item-label, .page-id-316 .privacy-checkbox .wpcf7-list-item-label a{
    color: var(--black-color);
}
.privacy-checkbox.first .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-not-valid {
    padding-bottom: 16px !important;
    display: block;
}
.privacy-checkbox.first .wpcf7-not-valid-tip{
    position: absolute;
    top: 20px;
    width: 100%;
    min-width: fit-content;
    text-wrap: nowrap;
}



/**** Cookie CSS ****/
.cky-notice > .cky-title{
    display: none !important;
}
.cky-notice .cky-notice-group{
    justify-content: center !important;
    gap: 0 2vw !important;
}
.cky-notice .cky-notice-group :where(.cky-notice-des > p, .cky-notice-des a){
    color: #000 !important;
    font-size: 0.9vw;
    line-height: 3vh;
}
.cky-consent-container{
    max-width: 100%;
    right: 0;
}
.cky-consent-container .cky-consent-bar{
    padding: 1vh 1vw !important;
    background: rgba(255, 255, 255, 0.84) !important;
    border: none !important;
    box-shadow: none;
}
.cky-btn{
    font-size: 1vw !important;
    line-height: 2.5vh !important;
    padding: 0.8vh 0.8vw !important;
    margin: 0 !important;
    border-radius: 0 !important;
    color: #fff !important;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    font-family: var(--font-family-primary) !important;
    font-weight: var(--font-weight-bold) !important;
}

/****************
Privacy Modal CSS
*****************/
body.privacy-modal-open .privacy-modal-wrapper{
    height: 100vh;
    background: transparent;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}
.privacy-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85vw;
    background-color: #201f1f;
    height: 100%;
    max-height: 85vh;
    padding: 8vh 5vw 8px 4vw;
    z-index: 9999999;
    overflow: auto;
    scrollbar-width: none;
}
.privacy-wrapper .privacy-content{
    overflow-y: auto;
    height: auto;
}
.privacy-wrapper .privacy-content a{
    color: var(--white-color);
    text-decoration: underline;
}
.privacy-wrapper .privacy-content h2 {
    margin-bottom: 3vh;
    font-size: 1.4vw;
    line-height: 2.6vh;
}
.privacy-wrapper .privacy-content :where(p, li, a){
    margin-bottom: 1.3vh;
    font-size: 0.9vw;
    line-height: 2.6vh;
}
.privacy-close-btn{
    position: absolute;
    top: 2vh;
    right: 1.8vw;
}
.privacy-close-btn > img{
    object-fit: contain;
    object-position: center center;
    width: 2vw;
    height: auto;
}


.copy-right-wrapper{
    border-top: 1px solid #ffffff45;
}
.copy-right-wrapper p{
        font-size: 14px;
}