.common-title {
    margin-bottom: 30px;
    @media (max-width: 767px) {
        margin-bottom: 20px;
    }
}

.common-title .lead {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-2);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
}

.common-title .lead::before {
    content: "";
    width: 11px;
    height: 26px;
    background: url("../images/icon-ttl.png") no-repeat center center;
    background-size: contain;
    display: inline-block;
}

.common-title .title {
    color: var(--color-2);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -1px;
}

@media (max-width: 768px) {
    .common-title .title {
        font-size: 24px;
    }
}

.common-title.text-center .lead {
    justify-content: center;
}

.c-btn-01 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 2px 15px;
    border: 1px solid var(--color-2);
    border-radius: 30px;
    color: var(--color-2);
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
    width: fit-content;
}
.c-btn-01 .icon {
    width: 24px;
    height: 24px;
    mask-image: url(../images/icon-arrow-right.png);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center center;
    background-color: var(--color-2);
    transform: rotate(-35deg);
    transition: all 0.3s ease;
}
.c-btn-01:hover {
    background: var(--color-2);
    color: #fff;
}
.c-btn-01:hover .icon {
    background-color: white;
}
.c-btn-01 .icon img {
    width: 100%;
    height: 100%;
    display: none;
    object-fit: contain;
    transition: all 0.3s ease;
}

.c-btn-01:hover {
    background: var(--color-2);
    color: #fff;
}

.c-btn-01:hover .icon {
    transform: rotate(0deg);
}
.c-btn-01.js-more-specs {
    .icon {
        transform: rotate(90deg);
    }
    &.expanded {
        .icon {
            transform: rotate(270deg);
        }
    }
}
.banner-block {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}
.hover-effect {
    position: relative;
    overflow: hidden;
    display: flex;
}

.hover-effect::after {
    position: absolute;
    width: 200%;
    height: 0;
    left: 50%;
    top: 50%;
    background-color: hsla(0, 0%, 100%, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    content: "";
    z-index: 1;
}

.hover-effect:hover::after {
    height: 250%;
    transition: all 0.6s linear;
    background-color: transparent;
}
.hover-zoom img {
    transition: all 0.6s linear;
}
.hover-zoom:hover img {
    transform: scale(1.09);
}
.common-arrow .slick-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    z-index: 9;
    transition: all 0.3s ease;
    @media (max-width: 1290px) {
        width: 30px;
        height: 30px;
    }
    &::before {
        display: none;
    }

    &:hover {
        opacity: 1;
    }

    &.slick-prev {
        background: url(../images/icon-arrow-left.png) no-repeat center
            center/100% 100%;
        left: -70px;
        @media (max-width: 1290px) {
            left: 10px;
        }
    }

    &.slick-next {
        background: url(../images/icon-arrow-right.png) no-repeat center
            center/100% 100%;
        right: -70px;
        @media (max-width: 1290px) {
            right: 10px;
        }
    }
}
.common-arrow .slick-dots {
    bottom: 35px;
    li {
        width: auto;
        height: auto;
        button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--color-2);
            opacity: 0.35;
            transition: all 0.3s ease;
            &::before {
                display: none;
            }
            &:hover {
                opacity: 1;
            }
        }

        &.slick-active {
            button {
                opacity: 1;
            }
        }
    }
}

/* field-stats */
.field-stats {
    gap: 20px 0;
}

.stat-item {
    text-align: center;
    color: var(--color-2);
}

.stat-item .num {
    font-size: 60px;
    font-weight: 800;
    line-height: 1;
}

@media (max-width: 768px) {
    .stat-item .num {
        font-size: 40px;
    }
}

.stat-item .desc {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.4;
    @media (max-width: 640px) {
        font-size: 14px;
    }
}

/* power-column */
.power-slider {
    .slick-list {
        margin: 0 -5px;
    }
    .slick-track {
    }
    .slick-slide {
        margin: 0 5px;
    }
}
.power-column-wrap {
    position: relative;
    z-index: 2;
    background: white;
    padding: 14px;
    border-radius: 20px;

    @media (max-width: 640px) {
        padding: 10px;
        margin: 0 -10px;
        border-radius: 0;
    }
}
.power-column {
    margin-top: auto;
    gap: 20px 0;

    @media (max-width: 640px) {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        flex-wrap: nowrap;

        > * {
            flex: 0 0 265px;
            scroll-snap-align: start;
            max-width: 100%;
            width: 100%;
        }
    }
}
.power-item {
    background: #fff;
    border: 1px solid var(--color-2);
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.power-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.power-item__number {
    width: 63px;
    height: 63px;
    background: var(--color-2);
    color: #ececec;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 30px;
}

.power-item__title,
.power-item h3 {
    color: var(--color-2);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;

    @media (max-width: 992px) {
        font-size: 16px;
    }
}

.power-item__desc,
.power-item p {
    margin-bottom: 25px;
    line-height: 1.6;
}

.power-item__img {
    margin-top: auto;
    width: 57px;
    height: 57px;
    border-radius: 50%;
    background: var(--color-2);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.power-item__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  */

/* choose-the-best */
.choose-the-best {
    padding: 80px 0;

    @media (max-width: 992px) {
        padding: 30px 0;
    }
}

.choose-block {
    @media (max-width: 767px) {
        flex-direction: column;
    }
}

.choose-block__info {
    width: 49.9%;
    padding-right: 30px;

    @media (max-width: 992px) {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }
}

.choose-block__img {
    width: 49.9%;
    border-radius: 20px;
    overflow: hidden;
    max-height: 919px;
    @media (max-width: 992px) {
        width: 100%;
    }

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center bottom;
        display: block;
    }
}

.choose-block__desc {
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: justify;
}

.choose-action {
    display: flex;
    gap: 0;
    margin-bottom: -1px;
    position: relative;
    z-index: 2;
    width: fit-content;
    background: white;
    border-radius: 20px 20px 0 0;
    border: 1px solid var(--color-2);
    overflow: hidden;

    @media (max-width: 540px) {
        width: 100%;
    }

    &::after {
        content: "";
        position: absolute;
        height: 20px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-2);
        z-index: 1;
    }
}

.choose-action__btn {
    padding: 12px 30px;
    background: #fff;
    color: var(--color-2);
    font-weight: 700;
    cursor: pointer;
    border-radius: 10px 10px 0 0;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
    margin-bottom: -1px;

    @media (max-width: 540px) {
        padding: 10px;
        font-size: 14px;
        flex: 1;
    }
}

.choose-action__btn:nth-child(1) {
    border-radius: 10px 10px 10px 0;
}

.choose-action__btn:nth-child(2) {
    border-radius: 10px 10px 0 10px;
}

.choose-action__btn.active {
    background: var(--color-2);
    color: #fff;
    border-bottom: 1px solid var(--color-2);
}

.choose-action__btn:hover {
    background: var(--color-2);
    color: #fff;
}

.choose-content {
    background: var(--color-2);
    padding: 30px;
    border-radius: 20px;
    color: #fff;
    position: relative;
    z-index: 1;

    @media (max-width: 540px) {
        padding: 20px;
    }
}
.choose-content__ttl {
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 20px;
}
.choose-content__item {
    display: none;
}

.choose-content__item.active {
    display: block;
}

.choose-content__item__desc {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 14px;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
}

.choose-form__group {
    margin-bottom: 15px;

    &.row,
    & > .row {
        gap: 20px 0;
    }
}

.choose-form__group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 14px;
}

.choose-form__group input,
.choose-form__group select,
.input-controll {
    width: 100%;
    height: 40px;
    border-radius: 8px;
    border: none;
    padding: 0 15px;
    font-family: inherit;
    outline: none;
}
.input-controll--txt {
    height: 89px;
}

.choose-form__group input::placeholder,
.choose-form__group select::placeholder {
    color: #aaa;
}

.choose-form__group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232A7E43' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    color: #333;
}

.choose-form__btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 20px;
    transition: all 0.3s;

    @media (max-width: 540px) {
        font-size: 16px;
    }
}

.choose-form__btn:hover {
    background: #fff;
    color: var(--color-2);
}
/* end choose-the-best */

/* solar-power */
.solar-power {
    position: relative;
    margin-bottom: 150px;
    z-index: 1;
    padding-top: 60px;
    @media (max-width: 992px) {
        margin-bottom: 30px;
    }
    .power-item__img {
        background: transparent;
        padding: 0;
    }
}
.solar-power .common-title {
    margin-bottom: 120px;
    @media (max-width: 992px) {
        margin-bottom: 60px;
    }
    .lead {
        color: white;
    }
}

.solar-power-bg {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 40px;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    z-index: -1;
}

.solar-power-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 67%;
    background: linear-gradient(
        180deg,
        rgba(42, 126, 67, 0.85) 55.36%,
        rgba(42, 126, 67, 0) 103.47%
    );
}

.solar-power-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    @media (max-width: 992px) {
        height: 400px;
    }
}

.solar-power .title {
    color: #fff;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto 150px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    @media (max-width: 992px) {
        font-size: 24px;
        margin-bottom: 50px;
    }
}
/* end solar-power */

/* deployment-process */
.deployment-process {
    padding: 60px 0;
    overflow: hidden;

    @media (max-width: 1200px) {
        padding: 30px 0;
    }
}

.deployment-process__column {
    gap: 20px 0;
}

.process-block {
    align-items: center;
    margin-bottom: -100px;

    @media (max-width: 992px) {
        margin-bottom: 30px;
    }

    @media (max-width: 767px) {
        flex-direction: column;
    }
}

.process-block__desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

@media (min-width: 1200px) {
    .process-block__desc {
        padding-right: 50px;
    }
}

.process-block__img {
    margin-right: calc((1290px - 100vw) / 2);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    /* max-width: 938px; */

    @media (max-width: 1290px) {
        margin-right: 0;
    }
}

.process-block__img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    display: block;
}

.process-box {
    position: relative;
    z-index: 2;
    background: white;
    padding: 15px 15px 15px 0;
    border-radius: 20px;

    @media (max-width: 992px) {
        padding: 0;
    }
}

.deployment-item {
    background: #fff;
    border: 1px solid var(--color-2);
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    min-height: 180px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

    @media (max-width: 540px) {
        min-height: auto;
        padding: 10px;
    }
}

.deployment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: var(--color-2);
}

.deployment-item:hover .deployment-item__title {
    color: #fff;
}

.deployment-item:hover .deployment-item__img img {
    filter: brightness(0) invert(1);
}

.deployment-item__img {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;

    @media (max-width: 540px) {
        width: 50px;
        height: 50px;
    }
}

.deployment-item__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.deployment-item__title {
    font-size: 20px;
    color: var(--color-2);
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    @media (max-width: 540px) {
        font-size: 16px;
    }
}
/* end deployment-process */

/* Family Usage */
.family-usage {
    margin-top: 60px;
    gap: 40px 0;
    @media (max-width: 768px) {
        margin-top: 30px;
    }
}

.usage-item {
    border: 1px solid var(--color-2);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    background: #fff;
    &:not(.style-2) {
        margin-bottom: 30px;
    }
}

.usage-item__ttl {
    color: var(--color-2);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.usage-item__desc {
    line-height: 1.5;
    margin-bottom: 20px;
    &:last-child {
        margin-bottom: 0;
    }
}

.usage-item__icon {
    position: absolute;
    bottom: -28px;
    left: 20px;
    width: 56px;
    height: 56px;
    background: var(--color-2);
    padding: 10px;
    border: 1px solid var(--color-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.usage-item.style-2 {
    padding: 12px 15px;
    .usage-item__icon {
        position: relative;
        bottom: auto;
        left: auto;
        margin-bottom: 15px;
    }
}
/* end Family Usage */

/* Family Solution (Giai phap) */
.family-solution {
    padding: 80px 0;
    .solution-slider {
        &:not(:last-child) {
            margin-bottom: 32px;
        }
    }
    .common-title {
        max-width: 820px;
        &.text-center {
            margin-left: auto;
            margin-right: auto;
        }
    }
}

.solution-slider {
    .slick-list {
        margin: 0 -15px;
    }
    .slick-slide {
        padding: 0 15px;
        height: inherit;
    }
    .slick-track {
        display: flex !important;
    }
}

.solution-item {
    border: 1px solid var(--color-2);
    border-radius: 20px;
    padding: 30px;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    &.style-2 {
        flex-direction: column-reverse;
        gap: 20px;

        .solution-item__desc {
            margin-bottom: 0;
        }
        .solution-item__img {
            &:hover {
                .c-btn-01 {
                    border-radius: 0 10px 0 20px;
                }
            }
        }
        .c-btn-01 {
            bottom: auto;
            top: 0;
            border-radius: 0 10px 0 20px;
        }
    }
}

.solution-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.solution-item__ttl {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-2);
    margin-bottom: 15px;
    line-height: 1.3;

    a {
        color: inherit;
    }
}

.solution-item__desc {
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.solution-item__img {
    margin-top: auto;
    position: relative;
    border-radius: 10px;
    &:hover {
        .hover-effect {
            border-color: var(--color-2);
        }
        .c-btn-01 {
            background: var(--color-2);
            color: white;
            border-radius: 20px 0 10px 0;
            .icon {
                background-color: white;
            }
        }
    }
}

.solution-item__img .hover-effect {
    padding-top: calc((203 / 345) * 100%);
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid transparent;
}
.solution-item__img .hover-effect img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.solution-item .c-btn-01 {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 5px 15px;
    border-radius: 20px 0 0 0;
    border: none;
    font-size: 13px;
    box-shadow: -5px -5px 15px rgba(0, 0, 0, 0.05);
    z-index: 10;
    background: white;
    .txt {
        /* text-decoration: underline; */
    }

    .icon {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;

        img {
            transition: all 0.3s ease;
        }
    }
    &:hover {
        background: var(--color-2);
        color: white;
    }
}

@media (max-width: 768px) {
    .family-solution {
        padding: 40px 0;
    }
    .solution-item {
        padding: 20px;
    }
    .solution-item__ttl {
        font-size: 18px;
    }
}

/*  */

/*  */
/* FAQ Section */
.question-answer {
    padding: 50px 0;
}
.review-block {
    gap: 30px 0;
}
/* end question-answer */
.review-block__img {
    overflow: hidden;
    img {
        width: 100%;
        height: 100%;
        border-radius: 20px;

        object-fit: cover;
        display: block;
    }
}

/* Related Articles Aside */
.related-articles-box {
    background: #f4f4f4;
    border-radius: 15px;
    padding: 25px;
    &:not(:last-child) {
        margin-bottom: 30px;
    }
}

.related-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-2);
    margin-bottom: 25px;
    text-align: center;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.product-list-aside {
    display: flex;
    flex-direction: column;
    gap: 23px;
}
.product-aside {
    gap: 13px;
}
.product-aside__img {
    width: 136px;
    flex-shrink: 0;
    a {
        display: block;
        padding-bottom: 100%;
        border-radius: 10px;
        position: relative;
        overflow: hidden;
        img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
}
.product-aside__info {
    padding: 0;
}
.product-aside__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    flex: 1;
    a {
        color: var(--color-2);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}
.product-aside__desc {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    @media (min-width: 992px) {
        text-align: justify;
    }
}
.product-aside.is-document {
    .product-aside__info {
        display: flex;
        flex-direction: column;
    }
    .product-aside__desc {
        display: none;
    }
    .c-btn-01 {
        margin-top: auto;
        font-size: 14px;
    }
}
/* field-tab */
.field-tab__action {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    background: #fff;
    border: 1px solid var(--color-2);
    border-radius: 50px;
}

.field-tab__action .btn-01 {
    position: relative;
    z-index: 2;
    padding: 12px 40px;
    background: #fff;
    border-radius: 30px 30px 0 0;
    border: none;
    border-radius: 50px;
    flex: 1;
    color: var(--color-2);
    font-size: 40px;
    font-weight: 700;

    @media (max-width: 992px) {
        font-size: 20px;
        padding: 10px 20px;
    }

    @media (max-width: 600px) {
        font-size: 16px;
        padding: 10px;
    }

    &:nth-child(1) {
        text-align: left;
    }

    &:nth-child(2) {
        text-align: right;
    }

    &.active {
        background: var(--color-2);
        color: #fff;
    }

    &.active .txt {
        color: #fff;
    }
}

.field-tab__content {
    margin-bottom: 60px;
    @media (max-width: 992px) {
        margin-bottom: 30px;
    }
}

.field-tab__content-item {
    display: none;
}

.field-tab__content-item.active {
    display: block;
}

.field-column {
    gap: 20px 0;
}

.epc-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.epc-card__img {
    position: relative;
}

.epc-card__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(42, 126, 67, 0) 50.96%,
        #2a7e43 87.02%,
        #2a7e43 100%
    );
}

.epc-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    aspect-ratio: 1/1;
}

.epc-card__title {
    position: absolute;
    bottom: 20px;
    left: 10px;
    right: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;

    @media (max-width: 640px) {
        font-size: 16px;
    }
}
/* end epc-card */
/* Family Banner */
.family-heading {
    margin-top: 80px;
    border: 1px solid var(--color-2);
    border-radius: 50px;
    display: flex;
    overflow: hidden;
    background: #fff;
    margin-bottom: 60px;

    @media (max-width: 992px) {
        flex-direction: column;
        border-radius: 20px;
        margin: 30px 0 0;
    }
}

.family-heading__lead {
    flex: 1;
    padding: 15px 40px;
    color: #555;
    font-size: 15px;

    @media (max-width: 992px) {
        padding: 20px;
        text-align: center;
    }
}

.family-heading__btn {
    background: var(--color-2);
    color: #fff;
    padding: 15px 60px;
    font-weight: 700;
    font-size: 24px;
    cursor: pointer;
    text-align: center;
    /* white-space: nowrap; */
    border-radius: 50px;
    transition: all 0.3s ease;

    &:hover {
        background: white;
        color: var(--color-2);
    }

    @media (max-width: 992px) {
        width: 100%;
        padding: 15px;
        border-radius: 20px;
    }
}
/*  */

.project-slider {
    position: relative;
    margin-left: calc((1290px - 100vw) / 2);
    .slick-dots {
        bottom: -25px;
    }
    @media (min-width: 1290px) {
        .slick-dots {
            display: none !important;
        }
        &.slick-dotted.slick-slider {
            margin-bottom: 0;
        }
    }
    @media (max-width: 1290px) {
        margin-left: 0;
    }

    @media (max-width: 992px) {
        margin-left: 0;
    }
}

.project-slider .slick-list {
    overflow: visible;
}

.project-slider .slick-arrow {
    position: absolute;
    top: auto;
    bottom: 20px;
    transform: none;
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--color-2);
    background: transparent;
    opacity: 0.5;
    border: 0;
    @media (max-width: 1290px) {
        display: none !important;
    }
}

.project-slider .slick-arrow::before {
    display: none;
}

.project-slider .slick-arrow:hover {
    opacity: 1;
}

.project-slider .slick-arrow.slick-next {
    position: absolute;
    right: -90px;

    @media (max-width: 1500px) {
        right: -60px;
    }
    @media (max-width: 1400px) {
        display: none !important;
    }
}

.project-slider .slick-arrow.slick-prev {
    display: none !important;
}

.project-item {
    position: relative;
    display: flex;

    /* align-items: center; */
    @media (max-width: 992px) {
        gap: 20px;
    }

    @media (max-width: 767px) {
        flex-direction: column;
        border: 1px solid #2a7e43;
        border-radius: 10px;
        overflow: hidden;
    }
}

.project-item__img {
    width: 70%;
    max-width: 1260px;
    max-height: 720px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;

    @media (max-width: 1500px) {
        width: 85%;
    }

    @media (max-width: 992px) {
        width: 50%;
    }

    @media (max-width: 767px) {
        width: 100%;
        border-radius: 0 0 10px 10px;
    }

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.project-item__info {
    width: 45%;
    border-radius: 20px;
    z-index: 2;

    @media (max-width: 1500px) {
        width: 50%;
    }

    @media (min-width: 993px) {
        position: absolute;
        right: 0;
        bottom: 0;
        background: #fff;
        padding: 40px 40px 25px 60px;

        &::before {
            content: "";
            position: absolute;
            bottom: 0;
            right: 0;
            width: calc(100% - 20px);
            height: calc(100% - 20px);
            background: #fff;
            z-index: -1;
            border-radius: 20px;
            border: 1px solid #2a7e43;
        }
    }

    @media (max-width: 992px) {
        border: 1px solid #2a7e43;
        padding: 0 20px 20px;
    }

    @media (max-width: 767px) {
        width: 100%;
        border: 0;
    }
}

.project-item__lead {
    font-size: 14px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.project-item__title {
    font-size: 28px;
    color: var(--color-2);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    @media (max-width: 992px) {
        font-size: 24px;
    }
}

.project-item__desc {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-item__list {
    margin-bottom: 30px;
}

.project-item__list dl {
    display: flex;
    padding: 12px 0;
    border-top: 1px solid var(--color-2);
    margin: 0;
    font-size: 15px;
}

.project-item__list dl dt {
    color: #888;
    font-weight: 500;
    width: 150px;
}

.project-item__list dl dd {
    color: var(--color-2);
    font-weight: 700;
    margin: 0;
    width: calc(100% - 150px);
}

.project-item .c-btn-01 {
    float: right;
}
/* why-choose */
.why-choose {
    /* background: url(../images/bg-03.png) no-repeat center center/cover; */
    padding: 80px 0;
    position: relative;
    z-index: 1;
    @media (max-width: 992px) {
        padding: 30px 0;
    }
    .power-item__img {
        background: transparent;
        padding: 0;
    }
}
.why-choose-bg {
    position: absolute;
    top: 0;
    left: 10px;
    bottom: 0;
    right: 10px;
    height: 100%;
    z-index: -1;
    border-radius: 20px;
    overflow: hidden;
    /* &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #d9d9d9;
        opacity: 0.3;
    } */
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    @media (max-width: 1290px) {
        left: 0;
        right: 0;
        border-radius: 0;
    }
}

.why-choose .common-title {
    max-width: 576px;
    margin: 0 auto 50px;
    @media (max-width: 767px) {
        margin-bottom: 25px;
    }
}

.power-slider .power-item {
    padding: 11px;
}

.power-slider .slick-arrow {
    width: 50px;
    height: 50px;
    z-index: 2;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.power-slider .slick-arrow:hover {
    opacity: 1;
}

.power-slider .slick-arrow.slick-prev {
    left: -70px;
    @media (max-width: 1400px) {
        left: 10px;
    }
}

.power-slider .slick-arrow.slick-next {
    right: -70px;
    @media (max-width: 1400px) {
        right: 10px;
    }
}
/* end why-choose */

.certifications {
    padding: 60px 0;

    @media (max-width: 992px) {
        padding: 30px 0;
    }
}

.certifications .certifications-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
    position: relative;
    @media (max-width: 767px) {
        margin-bottom: 20px;
    }
}

.certifications .certifications-row::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #e0e0e0;
    transform: translateX(-50%);
}

@media (max-width: 992px) {
    .certifications .certifications-row::after {
        display: none;
    }
}

@media (max-width: 992px) {
    .certifications .certifications-row .clm {
        margin-bottom: 20px;
        &:last-child {
            margin-bottom: 0;
        }
    }
}

.certifications-slider {
    position: relative;
    padding: 0 40px;

    .slick-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 2;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0.5;
        background: url(../images/icon-arrow-rifht-green.png) no-repeat center
            center;
        background-size: 8px 16px;
        transform-origin: center center;
        transition: all 0.3s ease;

        &:hover {
            opacity: 1;
        }

        &::before {
            display: none;
        }

        &.slick-prev {
            left: 0;
            transform: translateY(-50%) rotate(180deg);
        }

        &.slick-next {
            right: 0;
        }
    }
}

.certifications-slider__item {
    padding: 0 10px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.certifications-slider__img {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    img {
        max-width: 100%;
        max-height: 60px;
        object-fit: contain;
        transition: all 0.3s ease;

        &:hover {
            filter: none;
            opacity: 1;
        }
    }
}

.certifications-slider--customer {
    margin-top: 20px;
}
/*  */

/* post-detail-share */
.post-detail-share {
    color: var(--color-2);
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-weight: 700;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    padding: 15px 0;
    margin-bottom: 30px;
    margin-top: 20px;
    @media (max-width: 992px) {
        margin-bottom: 20px;
        margin-top: 10px;
    }
    .share-list {
        display: flex;
        align-items: center;
        gap: 10px;
        li {
            list-style: none;
        }
    }
    .share-icon {
        width: 28px;
        height: 28px;
        display: block;
        border: 1px solid var(--color-2);
        border-radius: 50%;
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        &:hover {
            background: var(--color-2);
            img {
                filter: brightness(0) invert(1);
            }
        }
    }
}
.post-comment-section {
    label {
        font-size: 20px;
        font-weight: 800;
        color: var(--color-2);
        margin-bottom: 12px;
    }
    .comment-note {
        margin-bottom: 20px;
    }
    .common-title {
        margin-bottom: 10px;
    }
}
.post-comments {
    margin-bottom: 35px;
    @media (max-width: 992px) {
        margin-bottom: 20px;
    }
}

.comment-form {
    .row {
        gap: 20px 0;
    }
    .form-group {
        &:not(:last-child) {
            margin-bottom: 15px;
        }
    }
    .form-submit {
        margin-top: 20px;
    }
    .c-btn-01 {
        justify-content: center;
        min-width: 101px;
    }
}
.comment-title {
    position: relative;
    padding-left: 20px;
    &::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 5px;
        background: var(--color-2);
    }
}

.comment-item__header {
    gap: 5px;
    margin-bottom: 15px;
}
.comment-item__avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.comment-item__info {
    flex: 1;
    font-size: 14px;
    gap: 12px;
}
.comment-item__stars {
    display: flex;
    gap: 3px;
    align-items: center;
    color: #d1d5db; /* Default stroke color */

    .star-icon {
        width: 15px;
        height: 15px;
        fill: #f3f4f6; /* Default fill color */

        &.active {
            color: var(--color-2);
            fill: var(--color-2);
        }
    }
}
/* end comment */
