/* Banner */
.hp-banner {
    min-height: 625px;
    background-size: cover;
    background-position: right top;
    width: 100%;
    padding: 50px 20px;
    display: flex;
    position: relative;
    z-index: 1;
}
.hp-banner .page-width {
    display: flex;
}
.hp-banner__row {
    display: flex;
    align-items: center;
}
.hp-banner__info-box {
    max-width: 504px;
    width: 100%;
}
.hp-banner .hp-banner__headline {
    font-family: var(--font-family-secondary);
    font-size: 50px;
    font-weight: 500;
    color: var(--white);
    margin-top: 0;
    margin-bottom: 32px;
    line-height: 60px;
}
.hp-banner__content {
    font-size: 22px;
    line-height: normal;
    color: var(--white);
    margin-bottom: 33px;
}
.hp-banner__btns {
    display: flex;
    gap: 24px;
}
.hp-banner__btns a {
    background: var(--white);
    padding: 0 37px;
    height: 57px;
    line-height: 57px;
    border-radius: 100px;
    text-align: center;
    font-size: 18px;
    font-family: var(--font-dmsans);
    font-weight: 500;
    color: var(--green);
    text-transform: capitalize;
    border: 1px solid var(--white);
    transition: all 0.3s ease-in;
}
.hp-banner__btns a:last-child {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    transition: all 0.3s ease-in;
}
.hp-banner__btns a:hover {
    background: transparent;
    color: var(--white);
}
.hp-banner__btns a:last-child:hover {
    background: var(--white);
    color: var(--green);
}

@media only screen and (max-width: 767px) {
    .hp-banner:before {
        content: '';
        background: linear-gradient(90deg, rgba(4, 99, 76, 1) 4%, rgba(4, 99, 76, 0) 100%);
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
    }
    .hp-banner__info-box {
        max-width: 100%;
    }
    .hp-banner__headline {
        text-align: center;
    }
    .hp-banner__content {
        text-align: center;
    }
    .hp-banner__btns {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 480px) {
    .hp-banner__btns a {
        min-width: 290px;
    }
}

/* End Banner */

/* Our Product */
.hp-product {
    position: relative;
    padding: 81px 20px 93px;
    background-color: var(--gray);
}
.hp-product__headline {
    font-family: var(--font-family-secondary);
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    text-transform: capitalize;
    margin-top: 0;
    margin-bottom: 19px;
    color: var(--light-green);
}
.hp-product__subheadline,
.hp-product__subheadline * {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: #888888;
    margin-bottom: 83px;
    max-width: 552px;
    margin: 0 auto 83px;
}
.hp-product__subheadline p {
    margin: 0;
}
.hp-product__slider {
    margin-bottom: 84px;
}
.hp-product__slide {
    border: 1px solid #F0F0F0;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
}
.hp-product__img-wrap {
    background: var(--white);
    padding: 28px 8px 16px 8px;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hp-product__img-wrap img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.hp-product__info-wrap {
    background: var(--green);
    padding: 9px 33px 23px 33px;
    flex: 1;
}
.hp-prodcut__title {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-inter);
    color: var(--white);
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1;
}
.hp-product__excerpt {
    color: var(--white);
    font-size: 13px;
    font-family: var(--font-inter);
    font-weight: 400;
    line-height: 18px;
}
.hp-product__slide--inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.hp-product .slick-track {
    display: flex !important;
}
.hp-product .slick-slide {
    height: inherit !important;
    margin: 0 13px;
    box-sizing: border-box;
}
.hp-product .slick-list {
  margin: 0 -13px; 
}
.slick-prev {
    left: -69px !important;
}
.hp-product .slick-prev:before {
    content: url(/wp-content/uploads/2025/10/arrow-prev.svg);
}
.hp-product .slick-next:before {
    content: url(/wp-content/uploads/2025/10/arrow-next.png);
}
.slick-next {
    right: -69px !important;
}
.hp-product__btn {
    display: table;
    margin: 0 auto;
    border-radius: 100px;
    background: var(--green);
    height: 57px;
    line-height: 57px;
    text-align: center;
    font-size: 18px;
    font-family: var(--font-dmsans);
    font-weight: 500;
    color: var(--white);
    transition: all 0.5s ease-in;
    min-width: 264px;
    text-transform: capitalize;
}
.hp-product__btn:hover {
    background: var(--darkgreen);
    color: var(--white);
}

@media only screen and (max-width: 1300px) {
    .slick-prev {
        left: -10px !important;
        z-index: 2;
    }
    .slick-next {
        right: -10px !important;
        z-index: 2;
    }
}
@media only screen and (max-width: 660px) {
    .hp-product {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .hp-product__subheadline,
    .hp-product__subheadline * {
        margin-bottom: 30px;
    }
    .hp-product__slider {
        margin-bottom: 40px;
    }
}
/* end Our Product */

/* Two Columns */
.two-columns {
    padding: 80px 20px 89px;
}
.two-columns__row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.two-columns__row.two-columns__row--reverse {
    flex-direction: row-reverse;
}
.two-columns__info {
    width: 51.06%;
    display: flex;
    align-items: center;
}
.two-columns__row--reverse .two-columns__info--inner {
    padding-right: 0;
    padding-left: 120px;
}
.two-columns__info--inner {
    padding-right: 120px;
}
.two-columns__img {
    width: 48.94%;
    height: 509px;
}
.two-columns__img--inner {
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}
.two-columns__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.two-columns__small-txt {
    font-family: var(--font-family-secondary);
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--light-green);
    display: block;
    margin-bottom: 12px;
}
.two-columns__headline {
    font-family: var(--font-family-secondary);
    font-size: 38px;
    font-weight: 500;
    color: var(--green);
    text-transform: capitalize;
    margin-bottom: 20px;
    margin-top: 0;
    line-height: 40px;
}
.two-columns__content {
    font-size: 18px;
    color: var(--text-color);
    line-height: auto;
    margin-bottom: 47px;
}
.two-columns__btn {
    display: inline-block;
    min-width: 264px;
    height: 57px;
    line-height: 57px;
    text-align: center;
    border-radius: 100px;
    font-family: var(--font-dmsans);
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    text-transform: capitalize;
    background: var(--green);
}
.two-columns__btn:hover {
    background: var(--darkgreen);
    color: var(--white);
}
@media only screen and (max-width: 1024px) {
    .two-columns {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .two-columns__info--inner {
        padding-right: 50px;
    }
    .two-columns__row--reverse .two-columns__info--inner {
        padding-left: 50px;
    }
}
@media only screen and (max-width: 767px) {
    .two-columns {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .two-columns__row {
        flex-direction: column-reverse !important;
    }
    .two-columns__info {
        width: 100%;
        margin-top: 30px;
    }
    .two-columns__img {
        width: 100%;
    }
    .two-columns__info--inner {
        padding-right: 0;
        text-align: center;
    }
    .two-columns__row--reverse .two-columns__info--inner {
        padding-left: 0;
    }
}
@media only screen and (max-width: 660px) {
    .two-columns__img {
        height: 330px;
    }
}
/* end Two Columns */ 

/* Industry Leaders */
.industry-leaders {
    background: var(--gray);
    padding: 67px 20px 85px;
}
.industry-leaders__headline {
    font-family: var(--font-family-secondary);
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 19px;
    margin-top: 0;
    color: var(--light-green);
}
.industry-leaders .slick-track {
    display: flex !important;
}
.industry-leaders .slick-slide {
    height: inherit !important;
    margin: 0 30.5px;
    box-sizing: border-box;
}
.industry-leaders .slick-list {
  margin: 0 -30.5px; 
}
.industry-leaders__img-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.industry-leaders__img-wrap img {
    display: flex;
}
.industry-leaders .slick-dots {
    position: relative;
    bottom: unset;
    margin-top: 55px;
}
.industry-leaders .slick-dots li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 2px;
}
.industry-leaders .slick-dots li button {
    padding: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #EDEDED;
    border: 1px solid transparent;
}
.industry-leaders .slick-dots li.slick-active button {
    border: 1px solid var(--green);
    background: transparent;
}
.industry-leaders .slick-dots li button:before {
    content: none;
}
@media only screen and (max-width: 1024px) {
    .industry-leaders {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .industry-leaders .slick-dots {
        margin-top: 30px;
    }
}
/* end Industry Leaders */

/* Categories */
.categories {
    padding: 102px 20px 95px;
    background: #FCFCFC;
}
.categories__headline {
    font-family: var(--font-family-secondary);
    font-size: 18px;
    font-weight: 500;
    color: var(--light-green);
    margin-bottom: 48px;
    margin-top: 0;
    text-align: center;
}
.categories__row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 70px;
}
.categories__col {
    width: calc((100% / 4) - 24px + (24px / 4));
    background: #F6F7F6;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 259px;
}
.categories__col a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.categories__img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
.categories__title {
    margin-top: 0;
    margin-bottom: 0;
    font-family: var(--font-family-secondary);
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
}
.categories__btn {
    display: table;
    min-width: 360px;
    background: var(--green);
    height: 57px;
    line-height: 57px;
    text-align: center;
    text-transform: capitalize;
    font-family: var(--font-dmsans);
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    border-radius: 100px;
    margin: 0 auto;
}
.categories__btn:hover {
    background: var(--darkgreen);
    color: var(--white);
}
@media only screen and (max-width: 1024px) {
    .categories {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .categories__col {
        width: calc((100% / 2) - 24px + (24px / 2));
    }
}
@media only screen and (max-width: 660px) {
    .categories {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .categories__row {
        flex-direction: columne;
    }
    .categories__col {
        width: 100%;
    }
}
@media only screen and (max-width: 480px) {
    .categories__btn {
        width: 100%;
        min-width: 100%;
    }
}
/* end Categories */

/* Why Choose */
.why-choose {
    padding: 93px 20px 89px;
}
.why-choose__headline--smalltxt {
    display: block;
    text-align: center;
    font-family: var(--font-family-secondary);
    font-size: 18px;
    font-weight: 500;
    color: var(--light-green);
    margin-bottom: 12px; 
    text-transform: capitalize;
}
.why-choose__headline--title {
    font-family: var(--font-family-secondary);
    font-size: 38px;
    font-weight: 500;
    color: var(--green);
    line-height: 40px;
    margin-top: 0;
    margin-bottom: 61px;
    text-align: center;
}
.why-choose__btn {
    background: var(--green);
    display: table;
    min-width: 264px;
    height: 57px;
    margin: 0 auto;
    line-height: 57px;
    border-radius: 100px;
    font-family: var(--font-dmsans);
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    color: var(--white);
    text-transform: capitalize;
}
.why-choose__row {
    margin-bottom: 57px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.why-choose__col {
    width: calc((100% / 4) - 24px + (24px / 4));
    border: 1px solid #EFEFEF;
    border-radius: 15px;
    padding: 22px;
    display: flex;
    flex-direction: column;
}
.why-choose__col-imgwrap {
    display: flex;
    height: 43px;
}
.why-choose__col-title {
    margin-top: 7px;
    margin-bottom: 16px;
    color: var(--green);
    font-family: var(--font-family-secondary);
    font-size: 19px;
    font-weight: 700;
    line-height: 23px;
}
.why-choose__col-content {
    font-size: 14px;
    line-height: auto;
    color: var(--text-color);
}
.why-choose__btn:hover {
    background: var(--darkgreen);
    color: var(--white);
}
@media only screen and (max-width: 1024px) {
    .why-choose {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
@media only screen and (max-width: 900px) {
    .why-choose__col {
        width: calc((100% / 2) - 24px + (24px / 2));
    }
}
@media only screen and (max-width: 660px) {
    .why-choose__col {
        width: 100%;
        text-align: center;
    }
    .why-choose__row {
        margin-bottom: 30px;
    }
    .why-choose__col-imgwrap {
        margin: 0 auto;
    }
}
/* end Why Choose */

/* Full CTA BG */
.cta-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 50px 20px;
    min-height: 592px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}
.cta-bg:before {
    content: '';
    position: absolute;
    background: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    width:100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.cta-bg__box {
    max-width: 456px;
    width: 100%;
}
.cta-bg__headline {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 38px;
    font-family: var(--font-family-secondary);
    font-weight: 500;
    color: var(--white);
    line-height: 40px;
}
.cta-bg__content {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--white);
    line-height: auto;
}
.cta-bg__btn {
    border-radius: 100px;
    background: var(--green);
    display: inline-block;
    min-width: 264px;
    height: 57px;
    line-height: 57px;
    text-align: center;
    color:  var(--white);
    font-size: 18px;
    font-family: var(--font-dmsans);
    font-weight: 500;
}
.cta-bg__btn:hover {
    background: var(--darkgreen);
    color: var(--white);
}
@media only screen and (max-width: 1024px) {
    .cta-bg {
        min-height: 450px;
    }
}
@media only screen and (max-width: 767px) {
    .cta-bg__box {
        max-width: 100%;
        text-align: center;
    }
}
/* end Full CTA BG */