/* Banner.css */

.swiper-circular {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto !important;
    left: 50% !important;
    transform: translateX(-50%);
    padding: 10px 15px;
    border-radius: 99px;
    border: 1px solid var(--bic-border-color);
    background: radial-gradient(50% 50% at 50% 50%, rgba(249, 249, 249, 0.80) 18.75%, rgba(215, 215, 215, 0.64) 100%);
    backdrop-filter: blur(5px);
    bottom: 60px !important;
}

.swiper-circular__svg {
    width: 100%;
    height: 100%;
}

.swiper-circular__progress {
    stroke: var(--bic-primary-color);
    stroke-dasharray: var(--stroke-dasharray);
    stroke-dashoffset: var(--stroke-dashoffset);
    stroke-linecap: round;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: center;
    transform-origin: center
}

.swiper-circular .swiper-pagination-bullet {
    display: block;
    position: relative;
    width: 44px;
    height: 44px;
    margin: 0 !important;
    background: transparent;
    border: none;
    opacity: 1
}

.swiper-circular .swiper-pagination-bullet span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff
}

.swiper-circular .swiper-pagination-bullet-active {
    background: transparent;
    border: none
}

.slide-change-active .swiper-circular__progress,
.swiper-pagination-bullet.swiper-pagination-bullet-active .swiper-circular__progress {
    -webkit-animation: circle-filling 3000ms linear;
    animation: circle-filling 3000ms linear
}

.swiper-circular .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bic-secondary-color);
    width: 16px;
    height: 16px;
    border-radius: 100%;
    transition: var(--bic-transition);
}

.swiper-circular .swiper-pagination-bullet-active::before {
    background: var(--bic-primary-color);
}


@-webkit-keyframes circle-filling {
    0% {
        stroke-dashoffset: var(--stroke-dashoffset)
    }

    100% {
        stroke-dashoffset: 0
    }
}

@keyframes circle-filling {
    0% {
        stroke-dashoffset: var(--stroke-dashoffset)
    }

    100% {
        stroke-dashoffset: 0
    }
}

.banner .slide-wrap .swiper {
    padding: 0;
}

.banner-item__inner {
    position: relative;
}

/* @media only screen and (min-width: 1025px) {

    .banner-item__image::after {
        content: "";
        position: absolute;
        z-index: 10;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(0, 0, 0, .7) 0, rgb(0 0 0 / 20%) 10%, rgba(0, 0, 0, 0) 100%);
    }

} */

.banner-item__info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: var(--bic-container-width);
}

.banner-item__info-wrap{
    position: relative;
    padding: 0 var(--bic-grid-gap);
    display: flex;
    align-items: center;
}


.banner-item__icon {
    flex: 0 0 auto;
    width: 100px;
    margin-right: 30px;
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
    transition: var(--bic-transition);
    transition-delay: 0.25s;
}

.sec-head__title .banner-item__title.title {
    font-size: 96px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    background: linear-gradient(270deg, #F68F00 0%, #FFB742 50%, #FF9400 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
    transition: all .5s ease-in-out;
    transition-delay: 0.25s;
}

.banner-item__sub-title {
    color: #FFF;
    font-size: 40px;
    font-weight: 500;
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
    transition: all .5s ease-in-out;
    transition-delay: 0.5s;
}

.banner-item.swiper-slide-active .sec-head__title .banner-item__title.title,
.banner-item.swiper-slide-active .banner-item__sub-title,
.banner-item.swiper-slide-active .banner-item__icon {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@media (min-width: 577px){

    .banner-style-2 .banner-item__info {
        max-width: 100%;
        left: unset;
        transform: translateY(-50%);
        right: 0;
    }

}

.banner-style-2 .banner-item__info-wrap{
    justify-content: flex-end;
    text-align: right;
    padding: 0 44px;
}

.banner-style-2 .sec-head__title .banner-item__title.title {
    font-family:sans-serif !important;
    font-size: 70px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 16px;
    background: transparent;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: var(--bic-secondary-color);
}

.banner-style-2 .sec-head__title .banner-item__title.title span:first-child {
    -webkit-text-stroke-color: #fff;
}

.banner-style-2 .banner-item__sub-title {
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
}

.banner-style-2 .banner-item__sub-title span {
    display: block;
    color: #6D371A;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
}

/* About.css */

.about {
    overflow: hidden;
    background: rgba(248, 156, 28, 0.08);
}

.about .sec-head__title .title-before {
    bottom: 60px;
}

.about .sec-head .sec-descript {
    max-width: 810px;
    margin-top: 40px;
}

.ContentBody.about__descript ul {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
}

.ContentBody.about__descript ul li {
    text-transform: uppercase;
    font-weight: bold;
    color: var(--bic-secondary-color);
}

.ContentBody.about__descript ul li:not(:last-child) {
    margin-bottom: 30px;
}

.ContentBody.about__descript ul li span.icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1;
}

.ContentBody.about__descript ul li span.icon {
    margin-right: 10px;
}

@media (min-width: 1025px) {
    .about .col-left {
        -ms-flex: 0 0 62%;
        flex: 0 0 62%;
        max-width: 62%;
    }

    .about .col-right {
        -ms-flex: 0 0 38%;
        flex: 0 0 38%;
        max-width: 38%;
    }
}

/* Services.css */

.services {
    position: relative;
    overflow: hidden;
    background-image: url(https://thaihomes.vn/wp-content/themes/thaihomes/assets/images/background_services.webp), var(--bic-gradient-color);
}

.circle-spin {
    position: absolute;
    top: 55%;
    left: 22%;
    transform: translate(-50%, -50%);
    width: 1343px;
    height: 1343px;
}

.circle-spin__border {
    width: 100%;
    height: 100%;
    border: 1px solid var(--bic-secondary-color);
    border-radius: 50%;
}

.circle-spin-item {
    position: absolute;
    width: 39px;
    height: 39px;
    background: var(--bic-secondary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
}

.circle-spin-item--counterclockwise {
    width: 75px;
    height: 75px;
}

.service-title::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -55%;
    background: url(https://thaihomes.vn/wp-content/themes/thaihomes/assets/images/icon_circle1.svg) no-repeat center;
    width: 762px;
    height: 762px;
    background-size: 100% 100%;
}

.service-title__logo img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.service-title__text {
    color: var(--bic-secondary-color);
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 8px;
}

.service-title__text span {
    display: block;
    color: #fff;
    margin-top: 5px;
}

.service-list {
    --thumbs: 240px;
    --thumbs-height: 580px;
    --images-height: 500px;
    --gap: 120px;
    display: flex;
    align-items: center;
    gap: var(--gap);
    padding-left: 60px;
}

.service-list__thumbs {
    flex: 0 0 auto;
    width: var(--thumbs);
    height: var(--thumbs-height);
    position: relative;
}

.circle {
    background: var(--bic-secondary-color);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--bic-transition);
    position: absolute;
    left: 0;
    opacity: 0;
    pointer-events: none;
}

.circle.active {
    left: 30px;
    width: 200px;
    height: 200px;
    z-index: 2;
}

.circle.active::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    border: 2px solid #fff;
    border-radius: 100%;
}

.circle::after {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(var(--gap) * -1 - 10px);
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #fff;
    z-index: 1;
    transition: var(--bic-transition);
}

.circle.active::after {
    width: var(--gap);
}

.circle__text {
    background: linear-gradient(270deg, #F68F00 0%, #FFB742 50%, #FF9400 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

.circle.active .circle__text {
    font-size: 28px;
}

.circle.pos-0 {
    top: 0;
    opacity: 1;
    pointer-events: auto;
}

.circle.pos-1 {
    top: 190px;
    opacity: 1;
    pointer-events: auto;
}

.circle.pos-2 {
    top: 430px;
    opacity: 1;
    pointer-events: auto;
}

.service-list__images {
    position: relative;
    width: 100%;
}

.service-list__images-list {
    position: relative;
    background: var(--bic-gradient-color);
    overflow: hidden;
    height: var(--images-height);
    border-radius: var(--bic-border-radius);
    border: 2px solid #fff;
}

.service-item {
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
}

.service-item.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 10;
}

.service-item__inner {
    display: flex;
    position: relative;
    align-items: center;
    padding-left: 45px;
    width: 100%;
    height: 100%;
    border-radius: var(--bic-border-radius);
}

.service-item__info {
    max-width: 360px;
}

.service-item__title {
    color: var(--bic-secondary-color);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
}

.service-item__title a {
    color: currentColor;
}

.service-item__descript {
    color: #fff;
    margin: 8px 0;
}

.service-item__more a {
    text-transform: uppercase;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

@media only screen and (min-width: 1537px) {
    .service-item__more a {
        font-size: 16px;
    }
}

.service-list__nav-item {
    --background-color: transparent;
    --background-hover-color: transparent;
    --color-text: #fff;
    --color-hover-text: #fff;
    --btn-width: 38px;
    --btn-height: 38px;
    position: absolute;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 100%;
    width: var(--btn-width);
    height: var(--btn-height);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.service-list__nav-item svg {
    stroke-width: 3px;
    width: 38px;
    height: 38px;
}

#service-prevBtn {
    top: calc(var(--btn-width)*-1 - 10px);
}

#service-nextBtn {
    bottom: calc(var(--btn-width)*-1 - 10px);
}

.service-list__nav button:hover {
    background: #cc7a00;
}

/* Projects.css */

.project .sec-head {
    margin-bottom: 40px;
    margin-left: var(--bic-grid-gap);
}

@media only screen and (min-width: 1025px) {
    .project .sec-head {
        margin-left: calc((100vw - 8px - var(--bic-container-width)) / 2 + var(--bic-grid-gap));
    }
}

.project-slide__images {
    position: relative;
    overflow: hidden;
    border-top-right-radius: var(--bic-border-radius);
    border-bottom-right-radius: var(--bic-border-radius);
}

.project-item__image__achie {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 10%;
    width: 8%;
}

.project-slide__info {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 1;
    width: 100%;
}

.project-slide__info__inner {
    display: block;
    position: relative;
    max-width: 70%;
    margin: 0 auto;
    padding: 30px;
    border-radius: var(--bic-border-radius);
    border: 1px solid var(--bic-border-color);
    background: radial-gradient(50% 50% at 50% 50%, rgba(249, 249, 249, 0.80) 18.75%, rgba(215, 215, 215, 0.64) 100%);
    backdrop-filter: blur(5px);
}

.project-slide__info:hover .swiper-control-absolute .swiper-next {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    right: calc(var(--btn-width)*-1 - 10px);
}

.project-slide__info:hover .swiper-control-absolute .swiper-prev {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    left: calc(var(--btn-width)*-1 - 10px);
}

.project-slide__info .swiper-pagination {
    position: absolute;
    width: 300px !important;
    margin: 0;
    bottom: 0;
    right: 0;
    left: unset !important;
    transform: none !important;
}

.project-slide__info .swiper-pagination-bullet {
    width: 90px;
    height: 90px;
    background-size: cover;
    border-radius: var(--bic-border-radius);
    border-color: transparent;
    border-width: 2px;
}

.project-slide__info .swiper-pagination-bullet-active {
    border-color: var(--bic-primary-color);
}

.project-item__info {
    position: relative;
    max-width: 420px;
}

.project-item__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--bic-secondary-color);
    margin-bottom: 10px;
}

.project-item__title a {
    color: currentColor;
}

.project-item__meta-item {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--bic-secondary-color);
}

.project-item__meta-item.developing {
    color: #4A90E2;
}

.project-item__meta-item.preparing {
    color: #F5A623;
}

.project-item__meta-item.sale_preparing {
    color: #9B59B6;
}

.project-item__meta-item.completed {
    color: #27AE60;
}

.project-item__meta-item .icon {
    color: var(--bic-primary-color)
}

.project-item__meta-item svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    margin-right: 8px;
}

.project-item__descript {
    margin: 8px 0;
}

.project-item__link a {
    color: var(--bic-text-color);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
}

@media only screen and (min-width: 1537px) {
    .project-item__link a {
        font-size: 16px;
    }
}

body.home .project-item__meta-item {
    margin-bottom: 0;
}

body.home .project-item__meta-item:not(:last-child) {
    margin-right: 8px;
    padding-right: 8px;
    border-right: 1px solid rgba(0, 0, 0, 0.50);
}

body.home .project-item__meta-item .icon {
    color: var(--bic-secondary-color);
}


body.home .project-item__image {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding-top: 60%;
}


.project-map__inner {
    position: relative;
    margin-top: 60px;
}

.project-map__icon {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 5%;
}

.project-map__icon-1 {
    top: 10.5%;
    left: 37.5%;
}

.project-map__icon-2 {
    top: 11%;
    left: 34%;
}

.project-map__icon-2 {
    top: 11%;
    left: 34%;
}

.project-map__icon-3 {
    top: 43%;
    left: 55%;
}

.project-map__icon-4 {
    bottom: 17.5%;
    left: 22.5%;
}

.project-map__icon-5 {
    bottom: 13%;
    left: 39%;
    width: 11.7%;
}

.project-map__icon-marker {
    margin-bottom: -1px;
    filter: drop-shadow(var(--bic-shadow-sm));
    animation: translateAndFlip 1.5s infinite;
}

/* .project-map__icon-5 .project-map__icon-marker {
    animation: translateAnd 1.5s infinite;
} */

.project-map__icon-dot {
    position: relative;
    width: 14px;
    height: 5px;
    background: var(--bic-primary-color);
    border-radius: 100%;
}

.project-map__icon-dot::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: var(--bic-primary-color);
    border-radius: 50%;
    animation: ripple 1.5s infinite;
}

.project-list .row {
    row-gap: calc(var(--bic-grid-gap) * 2);
}

.project-list .post-group:not(:last-child) {
    margin-bottom: calc(var(--bic-grid-gap)*2);
}

.project2-item__inner {
    display: block;
    position: relative;
}

.project2-item__image {
    margin-bottom: 20px;
}

.project2-item__image .project-item__image__achie {
    width: 15%;
    top: 3px;
    right: 30px;
}

.project2-item__info {
    position: relative;
    width: 100%;
    padding: 0;
}

.project2-item__info .project-item__title {
    color: var(--bic-primary-color);
}

.project2-item__info .project-item__link {
    margin-top: 10px;
}

.project2-item__info .project-item__link a {
    color: var(--bic-primary-color);
    font-weight: 600;
    text-transform: none;
}

body.archive .project2-item__image {
    padding-top: 66.667%;
}

.project-filter {
    position: relative;
    margin: 0 0 calc(var(--bic-gap)*0.5);
    border-radius: var(--bic-border-radius);
    border: 1px solid var(--bic-border-radius);
    background: linear-gradient(90deg, rgba(215, 215, 215, 0.64) 0%, rgba(249, 249, 249, 0.80) 35.1%, rgba(249, 249, 249, 0.80) 67.31%, rgba(215, 215, 215, 0.64) 89.9%);
    padding: 30px;
}

.project-filter__input input,
.project-filter__input .btn.btn--primary,
.project-filter__input .easy-select {
    --es-height: 59px;
    width: 100%;
    height: 60px;
    border-radius: 99px;
}

.project-filter__input .easy-select .es-current {
    border-radius: 99px;
}

.project-filter__input .easy-select .es-dropdown .es-option {
    min-height: 46px;
}

.project-filter__input {
    display: flex;
    align-items: center;
    gap: 20px;
}

.project-filter__input.col-10 {
    flex: 0 0 calc(100% - 180px);
    max-width: calc(100% - 180px);
}

.project-filter__input.col-2 {
    max-width: 180px;
    flex: 0 0 180px;
}

.project-filter .row:last-child {
    --bic-grid-gap: 10px;
    margin-top: 20px;
}

.project-filter-active {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.project-filter-active__clear {
    margin-left: auto;
}

.project-filter-active_list {
    display: flex;
    align-items: center;
    overflow: auto;
    scrollbar-width: thin;
    margin: 0;
    padding: 0;
    list-style: none;
}

.project-filter-active__label {
    font-weight: bold;
    color: var(--bic-secondary-color);
    margin-right: 20px;
}

.project-filter-active__item {
    position: relative;
    padding: 8px 12px;
    padding-right: 35px;
    margin-right: 10px;
    border-radius: 99px;
    border: 1px solid var(--bic-border-color);
    background: linear-gradient(90deg, rgba(215, 215, 215, 0.64) 0%, rgba(249, 249, 249, 0.80) 35.1%, rgba(249, 249, 249, 0.80) 67.31%, rgba(215, 215, 215, 0.64) 89.9%);
}

.project-filter-active__item-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    width: 20px;
    height: 20px;
    background: var(--bic-gradient-color);
    border-radius: 100%;
    transition: var(--bic-transition);
}

.project-filter-active__item-remove svg {
    width: 16px;
    height: 16px;
}

.project-filter-active__item-remove:hover {
    background: var(--bic-secondary-color);
    color: #fff;
}

/* SingleProject.css */

.single-du-an .sec-head__title .sub-title {
    color: var(--bic-secondary-color);
    font-size: 28px;
    font-weight: 600;
    margin-top: 10px;
}

.project-gallery .project-gallery__images {
    position: relative;
}

.project-gallery .project-gallery__images::before {
    content: "";
    position: absolute;
    z-index: 10;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, .7) 0, rgb(0 0 0 / 30%) 20%, rgba(0, 0, 0, 0) 100%);
}

@media only screen and (min-width: 1025px) {

    .project-gallery .project-gallery__images::after {
        content: "";
        position: absolute;
        z-index: 9;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(0, 0, 0, .7) 0, rgb(0 0 0 / 20%) 10%, rgba(0, 0, 0, 0) 100%);
    }

}

.project-gallery .project-gallery__images .project-gallery-item__image {
    position: relative;
    height: 100vh;
}

.project-single-info,
.project-gallery .project-gallery__thumbs {
    position: absolute;
    right: var(--bic-grid-gap);
    z-index: 20;
    bottom: 30px;
}

.project-single-info{
    left: var(--bic-grid-gap);
}

.project-gallery .project-gallery__thumbs {
    width: 330px;
    right: var(--bic-grid-gap);
}

@media only screen and (min-width: 1025px) {
    .project-gallery .project-gallery__thumbs {
        left: unset;
        right: calc((100vw - 8px - var(--bic-container-width)) / 2 + var(--bic-grid-gap));
    }

    .project-gallery .project-single-info {
        right: unset;
        left: calc((100vw - 8px - var(--bic-container-width)) / 2 + var(--bic-grid-gap));
    }
}

.project-gallery__thumbs .project-gallery-item__image {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: var(--bic-border-radius);
    border: 2px solid #fff;
}

.swiper-slide-thumb-active .project-gallery-item__image {
    border-color: var(--bic-primary-color)
}

.project-single-info .sec-head {
    margin-bottom: 16px;
}

.project-single-info .sec-head__title .title {
    color: #fff;
}

.project-single-info__sub-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.35;
    color: #fff;
}

.project-single-info .project-item__meta-item {
    color: #fff;
    margin: 0;
}

.project-overview {
    position: relative;
    overflow: hidden;
}

.project-overview__icon {
    position: absolute;
    bottom: calc(var(--bic-gap) * -1);
    right: var(--bic-grid-gap);
    width: 22%;
}

.project-overview__icon svg {
    width: 100%;
    height: 100%;
}

.project-overview__content {
    max-width: 810px;
}

.project-utilities-item__inner {
    --color-text: var(--bic-text-color);
    --color-title: var(--bic-secondary-color);
    --color-background: transparent;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 70px 30px;
    background: var(--color-background);
}

.project-utilities-item__icon {
    flex: 0 0 auto;
    width: 60px;
    margin-right: 16px;
}

.project-utilities-item__title {
    color: var(--color-text);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.project-utilities-item__descript {
    color: var(--color-title);
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}


.project-utilities-item.scale .project-utilities-item__inner {
    --color-background: var(--bic-secondary-color);
    --color-text: #fff;
    --color-title: var(--bic-primary-color);
}

.project-utilities-item.total_acreage .project-utilities-item__inner {
    --color-background: var(--bic-primary-color);
    --color-text: #fff;
    --color-title: var(--bic-secondary-color);
}

.project-area__image {
    width: 100%;
    height: 100%;
}

.project-area__info {
    padding-right:40px;
    padding-left: var(--bic-grid-gap);
    color: #fff;
    padding-top: 50px;
    padding-bottom: 10px;
    text-align: justify;
    height: 100%;
    align-content: center;
}

@media only screen and (min-width: 1025px) {
    .project-area__info {
        padding-left: calc((100vw - 8px - var(--bic-container-width)) / 2 + var(--bic-grid-gap));
    }
}


.project-area .sec-head {
    margin-bottom: 30px;
}

.project-area .sec-head__title .title {
    color: #fff;
}

.project-area-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.project-area-list li:not(:last-child) {
    margin-bottom: 20px;
}

.project-area-list li {
    display: flex;
    align-items: flex-start;
    font-weight: 600;
    padding-left: 70px;
}

.project-area-list li span:first-child {
    position: relative;
    color: var(--bic-secondary-color);
    flex: 0 0 auto;
    width: 150px;
    margin-right: 40px;
}

.project-area-list li span:first-child::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 1px;
    background: var(--bic-secondary-color);
    bottom: 12px;
    left: -70px;
}

.project-environment__icon {
    position: absolute;
    bottom: -30%;
    right: var(--bic-grid-gap);
    width: 22%;
}

.project-environment__icon svg {
    width: 100%;
    height: 100%;
}

.project-environment .sec-navs {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.project-environment .swiper-control-btn {
    background-color: var(--bic-secondary-color);
    border-color: var(--bic-secondary-color);
    color: #fff;
}

.project-environment .sec-head__title .title,
.project-environment .sec-head .sec-descript {
    color: #fff;
}

.project-environment .sec-head__title .title-color {
    color: var(--bic-secondary-color) !important;
}

.project-environment .slide-wrap {
    overflow: unset;
}

.project-environment .swiper {
    clip-path: unset;
}

.project-ground__image{
    position: relative;
    overflow: hidden;
    border-top-right-radius: var(--bic-border-radius);
    border-bottom-right-radius: var(--bic-border-radius);
}

.project-environment-item__info {
    --padding-left: 90px;
    position: relative;
    margin-top: 30px;
    padding-left: calc(var(--padding-left) - 30px);
    color: #fff;
}

.project-environment-item__info:before {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    width: calc(var(--padding-left) - 40px);
    height: 1px;
    background: var(--bic-secondary-color);
}

.project-environment-item__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--bic-secondary-color);
    margin-bottom: 8px;
}

.project-ground__info {
    padding-right: var(--bic-grid-gap);
}

@media only screen and (min-width: 1025px) {
    .project-ground__info {
        padding-right: calc((100vw - 8px - var(--bic-container-width)) / 2 + var(--bic-grid-gap));
    }
}

.project-environment2 .sec-head__title .title {
    color: #fff;
}

.project-environment2 .sec-head__title .title-color {
    color: var(--bic-secondary-color) !important;
}

.project-environment2__content {
    color: #fff;
}

.project-environment2__content ul{
    margin-bottom: 0;
}

.project-environment2 .project-gallery__images {
    margin-bottom: 20px;
}

@media only screen and (min-width: 1025px) {

    .project-environment2 .project-gallery__images .project-gallery-item__image {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

}

.project-environment2 .swiper-slide-thumb-active .project-gallery-item__image {
    border-color: var(--bic-secondary-color) !important;
}

.project-environment2 .swiper-control-btn {
    background-color: var(--bic-secondary-color);
    border-color: var(--bic-secondary-color);
    color: #fff;
}

.project-choice-list .row{
    row-gap: calc(var(--bic-grid-gap)*2);
}

.project-choice::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(90deg, #F89C1C 38.58%, #FFB400 100%);
}

.project-choice__inner {
    padding-left: var(--bic-grid-gap);
}

@media only screen and (min-width: 1025px) {
    .project-choice__inner {
        padding-left: calc((100vw - 8px - var(--bic-container-width)) / 2 + var(--bic-grid-gap));
    }
}

.project-choice__image {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding-top: 32%;
    margin-bottom: 30px;
}

.project-choice-list-item__title {
    color: var(--bic-secondary-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.project-choice-list-item:not(:last-child) {
    border-right: 1px solid var(--bic-secondary-color)
}

.project-gallery2-list .row {
    row-gap: calc(var(--bic-grid-gap)*2);
}

.project-contact__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.project-contact__inner.contact-form__inner .sec-head__title .title {
    margin-bottom: 10px;
}

.project-contact-hotline a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.project-contact-hotline .icon {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    color: var(--bic-secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bic-secondary-color);
    border-radius: 50%;
    margin-right: 10px;
}

.project-contact-hotline .icon svg {
    fill: currentColor;
    stroke-width: 0px;
}

.project-contact-hotline__text {
    font-weight: bold;
}

.project-contact-hotline__text p {
    margin: 0;
    line-height: 1;
}

.project-contact-hotline__text p:last-child {
    margin-top: 5px;
    font-size: 24px;
    color: var(--bic-secondary-color);
}

.project-contact-form textarea.bic-form-input {
    min-height: 140px;
}

/* Fullvideo.css */

.full-video .sec-head {
    position: absolute;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    margin: 0;
    top: 160px;
}

.full-video .sec-head__title .title {
    color: #fff;
}

.full-video__cover {
    width: 100vw;
    height: 100vh;
    display: block;
    object-fit: cover;
    transform: scale(.9);
}

.full-video__btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.full-video__btn a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: bold;
    transition: none;
}

.full-video__btn span.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: #6b361a45;
    border-radius: 100%;
    border: 1px solid var(--bic-primary-color);
    color: var(--bic-primary-color);
    backdrop-filter: blur(5px);
}

.full-video__btn svg {
    fill: currentColor;
    width: 32px;
    height: 32px;
}

/* News */

.news {
    background-color: var(--bic-primary-color);
    padding: 90px 0;
}

.news .btn.btn--primary {
    --background-color: var(--bic-secondary-color);
    --color-text: #fff;
}

/* Achie */

.achie-item__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    color: #fff;
}

.achie-item__image {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 0 40px 30px 40px;
}

.achie-item__image img {
    max-width: 52%;
    object-fit: contain;
    margin: 0 auto;
}

.achie-item__image::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 410px;
    height: 410px;
    border: 2px solid var(--bic-border-color);
    border-radius: 100%;
    z-index: -1;
    transition: border-color 0.3s ease, border-width 0.3s ease;
}

.achie-item.swiper-slide-active .achie-item__image::before {
    border-color: var(--bic-secondary-color);
    border-width: 4px;
}

.achie-item__title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: var(--bic-secondary-color);
    margin-bottom: 8px;
}

/* Contact.css */

.contact-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-form__inner {
    border-radius: var(--bic-border-radius);
    background: linear-gradient(270deg, rgba(249, 249, 249, 0.80) 0%, rgba(230, 230, 230, 0.64) 33%, rgba(230, 230, 230, 0.64) 67%, rgba(249, 249, 249, 0.80) 100%);
    backdrop-filter: blur(6px);
    padding: 30px;
}

.contact-form__inner .sec-head {
    margin-bottom: 30px;
}

.contact-form__inner .sec-head__title .title {
    font-size: 36px;
}

input.bic-form-input {
    padding: 10px 20px;
    height: 68px;
    border-radius: var(--bic-border-radius);
    border-color: transparent;
}

textarea.bic-form-input {
    padding: 10px 20px;
    min-height: 240px;
    border-color: transparent;
    border-radius: var(--bic-border-radius);
}

/* Animations.css */

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.9;
    }

    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

@keyframes translateAndFlip {
    0% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(-6px) rotateY(180deg);
    }

    100% {
        transform: translateY(0px) rotateY(180deg);
    }
}

@keyframes translateAnd {
    0% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media only screen and (min-width: 1537px) and (max-width: 1700px) {
    .swiper-circular {
        padding: 8px 15px;
        bottom: 30px !important;
    }

    .swiper-circular .swiper-pagination-bullet {
        width: 40px;
        height: 40px;
    }

    .swiper-circular .swiper-pagination-bullet::before {
        width: 14px;
        height: 14px;
    }

    .banner-item__icon {
        width: 80px
    }

    .sec-head__title .banner-item__title.title {
        font-size: 72px;
    }

    .banner-item__sub-title {
        font-size: 32px;
    }

    .banner-style-2 .sec-head__title .banner-item__title.title {
        font-size: 60px;
    }

    .banner-style-2 .banner-item__sub-title {
        font-size: 36px;
    }

    .banner-style-2 .banner-item__sub-title span {
        font-size: 24px;
    }

    .about .sec-head .sec-descript {
        margin-top: 30px;
    }

    .ContentBody.about__descript ul {
        margin-top: 30px;
    }

    .ContentBody.about__descript ul li:not(:last-child) {
        margin-bottom: 20px;
    }

    .service-list {
        --thumbs: 210px;
        --thumbs-height: 492px;
        --images-height: 380px;
        --gap: 100px;
        padding-left: 30px;
    }

    .circle {
        width: 120px;
        height: 120px;
    }

    .circle.active {
        width: 170px;
        height: 170px;
    }

    .circle.pos-1 {
        top: 160px;
    }

    .circle.pos-2 {
        top: 370px;
    }

    .circle__text {
        font-size: 16px;
    }

    .circle.active .circle__text {
        font-size: 24px;
    }

    .service-title__text {
        font-size: 30px;
    }

    .service-title::before {
        right: -65%;
        width: 660px;
        height: 660px;
    }

    .service-title__logo img {
        width: 90%;
    }

    .circle-spin {
        width: 1100px;
        height: 1100px;
    }

    .circle-spin-item {
        width: 32px;
        height: 32px;
    }

    .circle-spin-item--counterclockwise {
        width: 60px;
        height: 60px;
    }

    .service-item__inner {
        padding-left: 60px;
    }

    .service-item__info {
        max-width: 300px;
    }

    .service-item__title {
        font-size: 20px;
    }

    .project-filter {
        padding: 20px 30px;
    }

    .project-filter__input input,
    .project-filter__input .btn.btn--primary,
    .project-filter__input .easy-select {
        --es-height: 51px;
        width: 100%;
        height: 52px;
    }

    body.archive .project-item__title {
        font-size: 18px;
    }

    .project-item__info {
        max-width: 360px;
    }

    .project-slide__info .swiper-pagination {
        width: 270px !important;
    }

    .project-slide__info .swiper-pagination-bullet {
        width: 80px;
        height: 80px;
    }

    .full-video .sec-head {
        top: 120px;
    }

    .full-video__btn span.icon {
        width: 80px;
        height: 80px;
    }

    .full-video__btn a {
        font-size: 20px;
    }

    .contact-form__inner .sec-head__title .title {
        font-size: 32px;
    }

    .contact-form__inner .bic-contact-form .row{
        --bic-grid-gap: 8px;
    }

    input.bic-form-input {
        height: 52px !important;
    }

    textarea.bic-form-input {
        min-height: 140px !important;
    }

    /* SingleProject.css */

    .single-du-an .sec-head__title .sub-title {
        font-size: 24px;
    }

    .project-single-info__sub-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .project-gallery .project-gallery__thumbs {
        width: 300px;
    }

    .project-utilities-item__inner {
        padding: 50px 20px;
    }

    .project-utilities-item__icon {
        width: 46px;
    }

    .project-utilities-item__title{
        font-size: 14px;
    }

    .project-utilities-item__descript{
        font-size: 18px;
    }

    .project-area__info{
        padding-right: 60px;
    }

    .project-area-list li span:first-child{
        width: 120px;
        margin-right: 20px;
    }

    .project-area-list li:not(:last-child){
        margin-bottom: 16px;
    }

    .project-environment-item__info{
        --padding-left: 60px;
        margin-top: 20px;
    }

    .project-environment-item__title{
        font-size: 18px;
    }

    .project-choice-list-item__title{
        font-size: 16px;
    }

    .project-contact-hotline .icon{
        width: 46px;
        height: 46px;
    }

    .project-contact-hotline .icon svg{
        width: 24px;
        height: 24px;
    }

    .project-contact-hotline__text p:last-child{
        font-size: 24px;
    }

    .achie-item__image{
        height: 400px;
    }

    .achie-item__image::before{
        width: 360px;
        height: 360px;
    }

    .achie-item__title{
        font-size: 20px;
    }

}

@media only screen and (min-width: 1441px) and (max-width: 1536px) {
    .swiper-circular {
        padding: 8px 15px;
        bottom: 30px !important;
    }

    .swiper-circular .swiper-pagination-bullet {
        width: 40px;
        height: 40px;
    }

    .swiper-circular .swiper-pagination-bullet::before {
        width: 14px;
        height: 14px;
    }

    .banner-item__icon {
        width: 80px
    }

    .sec-head__title .banner-item__title.title {
        font-size: 72px;
    }

    .banner-item__sub-title {
        font-size: 32px;
    }

    .banner-style-2 .sec-head__title .banner-item__title.title {
        font-size: 52px;
    }

    .banner-style-2 .banner-item__sub-title {
        font-size: 36px;
    }

    .banner-style-2 .banner-item__sub-title span {
        font-size: 22px;
    }

    .about .sec-head .sec-descript {
        margin-top: 30px;
    }

    .ContentBody.about__descript ul {
        margin-top: 30px;
    }

    .ContentBody.about__descript ul li:not(:last-child) {
        margin-bottom: 20px;
    }

    .service-list {
        --thumbs: 210px;
        --thumbs-height: 492px;
        --images-height: 360px;
        --gap: 100px;
        padding-left: 30px;
    }

    .circle {
        width: 120px;
        height: 120px;
    }

    .circle.active {
        width: 170px;
        height: 170px;
    }

    .circle.pos-1 {
        top: 160px;
    }

    .circle.pos-2 {
        top: 370px;
    }

    .circle__text {
        font-size: 16px;
    }

    .circle.active .circle__text {
        font-size: 24px;
    }

    .service-title__text {
        font-size: 30px;
    }

    .service-title::before {
        right: -65%;
        width: 660px;
        height: 660px;
    }

    .service-title__logo img {
        width: 90%;
    }

    .circle-spin {
        width: 1100px;
        height: 1100px;
    }

    .circle-spin-item {
        width: 32px;
        height: 32px;
    }

    .circle-spin-item--counterclockwise {
        width: 60px;
        height: 60px;
    }

    .service-item__inner {
        padding-left: 40px;
    }

    .service-item__info {
        max-width: 310px;
    }

    .service-item__title {
        font-size: 20px;
    }

    .project-filter {
        padding: 20px 30px;
    }

    .project-filter__input input,
    .project-filter__input .btn.btn--primary,
    .project-filter__input .easy-select {
        --es-height: 51px;
        width: 100%;
        height: 52px;
    }

    body.archive .project-item__title {
        font-size: 18px;
    }

    .project-item__info {
        max-width: 360px;
    }

    .project-slide__info .swiper-pagination {
        width: 270px !important;
    }

    .project-slide__info .swiper-pagination-bullet {
        width: 80px;
        height: 80px;
    }

    .full-video .sec-head {
        top: 120px;
    }

    .full-video__btn span.icon {
        width: 80px;
        height: 80px;
    }

    .full-video__btn a {
        font-size: 20px;
    }

    .contact-form__inner .sec-head__title .title {
        font-size: 32px;
    }

    .contact-form__inner .bic-contact-form .row{
        --bic-grid-gap: 8px;
    }

    input.bic-form-input {
        height: 52px !important;
    }

    textarea.bic-form-input {
        min-height: 140px !important;
    }

    /* SingleProject.css */

    .single-du-an .sec-head__title .sub-title {
        font-size: 24px;
    }

    .project-single-info__sub-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .project-gallery .project-gallery__thumbs {
        width: 300px;
    }

    .project-utilities-item__inner {
        padding: 50px 20px;
    }

    .project-utilities-item__icon {
        width: 46px;
    }

    .project-utilities-item__title{
        font-size: 14px;
    }

    .project-utilities-item__descript{
        font-size: 18px;
    }

    .project-area__info{
        padding-right: 60px;
    }

    .project-area-list li span:first-child{
        width: 120px;
        margin-right: 20px;
    }

    .project-area-list li:not(:last-child){
        margin-bottom: 16px;
    }

    .project-environment-item__info{
        --padding-left: 60px;
        margin-top: 20px;
    }

    .project-environment-item__title{
        font-size: 18px;
    }

    .project-choice-list-item__title{
        font-size: 16px;
    }

    .project-contact-hotline .icon{
        width: 46px;
        height: 46px;
    }

    .project-contact-hotline .icon svg{
        width: 24px;
        height: 24px;
    }

    .project-contact-hotline__text p:last-child{
        font-size: 24px;
    }

    
    .achie-item__image{
        height: 330px;
    }

    .achie-item__image::before{
        width: 280px;
        height: 280px;
    }

    .achie-item__title{
        font-size: 20px;
    }

}

@media only screen and (max-width: 1440px) {
    .service-list__nav-item svg {
        stroke-width: 2px;
    }

    .project-item__meta-item svg {
        width: 16px;
        height: 16px;
    }

    .project-single-info,
    .project-gallery .project-gallery__thumbs {
        bottom: 16px;
    }

    .project-utilities-item__title {
        font-size: 14px;
    }

    .project-utilities-item__descript {
        font-size: 16px;
    }

    .project-filter__input input,
    .project-filter__input .btn.btn--primary,
    .project-filter__input .easy-select {
        --es-height: 45px;
        width: 100%;
        height: 46px;
    }
    
}

@media only screen and (min-width: 1200px) and (max-width: 1440px) {
    .swiper-circular {
        padding: 6px 10px;
        bottom: 30px !important;
    }

    .swiper-circular .swiper-pagination-bullet {
        width: 32px;
        height: 32px;
    }

    .swiper-circular .swiper-pagination-bullet::before {
        width: 12px;
        height: 12px;
    }

    .banner-item__icon {
        width: 62px
    }

    .sec-head__title .banner-item__title.title {
        font-size: 62px;
    }

    .banner-item__sub-title {
        font-size: 24px;
    }

    .banner-style-2 .sec-head__title .banner-item__title.title {
        font-size: 46px;
        -webkit-text-stroke-width: 2px;
    }

    .banner-style-2 .banner-item__sub-title {
        font-size: 32px;
    }

    .banner-style-2 .banner-item__sub-title span {
        font-size: 20px;
    }

    .about .sec-head__title .title-before {
        bottom: 50px;
    }

    .about .sec-head .sec-descript {
        max-width: 530px;
        margin-top: 30px;
    }

    .ContentBody.about__descript ul {
        margin-top: 30px;
    }

    .ContentBody.about__descript ul li:not(:last-child) {
        margin-bottom: 20px;
    }

    .service-list {
        --thumbs: 188px;
        --thumbs-height: 450px;
        --images-height: 345px;
        --gap: 100px;
        padding-left: 30px;
    }

    .circle {
        width: 120px;
        height: 120px;
    }

    .circle::after {
        right: calc(var(--gap) * -1 - 8px);
    }

    .circle.active {
        width: 150px;
        height: 150px;
    }

    .circle.pos-1 {
        top: 150px;
    }

    .circle.pos-2 {
        top: 330px;
    }

    .circle__text {
        font-size: 16px;
    }

    .circle.active .circle__text {
        font-size: 20px;
    }

    .service-title__text {
        font-size: 28px;
    }

    .service-title::before {
        right: -60%;
        width: 600px;
        height: 600px;
    }

    .circle-spin {
        width: 1000px;
        height: 1000px;
    }

    .circle-spin-item {
        width: 32px;
        height: 32px;
    }

    .circle-spin-item--counterclockwise {
        width: 60px;
        height: 60px;
    }

    .service-item__inner {
        padding-left: 46px;
    }

    .service-item__info {
        max-width: 290px;
    }

    .service-item__title {
        font-size: 18px;
    }

    .service-title__logo img {
        width: 85%;
    }

    .project-item__title {
        font-size: 18px;
    }

    .project-item__info {
        max-width: 330px;
    }

    .project-slide__info__inner {
        padding: 20px;
        max-width: 75%;
    }

    .project-slide__info .swiper-pagination {
        width: 240px !important;
    }

    .project-slide__info .swiper-pagination-bullet {
        width: 70px;
        height: 70px;
    }

    .project-filter {
        padding: 16px 20px;
    }

    .project-filter__input {
        gap: 10px;
    }

    .full-video .sec-head {
        top: 90px;
    }

    .full-video__btn span.icon {
        width: 70px;
        height: 70px;
    }

    .full-video__btn a {
        font-size: 18px;
    }

    .news {
        padding: 80px 0 60px;
    }

    .contact-form__inner .sec-head__title .title {
        font-size: 28px;
    }

    .contact-form__inner .bic-contact-form .row{
        --bic-grid-gap: 5px;
    }

    input.bic-form-input {
        padding: 10px 15px;
        height: 52px !important;
    }

    textarea.bic-form-input {
        min-height: 140px !important;
        padding: 10px 15px;
    }

    /* SingleProject.css */

    .single-du-an .sec-head__title .sub-title {
        font-size: 20px;
    }

    .project-single-info__sub-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .project-gallery .project-gallery__thumbs {
        width: 260px;
    }

    .project-utilities-item__inner {
        padding: 40px 20px;
    }

    .project-utilities-item__icon {
        width: 46px;
    }

    .project-area__info{
        padding-right: 60px;
    }

    .project-area-list li span:first-child{
        width: 120px;
        margin-right: 20px;
    }

    .project-area-list li:not(:last-child){
        margin-bottom: 16px;
    }

    .project-environment-item__info{
        --padding-left: 60px;
        margin-top: 20px;
    }

    .project-environment-item__title{
        font-size: 18px;
    }

    .project-choice-list-item__title{
        font-size: 16px;
    }

    .project-contact-hotline .icon{
        width: 40px;
        height: 40px;
    }

    .project-contact-hotline .icon svg{
        width: 20px;
        height: 20px;
    }

    .project-contact-hotline__text p:last-child{
        font-size: 20px;
    }

    .achie-item__image{
        height: 330px;
    }

    .achie-item__image::before{
        width: 280px;
        height: 280px;
    }

    .achie-item__title{
        font-size: 18px;
    }

}

@media only screen and (max-width: 1280px) {
    .banner-style-2 .sec-head__title .banner-item__title.title {
        -webkit-text-stroke-width: 1px;
    }

    .project-filter {
        padding: var(--bic-grid-gap);
    }

    .project-filter__input{
        gap: 10px;
    }

    .project-filter .row:last-child{
        margin-top: 10px;
    }

    .contact-form__inner{
        padding: 30px 15px;
    }

    input.bic-form-input{
        padding: 10px 15px;
        height: 46px !important;
    }

    textarea.bic-form-input{
        padding: 10px 15px;
        min-height: 140px !important;
    }

    .bic-contact-form .row{
        --bic-grid-gap: 8px;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1280px) {

    .banner-item__icon {
        width: 52px;
    }

    .sec-head__title .banner-item__title.title {
        font-size: 52px;
    }

    .banner-item__sub-title {
        font-size: 20px;
    }

    .banner-style-2 .sec-head__title .banner-item__title.title {
        font-size: 42px;
    }

    .banner-style-2 .banner-item__sub-title {
        font-size: 28px;
    }

    .banner-style-2 .banner-item__sub-title span {
        font-size: 18px;
    }

    .project-item__title {
        font-size: 16px;
    }

    .about .sec-head__title .title-before {
        bottom: 46px;
    }

    .about .sec-head .sec-descript {
        max-width: 460px;
    }

    .service-list {
        --thumbs: 168px;
        --thumbs-height: 430px;
        --images-height: 300px;
        --gap: 90px;
        padding-left: 0;
    }

    .circle-spin {
        width: 800px;
        height: 800px;
    }

    .service-title::before {
        right: -50%;
        width: 540px;
        height: 540px;
    }

    .service-item__inner {
        padding-left: 30px;
    }

    .service-item__title {
        font-size: 16px;
    }

    .contact-form__inner .sec-head__title .title {
        font-size: 24px;
    }

    .service-title__text {
        font-size: 24px;
    }

    .service-title__logo img{
        width: 85%;
    }

    .circle {
        width: 100px;
        height: 100px;
    }

    .circle.pos-1 {
        top: 140px;
    }

    .circle.active {
        width: 130px;
        height: 130px;
    }

    .circle.pos-2 {
        top: 310px;
    }

    .circle__text {
        font-size: 14px;
    }

    .circle.active .circle__text {
        font-size: 18px;
    }

    .project .sec-head{
        margin-bottom: 32px;
    }

    .project-slide__info__inner{
        padding: 15px;
    }

    body.home .project-item__image{
        padding-top: 55%;
    }

    .project-map__inner{
        margin: 0;
    }

    .achie-item__image{
        height: 300px;
    }

    .achie-item__image::before{
        width: 260px;
        height: 260px;
    }

    .achie-item__descript.text-center{
        margin: 0 30px;
    }

}

@media only screen and (max-width: 1024px) {

    .swiper-circular {
        background: transparent;
        backdrop-filter: blur(0px);
        padding: 0;
        border: none;
        bottom: 15px !important;
    }

    .swiper-circular .swiper-pagination-bullet::before {
        width: 12px;
        height: 12px;
    }

    .swiper-circular .swiper-pagination-bullet {
        width: 32px;
        height: 32px;
    }


    .about {
        padding: var(--bic-gap) 0;
    }

    .about .sec-head .sec-descript {
        max-width: 820px;
        margin-top: 30px;
    }

    .service-title {
        display: none;
    }

    .circle-spin,
    .service-title::before {
        display: none;
    }

    .service-title__logo img {
        width: 240px;
    }

    .service-title__text {
        font-size: 24px;
    }

    .service-list {
        padding-left: 0;
    }

    .project-slide__info__inner {
        max-width: 80%;
        padding: 10px 15px;
    }

    .project-item__title {
        font-size: 16px;
    }

    .project-slide__info .swiper-pagination {
        display: none !important;
    }

    .full-video .sec-head {
        top: 60px;
        padding: 0 var(--bic-grid-gap);
    }

    .full-video__cover {
        height: 50vh;
    }

    .full-video__btn span.icon {
        width: 60px;
        height: 60px;
    }

    .full-video__btn svg {
        width: 24px;
        height: 24px;
    }

    .full-video__btn a {
        font-size: 18px;
    }

    .news {
        padding: var(--bic-gap) 0;
    }

    .project-gallery .project-gallery__images .project-gallery-item__image{
        height: auto;
    }

    .project-single-info{
        position: relative;
        z-index: 1;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none !important;
        padding: calc(var(--bic-gap)*0.5) var(--bic-grid-gap) 0;
        background-color: #FFF7ED;
    }

    .project-single-info .sec-head__title .title{
        color: var(--bic-secondary-color)
    }

    .project-single-info__sub-title, .project-single-info .project-item__meta-item{
        color: var(--bic-text-color)
    }

    .project-gallery .project-gallery__thumbs{
        bottom: 10px;
    }

    .project-overview{
        padding-top: calc(var(--bic-gap)*0.5);
    }

    .project-single-info__sub-title{
        font-size: 18px;
    }

    .single-du-an .sec-head__title .sub-title{
        font-size: 18px;
    }

    .project-environment .sec-navs{
        margin-top: 20px;
        gap: 10px;
        justify-content: flex-start;
    }

    .project-ground__info{
        padding-top: calc(var(--bic-gap)*0.5);
        padding-left: var(--bic-grid-gap);
    }

    .project-environment2{
        padding-top: var(--bic-gap);
    }

    .project-environment2 .project-slide{
        padding-top: calc(var(--bic-gap)*0.5);
    }

    .project-environment2 .swiper-control.justify-content-end{
        justify-content: flex-start !important;
    }

    .project-choice-list-item__title{
        font-size: 18px;
    }

    .project-area__info{
        padding-right: var(--bic-grid-gap);
        padding-left: var(--bic-grid-gap);
    }

}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .about .sec-head__title .title-before {
        bottom: 46px;
    }

    .about .col-right {
        display: none;
    }

    .service-list {
        --thumbs: 210px;
        --thumbs-height: 470px;
        --images-height: 380px;
        --gap: 100px;
    }

    .circle {
        width: 120px;
        height: 120px;
    }

    .circle.active {
        width: 170px;
        height: 170px;
    }

    .circle.pos-1 {
        top: 150px;
    }

    .circle.pos-2 {
        top: 350px;
    }

    .circle__text {
        font-size: 16px;
    }

    .circle.active .circle__text {
        font-size: 24px;
    }

    .service-item__inner {
        padding-left: 40px;
    }

    .service-item__title {
        font-size: 18px;
    }

    .achie-item__image{
        height: 330px;
    }

    .achie-item__image::before{
        width: 280px;
        height: 280px;
    }

    .achie-item__title{
        font-size: 18px;
    }

    .contact-form__inner .sec-head__title .title {
        font-size: 28px;
    }

    .project-utilities-item__inner{
        padding: 25px 15px;
    }

    .project-utilities-item__icon{
        width: 36px;
    }

    .project-environment-item__info{
        --padding-left: 60px;
        margin-top: 20px;
    }

    .project-environment-item__title{
        font-size: 18px;
    }

    .project-filter__input.col-10, .project-filter__input.col-2{
        flex: 0 0 100%;
        max-width: 100%;
    }

    .project-filter__input.col-2 {
        margin-top: 10px;
    }

}

@media only screen and (max-width: 767px) {

    .service-list__images-list {
        border: none;
    }

    .project .sec-head {
        margin-bottom: 20px;
    }

    .project-slide__images {
        border-radius: 0 !important;
    }

    body.home .project-item__image {
        padding-top: 100%;
        border-radius: 0 !important;
    }

    .full-video__cover {
        transform: scale(1)
    }

    .achie-item__image{
        height: 360px;
    }

    .achie-item__image::before{
        width: 300px;
        height: 300px;
    }

    .achie-item__title{
        font-size: 18px;
    }

    .project-filter__input.col-10, .project-filter__input.col-2{
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }

    .project-filter__input.col-2{
        margin-top: 10px;
    }

    .contact-form__inner .sec-head__title .title{
        font-size: 28px;
    }

    .project-gallery .project-gallery__thumbs{
        width: 280px;
    }

    .project-single-info__sub-title{
        font-size: 16px;
    }

    
    .project-choice::before{
        height: 20%;
    }

    .project-choice__image{
        padding-top: 66.667%;
    }

    .project-area .sec-head{
        margin-bottom: 20px;
    }

    .project-filter-active_list{
        flex: 0 0 auto;
        width: 100%;
        padding: 0 0 10px;
        margin-bottom: 10px;
    }

    .project-filter-active__item{
        white-space: nowrap;
    }

    .project-filter-active__clear{
        margin-left: unset;
    }

}

@media only screen and (max-width: 576px) {
    .project-filter__input{
        flex-wrap: wrap;
    }
    .project-filter__input .easy-select {
        flex: 0 0 auto;
        width: calc(50% - 5px);
    }
    .banner-item__image{
        height: calc(100vh - 80px);
    }

    .swiper-circular .swiper-pagination-bullet {
        width: 24px;
        height: 24px;
    }

    .swiper-circular__svg{
        display: none;
    }

    .banner-item__image::after {
        content: "";
        position: absolute;
        z-index: 10;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, rgba(0, 0, 0, .7) 0, rgb(0 0 0 / 30%) 20%, rgba(0, 0, 0, 0) 100%);
    }

    .banner-style-2 .banner-item__image::after{
        display: none !important;
    }

    .banner-item__info{
        top: unset;
        transform: translateX(-50%);
        margin: 0;
        bottom: 100px;
        z-index: 11;
    }

    .banner-item__icon{
        width: 50px;
        margin-right: 15px;
    }

    .sec-head__title .banner-item__title.title{
        font-size: 50px;
    }

    .banner-item__sub-title{
        font-size: 16px;
    }

    .banner-style-2 .banner-item__info{
        padding: 0;
    }

    .banner-item__info.no-icon{
        text-align: center;
    }

    .banner-item__info.no-icon .banner-item__info-wrap{
        justify-content: center;
    }

    .banner-style-2 .banner-item__info.no-icon .banner-item__info-wrap{
        justify-content: flex-end;
    }

    .banner-item__sub-title span{
        display: block;
        color: var(--bic-primary-color);
    }

    .banner-style-2 .banner-item__info-wrap{
       padding: 0 var(--bic-grid-gap);
    }
    

    .banner-style-2 .sec-head__title .banner-item__title.title{
        font-size: 50px;
        font-weight: 700;
        font-family: var(--bic-primary-font) !important;
        margin-bottom: 10px;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: #fff;
        background: transparent;
        -webkit-text-stroke-width: 0px;
    }

    .banner-style-2 .banner-item__sub-title{
        font-size: 40px;
    }

    .banner-style-2 .banner-item__sub-title span{
        font-size: 22px;
    }

    .service-item__descript {
        max-height: 80px;
        overflow-y: auto;
    }
}

@media only screen and (max-width: 480px) {

    .banner-item__image{
        height: calc(100vh - 90px);
    }

    .about .sec-head .sec-descript,
    .ContentBody.about__descript ul {
        margin-top: 20px;
    }

    .ContentBody.about__descript ul li:not(:last-child) {
        margin-bottom: 20px;
    }

    .services .sec-head__title .title {
        font-size: 24px;
    }

    .service-title__text {
        font-size: 18px;
        margin: 0;
    }

    .service-list {
        --images-height: 270px;
        margin-top: 0;
    }

    .service-list__images-list {
        border-width: 1px;
    }

    .service-list__thumbs {
        display: none !important;
    }

    .service-item__inner {
        padding-left: 0;
    }

    .service-item__title {
        font-size: 16px;
    }

    h3.service-item__title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .service-item__info {
        max-width: 220px;
    }

    .service-list__nav-item {
        --background-color: var(--bic-secondary-color);
        --background-hover-color: var(--bic-secondary-color);
        --color-text: #fff;
        --color-hover-text: #fff;
        --btn-width: 40px;
        --btn-height: 40px;
        position: relative;
        left: unset;
        top: unset;
        transform: none;
    }

    .service-list__nav-item svg {
        width: 24px;
        height: 24px;
    }

    .service-list__nav {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
    }

    #service-prevBtn {
        top: unset;
        left: unset;
    }

    #service-nextBtn {
        right: unset;
        bottom: unset;
    }

    .service-list__nav-item svg {
        transform: rotate(270deg);
    }

    .project-item__link a {
        font-size: 13px;
    }

    .project-slide__info{
        bottom: 15px;
    }

    .project-slide__info__inner{
        max-width: calc(100% - var(--bic-border-radius)*2);
    }

    .achie-item__image{
        height: 280px;
    }

    .achie-item__image::before{
        display: none;
    }

    .achie-item__title{
        font-size: 16px;
    }

    .achie-item__image img{
        max-width: 100%;
    }

    .contact-form__inner .sec-head__title .title{
        font-size: 24px;
    }

    .project-gallery .project-gallery__thumbs{
        width: 240px;
    }

    .project-utilities-item__inner{
        padding: 20px 15px;
    }

    .project-utilities-item__icon{
        width: 32px;
        margin-right: 15px;
    }

    .project-area-list li span:first-child{
        width: 120px;
        margin-right: 15px;
    }

    .project-environment-item__info{
        --padding-left: 60px;
        margin-top: 15px;
        padding-left: calc(var(--padding-left) + 15px);
    }

    .project-environment-item__title{
        font-size: 18px;
    }

    .project-environment-item__info:before{
        top: 14px;
    }

    .project-choice-list-item:not(:last-child){
        border: none;
    }

    .project-contact-hotline .icon{
        width: 50px;
        height: 50px;
    }

    .project-contact-hotline__text p:last-child{
        font-size: 20px;
    }

}

@media only screen and (max-width: 414px) {
    .banner-item__image{
        height: calc(100vh - 90px);
    }

    .banner-item__info{
        bottom: 80px;
    }
    .banner-item__icon{
        width: 46px;
    }
    .sec-head__title .banner-item__title.title {
        font-size: 42px;
        margin-bottom: 5px;
    }

    .banner-item__sub-title {
        font-size: 16px;
    }

    .banner-item__info.no-icon .banner-item__sub-title{
        font-size: 15px;
    }

    .banner-style-2 .sec-head__title .banner-item__title.title{
        font-size: 42px;
    }

    .banner-style-2 .banner-item__info.no-icon .banner-item__sub-title {
        font-size: 32px;
    }

    .banner-style-2 .banner-item__info.no-icon .banner-item__sub-title span {
        font-size: 18px;
    }
    

}