:root {
    --primary-color: #00714E;
    --nav-color: #000E1C;
    --secendary-color: #27BEF0;
    --text-color: #4B5162;
    --heading-color: #123F53;
    --perpel-color: #893EBF;
    --green-color: #15EB59;
    --green-color-2: #00E989;
    --blue-color: #0098CA;
    --blue-color-2: #1EB2D8;
    --border-color: #E3E3E4;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

p {
    margin-bottom: 10px;
}

.text-uppercase {
    text-transform: uppercase;
}

.btn {
    padding: 14px 27px 16px;
    border-radius: 8px;
    display: inline-block;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0px 4px 14.8px 0px #00714E99;
}

.btn-primary:hover {
    background-color: var(--nav-color);
}

.btn-learn {
    border: 1px solid #272727;
    color: #4B5162;
    font-weight: 600;
    font-size: 16px;
}

.btn-learn:hover {
    background-color: var(--primary-color);
    color: var(--white)
}

.menu-btn {
    display: none;
    background: transparent;
}

body {
    font-family: 'GraphikTrial', sans-serif;
    color: var(--text-color);
    font-size: 18px;
}

.container {
    max-width: 1204px;
    margin: auto;
    width: 100%;
}

.header-area {
    padding: 30px 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.header-area.page-header {
    position: relative;
}

.header-area.fixed-top {
    padding: 15px 0;
    position: fixed;
}

.header-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 24px 28px;
    border: 1px solid var(--border-color);
    -webkit-backdrop-filter: blur(82.5px);
    backdrop-filter: blur(82.5px);
    background: var(--white);
    border-radius: 18px;
}

.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 26px;
}

.nav-menu ul li a {
    color: var(--nav-color);
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: var(--primary-color);
}

.hero-area {
    padding: 200px 0 100px;
    background: url(../img/hero.jpg) no-repeat bottom right / cover;
    min-height: 100dvh;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.subtitle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #00714E;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 20px;
    text-transform: uppercase;
    position: relative;
}

.subtitle:before {
    content: "";
    background: #00714E;
    width: 71px;
    height: 4px;
    border-radius: 50px;
    margin-top: 5px;
    left: 0;
}

.hero-content {
    max-width: 705px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
    line-height: 76.8px;
    line-height: 4.8rem;
}

.hero-content h1 span {
    color: #049A6B;
}

.hero-content p {
    color: var(--text-color);
    font-size: 18px;
}

.hero-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.section-area {
    padding: 60px 0;
}

.promotion-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 22px;
}

.promotion-box {
    background: #F2FFFB;
    border: 1px solid #DCDCDC;
    padding: 16px;
    border-radius: 8px;
}

.promotion-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 18px;
}

.promotion-icon {
    width: 76px;
    height: 77px;
    background: #00714E14;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 25px;
}

.promotion-text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.promotion-text h2 {
    color: #049A6B;
    font-size: 44px;
    font-weight: 600;
    margin: 0 0 10px;
}

.promotion-text p {
    color: #4B5162;
    font-size: 18px;
}

.promotion-body {
    border: 0.5px solid #D9D9D9;
    background: #FFFFFF;
    border-radius: 2px;
    padding: 8px 10px;
    margin-top: 18px;
}

.promotion-body p {
    margin: 0;
    font-weight: 500;
    font-size: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.promotion-body p:before {
    content: "";
    background: #1D9C75;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    display: block;
    margin-top: 3px;
}

.work-area {
    padding: 120px 0;
}

.section-heading {
    margin: 0 0 40px;
}

.section-heading .subtitle {
    margin: 0 auto 10px;
}

.title {
    font-size: 62px;
    font-weight: 700;
    line-height: 80px;
    line-height: 5rem;
    margin: 0 0 20px;
    color: #004D35;
    text-transform: capitalize;
}

.title span {
    color: #049A6B;
}

.problem-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px;
}

.problem-box {
    border: 1px solid #DCDCDC;
    border-radius: 10px;
    padding: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 22px;
}

.problem-icon {
    width: 64px;
    height: 64px;
    margin-top: 10px;
}

.problem-text h3 {
    color: #004D35;
    font-size: 32px;
    font-weight: 500;
    margin: 0 0 10px;
}

.problem-text p {
    margin: 0;
    font-size: 21px;
    color: #4B5162;
}

.work-area.how {
    background: -webkit-linear-gradient(top, #ffffff 0.0%, #f2fffb 51.9%, #f2fffb 80.0%, #ffffff 100.0%);
    background: linear-gradient(180deg, #ffffff 0.0%, #f2fffb 51.9%, #f2fffb 80.0%, #ffffff 100.0%);
}

.work-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
}

.single-work {
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    padding: 34px 20px;
}

.single-work .number,
.thank-you-wrapper .number {
    width: 58px;
    height: 58px;
    background-color: #00714e;
    border-radius: 8px;
    font-weight: 600;
    color: #ffffff;
    font-size: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 0 16px;
    padding-bottom: 5px;
}

.single-work h3 {
    font-weight: 500;
    color: #004D35;
    font-size: 28px;
    margin-bottom: 14px;
}

.single-work p {
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    color: #4B5162;
}

.grid-table {
    border: 1px solid #DCDCDC;
    border-radius: 14px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
}

.single-grid-table-head {
    background: #F5F5ED;
    padding: 20px 25px;
    text-align: center;
    min-height: 70px;
}

.single-grid-table-head h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 500;
    color: #004D35;
    text-transform: uppercase;
}

.single-grid-table-column {
    padding: 20px 25px;
    border-bottom: 1px solid #9F9F9F;
    min-height: 70px;
    color: #123F53;
}

.single-grid-table-column:last-child {
    border-bottom: none;
}

.single-grid-table.first .single-grid-table-head {
    text-align: left;
    border-radius: 14px 0 0 0;
}

.single-grid-table-body {
    text-align: center;
}

.single-grid-table.first .single-grid-table-column {
    text-align: left;
    font-weight: 500;
}

.single-grid-table.featured .single-grid-table-head {
    background: var(--primary-color);
    border-radius: 14px 14px 0 0;
    min-height: 73px;
}

.single-grid-table.featured .single-grid-table-head h3 {
    color: var(--white);
}

.single-grid-table.featured .single-grid-table-column {
    color: var(--primary-color);
    font-weight: 500;
    border-width: 1px 3px;
    border-color: var(--primary-color);
    border-style: solid;
    background-color: #fff;
    min-height: 68px;
}

.single-grid-table.featured .single-grid-table-column:last-child {
    border-radius: 0 0 14px 14px;
    border-bottom-color: var(--primary-color);
    border-bottom-width: 3px;
}

.single-grid-table.featured {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

.team-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
    margin-bottom: 40px;
}

.single-team {
    border: 1px solid #dcdcdc;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 34px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.team-image {
    width: 96px;
    height: 96px;
    background-color: #00d04217;
    border-radius: 50%;
    border: 1px solid #b8b8b8;
    overflow: hidden;
}

.team-info {
    background-color: #4ca6560a;
    border-radius: 20px;
    border: 1px solid #1d9c75;
    color: #1d9c75;
    font-weight: 500;
    font-size: 14px;
    padding: 0 20px;
    margin-bottom: 15px;
    min-height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    line-height: 14px;
}

.team-name {
    font-weight: 500;
    color: #123f53;
    font-size: 28px;
    margin: 0 0 5px;
}

.team-role {
    font-weight: 500;
    color: #1d9c75;
    font-size: 16px;
    margin: 0 0 6px;
}

.team-company {
    font-weight: 400;
    color: #123f53;
    font-size: 14px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
}

.team-company:before {
    content: "";
    position: absolute;
    bottom: 0;
    background: url(../img/line.svg) no-repeat center / 100% auto;
    width: 100%;
    height: 2px;
}

.team-details p {
    font-weight: 400;
    color: #4b5162;
    font-size: 20px;
    margin-bottom: 0;
}

.execution-box {
    border: 1px solid #dcdcdc;
    background-color: #4ca6560f;
    border-radius: 10px;
    padding: 21px 40px;
}

.execution-box p {
    position: relative;
    color: #4B5162;
    margin: 0 0 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.execution-box p span {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.execution-box p strong {
    font-weight: 500;
    color: #123F53;
}

.execution-box p:before {
    content: "";
    background: #1D9C75;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 16px;
    margin-top: 6px;
}

.execution-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5px 30px;
}

.execution-box ul li {
    border-radius: 10px;
    color: #004D35;
    position: relative;
}

.execution-box ul li:before {
    content: "";
    background: #1D9C75;
    height: 6px;
    width: 6px;
    border-radius: 50px;
    position: absolute;
    top: 50%;
    right: -20px;
    margin-top: -3px;
}

.execution-box ul li:last-child:before {
    display: none;
}

.single-team.perpel .team-info {
    background-color: #893ebf0f;
    color: #893ebf;
    border-color: #893ebf;
}

.single-team.perpel .team-role {
    color: #893ebf;
}

.single-team.cyan .team-info {
    background-color: #008c7b0f;
    color: #008c7b;
    border-color: #008c7b;
}

.single-team.cyan .team-role {
    color: #008c7b;
}

.subscribe-area {
    padding: 80px 0 140px;
}

.subscribe-box {
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    color: #004D35;
    background-color: #ffffff;
    background: -webkit-linear-gradient(top, #ffffff 0.0%, #f2fffb 34.1%, #f2fffb 63.7%, #ffffff 100.0%);
    background: linear-gradient(180deg, #ffffff 0.0%, #f2fffb 34.1%, #f2fffb 63.7%, #ffffff 100.0%);
}

.subscribe-box .title {
    color: #004D35;
    font-size: 54px;
    margin: 0 0 10px;
}

.subscribe-box p {
    font-size: 28px;
    color: #123F53;
}

.subscribe-box p small {
    font-size: 22px;
}

.subscribe-box p.example {
    font-size: 20px;
}

.subscribe-box .title span {
    color: #049A6B;
}

.form-box {
    margin: 20px auto 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px;
    max-width: 600px;
}

.form-box .btn-primary {
    border-radius: 4px;
    border: 0;
    padding: 16px 24px;
}

.form-box input {
    background-color: #ffffff;
    border-radius: 4px;
    border: 0;
    color: #00714e;
    font-size: 16px;
    padding: 16px 24px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-radius: 4px;
    border: 0.5px solid #00714e;
}

.form-box input:focus {
    outline: none;
}

.footer-area {
    border-top: 1px solid #C3C3C3;
    padding: 28px 0 19px;
}

.footer-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.copyright-text,
.copyright-year {
    color: #004D35;
    font-size: 16px;
    font-weight: 400;
}

.copyright-text a {
    color: #049A6B;
    font-weight: 500;
    text-decoration: underline;
}

.copyright-text a:hover {
    text-decoration: none;
}

.mobile-menu {
    position: fixed;
    z-index: 1000;
    background: #fff;
    height: 100dvh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    left: -100%;
    width: 100%;
    top: 0;
    -webkit-transition: left 1s ease;
    transition: left 1s ease;
}

.mobile-menu-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: auto;
    padding: 20px 24px;
}

.mobile-menu-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 14px 24px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.menu-close {
    background: #EAFEF8;
    border: 0;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 5px;
}

.mobile-menu-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.mobile-menu-body ul li a {
    display: block;
    font-weight: 500;
    color: #004D35;
    font-size: 18px;
    padding: 8px;
    border-radius: 8px;
}

.mobile-menu-body ul li a.active,
.mobile-menu-body ul li a:hover {
    background: #EAFEF8;
}

.mobile-menu-bottom {
    padding: 28px 24px;
    border-top: 1px solid #C3C3C3;
}

.mobile-data-table {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.single-mobile-data-table {
    border: 1px solid #00714E33;
    border-radius: 6px;
    overflow: hidden;
}

.single-mobile-data-head {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid #00714E33;
}

.single-mobile-data-head h3 {
    font-size: 16px;
    font-weight: 500;
    color: #004D35;
    margin: 0;
}

.single-mobile-data-body {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
}

.single-mobile-data-body-right {
    background: #00714E14;
}

.single-mobile-data-body p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #00714E;
}

.single-mobile-data-body div {
    padding: 17px 12px;
}

.single-mobile-data-body p small {
    font-size: 12px;
}

.single-mobile-data-footer {
    text-align: center;
    background: #00714E;
    color: #fff;
    padding: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

.privacy-content .title {
    text-align: center;
    margin-bottom: 10px;
}

.sub-text {
    text-align: center;
    color: #123F53;
    font-size: 22px;
    margin: 0 0 40px !important;
}

.privacy-content p {
    margin-bottom: 15px;
}

.privacy-content h3 {
    color: #004D35;
    font-size: 28px;
    font-weight: 500;
    margin: 30px 0 15px;
}

.privacy-content ul {
    margin: 0 0 15px;
    padding: 0 0 0 20px;
    list-style: disc;
}

.disclaimer {
    border-top: 1px solid #C3C3C3;
    padding-top: 10px;
    margin-top: 40px;
    font-size: 12px;
}

.message-box {
    display: none;
    font-size: 14px;
    font-weight: 500;
}

.platform-image {
    text-align: center;
}

/* .work-area.platform {
    background: radial-gradient(circle at center, #00eb891a 0.0%, #00e98900 100.0%);
} */

.copyright-year {
    margin-top: -5px;
}

.copyright-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.thank-you-content {
    position: relative;
}

.checked-image {
    margin-bottom: 15px;
    text-align: center;
}

.thank-you-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 27px;
}

.thank-you-content .section-heading .subtitle {
    width: fit-content;
}

.single-thank-you {
    border: 1px solid #DCDCDC;
    background: #fff;
    border-radius: 10px;
    padding: 24px 16px;
}

.thank-you-wrapper .number {
    margin: 0 auto 15px;
}

.thank-you-wrapper h3 {
    font-weight: 500;
    color: #004d35;
    font-size: 30px;
    margin: 0 0 10px;
}

.thank-you-wrapper p {
    font-weight: 400;
    color: #4b5162;
    font-size: 22px;
    margin: 0;
}

.subscribe-box-content input,
.subscribe-box-content textarea {
    width: 100%;
    border: 0.5px solid #00714E;
    background: #FFFFFF;
    padding: 16px 24px;
    border-radius: 4px;
    color: #737373;
    font-size: 16px;
    margin-bottom: 16px;
}

.subscribe-box-content textarea {
    resize: none;
    height: 130px
}

.subscribe-box-content input:focus,
.subscribe-box-content textarea:focus {
    outline: 0;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
    margin-top: 30px;
}

.subscribe-box-content .btn {
    font-weight: 400;
    border: 0;
    padding: 16px 25px;
    margin: 10px 0 15px;
}

.subscribe-box p.example a {
    font-weight: 500;
    color: #00714E;
}

.platform-wrap {
    box-shadow: 0px 4px 18px 0px #0000001A;
    padding: 24px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
    align-items: center;
    margin-bottom: 40px;
    background: #fff;
}

.platform-number {
    margin-bottom: 10px;
    border-radius: 8px;
    padding: 8px 19px;
    background: #00714E1A;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00714E;
    font-weight: 500;
    font-size: 24px;
    line-height: 24px;
}

.platform-text h3 {
    color: #004D35;
    font-weight: 500;
    font-size: 32px;
    margin: 0 0 10px;
}

.platform-text p {
    color: #4B5162;
    font-size: 20px;
    margin: 0 0 14px;
}

.platform-text ul {
    display: flex;
    flex-wrap: wrap;
    width: fit-content;
    list-style: none;
    background: #F4FAF5;
    color: #004D35;
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    margin: 0;
    padding: 8px 12px;
    border-radius: 10px;
}

.platform-text ul li:not(:first-child) {
    position: relative;
    padding-left: 24px;
}

.platform-text ul li:not(:first-child):before {
    content: "";
    background: #1D9C75;
    width: 6px;
    height: 6px;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    margin-top: -3px;
    left: 11px;
}

.platform-wrap:nth-child(even) .platform-image {
    order: 2;
}

.platform-promo {
    background: #4CA6560F;
    border-radius: 14px;
    padding: 21px 56px 21px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.platform-promo .btn-primary {
    font-weight: 400;
}

.platform-promo h3 {
    font-size: 38px;
    font-weight: 600;
    color: #004D35;
    margin: 0 0 10px;
}

.platform-promo p {
    font-size: 22px;
    color: #4B5162;
}