/* External Fonts */
/* Cera Round Pro Font */
@font-face {
    font-family: 'cr-bold';
    src: url('fonts/CeraRoundPro-Bold.woff2') format('woff2'),
        url('fonts/CeraRoundPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'cr-black';
    src: url('fonts/CeraRoundPro-Black.woff2') format('woff2'),
        url('fonts/CeraRoundPro-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'cr-light';
    src: url('fonts/CeraRoundPro-Light.woff2') format('woff2'),
        url('fonts/CeraRoundPro-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'cr-medium';
    src: url('fonts/CeraRoundPro-Medium.woff2') format('woff2'),
        url('fonts/CeraRoundPro-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'cr-regular';
    src: url('fonts/CeraRoundPro-Regular.woff2') format('woff2'),
        url('fonts/CeraRoundPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'cr-thin';
    src: url('fonts/CeraRoundPro-Thin.woff2') format('woff2'),
        url('fonts/CeraRoundPro-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
/* Resets */
:root {
    /* primary colors */
    --p-green: #37C8AE;
    --p-black: #030512;
    --p-white: #ffffff;
    --p-dark-green: #193239;
    /* secondary colors */
    --s-black: #151515;
    --s-dark-grey: #545E71;
    --s-grey: #8E8E8E;
    --s-light-grey: #F4F5F6;
    /* random colors */
    --r-light-grey: #e0e0e0;
    /* other colors */
    --orange: #FFC107;
    --green: #52C41A;
    --red: #FF4D4F;
    /* font weights */
    --weight-400: 400;
    --weight-500: 500;
    --weight-600: 600;
    --weight-700: 700;
    --weight-900: 900;
    /* box shadow */
    --drop-shadow-1: 0px 10px 30px 0px rgba(0, 18, 65, 0.10);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    overflow-x: hidden;
}
body {
    font-family: 'cr-regular', sans-serif;
}
h1 {
    font-family: 'Encode Sans', sans-serif;
    line-height: 100px;
    margin: 0;
}
h2 {
    font-family: 'Encode Sans', sans-serif;
    font-weight: var(--weight-600);
    line-height: 73px;
    margin: 0;
}
h3,
h4,
h5,
h6 {
    font-family: 'Cabin', sans-serif;
    font-weight: var(--weight-600);
    margin: 0;
}
p {
    margin: 0;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
ul li {
    text-decoration: none;
    list-style: none;
}
button:focus {
    outline: none;
    outline-color: transparent;
    box-shadow: none;
}
a,
a:hover,
a:focus,
button {
    text-decoration: none;
    outline: none;
    cursor: pointer;
    box-shadow: none;
    transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
}
input:focus {
    outline: none;
    box-shadow: none;
}
::selection {
    color: var(--p-black);
    background-color: #f4f5f6;
}
/* Custom Classes */
/* buttons */
.header-btn a,
button[type="submit"] {
    font-family: 'cr-medium', sans-serif;
    background-color: var(--p-green);
    color: var(--p-white);
    font-size: 18px;
    display: inline-block;
    padding: 16px 36px 14px;
    border-radius: 2px;
    border: 1px solid transparent;
    min-width: max-content;
    text-align: center;
    line-height: 1;
}
.header-btn a:hover,
button[type="submit"]:hover {
    color: var(--p-green);
    border-color: var(--p-green);
    background-color: transparent;
}
/* links */
a.link {
    font-family: 'cr-medium', sans-serif;
    font-size: 22px;
    color: var(--p-green);
    max-width: max-content;
}
a.link:hover {
    color: var(--p-dark-green);
}
a.link.arrow {
    display: flex;
    align-items: center;
    gap: 16px;
}
a.link.arrow i {
    font-size: 24px;
}
a.link.arrow:hover i {
    transform: rotateZ(45deg);
    /* transition-delay: 0.3s; */
}
/* spans */
span.green {
    color: var(--p-green) !important;
}
/* small text above heading */
span.small-head {
    font-family: 'cr-medium', sans-serif;
    font-size: 22px;
    color: var(--s-dark-grey);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}
/* headings */
.sec-head {
    font-size: 60px;
    margin-bottom: 24px;
}
/* transitions */
.transition-01 {
    transition: all ease-in-out .1s;
    -moz-transition: all ease-in-out .1s;
    -webkit-transition: all ease-in-out .1s;
    -o-transition: all ease-in-out .1s;
}
.transition-02 {
    transition: all ease-in-out .2s;
    -moz-transition: all ease-in-out .2s;
    -webkit-transition: all ease-in-out .2s;
    -o-transition: all ease-in-out .2s;
}
.transition-03 {
    transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -webkit-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
}
/* custom scroll bar css starts */
/* width */
::-webkit-scrollbar {
    width: 6px;
    height: 2px;
}
/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--p-white);
    border-radius: 0px;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--p-green);
    border-radius: 0px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--p-green);
}
/* custom scroll bar css ends */
/*==============================
    index page
================================*/
/* header */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
}
header.filled {
    background-color: var(--p-dark-green);
    background-color: rgba(25,50,57,0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    -moz-backdrop-filter: blur(4px);
    -ms-backdrop-filter: blur(4px);
}
header.filled .header-inner {
    padding: 10px 0;
}
.header-inner {
    transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
}
.header-banner-wrap {
    position: relative;
}
.header-banner-wrap::before {
    content: '';
    background-image: url(images/gradient-bg.svg);
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: cover;
    width: 100%;
    height: 77%;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
.header-inner {
    padding: 32px 0;
    position: relative;
}
/* nav */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}
nav ul a {
    font-family: 'cr-medium', sans-serif;
    font-size: 18px;
    color: #ffffff;
    position: relative;
    border-bottom: 2px solid transparent;
}
nav ul a:hover,
nav ul a.active {
    color: var(--p-green);
}
nav ul a::after {
    position: absolute;
    content: "";
    top: 124%;
    left: 0;
    width: 80%;
    height: 1.5px;
    border-radius: 50px;
    background-color: var(--p-green);
    transform: scaleX(0);
    transition: transform 0.5s;
    transform-origin: left;
}
nav ul a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    width: 80%;
}
nav ul a.active::after {
    transform: scaleX(1);
    transform-origin: left;
    width: 80%;
}
.menu-btn-wrap {
    display: none;
}
/* banner */
.banner-wrap {
    padding-top: 140px;
}
.banner-inner {
    padding: 102px 0 0;
}
.banner-text {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 100px;
}
.banner-heading h1 {
    font-size: 80px;
    color: var(--p-white);
}
.info-text {
    margin-bottom: 24px;
}
.info-text p {
    font-size: 20px;
    line-height: 26px;
    color: var(--p-white);
}
.info-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.info-point-single h2 {
    font-family: 'Cabin', sans-serif;
    font-weight: var(--weight-600);
    font-size: 30px;
    color: var(--p-white);
    line-height: unset;
    margin-bottom: 4px;
}
.info-point-single p {
    font-size: 20px;
    color: var(--s-grey);
}
.banner-image {
    width: 100%;
    height: 500px;
    border-radius: 40px;
    overflow: hidden;
    margin: 100px 0 0;
}
.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* brands wrap */
.brands-wrap {
    padding-top: 100px;
}
.brands-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
}
/* home about */
.home-about-wrap {
    padding: 120px 0 150px;
}
.home-about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}
.home-about-img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}
.home-about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}
.home-about-text p {
    font-size: 24px;
    line-height: 36px;
    color: var(--s-dark-grey);
    margin-bottom: 24px;
}
/* home services */
.home-services-wrap {
    position: relative;
}
.home-services-wrap::before {
    content: '';
    background-image: url(images/gradient-bg.svg);
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: cover;
    width: 100%;
    height: 80%;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
.home-services-inner {
    padding-top: 120px;
}
.home-services-head {
    text-align: center;
}
.home-services-head span,
.home-services-head h2 {
    color: var(--p-white);
}
.home-services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 60px;
}
.home-service-single {
    background-color: var(--p-white);
    border-radius: 16px;
    box-shadow: var(--drop-shadow-1);
    padding: 50px 32px;
    text-align: center;
}
.home-service-single img {
    margin-bottom: 20px;
}
.home-service-single h3 {
    font-size: 24px;
    color: var(--p-black);
    margin-bottom: 20px;
    text-align: center;
}
.home-service-single p {
    font-size: 20px;
    line-height: 32px;
    color: var(--s-dark-grey);
    margin-bottom: 24px;
}
.home-service-single a {
    margin: 0 auto;
}
/* home process wrap */
.home-process-wrap {
    padding: 150px 0;
}
.home-process-head {
    max-width: 817px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.home-process-head h2 {
    margin-bottom: 24px;
    text-align: center;
}
.home-process-head p {
    font-size: 24px;
    line-height: 36px;
    color: var(--s-dark-grey);
    text-align: center;
}
.home-process-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 110px;
    max-width: 969px;
    width: 100%;
    margin: 60px auto 0;
    position: relative;
}
.home-process-list::before {
    content: '';
    width: 75%;
    height: 0;
    margin: 0 auto;
    position: absolute;
    top: 44px;
    left: 0;
    right: 0;
    border-bottom: 2px dashed var(--p-green);
    z-index: -1;
}
.home-process-single {
    text-align: center;
}
.home-process-single img {
    box-shadow: var(--drop-shadow-1);
    margin-bottom: 24px;
    border-radius: 50%;
}
.home-process-single h3 {
    font-size: 28px;
    font-weight: var(--weight-600);
    color: var(--p-black);
    margin-bottom: 12px;
}
.home-process-single p {
    font-size: 20px;
    line-height: 32px;
    color: var(--s-dark-grey);
}
/* home projects */
.home-projects-wrap {
    padding: 0 0 150px;
}
.home-projects-head {
    text-align: center;
}
.home-projects-head span,
.home-projects-head h2 {
    text-align: center;
}
.home-projects-list {
    display: grid;
    grid-template-columns: repeat(2, 49%);
    gap: 2%;
    margin-top: 60px;
}
.home-project-single {
    background-color: var(--p-white);
    border-radius: 16px;
    box-shadow: var(--drop-shadow-1);
    padding: 24px 24px 32px;
}
.home-project-single-img {
    width: 100%;
    height: 445px;
    border-radius: 10px;
    overflow: hidden;
}
.home-project-single-img a {
    border-radius: 10px;
    overflow: hidden;
}
.home-project-single-img a:hover img {
    transform: scale(100.90%);
}
.home-project-single-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}
.home-project-single-text {
    margin-top: 24px;
}
.home-project-single-text>a:first-child {
    font-family: 'Cabin', sans-serif;
    font-size: 24px;
    font-weight: var(--weight-600);
    color: var(--p-black);
    margin-bottom: 16px;
    display: block;
    width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-project-single-text>a:first-child:hover {
    color: var(--p-green);
}
.home-project-single-text p {
    font-size: 20px;
    line-height: 32px;
    color: var(--s-dark-grey);
    margin-bottom: 24px;
    display: -webkit-box;
    max-width: 90%px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* testimonials wrap */
.testimonials-wrap {
    background-color: var(--s-light-grey);
    padding: 160px 0 120px;
}
.testimonials-inner {
    display: grid;
    grid-template-columns: 1fr 582px;
    gap: 40px;
    position: relative;
}
.testimonials-head {
    position: relative;
    z-index: 9;
}
.testimonials-head p {
    font-size: 24px;
    line-height: 36px;
    color: var(--s-dark-grey);
}
.testimonials-slider.owl-carousel {
    position: unset;
}
.testimonial-slide-single {
    position: relative;
    background-color: var(--p-white);
    border-radius: 16px;
    box-shadow: var(--drop-shadow-1);
    max-width: 582px;
    width: 100%;
    height: auto;
    padding: 40px 32px 30px;
}
.testimonial-slide-single::before {
    content: '';
    width: 74px;
    height: 56px;
    background: url(images/double-quotes.svg) no-repeat;
    background-size: contain;
    position: absolute;
    top: -40px;
    left: 0;
}
.testimonial-text {
    padding-bottom: 24px;
}
.testimonial-text p {
    font-size: 20px;
    line-height: 32px;
    color: var(--s-dark-grey);
}
.testimonial-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.testimonial-info-text h4 {
    font-size: 20px;
    font-weight: var(--weight-600);
    color: var(--p-black);
    margin-bottom: 8px;
}
.testimonial-info-text p {
    font-family: 'cr-medium', sans-serif;
    font-size: 16px;
    color: var(--s-dark-grey);
}
.testimonial-info-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
}
.testimonial-info-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.testimonials-slider .owl-stage-outer {
    overflow: visible;
}
.testimonials-slider .owl-item {
    visibility: hidden;
    opacity: 0;
}
.testimonials-slider .owl-item.active {
    visibility: visible;
    opacity: 1;
}
.testimonials-slider .owl-nav {
    position: absolute;
    right: 0;
    top: -55px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.testimonials-slider .owl-prev,
.testimonials-slider .owl-next {
    width: 51px;
    height: 34px;
    background: var(--p-green) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}
/* footer wrap */
footer {
    background: url(images/gradient-bg.svg) no-repeat center;
    background-size: cover;
}
.footer-inner {
    padding-top: 100px;
}
.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 50px;
    border-bottom: 1px solid #1B373C;
}
.footer-cta-text p {
    font-family: 'cr-medium', sans-serif;
    font-size: 26px;
    color: var(--p-white);
    margin-bottom: 12px;
}
.footer-cta-text h4 {
    font-family: 'Encode Sans', sans-serif;
    font-size: 56px;
    font-weight: var(--weight-600);
    line-height: 73px;
    color: var(--p-white);
}
.footer-links-wrap {
    display: grid;
    grid-template-columns: 4fr 1fr 1fr 1fr;
    padding: 60px 0 86px;
    gap: 50px;
}
.footer-links a.footer-logo {
    display: block;
    margin-bottom: 20px;
}
.footer-links-wrap .footer-links:nth-child(1) {
    max-width: 333px;
    width: 100%;
}
.footer-links p {
    color: var(--p-white);
    line-height: 26px;
    margin-bottom: 24px;
}
.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--p-white);
    border-radius: 50%;
    border: 1px solid transparent;
}
.footer-social a i {
    color: var(--p-green);
}
.footer-social a:hover {
    background-color: transparent;
    border-color: var(--p-green);
}
.footer-links ul li:not(:last-child) {
    margin-bottom: 24px;
}
.footer-links a {
    color: var(--p-white);
}
.footer-links a:hover {
    color: var(--p-green);
}
.footer-links.contact i {
    font-size: 18px;
    color: var(--p-green);
    margin: 3px 12px 0 0;
}
.footer-links.contact li {
    display: flex;
}
.footer-copyright {
    text-align: center;
    padding: 32px 0;
}
.footer-copyright p {
    font-size: 14px;
    text-align: center;
    color: var(--p-white);
}
/*==============================
    contact page
================================*/
/* inner header + banner */
.header-banner-wrap.inner::before {
    height: 100%;
}
.header-banner-wrap.inner::after {
    content: '';
    background-image: url(images/banner-after-logo.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 151px;
    height: 256px;
    position: absolute;
    right: 0;
    bottom: 0;
}
.header-banner-wrap.inner.no-banner::after {
    width: 60px;
    height: 86px;
}
.inner-banner-text h1 {
    color: var(--p-white);
    font-size: 40px;
    line-height: 52px;
}
.inner-banner {
    padding: 70px 0 180px;
}
/* contact wrap */
.contact-wrap {
    padding: 120px 0;
}
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}
.contact-text h2 {
    font-size: 32px;
    line-height: normal;
    margin-bottom: 16px;
}
.contact-text p {
    font-size: 20px;
    line-height: 32px;
    color: var(--s-dark-grey);
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}
.contact-info .icon i {
    font-size: 16px;
    color: var(--p-green);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--p-green);
    width: 44px;
    height: 44px;
}
.contact-number,
.contact-email {
    display: flex;
    align-items: center;
    gap: 12px;
}
.contact-info .text span {
    display: block;
    font-family: 'Cabin', sans-serif;
    font-size: 16px;
    font-weight: var(--weight-600);
    color: var(--s-black);
    margin-bottom: 6px;
    line-height: normal;
}
.contact-info .text a {
    font-family: 'cr-regular', sans-serif;
    font-size: 16px;
    line-height: normal;
    color: var(--s-dark-grey);
}
.contact-info .text a:hover {
    color: var(--p-green);
    text-decoration: underline;
}
.contact-form {
    padding: 50px 40px;
    border-radius: 8px;
    background-color: var(--p-white);
    filter: drop-shadow(0px 10px 30px rgba(0, 18, 65, 0.10));
}
form .form-field {
    width: 100%;
    margin-bottom: 24px;
}
form .form-field input,
form .form-field textarea {
    font-family: 'cr-regular', sans-serif;
    font-size: 16px;
    font-weight: var(--weight-400);
    color: var(--s-black);
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--r-light-grey);
    padding: 12px 16px;
}
form .form-field input:focus,
form .form-field textarea:focus {
    border-color: var(--p-green);
    outline: none;
}
form .form-field input::placeholder,
form .form-field textarea::placeholder {
    color: var(--s-grey);
}
.form-field textarea {
    resize: none;
}
.form-btn {
    text-align: center;
}
.form-btn button {
    width: 100%;
    text-align: center;
    border-radius: 4px;
}
/*==============================
    info page wrap (thankyou + 404)
================================*/
.header-banner-wrap.no-banner {
    padding: 57px 0;
}
.info-pg-outer {
    padding: 80px 0;
}
.info-pg-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-pg-wrap {
    text-align: center;
    word-break: break-word;
}
.info-pg-wrap h2 {
    font-size: 46px;
    color: var(--p-black);
    margin-bottom: 16px;
    text-align: center;
}
.info-pg-wrap p {
    font-size: 22px;
    color: var(--s-dark-grey);
    line-height: 34px;
    text-align: center;
}
.info-pg-wrap img {
    max-width: max-content;
    width: 100%;
    margin: 40px auto;
}
.info-pg-wrap h3 {
    font-size: 26px;
    color: var(--p-black);
    margin-bottom: 24px;
    text-align: center;
}
.info-pg-wrap a:not(:last-child) {
    display: block;
    font-size: 18px;
    color: var(--p-green);
    line-height: 34px;
    text-align: center;
}
.info-pg-wrap a:not(:last-child):hover {
    color: var(--p-black);
}
.info-pg-wrap a.button {
    margin-top: 24px;
}
.info-pg-outer.pg-404 .info-pg-wrap img {
    margin: 0 auto 40px;
}
.info-pg-outer.pg-404 .info-pg-wrap h3 {
    font-size: 32px;
    font-weight: var(--weight-700);
    margin-bottom: 16px;
}
/*=====================================================================
    Agreements pages (terms of use + privacy policy + data protection)
=====================================================================*/
.agreement-outer {
    padding: 100px 0 120px;
}
.agreement-wrap h1 {
    font-size: 32px;
    line-height: initial;
    color: var(--p-black);
    font-weight: var(--weight-600);
    margin-bottom: 48px;
}
.agreement-wrap .agreement-text:not(:last-child) {
    margin-bottom: 32px;
}
.agreement-text h2 {
    font-family: 'Cabin', sans-serif;
    font-size: 22px;
    line-height: initial;
    font-weight: var(--weight-600);
    color: var(--s-black);
    margin-bottom: 12px;
}
.agreement-text p, .agreement-text p a {
    font-family: 'cr-regular', sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: var(--s-dark-grey);
    font-weight: var(--weight-400);
}
.agreement-text p a {
    text-decoration: underline;
}
.agreement-text p a:hover {
    color: var(--p-green);
}
.agreement-text p:not(:last-child) {
    margin-bottom: 12px;
}
.agreement-text ul {
    list-style: disc;
    padding-left: 30px;
    margin-top: 12px;
}
.agreement-text ul li {
    font-family: 'cr-regular', sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: var(--s-dark-grey);
    font-weight: var(--weight-400);
    list-style: disc;
}
.agreement-text ul li:not(:last-child) {
    margin-bottom: 12px;
}
.logo-wrap,
.footer-logo {
  max-width: 180px;
}
.logo-wrap img,
.footer-logo img {
  width: 100%;
}
