@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
/* font-family: "Playfair Display", serif; */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/* font-family: "Roboto", sans-serif; */

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Playfair Display", serif;
    font-weight: normal;
    color: #000000;
    background: #FFFFFF;
    overflow-x: hidden;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

a {
    display: inline-block;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    color: #0b5798;
}

:focus {
    outline: none !important;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe {
    max-width: 100%;
}

label {
    display: inline-block;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
}

textarea {
    width: 100%;
    height: 120px;
    border: 1px solid #5a5a5a;
    outline: none;
    padding: 9px 14px;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #707070;
    border-radius: 0px;
    transition: 0.2s ease all;
    background: #f0f0f0;
    resize: none;
}

[type="text"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="url"],
[type="week"],
[type="date"] {
    width: 100%;
    height: 40px;
    border: 1px solid #5a5a5a;
    outline: none;
    padding: 9px 14px;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #707070;
    border-radius: 0px;
    transition: 0.2s ease all;
    background: #f0f0f0;
}

input::-webkit-input-placeholder {
    color: #707070;
    opacity: 1;
}

textarea::placeholder,
input::placeholder {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #707070;
    opacity: 100;
}

[type="submit"] {
    border: 1px solid #292929;
    outline: none;
    padding: 13px 25px;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    color: #292929;
    border-radius: 0px;
    transition: 0.2s ease all;
    background: #fff;
    text-align: center;
    display: inline-block;
}

[type="submit"]:hover {
    background: #ea3319;
}

.btns {
    display: inline-block;
    font-size: 14px;
    line-height: 1.3333em;
    font-weight: 600;
    color: #FFFFFF;
    border-radius: 4px;
    padding: 10px 14px;
}

.primary-btn {
    color: #FFFFFF;
    background: #156132;
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.1);
}

.secondary-btn {
    background: linear-gradient(90deg, #F1A419 0%, #D18D11 100%);
    padding: 10px 18px;
}

h1 {
    font-weight: 400;
    font-size: 32px;
    color: #fff;
}

h2 {
    font-size: 24px;
    line-height: 1.25em;
    font-weight: 600;
    color: #000000;
}

p {
    font-size: 15px;
    line-height: 1.5em;
    font-weight: 400;
    margin: 0 0 15px;
}

p:last-child {
    margin: 0;
}

.subheading {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 16px;
    line-height: 1.31811em;
    font-weight: 400;
    color: #F07707;
    margin: 0 0 8px;
}

.subheading::before {
    position: relative;
    display: inline-block;
    content: "";
    top: 1px;
    width: 15px;
    height: 15px;
    background: url(../img/subheading-dot.png) no-repeat center center / cover;
}

.container {
    position: relative;
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (min-width: 768px) {
    h2 {
        font-size: 32px;
    }

    p {
        font-size: 17px;
    }

    .btns {
        font-size: 16px;
        padding: 13px 18px;
    }

    .secondary-btn {
        padding: 13px 30px;
    }

    .subheading {
        font-size: 20px;
    }

    .container {
        padding: 0 24px;
    }
}

@media (min-width: 1200px) {
    h2 {
        font-size: 40px;
    }

    .btns {
        font-size: 18px;
    }

    .primary-btn:hover {
        background: #05903b;
    }

    .secondary-btn:hover {
        background: linear-gradient(-90deg, #F1A419 0%, #D18D11 100%);
    }

    .subheading {
        font-size: 22px;
    }

    .subheading::before {
        top: 1px;
        width: 18px;
        height: 18px;
    }

    .container {
        max-width: 1340px;
        padding: 0 30px;
    }
}

/* header css start */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    background: #FFFFFF;
    transition: 0.4s;
    padding: 10px 0;
}

.header.sticky {
    background: #FFFFFF;
    box-shadow: 0 0 15px #15613289;
}

.header-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: block;
    max-width: 110px;
}

.header-right {
    display: flex;
    align-items: center;
}

.menu-bar {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 99;
    height: 100%;
    width: 300px;
    background: #16452E;
    opacity: 0;
    transition: 0.4s;
    padding: 30px 0 0 30px;
}

.menu-bar.show {
    left: 0;
    opacity: 1;
}

.menu-bar li {
    margin-bottom: 15px;
}

.menu-bar li a {
    font-size: 16px;
    line-height: 1.3125em;
    font-weight: 500;
    color: #FFFFFF;
}

.toggle-btn {
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 7px;
    width: 30px;
    height: 30px;
    overflow: hidden;
    padding: 0;
    margin-left: 15px;
}

.toggle-btn span {
    width: 100%;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: 0.2s ease-in-out;
}

.toggle-btn.active {
    row-gap: 0;
}

.toggle-btn.active span:first-child {
    transform: rotate(45deg) translate(1px, 1px);
}

.toggle-btn.active span:nth-child(2) {
    display: none;
}

.toggle-btn.active span:last-child {
    transform: rotate(-45deg) translate(1px, -1px);
}

@media (min-width: 768px) {
    .logo a {
        max-width: 150px;
    }

    .menu-bar {
        width: 350px;
    }

    .menu-bar li a {
        font-size: 18px;
    }

    .toggle-btn {
        margin-left: 30px;
    }
}

@media (min-width: 1025px) {
    .header {
        padding: 15px 0;
    }

    .logo a {
        max-width: 209px;
    }

    .header.sticky .logo a {
        max-width: 190px;
    }

    .menu-bar {
        position: relative;
        left: unset;
        top: unset;
        width: auto;
        height: auto;
        background: transparent;
        display: flex;
        gap: 50px;
        opacity: 1;
        padding: 0;
    }

    .menu-bar li {
        margin-bottom: 0;
    }

    .menu-bar li a {
        color: #000000;
    }

    .menu-bar li a:hover {
        color: #F1A419;
    }

    .toggle-btn {
        display: none;
    }
}

/* header css end */

/* banner start */
.banner {
    margin: 62px 0 0;
}

.banner__bg {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: left;
}

.banner-content {
    padding: 30px 0 0;
}

.banner-content h1 {
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
    color: #000;
    margin: 6px 0 18px;
}

.banner-content h5 {
    font-size: 18px;
    line-height: 1.31881em;
    font-weight: 600;
    color: #000;
    margin: 16px 0 10px;
}

.download-from {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.download-from a {
    max-width: 150px;
}

@media (min-width: 768px) {
    .banner {
        position: relative;
        margin: 78px 0 0;
    }

    .banner__bg {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 83%;
    }

    .banner-content {
        position: relative;
        z-index: 1;
        padding: 60px 0;
        max-width: 370px;
        margin-left: auto;
        margin-right: -24px;
    }


    .banner-content .subheading {
        color: #FFFFFF;
    }

    .banner-content::before {
        position: absolute;
        content: "";
        top: 0;
        right: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
        background: linear-gradient(89.14deg, rgba(22, 69, 46, 0) 7.19%, rgba(22, 69, 46, 0) 22.57%, rgba(22, 69, 46, 0.81) 46.63%, #16452E 65.22%);
    }

    .banner-content h1 {
        font-size: 34px;
        color: #FFFFFF;
    }

    .banner-content h5 {
        font-size: 22px;
        color: #FFFFFF;
        margin: 20px 0 14px;
    }
}

@media (min-width: 992px) {
    .banner-content::before {
        background: linear-gradient(89.14deg, rgba(22, 69, 46, 0) 7.19%, rgba(22, 69, 46, 0) 22.57%, rgba(22, 69, 46, 0.81) 46.63%, #16452E 40.22%);
    }
}

@media (min-width: 1200px) {
    .banner {
        background: url(../img/Banner.jpg) no-repeat center center / cover;
        margin: 110px 0 0;
    }

    .banner__bg {
        display: none;
    }

    .banner-content {
        max-width: 616px;
        margin-right: 0;
        padding: 160px 0;
    }

    .banner-content::before {
        display: none;
    }

    .banner-content h1 {
        font-size: 50px;
    }

    .download-from a {
        max-width: 184px;
    }
}

.benefits {
    position: relative;
    padding: 50px 0;
}

.benefits-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.benefits-detail {
    margin: 0 0 30px;
}

.benefits-detail h2 {
    margin: 0 0 5px;
}

.benefits-detail ul li {
    position: relative;
    font-size: 16px;
    line-height: 1.2em;
    font-weight: 400;
    color: #000000;
    border-bottom: 1px solid #E0E1E2;
    padding: 15px 0;
    padding-left: 28px;
}

.benefits-detail ul li::before {
    position: absolute;
    content: "";
    top: 15px;
    left: 0;
    width: 18px;
    height: 16px;
    background: url(../img/check-down-icon.svg) no-repeat center center / cover;
}

.benefits-detail .btns {
    margin: 25px 0 0;
}

.benefits-image img {
    margin: 0 auto;
}

@media (min-width: 768px) {
    .benefits {
        padding: 70px 0;
    }

    .benefits-dots {
        height: 155px;
    }

    .benefits-wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .benefits-detail {
        width: 45%;
        padding-right: 25px;
        margin: 0;
    }

    .benefits-detail ul li {
        font-size: 18px;
        padding: 20px 0;
        padding-left: 35px;
    }

    .benefits-detail ul li::before {
        width: 20px;
        height: 18px;
        top: 23px;
    }

    .benefits-image {
        width: 55%;
    }
}

@media (min-width: 1200px) {
    .benefits {
        padding: 100px 0;
    }

    .benefits-dots {
        height: 235px;
    }

    .benefits-detail {
        width: calc(100% - 680px);
    }

    .benefits-detail ul li {
        font-size: 22px;
        padding: 27px 0 27px 35px;
    }

    .benefits-detail ul li::before {
        top: 32px;
    }

    .benefits-detail .btns {
        margin: 35px 0 0;
    }

    .benefits-image {
        width: 680px;
    }
}

.why-choose {
    position: relative;
    background: #F8FAFC;
    padding: 45px 0;
}

.why-choose-wrap {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
}

.why-choose-left {
    margin-left: -15px;
}

.why-choose-title {
    margin: 0 0 25px;
}

.why-choose-title span {
    display: block;
    font-size: 18px;
    line-height: 14px;
    font-weight: 400;
    color: #075325;
    margin: 12px 0 0;
}

.why-choose-right ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #E0E1E2;
    padding: 15px 0;
}

.why-choose-right ul li:first-child {
    padding-top: 0;
}

.why-choose-right ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.why-choose-right ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border: 1px solid #D5D5D5;
    border-radius: 50%;
}

.choose-text {
    width: calc(100% - (60px + 15px));
}

.choose-text h6 {
    font-weight: 600;
    font-size: 22px;
    line-height: 18px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #156132;
    margin: 0 0 10px;
}

.choose-text p {
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    color: #000000;
}

.why-choose-right .btns {
    margin: 25px 0 0;
}

@media (min-width: 768px) {
    .why-choose {
        padding: 70px 0;
    }

    .why-choose-title span {
        font-size: 20px;
    }

    .why-choose-right ul li span {
        width: 70px;
        height: 70px;
    }

    .choose-text {
        width: calc(100% - (70px + 22px));
    }

    .choose-text h6 {
        font-size: 25px;
    }

    .choose-text p {
        font-size: 18px;
    }

    .why-choose-right .btns {
        margin: 40px 0 0;
    }

    .why-choose-left {
        margin-left: -24px;
        max-width: 600px;
    }
}

@media (min-width: 1200px) {
    .why-choose .container {
        min-width: calc(50% + (1340px / 2));
        margin-left: 0;
        margin-right: auto;
        padding-left: 0;
    }

    .why-choose-wrap {
        flex-wrap: wrap;
        flex-direction: row;
        gap: 62px;
    }

    .why-choose-left {
        margin-left: 0;
        max-width: 100%;
        width: 50vw;
    }

    .why-choose-right {
        width: calc(100% - (50vw + 62px));
    }

    .choose-text p {
        font-size: 22px;
    }
}

@media (min-width: 1600px) {
    .why-choose-left img {
        width: 90%;
    }
}

.testimonial {
    margin: 50px 0;
}

.testi-heading {
    text-align: center;
    margin: 0 0 20px;
}

.js-testimonial-slider {
    padding: 0 0 65px;
    margin: 0 -15px;
}

.testimonial-col {
    padding: 0 15px;
}

.testimonial-card {
    position: relative;
    background: #F8F8F8;
    padding: 25px 15px;
}

.review-star {
    font-size: 15px;
    line-height: 1;
    color: #F4AB0D;
    margin: 0 0 16px;
}

.review-text {
    font-size: 18px;
    line-height: 1.23078em;
    letter-spacing: 0.06em;
    font-style: italic;
    font-weight: 400;
    color: #111111;
}

.user-info-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #E7E7E7;
    padding: 16px 0 0;
    margin: 14px 0 0;
}

.avatar img {
    width: 56px;
    height: 56px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
}

.user-info-text p {
    font-size: 18px;
    line-height: 14px;
    color: #000000;
    margin: 0;
}

.user-info-text span {
    display: block;
    font-size: 15px;
    line-height: 12px;
    font-weight: 400;
    color: #F07707;
    margin: 11px 0 0;
}

@media (min-width: 768px) {
    .testimonial {
        margin: 65px 0;
    }

    .testi-heading {
        margin: 0 0 32px;
    }

    .js-testimonial-slider {
        padding: 0 55px;
    }

    .testimonial-card {
        padding: 46px 60px 46px 70px;
    }

    .testimonial-card::before,
    .testimonial-card::after {
        position: absolute;
        content: "";
        top: 20px;
        left: 15px;
        width: 42px;
        height: 75px;
        background: url(../img/quote-left-icon.svg) no-repeat center center / cover;
    }

    .testimonial-card::after {
        top: unset;
        left: unset;
        bottom: 25px;
        right: 32px;
        background: url(../img/quote-right-icon.svg) no-repeat center center / cover;
    }

    .review-text {
        font-size: 22px;
    }
}

@media (min-width: 1025px) {
    .testimonial-card {
        padding: 56px 135px 46px 148px;
    }

    .testimonial-card::before,
    .testimonial-card::after {
        width: 64px;
        height: 119px;
    }

    .js-testimonial-slider {
        padding: 0 135px;
    }

    .testimonial-card::before {
        top: 27px;
        left: 44px;
    }

    .review-text {
        font-size: 26px;
    }
}

.footer {
    position: relative;
    padding: 45px 0 0;
}

.footer::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: linear-gradient(89.14deg, rgba(4, 69, 37, 0.77) 1.19%, rgba(22, 69, 46, 0.5) 48.57%, rgba(22, 69, 46, 0.81) 68.63%, #16452E 99.22%);
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 30px;
}

.ftr-logo {
    display: block;
    max-width: 180px;
    margin: 0 0 20px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.5em;
    font-weight: 600;
    color: #FFFFFF;
    font-family: "Roboto", sans-serif;
}

.footer-col h5 {
    font-size: 21px;
    line-height: 25px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 16px;
}

.footer-links li {
    line-height: 1;
    margin: 0 0 20px;
}

.footer-links li:last-child {
    margin: 0;
}

.footer-links li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    color: #FFFFFF;
    font-family: "Roboto", sans-serif;
}

.footer-links li a::before {
    position: relative;
    display: inline-block;
    content: "";
    width: 18px;
    height: 18px;
    background: url(../img/check-icon-white.png) no-repeat center center;
}

/* .footer-newsletter input {
    width: 100%;
    height: 48px;
    background: #FFFFFF url(../img/mail-gray-icon.png) no-repeat;
    background-position-x: 22px;
    background-position-y: center;
    border: 1px solid #EEEEEE;
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 10px 15px 10px 48px;
} */

 .footer-newsletter .email-news {
    width: 100%;
    height: 48px;
    background: #FFFFFF url(../img/mail-gray-icon.png) no-repeat;
    background-position-x: 22px;
    background-position-y: center;
    border: 1px solid #EEEEEE;
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 10px 15px 10px 48px;
}

.footer-newsletter input::placeholder {
    font-size: 14px;
    line-height: 10px;
    font-weight: 400;
    color: #929292;
}

.footer-newsletter .btns {
    border: none;
    min-width: 100%;
    height: 45px;
    font-size: 16px;
    margin: 15px 0 10px;
}

.copyright {
    position: relative;
    background: rgba(21, 97, 50, 0.69);
    border-top: 1px solid rgba(255, 255, 255, 0.26);
    margin: 30px 0 0;
    padding: 15px 0;
}

.copyright-flex {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.copyright p {
    font-size: 15px;
    line-height: 1;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #FFFFFF;
    text-align: center;
    font-family: "Roboto", sans-serif;
}

.copyright ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.copyright li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    font-size: 10px;
    line-height: 1;
    color: #FFFFFF;
}

@media (min-width: 768px) {
    .footer {
        padding: 70px 0 0;
    }

    .footer-wrapper {
        flex-direction: row;
        gap: 30px 0;
    }

    .footer-col:first-child {
        width: 100%;
    }

    .footer-col p {
        font-size: 16px;
    }

    .footer-col:nth-child(2) {
        width: 35%;
    }

    .footer-col:nth-child(3) {
        width: 25%;
        padding-left: 20px;
    }

    .footer-col:last-child {
        width: 40%;
        padding-left: 15px;
    }

    .footer-newsletter .btns {
        width: auto;
        min-width: 195px;
    }

    .copyright {
        padding: 18px 0;
        margin: 48px 0 0;
    }

    .copyright-flex {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .copyright p {
        margin: 0;
    }
}

@media (min-width: 1200px) {
    .footer-wrapper {
        gap: 0;
    }

    .footer-col:first-child {
        width: 23.3%;
    }

    .footer-col:nth-child(2) {
        width: 25%;
        padding-left: 60px;
    }

    .footer-col:nth-child(3) {
        width: 15%;
        padding-left: 40px;
    }

    .footer-col:last-child {
        width: 36.7%;
        padding-left: 60px;
    }

    .footer-links li a:hover {
        color: #F1A419;
    }

    .footer-newsletter input {
        height: 54px;
        padding: 10px 15px 15px 48px;
    }

    .footer-newsletter .btns {
        font-size: 20px;
        height: 54px;
    }

    .copyright li a:hover {
        color: #F1A419;
        border-color: #F1A419;
        transform: scale(1.2);
    }
}


.banner.inner-banner {
    position: relative;
}

.inner-banner .banner__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-banner-flex {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
}

.float-person img {
    height: 300px;
    margin: 0 auto;
}

.inner-banner .banner-content {
    text-align: center;
    padding: 50px 0 0;
}

.inner-banner .banner-content .subheading {
    color: #FFFFFF;
}

.inner-banner .banner-content h1 {
    color: #FFFFFF;
}

.banner-content h1 span {
    color: #F2A51A;
}

@media (min-width: 768px) {
    .inner-banner .banner-content::before {
        display: none;
    }

    .inner-banner-flex {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }

    .float-person {
        width: 300px;
    }

    .float-person img {
        width: 100%;
        height: auto;
    }

    .inner-banner .banner-content {
        width: calc(100% - (300px + 30px));
        max-width: unset;
        text-align: left;
        padding: 0 0 0 40px;
        margin: 0;
    }
}

@media (min-width: 1200px) {
    .banner.inner-banner {
        background: transparent;
    }

    .inner-banner .banner__bg {
        display: block;
    }

    .inner-banner-flex {
        gap: 40px;
        padding-left: 100px;
    }

    .float-person {
        width: 442px;
    }

    .inner-banner .banner-content {
        width: calc(100% - (442px + 40px));
    }
}


.half-text-half-media {
    position: relative;
    padding: 45px 0;
}

.half-text-col {
    text-align: center;
    margin: 0 0 30px;
}

.half-text-col p {
    font-size: 14px;
    line-height: 1.7058823529411764em;
    margin: 12px 0 25px 0;
}

.half-media-col img {
    max-height: 400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .half-text-half-media {
        padding: 65px 0;
    }

    .half-text-nedia__flex {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .half-text-col {
        width: 64%;
        text-align: left;
        margin: 0;
        padding-right: 40px;
    }

    .half-text-col p {
        font-size: 15px;
    }

    .half-media-col {
        width: 36%;
    }

    .half-media-col img {
        width: 100%;
        max-height: unset;
        margin: 0;
    }
}

@media (min-width: 1025px) {
    .half-text-half-media {
        padding: 90px 0;
    }

    .half-text-nedia__flex {
        max-width: 1010px;
        margin: 0 auto;
    }

    .half-text-col {
        width: calc(100% - 324px);
        padding-right: 62px;
    }

    .half-media-col {
        width: 324px;
    }

    .half-text-col p {
        font-size: 17px;
        margin: 20px 0 34px 0;
    }
}

.payment-option {
    background: #F8FAFC;
    padding: 45px 0;
}

.payment-option h2 {
    text-align: center;
    margin: 0 0 30px;
}

.payment-listing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.payment-opt-col {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.payment-opt-col figure {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    background: #156132;
    border: 1px solid #D5D5D5;
    border-radius: 50%;
    margin: 0;
}

.payment-opt-col figure img {
    max-width: 40px;
}

.payment-opt-col .pay-text h6 {
    font-size: 25px;
    line-height: 18px;
    font-weight: 600;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #156132;
}

.payment-opt-col .pay-text p {
    font-size: 15px;
    line-height: 16px;
    color: #000000;
    margin: 10px 0 0;
}

@media (min-width: 768px) {
    .payment-option {
        padding: 70px 0;
    }

    .payment-option h2 {
        margin: 0 0 44px;
    }

    .payment-listing {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .payment-listing {
        gap: 55px;
        max-width: 990px;
        margin: 0 auto;
    }

    .payment-opt-col {
        gap: 22px;
    }

    .payment-opt-col figure {
        width: 118px;
        height: 118px;
    }

    .payment-opt-col figure img {
        max-width: 100%;
    }

    .payment-opt-col .pay-text p {
        font-size: 22px;
    }
}

.cta-section {
    margin: 45px 0 0;
}

.cta-wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
}

.cta-man-image img {
    max-height: 380px;
    margin: 0 auto;
}

.cta-details {
    text-align: center;
}

.cta-details .logo-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 6px 0 15px;
}

.cta-details .logo-text h1 {
    font-size: 40px;
    line-height: 1;
    font-weight: 600;
    color: #000000;
}

.cta-details .logo-text img {
    height: 40px;
}

.cta-details h6 {
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    color: #156132;
    margin: 0 0 15px;
}

.down-from-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.down-from-btns a {
    display: block;
    max-width: 130px;
}

@media (min-width: 768px) {
    .cta-section {
        margin: 55px 0 0;
    }

    .cta-wrapper {
        flex-wrap: wrap;
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }

    .cta-man-image {
        width: 300px;
    }

    .cta-man-image img {
        max-height: unset;
        margin: 0;
    }

    .cta-details {
        width: calc(100% - (300px + 40px));
        text-align: left;
    }

    .cta-details h2 {
        font-size: 33px;
    }

    .cta-details .logo-text {
        justify-content: flex-start;
        margin: 10px 0 25px;
    }

    .cta-details h6 {
        font-size: 20px;
        margin: 0 0 20px;
    }

    .down-from-btns {
        justify-content: flex-start;
    }

    .down-from-btns a {
        max-width: 150px;
    }
}

@media (min-width: 1025px) {
    .cta-wrapper {
        gap: 130px;
        max-width: 945px;
        margin: 0 auto;
    }

    .cta-man-image {
        width: 385px;
    }

    .cta-details {
        width: calc(100% - (385px + 130px));
    }

    .cta-details .logo-text h1 {
        font-size: 68px;
        line-height: 48px;
    }

    .cta-details .logo-text img {
        height: 48px;
    }

    .cta-details .logo-text {
        margin: 10px 0 36px;
    }

    .cta-details h6 {
        font-size: 22px;
    }

    .down-from-btns a {
        max-width: 185px;
    }
}


.logo-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    line-height: 1;
    font-weight: 600;
    color: #000000;
    margin: 0 0 15px;
}

.logo-title img {
    height: 26px;
}

.banner-content h1.long-text {
    font-size: 26px;
    margin-top: 0;
}

@media (min-width: 768px) {
    .banner--sub-banner .banner-content {
        padding: 100px 0 100px 30px;
    }

    .banner--sub-banner.about-banner .banner-content {
        padding: 50px 0 50px 30px;
        padding-right: 24px;
    }

    .banner-content h1.long-text {
        font-size: 32px;
    }

    .banner--sub-banner.about-banner .banner-content p {
        color: #FFFFFF;
        font-size: 16px;
    }

    .logo-title {
        font-size: 32px;
    }

    .logo-title img {
        height: 32px;
    }
}

@media (min-width: 1200px) {
    .banner.banner--sub-banner {
        background: url(../img/sub-banner-bg.jpg) no-repeat center center / cover;
    }

    .banner--sub-banner .banner-content {
        max-width: 710px;
        padding: 185px 0 185px 30px;
    }

    .banner--sub-banner.about-banner .banner-content {
        padding: 110px 0 110px 30px;
        padding-right: 24px;
    }

    .banner-content h1.long-text {
        font-size: 42px;
    }

    .banner--sub-banner.about-banner .banner-content p {
        max-width: 564px;
        margin: 0 0 25px;
    }

    .logo-title {
        font-size: 40px;
        margin: 0 0 25px;
    }

    .logo-title img {
        height: 40px;
    }

    .benefits-repeate .benefits-detail {
        padding-right: 50px;
    }
}

@media (min-width: 768px) {
    .about-company .benefits-wrap {
        flex-direction: column;
    }

    .about-company .benefits-detail {
        width: 100%;
        padding: 0;
        margin: 0 0 30px;
    }

    .about-company .benefits-detail h2 {
        margin: 0 0 15px;
    }

    .about-company .benefits-detail p:last-of-type {
        margin: 0;
    }

    .about-company .benefits-image {
        width: 100%;
    }

    .about-company .benefits-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }
}

@media (min-width: 1200px) {
    .about-company .benefits-wrap {
        flex-direction: row;
    }

    .about-company .benefits-detail {
        width: 50%;
    }

    .about-company .benefits-detail h2 {
        padding-right: 20px;
    }

    .about-company .benefits-image {
        width: 50%;
        padding-left: 45px;
    }
}


.counter-flex {
    gap: 24px 0;
}

.counter-card {
    background: #FFFFFF;
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    text-align: center;
    padding: 25px 15px;
}

.counter-card img {
    display: block;
    max-width: 50px;
    margin: 0 auto;
}

.counter-card h2 {
    font-size: 32px;
    line-height: 30px;
    font-weight: 700;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #000000;
    margin: 18px 0 12px 0;
}

.counter-card p {
    font-size: 16px;
    line-height: 14px;
    font-weight: 500;
    letter-spacing: 0.21em;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #000000;
}

@media (min-width: 768px) {
    .counter-flex {
        --bs-gutter-x: 1.875rem;
    }

    .counter-card {
        padding: 30px 15px;
    }

    .counter-card img {
        max-width: 100%;
    }

    .counter-card h2 {
        font-size: 42px;
        margin: 22px 0 16px 0;
    }

    .counter-card p {
        font-size: 18px;
    }
}


.app-available {
    background: #F8FAFC;
    margin: 45px 0 0;
}

.app-available h2 {
    text-align: center;
    margin: 0 0 20px;
}

.app-text-col:not(:last-of-type) {
    margin-bottom: 25px;
}

.app-text-col h4 {
    font-size: 20px;
    line-height: 18px;
    font-weight: 600;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #000000;
    margin: 0 0 15px;
}

.app-text-col p {
    margin: 0;
}

@media (min-width: 768px) {
    .app-available {
        margin: 65px 0 0;
    }

    .app-text-col h4 {
        font-size: 22px;
    }

    .app-available h2 {
        max-width: 610px;
        margin: 0 auto;
        padding: 0 0 25px;
    }
}

@media (min-width: 1025px) {
    .app-available {
        margin: 80px 0 0;
    }

    .half-text-nedia__flex {
        max-width: 100%;
        margin: 0 48px;
    }

    .app-text-col:not(:last-of-type) {
        margin-bottom: 35px;
    }

    .app-text-col h4 {
        font-size: 26px;
    }
}

.icon-text-cards {
    background: #FFFFFF;
    margin: 45px 0;
}

.icon-text-cards__flex {
    gap: 25px 0;
}

.icon-text-item {
    text-align: center;
}

.icon-text-item img {
    max-width: 70px;
    margin: 0 auto;
}

.icon-text-item h4 {
    font-size: 26px;
    line-height: 24px;
    font-weight: 600;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #000000;
    margin: 15px 0 15px 0;
}

.icon-text-item p {
    color: #191919;
}

@media (min-width: 768px) {
    .icon-text-cards {
        margin: 65px 0;
    }

    .icon-text-item {
        text-align: left;
    }

    .icon-text-item img {
        max-width: 100%;
        margin: 0;
    }

    .icon-text-item h4 {
        font-size: 32px;
    }
}

@media (min-width: 1200px) {
    .icon-text-cards {
        margin: 80px 0;
    }

    .icon-text-cards__flex {
        --bs-gutter-x: 6.25rem;
        padding: 0 77px;
    }

    .icon-text-item h4 {
        margin: 32px 0 14px 0;
    }
}

.core-values {
    background: #F8FAFC;
    padding: 45px 0;
}

.core-values h2 {
    text-align: center;
    margin: 0 0 20px;
}

.values-wrapper {
    --bs-gutter-x: 1.875rem;
    --bs-gutter-y: 1.875rem;
}

.values-card {
    text-align: center;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    padding: 30px 47px;
}

.values-card img {
    margin: 0 auto;
}

.values-card h5 {
    font-size: 20px;
    line-height: 17px;
    font-weight: 600;
    color: #000000;
    margin: 20px 0 22px 0;
}

.values-card p {
    font-size: 15px;
    line-height: 1.35293em;
    font-weight: 400;
    color: #191919;
}

@media (min-width: 768px) {
    .core-values {
        padding: 65px 0;
    }

    .core-values h2 {
        margin: 0 0 32px;
    }

    .values-card {
        padding: 35px 45px 55px 45px;
    }

    .values-card h5 {
        font-size: 24px;
    }

    .values-card p {
        font-size: 17px;
    }
}

@media (min-width: 1200px) {
    .core-values {
        padding: 80px 0;
    }

    .values-card {
        padding: 35px 50px 55px 50px;
    }

    .values-card p {
        padding: 0 15px;
    }
}


/* half-text-icons */

.half-text-icons {
    padding: 45px 0;
}

.half-text-icons__flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1133px;
    margin: 0 auto;
}

.half-text-icons__image {
    position: relative;
    width: 100%;
    height: 338px;
    border: 4px solid #fff;
}

.half-text-icons__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.half-text-icons__text {
    position: relative;
    width: 100%;
    padding-left: 92px;
    margin-top: 20px;
}


.half-text-icons__list {
    border-bottom: 1px solid #E0E1E2;
    padding: 17px 0;
    position: relative;
}

.half-text-icons__list:last-child {
    border-bottom: none;
}

.half-text-icons__list-text {
    font-size: 22px;
    color: #000;
    line-height: 1.2em;
    font-family: "Playfair Display", serif;
}

.half-text-icons__list-text span {
    display: block;
    color: #156132;
    font-size: 30px;
}

.half-text-icons__list-icons {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: -92px;
    transform: translate(0, -50%);
    background: #156132;
    border: 3px solid #fff;
    border-radius: 50%;
}

@media (min-width: 768px) {
    .half-text-icons {
        padding: 65px 0;
    }
}

@media (min-width: 1200px) {
    .half-text-icons {
        padding: 80px 0;
    }

    .half-text-icons__image {
        width: 600px;
    }

    .half-text-icons__text {
        width: calc(100% - 600px);
        margin: 0;
        padding: 0 0 0 47px;
    }

}

/* banner--only-text */

.banner--only-text {
    background: url(../img/banner--only-text.jpg) 0 0 no-repeat;
    background-size: cover;
}

.banner--only-text .banner-content {
    margin: 0;
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding: 50px 0;
}

.banner--only-text .banner-content h1 {
    color: #fff;
}

@media (min-width: 1200px) {
    .banner--only-text .banner-content {
        padding: 120px 0;
    }
}

/* content-text */

.content-text {
    padding: 45px 0;
}

.content-text .subheading {
    color: #000;
    font-size: 22px;
    font-weight: 600;
}

.content-text ul {
    margin-bottom: 20px;
    margin-top: 10px;
    list-style: disc;
    margin-left: 34px;
}

.content-text ul li ul {
    margin-bottom: 0;
}

.content-text ul li {
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
}


.content-text ul li span {
    font-weight: 600;
    font-size: 17px;
}

.content-text ul:last-child {
    margin-bottom: 0;
}

.content-text ul li a {
    text-decoration: underline;
    color: #000;
}


.content-text h2 {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .content-text {
        padding: 65px 0;
    }

    .content-text .subheading {
        gap: 17px;
        font-size: 26px;
    }



    .content-text ul li {
        font-size: 17px;
    }

    .content-text ul li span {
        font-size: 20px;
    }
}

@media (min-width: 1200px) {
    .content-text {
        padding: 80px 0;
    }


    .content-text ul {
        margin-bottom: 32px;
    }

    .content-text__wrap {
        padding-left: 33px;
    }

    .content-text h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }
}



.image-text-content {
    margin: 45px 0;
}

.image-text-content__text ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.image-text-content__text ul li {
    padding: 0 0 22px 28px;
    margin: 0;
    position: relative;
    border-bottom: 1px solid #E0E1E2;
}

.image-text-content__text ul li:before {
    position: absolute;
    content: "";
    top: 8px;
    left: 0;
    width: 18px;
    height: 16px;
    background: url(../img/check-down-icon.svg) no-repeat center center / cover;
}

.image-text-content__text ul li h3 {
    font-size: 20px;
}

.image-text-content__text {
    margin: 30px 0 0;
}

.image-text-content__image {
    margin: 0 auto;
    display: table;
    width: 60%;
}

.image-text-content__heading {
    margin: 0 0 35px;
}

.cta-section--no-image .down-from-btns {
    justify-content: center;
}

.cta-section--no-image .cta-details {
    text-align: center;
}

.cta-section--no-image .cta-wrapper h2 {
    margin: 0 0 15px;
}

.cta-section--no-image {
    padding: 50px 0;
    background: #F8FAFC;
}

.driver-info {
    margin: 45px 0;
}

.driver-info p a {
    display: contents;
    color: #156132;
    font-weight: 700;
}

.driver-info h3 {
    color: #156132;
    font-weight: 800;
    font-size: 26px;
    margin: 0 0 20px;
}

.driver-info__blockuote {
    padding: 20px;
    border-radius: 10px;
    background: #F8FAFC;
    position: relative;
}


.driver-info__blockuote h4 {
    color: #000;
    font-weight: 600;
    font-size: 22px;
    margin: 0 0 15px;
}

.driver-info__blockuote ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    gap: 12px 42px;
    flex-wrap: wrap;
}

.driver-info__blockuote ul li {
    padding: 0 0 0 15px;
    margin: 0;
    font-weight: 600;
    position: relative;
}

.driver-info__blockuote ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 5px;
    height: 5px;
    background: #000;
    border-radius: 10px;
}

.driver-info__blockuote .btns {
    margin: 15px 0 0;
}

.image-text-content__image.box-image {
    aspect-ratio: 2 / 1.7;
    width: 100%;
    max-width: 458px;
}

.image-text-content__image.box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .image-text-content {
        margin: 65px 0;
    }

    .image-text-content__text ul li h3 {
        font-size: 22px;
        margin: 0 0 6px;
    }

    .image-text-content__text ul li:before {
        top: 7px;
        width: 20px;
        height: 18px;
        background: url(../img/check-down-icon.svg) no-repeat center center / cover;
        background-size: 20px;
    }

    .image-text-content__text ul li {
        padding: 0 38px 22px 33px;
    }

    .image-text-content__heading {
        margin: 0 0 55px;
    }

    .cta-section--no-image .cta-details {
        width: 100%;
    }

    .driver-info {
        margin: 65px 0;
    }
}

@media (min-width: 1200px) {
    .image-text-content {
        margin: 80px 0;
    }

    .image-text-content__row.row {
        align-items: center;
    }

    .image-text-content__text ul {
        max-width: 647px;
    }

    .image-text-content__text {
        margin: 0;
    }

    .cta-section--no-image .cta-wrapper h2 {
        font-size: 40px;
    }

    .image-text-content__image {
        width: auto;
    }

    .driver-info {
        margin: 80px 0;
    }

    .driver-info p a:hover {
        color: #000;
    }

    .driver-info h3 {
        font-size: 42px;
        margin: 0 0 35px;
    }

    .driver-info__blockuote {
        padding: 10px 264px 30px 34px;
    }


    .driver-info__blockuote h4 {
        font-size: 40px;
        margin: 0 0 8px;
    }

    .driver-info__blockuote .btns {
        margin: 0;
        position: absolute;
        right: 34px;
        top: 50%;
        transform: translate(0, -50%);
        width: 201px;
        text-align: center;
        border-radius: 10px;
    }

    .driver-info__blockuote ul li {
        font-size: 17px;
    }
}

.paragraph p {
    color: #000;
    line-height: 1.7058823529411764em;
}

.paragraph p span {
    font-weight: 700;
    color: #156132;
}

.paragraph h2 {
    color: #156132;
}

.driver-requirements {
    padding: 20px 24px;
    background: #F8FAFC;
    border-radius: 10px;

}

@media (min-width:1200px) {
    .paragraph h2 {
        color: #156132;
        font-weight: 800;
        font-size: 42px;
    }

    .driver-requirements h2 {
        margin: 0 0 15px;
    }

    .driver-requirements {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .driver-requirements ul {
        display: flex;
        justify-content: flex-start;
        gap: 36px;
        margin: 0 0 0 18px;
    }

    .driver-requirements a {
        width: 200px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 600;
        font-size: 18px;
        border-radius: 10px;
    }

    .driver-requirements {
        padding: 20px 32px;
    }
}

.driver-requirement {
    margin: 50px auto 0;
    max-width: 1160px;
}

.driver-requirement h2 {
    color: #000;
}

.driver-requirements-wrapper ul {
    list-style-type: none;
}

.driver-requirements-wrapper .image-text-content__text {
  margin: 0px 0 0;
}

.cta-image-text {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    margin: 50px 0;
}


.cta-image-text h3 {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.cta-image-text img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    text-align: center;
}

.driver-requirements-wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

@media (min-width: 768px) {
    .driver-requirements-wrapper {
        display: flex;
        flex-direction: unset;
        justify-content: space-between;
    }
    
    .driver-requirements__img {
        width: 35%;
    }

    .driver-requirements-wrapper .image-text-content__text {
        width: 60%;
    }

    .cta-image-text {
        padding: 34px 20px;
        margin: 80px 0;
    }
}

.text-card {
    background: #FFFFFF;
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 26px 20px;
    gap: 8px;
}

.text-cards-row-gap-3 {
    gap: 28px 0;
}

.text-card h3{
    font-weight: 600;
    font-size: 24px;
    line-height: 25px;
    color: #000000;
    margin-bottom: 18px;
}

.text-card ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.text-card ul li {
    font-weight: 500;
    font-size: 17px;
    line-height: 21px;
    color: #000000;
}

.text-card h4 {
    font-weight: 700;
    font-size: 17px;
    line-height: 21px;
    color: #156132;
}

@media (min-width: 1200px) {
    .text-card {
        padding: 35px 20px 22px;
    }
}