/*
Theme Name: Core X Pay
*/

/* 
=================================== Table of contents ================================ 

*/

/* ================================ General css Reset code =========================== */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    border: 0;
    padding: 0;
    margin: 0
}


:root {}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-family: 'Inter', sans-serif;
    background-color: #000;
    scroll-padding-top: 80px;
}

body.overlay {
    position: relative;
}

body.lock {
    overflow: hidden;
}

body.lock header#header {
    position: fixed;
}

body.overlay:before {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(0, 0, 0, 0.40);
    z-index: 101;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

input,
textarea,
select,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    outline: none;
    border: none;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.container {
    max-width: 1256px;
    margin: 0 auto;
    padding: 0 20px;
}



/* =========================================== General Classes ==================================  */
.title {
    font-family: "DM Sans";
    font-size: 44px;
    font-weight: 500;
    line-height: 66px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    line-height: 106%;
    color: #0E0B40;
}

.title-secondary {
    font-family: "DM Sans";
    font-size: 64px;
    font-weight: 700;
    line-height: 84px;
    letter-spacing: -0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    background: -webkit-linear-gradient(#6B5EE0, #0A0449);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.sub-title {
    margin-top: 15px;
    font-family: "DM Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 27.9px;
    letter-spacing: -0.001em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #47464F;
}

.primary-btn {
    border-radius: 88px;
    background: #7FEE64;
    color: #000;
    display: inline-flex;
    align-items: center;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    line-height: 145%;
    /* 31.9px */
    letter-spacing: -0.022px;


    padding: 7px 8px;
    cursor: pointer;
    transition: .2s ease;
    position: relative;
    z-index: 2;
    min-width: fit-content;

}

.primary-btn span {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 145%;
    letter-spacing: -0.022px;
    padding: 0 16px;

}

.primary-btn:hover,
.pricing-plan__btn2:hover {
    box-shadow: 0 0 0 5px rgb(127 238 99 / 28%);
}

.secondary-btn {
    border-radius: 88px;
    background-color: #000;
    display: inline-flex;
    align-items: center;
    font-size: 22px;
    font-weight: 500;
    line-height: 145%;
    max-width: fit-content;
    /* 31.9px */

    padding: 7px 8px;
    transition: .5s ease;
    border: 1px solid #DDFFDC4D;
    cursor: pointer;

}

.secondary-btn:hover {
    background: #F1F0F2;
}

.secondary-btn:hover span {
    color: #000;
}

.secondary-btn span {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 145%;
    letter-spacing: -0.022px;
    padding: 0 16px;
    color: #DDFFDC;
}

.primary-btn__img,
.secondary-btn__img {
    padding: 4px;
    border-radius: 32px;
    display: inline-block;
}


.light-btn {
    border-radius: 88px;
    background: rgba(87, 16, 142, 0.08);
    display: inline-flex;
    align-items: center;
    font-size: 22px;
    font-weight: 500;
    line-height: 145%;
    /* 31.9px */

    padding: 7px 8px;
    transition: .5s ease;
    border: 1px solid #57108E0A;
    cursor: pointer;

}

.light-btn:hover {
    background: #F1F0F2;
}

.light-btn span {


    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.001em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;


    text-align: center;
    padding: 0 16px;
    color: #57108E;
}


.text-gradient {
    font-size: 64px;
    background: -webkit-linear-gradient(#6B5EE0, #0A0449);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



/* =========================================== Header ============================================ */

header#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header__content-wrapper {
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 24px;
    margin-top: 15px;
    background: #212525;
}

.header__nav-wrapper {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: end;
}

.mob-menu-btn {
    display: none;
}

.header__btn {
    min-width: fit-content;
}

.header__logo-link-block,
.header__btn-block {
    flex-basis: 27%;
}

.header__logo-link-block {
    position: relative;
    z-index: 11;
}

.header__nav-wrapper {
    flex-basis: 46%;
}

.header__logo-wrapper {
    position: relative;
    z-index: 100;
}

.header__logo-wrapper img {
    display: block;
}

.header__nav-list {
    display: flex;
    gap: 13px;
}

.header__nav-link {
    color: #DDFFDC;
    font-size: 16px;
    font-weight: 400;
    line-height: 145%;
    letter-spacing: -0.022px;
    transition: .5s ease;
    display: block;
    padding: 0 8px;
}

.header__nav-list-item.menu-item-has-children {
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
}

.header__nav-list-item.menu-item-has-children>span.menu-arrow {
    background-image: url('');
    background-repeat: no-repeat;
    width: 13px;
    height: 100%;
    transition: all .5s ease;
    background-position-y: center;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
    padding-top: 11px;
}

.sub-menu .header__nav-list-item {
    padding: 12px;
    background: rgba(255, 255, 255, 0.70);
    color: #808080;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    /* 200% */
    letter-spacing: -0.28px;
    transition: all .5s ease;
    border-radius: 0;
    margin-top: 1px;
}

.sub-menu .header__nav-list-item:nth-child(1) {
    border-radius: 0 8px 0 0;
    margin-top: 0;
}

.sub-menu .header__nav-list-item:nth-last-child(1) {
    border-radius: 0 0 8px 8px;
}

.header__btn-block {
    text-align: end;
    display: flex;
    justify-content: end;
    align-items: center;
}

.header__btn span {
    font-size: 16px;
}

.arrow-btn-no-bg {
    border-radius: 50%;
    border: 1px solid #C2BEC9;
    padding: 8px;
}

.header__burger {
    display: none;
    position: relative;
    width: 16px;
    height: 16px;
    z-index: 11;
    margin-right: 8px;
}

.header__burger span {
    position: absolute;
    left: 0;
    width: 100%;
    background: #DDFFDC;
    height: 2px;
    top: 7px;
    transition: .4s;
    border-radius: 1px;
}

.header__burger::before,
.header__burger::after {
    content: '';
    background: #DDFFDC;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    transition: .4s;
    border-radius: 1px;
}

.header__burger::before {
    top: 0;
}

.header__burger::after {
    bottom: 0;
}

.header__burger.active span {
    transform: scale(0);
}

.header__burger.active::before {
    transform: rotate(45deg);
    top: 9px;
}

.header__burger.active::after {
    transform: rotate(-45deg);
    bottom: 5px;
}

.header__btn.login {
    color: #DDFFDC;
    margin-right: 15px;
}

.header__btn.sign-up {
    color: #7FEE64;
    display: flex;
    align-items: center;
}

/* menu */
/* li.menu-item.header__nav-list-item {
    border: 1px solid #5D5791;
    border-radius: 20px;
    padding: 3px;
} */

.menu-item a:hover {
    color: #7fee63;
}

.current_page_item a {
    color: #7fee63;
}


.nav-dropdown {
    position: absolute;
    display: none;
    z-index: 1;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    background: #fff;
    padding: 10px;
}

.nav-dropdown li {
    margin-bottom: 10px;

}

/* ====================================== Home Page ==================================== */

/* first screen */
#main {
    margin-top: 100px;
    /* margin-top: calc(100px + (260 - 100) * ((100vw - 320px) / (1920 - 320))); */
}

.fs-sctn {
    /* height: calc(100dvh - 80px);
    min-height: 500px; */
    min-height: 900px;
    min-height: calc(115px + (908 - 115) * ((100vw - 320px) / (1920 - 320)));

    background: url(assets/img/sctn-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.fs-sctn .container {
    height: 100%;
}

.fs__content-wrapper {
    /* height: 68%; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
}

.sctn__flex-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    position: relative;
}

.fs__content-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.fs__title {
    font-family: "Lexend Zetta";
    /* font-size: 71.56px; */
    font-size: calc(34px + (71 - 34) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 300;
    line-height: 80px;
    letter-spacing: -0.1em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #DDFFDC;
    text-transform: uppercase;

}

.x-corexpay-img {
    display: none;
    justify-content: center;
    margin: 30px 0px;
}

.fs__title span {
    color: #7FEE64;
}

.fs__text {
    display: block;
}

.fs__text {
    max-width: 544px;
    color: #DDFFDC;
}

.fs__text span {
    color: #0DFBA4;
}

.fs__text {
    position: relative;
}

.fs__text {
    max-width: 544px;
    color: #DDFFDC;
    margin-top: 60px;
}

.fs__text span {
    color: #0DFBA4;
}

.fs__text:after {
    content: url(assets/img/arrow-mobile.svg);
    position: absolute;
    right: 160px;

    bottom: -25px;
}

.fs__btns-wrapper {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.fs__sctn-img {
    position: absolute;
    right: -43px;
    top: 220px;
}

/* WHY COREXPAY SECTION */
.about-corexpay-sctn {
    background: url(assets/img/about-corexpay-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-bottom: 200px;
}

.about-corexpay {
    color: #DDFFDC;
    font-family: 'Lexend Zetta';
    font-weight: 300;
    /* font-size: 71.56px; */
    font-size: calc(28px + (71.56 - 28) * ((100vw - 320px) / (1920 - 320)));
    line-height: 80px;
    margin-bottom: 115px;
    text-transform: uppercase;
}

.about-corexpay-row {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}


.about-corexpay-column {}

.about-corexpay-column:nth-child(1) {
    flex-basis: calc(20% - 16px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-corexpay-column:nth-child(2) {
    flex-basis: calc(80% - 16px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-corexpay-img {
    display: flex;
    align-items: center;
}

.about-corexpay-column p {
    margin-bottom: calc(24px + (50 - 24) * ((100vw - 320px) / (1920 - 320)));
    color: #DDFFDC;
    font-family: 'Inter';
    font-weight: 700;
    font-size: calc(24px + (43.58 - 24) * ((100vw - 320px) / (1920 - 320)));
    line-height: 47.67px;
    letter-spacing: -1.7px;
}

/* Features SECTION */

.features-sctn {
    background: #212525;
    padding: 80px 0;
}

.features-title {
    font-family: 'Lexend Deca';
    font-size: 40px;
    font-weight: 600;
    line-height: 40px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #7FEE64;
    margin-bottom: 30px;

}

.features-row {
    /* margin-top: 80px; */
    display: flex;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.features-column {
    flex-basis: calc(50% - 16px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features-icon {
    margin-right: 20px;
}

.features-icon-box {
    display: flex;
    align-items: start;
    border-bottom: 1px solid #DDFFDC4D;
    padding: 25px 25px;
}

.features-icon-box-title {
    font-family: 'Inter';
    font-size: 19.95px;
    font-weight: 400;
    line-height: 23px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #DDFFDC;

}

.features-icon-box-text {
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #DDFFDC99;
}

/* Why COREXpay SECTION */
.why-corexpay-sctn {
    padding: 80px 0px;

}

.why-corexpay-title {
    font-family: 'Lexend Deca';
    font-size: 40px;
    font-weight: 600;
    line-height: 40px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #7FEE64;
    margin-bottom: 50px;
}

.why-corexpay-text {
    font-family: 'Lexend Zetta';
    /* font-size: 48px; */
    font-size: calc(34px + (48 - 34) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 300;
    line-height: 70px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000;
    margin-bottom: 24px;
    background: linear-gradient(89.05deg, #7FEE64 10.65%, #6FEAF8 21.07%, #F6FADB 34.9%, #7FEE64 60.65%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;

}

.why-corexpay-boxes-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.why-corexpay-box {
    padding: 40px;
    border: 1px solid #DDFFDC4D;
    background: rgb(0 0 0 / 80%);
    backdrop-filter: blur(8px);
    width: 405px;
}

.why-corexpay-box-icon {
    margin-bottom: 15px;
}

.why-corexpay-box-title {
    font-family: 'Inter';
    font-size: 20.48px;
    font-weight: 400;
    line-height: 23px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #DDFFDC;
    margin-bottom: 60px;

}

.why-corexpay-box-text {
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #DDFFDC99;
    margin-bottom: 100px;

}



/* FOOTER */
#footer {
    background: #000;
    background: url(assets/img/footer-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 700px;
}

.footer__wrapper {
    /* padding: 65px 0px 65px 0px; */
    padding: 500px 0px 65px 0px;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer__nav {
    display: flex;
    justify-content: space-between;
}

.footer-top-info__left {
    flex-basis: calc(50% - 24px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-top-info__left,
.footer-top-info__right {
    flex-basis: calc(50% - 24px);
}

.footer__contact-links {
    font-family: "DM Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FAFAFA;
    display: flex;
    flex-direction: column;
}

.footer__nav-block h4 {
    font-family: "DM Sans";
    font-size: 14px;
    font-weight: 500;
    line-height: 16.8px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #A9A9A9;


}

a.footer__nav-block-link {
    font-family: 'Inter';
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

    color: #DDFFDC99;
}

.footer__logo {
    margin-bottom: 30px;
}

nav.footer__nav {
    display: flex;
    justify-content: end;
}

.footer__nav-block {
    display: flex;
    flex-direction: column;
}

.footer__nav-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0 0 0 36px;
}

.footer__contact-links .footer__link:nth-child(2) {
    margin-bottom: 20px;
}

body.home #footer.up {
    margin-top: -350px;
}

/* ====================================== HERO SECTION ==================================== */
.hero-sctn {
    /* min-height: 40dvh;
    height: 63dvh; */
    /* padding: 96px 0px; */
    padding: calc(30px + (96 - 30) * ((100vw - 320px) / (1920 - 320))) 0;
    background: url(assets/img/hero-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-sctn-content-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
}

.hero-title {
    font-family: 'Lexend Zetta';
    font-size: calc(34px + (71 - 34) * ((100vw - 320px) / (1920 - 320)));

    font-weight: 300;
    line-height: 80px;
    letter-spacing: -0.1em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #DDFFDC;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.hero-text {
    font-family: 'Inter';
    font-size: 30.58px;
    font-weight: 400;
    line-height: 47.67px;
    letter-spacing: -1.702380895614624px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #DDFFDC;
    width: 80%;
    align-self: center;
}

.hero-logo {
    background: url(assets/img/hero-logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    height: 250px;
    width: 600px;
    top: 110px;
    left: -190px;
}

.hero-sctn.contacts {
    /* min-height: 40dvh;
    height: 63dvh; */
    /* padding: 96px 0px; */
    padding: calc(30px + (96 - 30) * ((100vw - 320px) / (1920 - 320))) 0;
    background: url(assets/img/hero-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-sctn.contacts .hero-sctn-content-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
}

.hero-sctn.contacts .hero-title {
    font-family: 'Lexend Zetta';
    font-size: calc(34px + (71 - 34) * ((100vw - 320px) / (1920 - 320)));

    font-weight: 300;
    line-height: 80px;
    letter-spacing: -0.1em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #DDFFDC;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.hero-sctn.contacts .hero-text {
    font-family: 'Inter';
    font-size: 30.58px;
    font-weight: 400;
    line-height: 47.67px;
    letter-spacing: -1.702380895614624px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #DDFFDC;
    width: 80%;
    align-self: center;
}

.hero-sctn.contacts .hero-logo {
    background: url(assets/img/hero-logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    height: 250px;
    width: 600px;
    top: 110px;
    left: -190px;
}

/* ====================================== Products Page==================================== */


.products-sctn {}

.products-sctn-content-wrapper {}

/* PRODUCTS SECTION */
.products-sctn {
    background-color: #000;
}

.products__title-wrapper {
    text-align: center;
    margin-bottom: 124px;
    padding-top: 50px;
}

.products__items-wrap {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 150px;
}

.products__item-wrapper {
    /* margin-top: 80px; */
    margin-top: calc(0px + (80 - 0) * ((100vw - 320px) / (1920 - 320)));
    display: flex;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.products__item-img-block {
    display: flex;
    justify-content: end;
}

.products__item-text-block,
.products__item-img-block {
    flex-basis: calc(50% - 16px);
}


.products__item {
    display: flex;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.products__item-title {
    font-family: 'Lexend Deca';
    font-size: 40px;
    font-weight: 600;
    line-height: 40px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000;
    margin-bottom: 70px;
    background: linear-gradient(89.05deg, #7FEE64 10.65%, #6FEAF8 21.07%, #F6FADB 34.9%, #7FEE64 60.65%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.products__item-text {
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

    color: #DDFFDC;
    margin-bottom: 70px;
}


/* ====================================== About US PAGE ==================================== */
.about-us-sctn {
    margin-top: 70px;
}

.about-us-corexpay-text {
    font-family: 'Lexend Zetta';
    font-size: 48px;
    font-weight: 300;
    line-height: 70px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000;
    margin-bottom: 100px;
    background: linear-gradient(89.05deg, #7FEE64 10.65%, #6FEAF8 21.07%, #F6FADB 34.9%, #7FEE64 60.65%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;


}

.about-us-corexpay-title {
    font-family: 'Lexend Deca';
    font-size: 40px;
    font-weight: 600;
    line-height: 40px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000;
    margin-bottom: 24px;
    background: linear-gradient(89.05deg, #7FEE64 10.65%, #6FEAF8 21.07%, #F6FADB 34.9%, #7FEE64 60.65%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 50px;
}

.about-us-corexpay-boxes-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.about-us-corexpay-box {
    padding: 40px;
    border: 1px solid #DDFFDC4D;
    background: rgb(0 0 0 / 80%);
    backdrop-filter: blur(8px);
    width: 297px;
}

.about-us-corexpay-box-icon {
    margin-bottom: 15px;
}

.about-us-corexpay-box-title {
    font-family: 'Inter';
    font-size: 20.48px;
    font-weight: 400;
    line-height: 23px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #DDFFDC;
    margin-bottom: 60px;
}

.about-us-corexpay-box-text {
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #DDFFDC99;
    margin-bottom: 100px;
}

/* ====================================== Terms And Conditions page ==================================== */

.terms-and-condition-content>* {
    font-size: 18px;
    font-weight: 400;
    line-height: 27.9px;
    letter-spacing: -0.001em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #DDFFDC;
}

.terms-and-condition-content h1,
.terms-and-condition-content ul {
    margin-bottom: 30px;
}

.terms-content-title {
    margin-top: 100px;
    font-family: 'Inter';
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #DDFFDC;

}

/* ====================================== SHEDULE DEMO page ==================================== */
.contacts-sctn {
    margin-top: 60px;
}

.required-item {
    color: #BA1A1A;
}

.contacts-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: -150px;
}

.contacts__form-block {
    flex-basis: calc(50% - 16px);
    position: relative;
}

.contacts__calendly-block {
    flex-basis: calc(45% - 16px);
}

.contacts__calendly-block .calendly-inline-widget {
    min-width: 250px;
    height: 100%;
    border-radius: 20px;
    background: #fff;
    padding: 6px;
    min-height: 650px;
}

.form-body.hide,
.popup-form-body.hide {
    display: none;
}

.form-title {
    font-family: 'Lexend Zetta';
    font-size: 48px;
    font-weight: 300;
    line-height: 70px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000;
    margin-bottom: 24px;
    background: linear-gradient(89.05deg, #7FEE64 10.65%, #6FEAF8 21.07%, #F6FADB 34.9%, #7FEE64 60.65%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

form#form {
    background: #2C3232;
    padding: 40px;
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form__item {
    position: relative;
    padding-top: 24px;
}

.form__label {
    display: block;
    transition: .4s;
    color: #DDFFDC;
    font-size: 14px;
    font-weight: 400;
    line-height: 155%;
    letter-spacing: -0.018px;
}

.form__label.active {
    top: 0;
    left: 0;
    color: var(--Text-Primary-text-for-light, #32395E);
    font-size: 14px;
    font-weight: 700;
    line-height: 170%;
    /* 23.8px */
    letter-spacing: -0.014px;
}

.form__input {
    width: 100%;
    padding: 6px 8px;
    /* border: 1px solid #C2BEC9; */
    border-radius: 8px;
    outline: none;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 155%;
    letter-spacing: -0.018px;
    background: #343A3A;
}

.form__input:focus {
    border-bottom: 1px solid var(--Active-elements-Primary, #635AFF);
    caret-color: var(--Active-elements-Primary, #635AFF);
}

.form__input.invalid {
    border-bottom: 1px solid var(--Active-elements-Error, #ED6161);
}

#formMessage {
    min-height: 84px;
    resize: vertical;
    padding: 6px 8px;
    outline: none;
}

.required-field,
.valid-email {
    display: none;
    position: absolute;
    bottom: -20px;
    left: 16px;
    color: var(--Active-elements-Error, #ED6161);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    /* 15.6px */
    letter-spacing: 0.2px;
}

.required-field.active,
.valid-email.active {
    display: block;
}



.form__privacy-block {
    padding: 8px 8px 8px 16px;
    margin-bottom: 95px;
}

input#formAgreement,
input#popup-formAgreement {
    display: none;
}

label.checkbox__label {
    display: inline-flex;
    align-items: center;
    gap: 24px;
}

label.checkbox__label:before {
    content: '';
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    background-color: transparent;
    border-radius: 5px;
    border: 1px solid #C2BEC9;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
}

.checkbox__input:checked+.checkbox__label::before {
    background-image: url(assets/img/checkbox.svg);
    border: none;
}

.agree-text {
    color: #DDFFDC;
    font-size: 14px;
    font-weight: 400;
    line-height: 155%;
    letter-spacing: -0.018px;
}

.agree-text a:hover {
    text-decoration: underline;
}

.form-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: center;
}

.form__button {
    padding: 8px 40px;
}

.form__button.inactive {
    background-color: var(--BG-Border-for-light, #C2BEC9);
    cursor: default;
}

.form-bottom__contacts {
    text-align: -webkit-right;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-bottom__contact-link {
    color: #DDFFDC;
    text-align: right;
    font-size: 14px;
    font-weight: 400;
    line-height: 155%;
    letter-spacing: -0.018px;
    display: inline-block;
}

.form-thankyou-msg-wrapper,
.popup-form-thankyou-msg-wrapper {
    display: none;
}

.form-thankyou-msg-wrapper.active,
.popup-form-thankyou-msg-wrapper.active {
    display: block;
}

.form-bottom__contact-link:hover {
    text-decoration: underline;
}

.form-thankyou-msg__title {
    font-family: 'Lexend Zetta';
    font-size: 48px;
    font-weight: 300;
    line-height: 70px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000;
    margin-bottom: 24px;
    background: linear-gradient(89.05deg, #7FEE64 10.65%, #6FEAF8 21.07%, #F6FADB 34.9%, #7FEE64 60.65%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-thankyou-msg__img-block {
    border-radius: 16px;
    background: var(--BG-Forground, #F1F0F2);
    padding: 36px 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.form-thankyou-msg__text {
    color: #DDFFDC;
    font-size: 22px;
    font-weight: 400;
    line-height: 145%;
    letter-spacing: -0.022px;
}

.form-thankyou-msg__text a {
    color: var(--Active-elements-Primary, #635AFF);
    text-decoration-line: underline;
}


/* ======================================= Popup Form ====================================== */
.popup-form-block {
    position: fixed;
    top: 100px;
    border-radius: 10px;

    background: #2C3232;
    padding: 32px 40px;
    max-width: 720px;
    width: 720px;
    left: calc(50% - 720px/2);
    opacity: 0;
    transform: scale(.5);
    visibility: hidden;
    z-index: 102;
    transition: .5s ease;
}

.popup-form-block.active {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

form.popup-form-body {
    position: relative;
}

.popup-form-close-img,
.support-popup-form-close-img {
    position: absolute;
    top: 32px;
    right: 40px;
    cursor: pointer;
    z-index: 2;
}

.popup-flex-input {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.popup-flex-input .form__item.popup-form__item {
    flex-basis: calc(50% - 12px);
}

.form__item.popup-form__item {
    margin-bottom: 28px;
}

.form__privacy-block.popup-form__privacy-block {
    margin-bottom: 12px;
}


@media(max-width: 1240px) {
    .fs__sctn-img {
        display: none;
    }
}

@media(max-width: 1024px) {

    /* ------------------------ */
    .fs__sctn-img img {
        width: 400px;
    }

    .fs__sctn-img {
        position: absolute;
        right: 0;
        top: 333px;
    }

    .fs__title {
        font-size: 39.56px;
        width: 60%;
    }

    /* ------------------------ */
    #main {
        margin-top: 130px;
    }

    .header__content-wrapper {
        padding: 13px 20px;
    }

    .header__nav-wrapper.active {
        transform: translateX(0);
        z-index: 10;
    }

    .header__nav-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100dvh;
        background: #FEFEFE;
        background-position: center;
        background-size: cover;
        transform: translateX(100%);
        transition: all 1s ease;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        padding: 120px 20px 32px;
    }

    .header__nav-wrapper {
        position: fixed;
        top: 85px;
        left: 0;
        width: 100vw;
        height: 100dvh;
        background: #000;
        background-position: center;
        background-size: cover;
        transform: translateX(100%);
        transition: all 1s ease;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        padding: 40px 20px 32px;
    }


    .header__nav-wrapper.active {
        transform: translateX(0);
        z-index: 10;
    }

    .header__nav {
        width: 100%;
    }

    ul#menu-menu {
        flex-direction: column;
        gap: 0;
    }

    .header__nav-link {
        font-size: 28px;
        font-weight: 300;
        line-height: 127%;
        padding: 14px 0;
        color: #DDFFDC;
    }

    .header__nav-list-item.menu-item-has-children {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header__nav-list-item.menu-item-has-children>span.menu-arrow {
        height: 30px;
    }

    .header__nav-list-item.menu-item-has-children.active>span.menu-arrow {
        transform: rotate(180deg);
    }

    .sub-menu {
        flex-basis: 100%;
        position: relative;
        display: none;
    }

    .sub-menu.active {
        display: block;
        opacity: 1;
        visibility: visible;
        display: block;
        padding-top: 0;
    }

    .sub-menu .header__nav-list-item {
        font-size: 16px;
        font-weight: 700;
        line-height: 30px;
        /* 187.5% */
        letter-spacing: -0.32px;
        text-align: center;
        background-color: transparent;
        padding: 12px 0 0 0;
    }

    .mob-menu-btn {
        width: 100%;
        display: block;
    }

    .mob-menu-btn-link {
        border-radius: 88px;
        border: 1px solid var(--BG-Border-for-light, #C2BEC9);
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
        position: relative;
        color: var(--Text-Primary-text-for-light, #32395E);
        font-size: 22px;
        font-weight: 500;
        line-height: 145%;
        letter-spacing: -0.022px;
    }

    .mob-menu-btn-link span {
        padding: 4px;
        border-radius: 32px;
        background: var(--Active-elements-Primary, #635AFF);
        position: absolute;
        right: 8px;
    }

    /* on off */
    /* .header__nav-wrapper {
        display: none;
    } */

    .header__btn-block {
        display: none;
    }

    .header__burger {
        display: block;
    }

    .features-block-wrapper {
        min-width: 315px;
    }

    .nav-dropdown {
        position: relative;
    }
}




@media(max-width: 991px) {

    /* ------------------------ */
    .fs__sctn-img img {
        width: 65%;
    }

    .fs__sctn-img {
        display: none;
    }

    /* ------------------------ */
    .our-history-content-column {
        flex-basis: auto;
    }


}

@media(max-width: 768px) {

    .x-corexpay-img {
        display: flex;
        justify-content: center;
        margin: 30px 0px;
    }

    .about-corexpay-sctn {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: 15px 10px;

    }

    /* ------------------------ */
    .fs__text:after {
        right: 35px;
    }

    .about-corexpay-column:nth-child(2) {
        flex-basis: 100%;
    }

    .about-corexpay-column:nth-child(1) {
        display: none;
    }

    .why-corexpay-box {
        width: 100%;
    }

    .hero-logo {
        display: none;
    }

    /* ------------------------ */
    .fs__title {
        font-size: 65px;
    }

    .services__item-text-block,
    .services__item-img-block {
        flex-basis: 100%;
    }

    .sctn__flex-item {
        margin-top: 288px;
    }

    .about-us-page-flex-item {
        flex-direction: column;
    }

    .about-us-page-content-text-wrapper,
    .about-us-page-sctn-img {
        flex-basis: auto;
    }

    .about-container {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .about-counter-blocks-wrap {
        display: flex;
        flex-direction: column;
    }

    .about-counter-blocks-wrap {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .about-counter-block-wrapper {
        position: relative;
        width: 50%;
    }

    .about-title-wrapper h2 {
        color: #000;
        margin-bottom: 48px;
        width: 100%;
        text-align: center;
    }

    .features-sctn-row {
        flex-direction: column;
    }

    .services-page-flex-item {
        flex-direction: column;
    }

    .how-it-works-content-column {
        flex-basis: auto;
    }

    .how-it-works-card {
        min-width: auto;

    }

    .offer-content-column {
        flex-basis: auto;
        margin-bottom: 50px;
    }

    .our-history-content-column {
        flex-basis: auto;
    }

    .y-line-block-wrapper-with-icon {
        flex-direction: row;
    }

    .how-it-works-card {
        min-width: auto;
    }

    .payment-content-column {
        flex-basis: auto;
    }

    .payment-img-wrapper {
        flex-basis: auto;
    }

    .manual-content-column {
        flex-basis: auto;
    }

    .processing-content-column {
        flex-basis: auto;
    }

    /* FORM */
    .contacts__form-block {
        flex-basis: 100%;
    }

    .contacts__calendly-block {
        flex-basis: 100%;
    }
}

@media(max-width: 768px) {
    #main {
        margin-top: 64px;
    }

    .fs-sctn {
        background: #000;
        min-height: 500px;
    }

    .fs__sctn-img {
        display: inline-block;
    }

    .header__logo-link-block,
    .header__btn-block {
        flex-basis: 50%;
    }

    .fs__content-wrapper {
        height: auto;
    }

    .fs__title {
        font-size: 34px;
        line-height: 36px;
        width: 100%;
    }

    .fs__btns-wrapper {
        margin-top: 40px;
    }

    /* .fs__text {
        display: none;
    } */
    .fs__text-mobile {
        display: block;
    }

    .sctn__flex-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        flex-direction: column;
        margin-top: 22px;
    }

    .fs__content-text-wrapper {
        order: 2;
    }

    .fs__sctn-img {
        order: 1;
        position: relative;
        top: 0;
        background: url(assets/img/fs-sctn-mobile-bg.png);
        background-size: contain;
        background-repeat: no-repeat;
    }

    .fs__sctn-img img {
        left: 35%;
        position: relative;
    }

    .about-counter-title {
        font-size: 35px;
    }

    .secondary-btn span,
    .primary-btn span {
        font-size: 12px;
    }

    .about-counter-block-wrapper::before {
        left: -10px;
    }

    .features-block-wrapper {
        min-width: auto;
    }

    .features-row .features-column:nth-child(1) {
        order: 2;
    }

    .features-row .features-column:nth-child(2) {
        order: 1;
    }

    .hero-sctn {
        height: auto;
        padding: 30px 0px;

    }

    .hero-title {
        /* font-size: 34px; */
        line-height: 40px;
        margin-bottom: 40px;
    }

    .hero-text {
        width: 100%;
        font-size: 28px;
    }

    .products__item-text-block,
    .products__item-img-block {
        flex-basis: 100%;
    }

    .products__item-text-block {
        order: 2;
    }

    .footer__wrapper {
        flex-direction: column;
    }

    .footer__nav-block {
        margin: 0 30px 0 0;
    }

    .footer-top-info__left {

        margin-bottom: 20px;
    }

    nav.footer__nav {
        justify-content: start;
    }

    .additional-content-column,
    .white-label-content-column {
        flex-basis: auto;
    }

    .services-page-title {
        font-size: 46px;
    }

    .title-secondary {
        font-size: 43px;
        line-height: 60px;
    }

    .card-container-title {
        font-size: 40px;
        line-height: 55px;
    }

    .benefits-content-column {
        flex-basis: auto;
    }

    .fork-content-column {
        flex-basis: auto;
    }

    .additional-services-content-column {
        flex-basis: auto;

    }

    .recruitment-services-content-column {
        flex-basis: auto;
    }

    .card-container {
        padding: 25px;
    }

    .terms-title {
        font-size: 26px;
    }

    .y-line-block-wrapper-with-icon {
        flex-direction: column;
    }

    .our-history-content-column {
        flex-basis: auto;
    }

    .how-it-works-card {
        min-width: auto;
    }

    .why-us-content-column {
        flex-basis: auto;
    }

    .why-us-card {
        min-width: auto;
    }

    .features-title {
        font-size: 24px;
        width: 45%;
    }

    .features-row {
        flex-direction: column;
    }

    .why-corexpay-text {
        font-size: 27px;
        line-height: 36px;
    }

    .about-us-corexpay-text {
        font-size: 19px;
        line-height: 38px;
    }

    .about-us-corexpay-box {
        width: 100%;
    }

    /* FORM */
    .contacts__form-block {
        width: 100%;
    }

    .form-title {
        font-size: 44px;
        font-weight: 400;
        line-height: 60px;
        letter-spacing: -0.01em;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
    }

    .contacts-wrapper {
        border-radius: 24px;
    }

    #footer {
        background: #000;
        min-height: 300px;

    }

    .footer__nav {
        flex-direction: column;
    }

    .footer__wrapper {
        padding: 40px;
        min-height: 110px;
    }

    #footer {
        margin-top: 0px !important;
    }


    /* ----------- */

    /* Popup */
    .popup-form-block {
        width: 100%;
        left: 0;

    }

    .form-thankyou-msg__title {
        font-size: 26px;
        line-height: 43px;
    }

}


@media(max-width: 375px) {
    #main {
        margin-top: 64px;
    }

    .header__logo-link-block,
    .header__btn-block {
        flex-basis: 60%;
    }

    .fs__title {
        font-size: 27px;
    }

    .sctn__flex-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
        flex-direction: column;
        margin-top: 88px;
    }

    .secondary-btn span,
    .primary-btn span {
        font-size: 10px;
    }

    .features-block-wrapper {
        min-width: auto;
    }

    .services-page-title {
        font-size: 50px;
    }

    .y-line-block-wrapper-with-icon {
        flex-direction: column;
    }

    .why-us-content-column {
        flex-basis: auto;
    }

    .why-us-card {
        min-width: auto;
    }

    /* FORM */

    .contacts__form-block {
        width: 100%;
    }

    .contacts-wrapper {
        border-radius: 24px;
    }

    /* ----------- */

    /* Popup */
    .popup-form-block {
        width: 100%;
        left: 0;

    }
}

@media(max-width: 320px) {
    #main {
        margin-top: 60px;
    }

    .header__logo-link-block,
    .header__btn-block {
        flex-basis: 60%;
    }

    .fs__title {
        font-size: 27px;
    }

    .sctn__flex-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
        flex-direction: column;
        margin-top: 88px;
    }

    .secondary-btn span,
    .primary-btn span {
        font-size: 8px;
    }

    .features-block-wrapper {
        min-width: auto;
    }

    .about-counter-title {
        font-size: 35px;
    }

    .services-page-title {
        font-size: 40px;
    }

    .why-us-content-column {
        flex-basis: auto;
    }

    .why-us-card {
        min-width: auto;
    }

    .contacts-wrapper {
        padding: 15px 14px;

    }

    /* FORM */
    .contacts-wrapper {
        border-radius: 24px;
    }

    /* Popup */
    .popup-form-block {
        width: 100%;
        left: 0;

    }
}