@charset "UTF-8";
@import"https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,900&display=swap";

:root {
    --color-primary: #FFAC19;
    --color-secondary: #691A88;
    --color-black: #1C1C1C;
    --color-white: #ffffff;
    --color-gray: #A29797;
    --gradient: linear-gradient(180deg, #FFAC19 0%, #691A88 100%);
    --font-family: "Poppins", Arial, Helvetica, sans-serif;
    --s-unit: 8px;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1080px;
    --breakpoint-xl: 1200px
}

body {
    margin: 0;
    display: flex;
    place-items: center;
    min-width: 320px;
    min-height: 100vh;
    font-family: var(--font-family);
    background-color: var(--color-black);
    overflow-x: hidden;
    position: relative
}

#root {
    width: 100vw
}

a {
    cursor: pointer
}

h1,
.h1 {
    font-size: 49px;
    line-height: 73px
}

h1.black,
.h1.black {
    font-weight: 900
}

h1.bold,
.h1.bold {
    font-weight: 700
}

h1.light,
.h1.light {
    font-weight: 300
}

h2,
.h2 {
    font-size: 39px;
    line-height: 47px
}

h2.black,
.h2.black {
    font-weight: 900
}

h2.bold,
.h2.bold {
    font-weight: 700
}

h2.light,
.h2.light {
    font-weight: 300
}

h3,
.h3 {
    font-size: 30px;
    line-height: 41px
}

h3.black,
.h3.black {
    font-weight: 900
}

h3.bold,
.h3.bold {
    font-weight: 700
}

h3.light,
.h3.light {
    font-weight: 300
}

h4,
.h4 {
    font-size: 20px;
    line-height: 30px
}

h4.black,
.h4.black {
    font-weight: 900
}

h4.bold,
.h4.bold {
    font-weight: 700
}

h4 .light,
.h4 .light {
    font-weight: 300
}

p,
a,
li {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    text-decoration: none
}

p.bold,
a.bold,
span.bold {
    font-weight: 600
}

p.light,
a.light {
    font-weight: 100
}

.body-blur {
    filter: blur(4px);
}

.txt-white {
    color: var(--color-white)
}

.txt-black {
    color: var(--color-black)
}

.txt-blue {
    color: var(--color-secondary)
}

.txt-green {
    color: var(--color-primary)
}

.mobile {
    display: none
}
.with-background-gif {
    background-image: url('../images/api.gif'); 
    background-repeat: no-repeat; 
    background-position: right center; 
    display: flex; 
    justify-content: flex-start; 
    align-items: center; 
    text-align: left;
}
@media (max-width: 768px) {
    .with-background-gif {
        background-image: none; /* Hide the background image on mobile */
    }
}

@media (max-width: 992px) {
    .mobile {
        display: block
    }

    .desk {
        display: none
    }

    h1 {
        font-size: 24px;
        line-height: 36px;
        letter-spacing: 0em
    }

    h2 {
        font-size: 18px;
        line-height: 24px
    }

    h3 {
        font-size: 16px;
        line-height: 20px
    }

    h4 {
        font-size: 14px;
        line-height: 24px
    }

    p {
        font-size: 13px;
        line-height: 19.5px
    }
}

.notfound-main {
    padding-top: 130px;
    width: 100vw;
    min-height: calc(100vh + 500px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-black)
}

.notfound-main .content {
    margin: calc(var(--s-unit) * 10) 0;
    padding: calc(var(--s-unit) * 2);
    max-width: 1080px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

.notfound-main .content * {
    color: var(--color-white)
}

@media (max-width: 1080px) {
    .notfound-main .content {
        width: calc(100% - var(--s-unit) * 4) !important
    }
}

.nav-container {
    width: 100vw;
    height: 130px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    z-index: 1010
}

.nav-container a,
.nav-container p,
.nav-container span {
    font-size: 14px
}

.nav-container.responsive {
    height: 70px
}

.nav-container .col {
    width: 1080px;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between
}

.nav-container .logo {
    height: 72px;
    margin: calc(var(--s-unit) * 2) 0px
}

.nav-container .logo:hover {
    cursor: pointer
}

.nav-container .links {
    text-transform: uppercase;
    color: var(--color-white);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.nav-container .links .item {
    margin: calc(var(--s-unit) * 2) calc(var(--s-unit) * 5);
    text-decoration: none;
    z-index: 4
}

.nav-container .links .action {
    position: relative
}

.nav-container .links .action:hover {
    z-index: 3
}

.nav-container .links .action:hover .nav-menu-container {
    display: block !important
}

.nav-container .links .btn p {
    color: var(--color-black) !important
}

.nav-container .links .item:last-child {
    margin-right: 0
}

.nav-container .links .item:hover {
    border-bottom: 4px solid var(--color-white);
    cursor: pointer
}

.nav-container .active {
    border-bottom: 4px solid var(--color-white)
}

.nav-container .burguer {
    display: none
}

.menu {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100%;
    padding: 80px 0 0;
    background-color: var(--color-black) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.menu .menu-links {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: center;
    text-align: center;
    width: 100%;
    align-self: start
}

.menu .menu-links .item {
    padding: 20px 16px;
    color: var(--color-white);
    text-transform: uppercase
}

.menu .menu-links .btn {
    margin: 50px
}

.menu .menu-links .btn p {
    color: var(--color-black) !important
}

.scrolled {
    background-color: var(--color-black);
    box-shadow: 0 4px 20px #00000040
}

.responsive .logo {
    height: 50px
}

.responsive .links {
    display: none
}

.responsive .burguer {
    display: block
}

.responsive .col {
    padding: 0px calc(var(--s-unit) * 2)
}

.responsive.scrolled .logo {
    height: 32px
}

.relative {
    position: relative;
    width: 100vw;
    height: 100vh
}

ul.submenu {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    list-style: none;
    position: relative
}

ul.submenu .arrow {
    position: absolute;
    right: 24px;
    top: 28px;
    border: solid var(--color-white);
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 4px
}

ul.submenu .arrow.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg)
}

ul.submenu .arrow.left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg)
}

ul.submenu .arrow.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg)
}

ul.submenu .arrow.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg)
}

ul.submenu a.action-next>.arrow {
    border-color: var(--color-white);
    top: 22px;
    padding: 7px
}

ul.submenu a.action-back {
    text-transform: uppercase;
    color: var(--color-primary);
    padding: 20px 16px
}

ul.submenu a.action-back>.arrow {
    border-color: var(--color-primary);
    right: initial;
    left: 20px;
    top: 22px;
    padding: 7px
}

ul.submenu a.action-back>.close {
    position: absolute;
    right: 20px;
    color: var(--color-white);
    font-size: 28px
}

ul.submenu .solutions-menu-main {
    display: flex;
    flex-direction: column;
    align-content: center;
    text-align: center;
    width: 100%;
    align-self: start;
    position: relative;
    position: absolute;
    height: 100vh;
    background-color: var(--color-black)
}

ul.submenu .solutions-menu-main .menu-links {
    position: relative
}

ul.submenu .solutions-menu-main .menu-links .menu-links li {
    border-bottom: 1px solid var(--color-white)
}

ul.submenu .solutions-menu-main a.item {
    width: 100%;
    padding: 20px 0 20px 20px;
    color: var(--color-white);
    text-transform: uppercase;
    align-items: center;
    text-align: left;
    border-top: 1px solid var(--color-white)
}

ul.submenu .solutions-menu-main a.item:last-child {
    border-bottom: 1px solid var(--color-white)
}

ul.submenu .solutions-menu-main ul.menu-links {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    list-style: none;
    border-top: 1px solid var(--color-white);
    position: relative
}

ul.submenu .solutions-menu-main ul.menu-links li.item {
    text-align: left;
    padding-left: 100px
}

ul.submenu .solutions-menu-main ul.menu-links li.item:before {
    content: "•";
    color: var(--color-primary);
    display: inline-block;
    width: 1em;
    margin-left: -1em
}

ul.submenu .solutions-menu-main ul.menu-links li.item a.item {
    border: none;
    font-size: 13px;
    text-transform: initial;
    padding-left: 0;
    color: var(--color-primary)
}

button.btn {
    font-family: var(--font-family);
    box-shadow: 0 4px 20px #00000040;
    color: var(--color-black);
    border-radius: 56px;
    text-align: start;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: 0px
}

button.btn.green {
    background-color: var(--color-primary)
}

button.btn.white {
    background-color: var(--color-white)
}

button.btn.transparent {
    background-color: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white) !important
}

button.btn.transparent:hover .normal-arrow,
button.btn .transparent-hover {
    display: none
}

button.btn:hover {
    cursor: pointer
}

button.btn:disabled {
    cursor: default !important;
    background-color: #4f8246 !important;
    color: #20341c
}

button.btn:disabled img {
    opacity: .5
}

button.btn.hover-blue:hover {
    background-color: var(--color-secondary)
}

button.btn.hover-white:hover {
    background-color: var(--color-white)
}

button.btn.hover-green:hover {
    background-color: var(--color-primary)
}

button.btn.hover-green-transparent:hover {
    background-color: transparent;
    border-color: var(--color-primary)
}

button.btn.hover-green-transparent:hover p,
button.btn.hover-green-transparent:hover svg,
button.btn.hover-green-transparent:hover img {
    color: var(--color-primary)
}

button.btn.hover-green-transparent:hover .transparent-hover {
    display: block;
    margin-right: initial
}

button.btn.arrow {
    justify-content: space-between
}

button.btn p {
    margin: calc(var(--s-unit) * 3);
    text-transform: uppercase
}

button.btn p a {
    color: inherit;
    text-decoration: none
}

button.btn.arrow p {
    margin: 0;
    margin-left: calc(var(--s-unit) * 3)
}

button.btn img {
    margin-right: calc(var(--s-unit) * 3);
    height: 32px
}

button.btn.arrow.md {
    min-width: 302px
}

button.btn.arrow.sm {
    min-width: 198px
}

button.btn.arrow.sm img {
    height: 23px;
    margin-right: calc(var(--s-unit) * 1)
}

button.btn.arrow.sm p {
    margin-left: calc(var(--s-unit) * 1)
}

button.btn.md {
    height: 56px
}

button.btn.sm {
    height: 45px
}

button.btn.sm p {
    font-size: 12px
}

.nav-menu-container {
    position: absolute;
    top: 24px;
    padding-top: 36px;
    display: none;
    z-index: 2
}

.nav-menu-container .nav-menu {
    background-color: var(--color-white);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-content: center;
    box-shadow: 0 4px 15px #0006;
    max-height: calc(100vh - 150px);
    overflow-y: hidden;
    overflow-x: hidden;
    padding: calc(var(--s-unit) * 2)
}

.nav-menu-container .nav-menu .content-container {
    width: 100%
}

.nav-menu-container .nav-menu .content-container:hover {
    overflow-y: auto
}

.nav-menu-container .nav-menu .content-container::-webkit-scrollbar {
    width: 5px
}

.nav-menu-container .nav-menu .content-container::-webkit-scrollbar-thumb {
    background-color: #00000089;
    border-radius: 5px
}

.nav-menu-container .nav-menu .content-container::-webkit-scrollbar-track {
    background-color: transparent
}

.nav-menu-container .nav-menu .content-container::-webkit-scrollbar-button {
    display: none
}

.nav-menu-container .triangle {
    position: absolute;
    width: 28px;
    top: 24px;
    right: calc(50% - 14px)
}

.country-list-main {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start
}

.country-list-main .region-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 150px
}

.country-list-main .region-column .head {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--color-white)
}

.country-list-main .region-column .head img {
    display: none
}

.country-list-main .region-column .countries-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%
}

.country-list-main .region-column .countries-container .country-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 30px;
    width: 100%;
    text-transform: capitalize
}

.country-list-main .region-column .countries-container .country-item:hover {
    cursor: pointer
}

.country-list-main .region-column .countries-container .country-item:hover p {
    text-decoration: underline
}

.country-list-main .region-column .countries-container .country-item img {
    width: 22px;
    margin-right: var(--s-unit)
}

@media (max-width: 1200px) {
    .country-list-main {
        justify-content: flex-start;
        align-items: center;
        flex-direction: column
    }

    .country-list-main .region-column {
        justify-content: center;
        align-items: center;
        width: 290px
    }

    .country-list-main .region-column .head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: none;
        border-top: .5px solid var(--color-white) !important;
        margin-top: calc(var(--s-unit) * 2)
    }

    .country-list-main .region-column .head:hover {
        cursor: pointer
    }

    .country-list-main .region-column .head img {
        display: block
    }
}

.solutions-menu-main {
    width: 100%
}

.solutions-menu-main .line {
    width: 500px;
    height: 1.3px;
    background-color: var(--color-black);
    margin-bottom: calc(var(--s-unit));
    margin-left: calc(var(--s-unit) * 6)
}

.solutions-menu-main ul {
    margin-top: 0;
    margin-left: calc(var(--s-unit) * 6)
}

.solutions-menu-main ul li {
    color: var(--color-secondary)
}

.solutions-menu-main ul li a {
    color: var(--color-secondary);
    text-transform: none
}

.solutions-menu-main ul li a:hover {
    cursor: pointer;
    text-decoration: underline
}

.solutions-menu-main .link-section-main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start
}

.solutions-menu-main .link-section-main img.icon {
    width: 33px
}

.solutions-menu-main .link-section-main .text {
    width: 500px
}

.solutions-menu-main .link-section-main .text p.bold {
    text-transform: uppercase
}

.solutions-menu-main .link-section-main .text p {
    text-transform: none;
    margin-top: 0;
    margin-bottom: calc(var(--s-unit))
}

.solutions-menu-main .link-section-main:hover {
    cursor: pointer
}

.solutions-menu-main .link-section-main:hover p {
    text-decoration: underline
}

.footer-container {
    background-image: linear-gradient(180deg, #FFAC19 -134px, #000000 120px);
    width: 100vw;
    padding: calc(var(--s-unit) * 2) 0px;
    display: flex;
    justify-content: center
}

.footer-container .footer {
    width: 100%;
    height: 650px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    max-width: 1080px;
    padding-top: calc(var(--s-unit) * 20)
}

.footer-container .footer .left {
    height: 450px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start
}

.footer-container .footer .left h3 {
    margin-top: 0
}

.footer-container .footer .left img {
    height: 55px
}

.footer-container .footer .left .pci {
    display: none
}

.footer-container .footer .right {
    height: 450px;
    width: 40%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start
}

.footer-container .footer .right .left-col {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start
}

.footer-container .footer .right .left-col a {
    margin: calc(var(--s-unit) * 2) 0px;
    text-decoration: none
}

.footer-container .footer .right .left-col a:hover {
    text-decoration: underline
}

.footer-container .footer .right .right-col {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    max-height: 300px;
}

.footer-container .footer .right .right-col .social-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center
}

.footer-container .footer .right .right-col .social-container .social {
    height: 50px;
    width: auto;
    border-radius: 50px;
    margin-left: -16px;
    cursor: pointer
}

.footer-container .footer .right .right-col img {
    width: 100%
}

.footer-container .footer .right .right-col .pci {
    height: 55px
}

.footer-container .footer .bottom {
    width: 100%;
    height: 50px;
    border-top: 4px solid var(--color-white);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between
}

.footer-container .footer .bottom .right,
.footer-container .footer .bottom .left {
    height: 50px !important
}

.footer-container .footer .bottom a {
    margin: 16px
}

.footer-container .footer .bottom a:hover {
    text-decoration: underline
}

.footer-container .footer .bottom a:last-of-type {
    margin-right: 0
}

@media (max-width: 768px) {
    .footer-container .footer {
        padding-left: calc(var(--s-unit) * 2);
        padding-right: calc(var(--s-unit) * 2)
    }

    .footer-container .footer .left {
        width: 100%;
        height: auto;
        flex-direction: row;
        flex-wrap: wrap
    }

    .footer-container .footer .left h3 {
        order: 2;
        font-weight: 700;
        font-size: 24px;
        line-height: 36px
    }

    .footer-container .footer .left img {
        order: 1;
        margin-bottom: calc(var(--s-unit) * 2);
        width: 35%;
        align-self: flex-start
    }

    .footer-container .footer .left .pci {
        display: block;
        align-self: flex-end
    }

    .footer-container .footer .right {
        width: 100%
    }

    .footer-container .footer .right .pci {
        display: none
    }

    .footer-container .footer .bottom {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center
    }

    .footer-container .footer .bottom .left,
    .footer-container .footer .bottom .right {
        width: 100%;
        justify-content: center;
        align-items: center
    }

    .footer-container .footer .bottom a:last-of-type {
        margin-right: 16px
    }
}

.landing-main {
    padding-top: 130px
}

@media (max-width: 992px) {
    .landing-main {
        padding-top: 50px
    }
}

.section-0 {
    text-align: right
}

.section-0 .section-column {
    justify-content: flex-end !important;
    height: 600px
}

.section-0 .background {
    bottom: -50px
}

.section-0 .right {
    max-width: 800px;
    height: 100%;
    margin-right: calc(var(--s-unit) * 2)
}

.section-0 .right .content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.section-0 .right .content p {
    text-align: left
}

.section-0 .right .content .arrow-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    margin-left: calc(var(--s-unit) * 3)
}

.section-0 .right .content .arrow-btn-container:hover {
    cursor: pointer
}

.section-0 .right .content .arrow-btn-container .arrow-btn-border {
    width: 61px;
    height: 82px;
    border-radius: 61px;
    border: 1px white solid;
    display: flex;
    justify-content: center;
    align-items: center
}

.section-0 .right .content .arrow-btn-container .arrow-btn-border img {
    transform: rotate(90deg)
}

@media (min-width: 576px) and (max-width: 992px) {
    .section-0 .background {
        bottom: 0
    }

    .section-0 .right {
        max-width: 600px
    }
}

@media (max-width: 576px) {
    .section-0 {
        text-align: left
    }

    .section-0 .background {
        bottom: 0
    }

    .section-0 .right {
        max-width: 100%;
        width: 100%
    }

    .section-0 .right .content {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start
    }

    .section-0 .right .content p {
        text-align: left
    }

    .section-0 .right .content .arrow-btn-container,
    .section-0 .left {
        display: none
    }
}

.section-container {
    width: 100vw;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative
}

.section-container .section-column {
    max-width: calc(1080px - var(--s-unit) * 2);
    width: calc(100% - var(--s-unit) * 4);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center
}

.section-container .background {
    float: left;
    position: absolute;
    width: 100vw;
    display: flex;
    justify-content: center;
    z-index: -1
}

.section-container .background img {
    width: 100vw
}

.section-container .background .blur {
    width: 120vw;
    height: auto;
    max-width: 100%;
    left: 50%;
    transform: translate(-50%);
    bottom: 0;
    margin: auto
}

.section-container .justify-between {
    justify-content: space-between
}

.section-container .justify-around {
    justify-content: space-around
}

.section-container .justify-center {
    justify-content: center
}

.section-container .justify-start {
    justify-content: flex-start
}

.section-container .justify-end {
    justify-content: flex-end
}

.section-container div[class^=left],
.section-container div[class^=right] {
    height: 500px
}

.section-container div.left-1,
.section-container div.right-1 {
    width: 10%
}

.section-container div.left-2,
.section-container div.right-2 {
    width: 20%
}

.section-container div.left-3,
.section-container div.right-3 {
    width: 30%
}

.section-container div.left-4,
.section-container div.right-4 {
    width: 40%
}

.section-container div.left-5,
.section-container div.right-5 {
    width: 50%
}

.section-container div.left-6,
.section-container div.right-6 {
    width: 60%
}

.section-container div.left-7,
.section-container div.right-7 {
    width: 70%
}

.section-container div.left-8,
.section-container div.right-8 {
    width: 80%
}

.section-container div.left-9,
.section-container div.right-9 {
    width: 90%
}

.section-container div.left-10,
.section-container div.right-10 {
    width: 100%
}

@media (max-width: 992px) {
    .blur {
        width: 100vw !important;
        height: auto
    }
}

@media (max-width: 576px) {

    div[class^=left],
    div[class^=right] {
        width: 100% !important
    }
}

.section-1 {
    background-color: #fff
}

.section-1 .right-5 {
    text-align: right;
    position: relative
}

.section-1 .right-5 img {
    width: 90%;
    position: absolute;
    right: 0;
    top: -90px
}

@media (min-width: 576px) and (max-width: 992px) {

    .section-1,
    .section-1 .right-5,
    .section-1 .left-5 {
        max-height: 300px
    }

    .section-1 h2 {
        font-size: 24px;
        line-height: 36px
    }
}

@media (max-width: 576px) {
    .section-1 h2 {
        font-size: 24px;
        line-height: 36px
    }

    .section-1 .section-column {
        flex-wrap: wrap-reverse
    }

    .section-1 .left-5,
    .section-1 .right-5 {
        width: 100% !important;
        height: auto !important
    }

    .section-1 .right-5 {
        justify-content: center;
        text-align: center
    }

    .section-1 .right-5 img {
        width: 90%;
        position: unset;
        margin-top: -130px
    }
}

.section-2 .background {
    top: -40px
}

.section-2 .section-column {
    flex-direction: column;
    padding-top: 130px
}

.section-2 h2 {
    width: 100%
}

.section-2 .feature-cards-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 399px;
    width: 100%
}

@media (min-width: 576px) and (max-width: 992px) {
    .section-2 .background {
        top: -10px
    }

    .section-2 h2 {
        font-size: 39px;
        line-height: 59px;
        text-align: center
    }

    .section-2 .feature-cards-container {
        justify-content: center
    }
}

@media (max-width: 576px) {
    .section-2 .background {
        top: -1px
    }

    .section-2 h2 {
        font-size: 24px;
        line-height: 36px;
        text-align: center
    }

    .section-2 .feature-cards-container {
        justify-content: center
    }

    .section-2 .section-column {
        flex-wrap: wrap-reverse
    }

    .section-2 .left-5,
    .section-2 .right-5 {
        width: 100% !important;
        height: auto !important
    }

    .section-2 .right-5 {
        justify-content: center;
        text-align: center
    }

    .section-2 .right-5 img {
        width: 90%;
        position: unset;
        margin-top: -130px
    }
}

.feature-card-container {
    height: 327px;
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: calc(var(--s-unit) * 2);
    text-align: center;
    background: rgba(255, 255, 255, .1);
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    border-radius: 20px
}

.feature-card-container p.bold {
    text-transform: uppercase
}

.feature-card-container p.desc {
    height: 96px
}

.feature-card-container img {
    width: 113px;
    height: 113px
}

@media (max-width: 1080px) {
    .feature-card-container {
        height: 209px;
        width: 130px;
        margin: calc(var(--s-unit) * 1)
    }

    .feature-card-container p {
        font-size: 12.14px
    }

    .feature-card-container img {
        width: 56px;
        height: 56px
    }
}

.section-3 .section-column {
    flex-direction: column;
    text-align: center
}

.section-3 .background {
    bottom: -400px
}

.section-3 h2 {
    width: 100%
}

.section-3 .slider {
    width: 100%;
    height: 150px;
    overflow: hidden
}

.section-3 .slider .track {
    animation: scroll 30s linear infinite;
    display: flex;
    flex-direction: row;
    align-content: center
}

.section-3 .slider .track img {
    margin: calc(var(--s-unit) * 2);
    height: 130px
}

@keyframes scroll {
    0% {
        margin-left: 0%
    }

    to {
        margin-left: -100%
    }
}

@media (max-width: 922px) {
    .section-3 .slider img {
        height: 70px !important
    }
}

@media (min-width: 576px) and (max-width: 992px) {
    .section-3 .background {
        bottom: -320px
    }
}

@media (max-width: 576px) {
    .section-3 .background {
        bottom: -1px
    }
    .section-4 {
        margin-top: 0px !important;
    }
    #Section4 > section > div.right-5{
        height: 0px !important;
    }
    #developers > section > div.right-5.with-background-gif{
        height: 0px !important;
    }
    #developers > section > div.left-5{
        height: 300px;
    }

}

.section-4 {
    background-color: #fff;
    margin-top: 300px;
}

.section-4 li {
    margin: calc(var(--s-unit) * 2) 0
}

.section-4 button {
    margin: calc(var(--s-unit) * 6) 0
}

.section-4 .right-5 {
    text-align: right;
    position: relative
}

.section-4 .right-5 .animation {
    width: 80%;
    position: absolute;
    right: 10px;
    top: -270px
}

.section-4-mobile {
    background-color: #fff
}

.section-4-mobile .top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    margin-top: -325px
}

.section-4-mobile .top h2,
.section-4-mobile .top .animation {
    width: 50%
}

.section-4-mobile .bottom {
    width: 100%;
    display: flex;
    flex-direction: column
}

.section-5 {
    height: 300px;
    min-height: auto
}

.section-5 .section-column {
    background-color: var(--color-black);
    padding: 5px;
    background-image: var(--gradient);
    width: 100vw;
    max-width: 100vw
}

.section-5 .gradient {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    background-color: var(--color-black)
}

.section-5 .inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    max-width: 1080px
}

.section-5 h2 {
    margin: 0;
    margin-left: calc(var(--s-unit) * 8)
}

.section-5 .left-5,
.section-5 .right-5 {
    height: 290px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap
}

.section-5 .left-5 {
    align-items: flex-start
}

.section-5 .right-5 {
    align-items: center
}

@media (max-width: 576px) {
    .section-5 {
        text-align: center
    }

    .section-5 .section-column {
        padding: 5px 0;
        width: 100% !important
    }

    .section-5 .left-5,
    .section-5 .right-5 {
        width: 100% !important;
        height: auto !important;
        align-items: center
    }

    .section-5 .left-5 {
        align-self: flex-end;
        margin-bottom: calc(var(--s-unit) * 2)
    }

    .section-5 .right-5 {
        align-self: flex-start
    }

    .section-5 .gradient {
        height: 290px
    }

    .section-5 h2 {
        margin: 0;
        margin-left: 0 !important;
        font-size: 26px;
        line-height: 40px
    }
}

.section-6 {
    /* min-height: 1000px; */
    overflow: hidden;
    justify-content: flex-start;
    background-image: linear-gradient(180deg, rgba(126, 225, 107, .52) 0%, rgba(0, 87, 159, 0) 31.77%, rgba(126, 225, 107, .52) 90.62%), url('/images/coverage.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center
}

.section-6 .background {
    z-index: 0;
    bottom: -1px;
    width: 100vw
}

.section-6 .background img {
    width: 100vw
}

.section-6 .section-column {
    flex-direction: column;
    text-align: center
}

.section-6 h2 {
    width: 100%
}

.section-6 button {
    margin-top: calc(var(--s-unit) * 5)
}

@media (max-width: 992px) {
    .section-6 {
        min-height: 350px
    }

    .section-6 h2 {
        font-size: 26px;
        line-height: 40px
    }
}

.api_section{
    background-color: var(--color-white);
}

.section-7 {
    background-color: var(--color-white);
    justify-content: center;
    min-height: 650px
}

.section-7 .section-column {
    flex-direction: column;
    text-align: center
}

.section-7 h2 {
    margin: 0;
    margin-top: calc(var(--s-unit) * 7)
}

.section-7 h3 {
    width: 100%;
    margin-bottom: calc(var(--s-unit) * 4)
}

@media (max-width: 992px) {
    .section-7 {
        min-height: 350px
    }

    .section-7 h3 {
        font-size: 19px;
        line-height: 40px
    }
}

.app-background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    overflow: hidden
}

.blur {
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
    position: absolute;
    width: 100%
}

.get-started {
    top: 30% !important;
    left: -45% !important;
    overflow: hidden
}

.menu-animation {
    left: -30% !important;
    top: 270px !important
}

@media (max-width: 1080px) {
    .app-background {
        top: 2%
    }
}

@media (max-width: 840px) {
    .app-background {
        top: 5%;
        width: 100vw
    }

    .app-background .bm-pl {
        width: 130%
    }

    .app-background .bm-pl__blob {
        width: 60vw;
        height: 60vw
    }

    .blur {
        z-index: -1;
        top: 0;
        left: 0;
        position: absolute;
        width: 200%
    }
}

.bm-pl {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-bottom: 600px;
    filter: blur(50px)
}

.bm-pl__blob {
    animation: moveR 8s linear infinite;
    border-radius: 50%;
    position: absolute;
    width: 50vw;
    height: 50vw;
    top: 25vw;
    opacity: .7
}

.bm-pl__blob--r {
    background: #FFAC19;
    left: 10%
}

.bm-pl__blob--g {
    animation-name: moveG;
    background: #691A88;
    right: 10%
}

@keyframes moveR {

    0%,
    to {
        border-radius: 54% 79% 75% 58%/70% 66% 71% 47%;
        transform: translate(0) rotate(-35deg) scaleX(.875)
    }

    33% {
        border-radius: 79% 43% 56% 67%/58% 64% 61% 60%;
        transform: translate(2.75em) rotate(0) scale(.75, .875)
    }

    67% {
        border-radius: 55% 77% 56% 67%/58% 64% 61% 60%;
        transform: translate(1.25em, -.5em) rotate(0) scale(1.125, .875)
    }
}

@keyframes moveG {

    0%,
    to {
        border-radius: 60% 59% 51% 58%/69% 64% 52% 55%;
        transform: translate(2.25em, 1em) rotate(45deg) scale(1.125, .875)
    }

    33% {
        border-radius: 51% 95% 72% 59%/75% 98% 54% 75%;
        transform: translateY(.5em) rotate(0) scale(1)
    }

    67% {
        border-radius: 74% 85% 63% 87%/81% 100% 62% 82%;
        transform: translate(1em, 2em) rotate(0) scale(.75, .875)
    }
}

.get-started-main {
    padding-top: 130px;
    width: 100vw;
    min-height: calc(100vh + 500px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center
}

.get-started-main h2 {
    margin-top: 0;
    font-weight: 100
}

.get-started-main .form {
    margin-bottom: calc(var(--s-unit) * 20);
    padding: calc(var(--s-unit) * 2);
    max-width: 800px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center
}

.get-started-main .form .btn {
    align-self: flex-end
}

.get-started-modal p {
    margin: var(--s-unit)
}

.get-started-modal button {
    margin-top: calc(var(--s-unit) * 2);
    margin-left: auto;
    margin-right: auto
}

@media (max-width: 1080px) {
    .get-started-main .form {
        width: calc(100% - var(--s-unit) * 4) !important
    }
}

.input-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: calc(var(--s-unit) * 2)
}

.input-container .label {
    font-size: 13px;
    line-height: 19.5px
}

.input-container .gradient {
    width: 100%;
    border-top-right-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: flex-start
}

.input-container select,
.input-container input,
.input-container textarea {
    width: 100%;
    background-color: transparent;
    height: 30px;
    border: 0;
    border-bottom: 1px solid var(--color-primary);
    font-family: var(--font-family)
}

.input-container select:focus,
.input-container input:focus,
.input-container textarea:focus {
    outline: none;
    box-shadow: none
}

.input-container textarea {
    width: 100%;
    height: calc(100% - 17px);
    border-top-right-radius: 60px;
    border: none;
    padding: 8px;
    resize: none;
    background-color: var(--color-black)
}

.input-container .gradient:has(textarea) {
    height: 200px;
    margin-top: calc(var(--s-unit) * 2);
    padding: 1px;
    background-image: var(--gradient)
}

.input-container:has(textarea) {
    margin-top: calc(var(--s-unit) * 1)
}

.input-container .error {
    color: red
}

.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4;
    width: 100vw;
    height: 100vh;
    background-color: #0009;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center
}

.modal-container .modal-gradient {
    background-image: var(--gradient);
    border-radius: 22px;
    padding: 2px;
    position: relative;
    box-shadow: 0 0 20px #00000040
}

.modal-container .modal-gradient .close {
    position: absolute;
    top: 0;
    left: 0;
    margin: calc(var(--s-unit) * 3)
}

.modal-container .modal-gradient .close:hover {
    cursor: pointer
}

.modal-container .modal-gradient .modal-box {
    border-radius: 22px;
    background-color: var(--color-black);
    width: 100%;
    height: 100%;
    max-height: 100%;
    text-align: center;
    overflow-y: auto
}

.modal-container .white {
    background-image: none
}

.modal-container .white .modal-box {
    background-color: var(--color-white)
}

.cookies-main {
    padding-top: 130px;
    width: 100vw;
    min-height: calc(100vh + 500px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-black)
}

.cookies-main .content {
    margin-bottom: calc(var(--s-unit) * 20);
    padding: calc(var(--s-unit) * 2);
    max-width: 1080px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center
}

.cookies-main .content * {
    color: var(--color-white)
}

@media (max-width: 1080px) {
    .cookies-main .content {
        width: calc(100% - var(--s-unit) * 4) !important
    }
}

.terms-main {
    padding-top: 130px;
    width: 100vw;
    min-height: calc(100vh + 500px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-black)
}

.terms-main .content {
    margin-bottom: calc(var(--s-unit) * 20);
    padding: calc(var(--s-unit) * 2);
    max-width: 1080px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center
}

.terms-main .content * {
    color: var(--color-white)
}

@media (max-width: 1080px) {
    .terms-main .content {
        width: calc(100% - var(--s-unit) * 4) !important
    }
}

.country-main {
    padding-top: 150px;
    width: calc(100vw - var(--s-unit) * 4);
    margin: 0px calc(var(--s-unit) * 2);
    min-height: calc(100vh + 500px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center
}

.country-main .separator {
    width: 100vw;
    height: 6px;
    background: linear-gradient(90deg, #7EE16C 0%, #014ED8 100%)
}

.country-main .blob {
    width: 100vw;
    margin-top: -130px;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: -1
}

.country-main .blob .background {
    width: calc(100vw + 120px);
    max-width: 1400px
}

.country-main .why-section {
    display: flex;
    justify-content: space-between;
    max-width: 1080px;
    width: calc(100vw - var(--s-unit) * 4)
}

.country-main .why-section .left {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start
}

.country-main .why-section .left p {
    width: 90%
}

.country-main .why-section .right {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center
}

.country-main .why-section .right img {
    width: 100%
}

.country-main .country-container {
    margin-bottom: calc(var(--s-unit) * 12);
    padding: calc(var(--s-unit) * 2);
    padding-top: 60px;
    max-width: 1080px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.country-main .country-container .btn {
    align-self: flex-end
}

.country-main .check {
    margin-bottom: calc(var(--s-unit) * 1);
    margin-top: 0
}

.country-main .opacity-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    margin: 0
}

.country-main .opacity-container .country-list-main {
    margin: calc(var(--s-unit) * 3);
    margin-top: 0
}

.country-main .curve {
    width: 100vw
}

.country-bg {
    z-index: 0;
    margin-top: -70px;
    top: 0 !important
}

.country-bg .bm-pl {
    height: 300px
}

.country-bg .bm-pl__blob {
    height: 100%;
    width: 300px;
    left: 48%;
    right: unset;
    top: 0
}

.country-bg .bm-pl__blob--r {
    left: 65%
}

@media (max-width: 1200px) {
    .country-main {
        padding-top: 80px
    }
}

@media (max-width: 800px) {
    .country-main .why-section {
        flex-direction: column
    }

    .country-main .why-section .left {
        order: 2;
        width: 100%
    }

    .country-main .why-section .left h2,
    .country-main .why-section .left p {
        width: 100%
    }

    .country-main .why-section .right {
        width: 100%;
        order: 1
    }

    .country-main .why-section .right img {
        width: 270px
    }

    .country-bg .bm-pl__blob {
        left: 50%;
        top: 0
    }

    .country-bg .bm-pl__blob--r {
        left: 26%
    }
}

.main-app-container:has(>.country-main) {
    background-color: #1c1c1c
}

.payment-modal-container {
    width: 1080px;
    display: flex;
    flex-direction: column;
    justify-content: space-around
}

.payment-modal-container span:hover {
    cursor: pointer;
    text-decoration: underline
}

.payment-modal-container .uppercase {
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, .7);
    color: #ffffffb3;
    margin-bottom: 30px
}

.payment-modal-container h1 {
    margin: 0;
    text-transform: uppercase;
    line-height: 40px
}

.payment-modal-container .top-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px
}

.payment-modal-container .top-container .left {
    width: 40%
}

.payment-modal-container .top-container .right {
    width: 60%;
    display: flex;
    justify-content: flex-end
}

.payment-modal-container .cards-container {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    gap: calc(var(--s-unit) * 1)
}

@media (max-width: 1200px) {
    .payment-modal-container {
        width: 100%;
        text-align: center
    }

    .payment-modal-container .top-container {
        flex-direction: column;
        justify-content: center;
        align-items: center
    }

    .payment-modal-container .top-container .left {
        width: 100%;
        order: 2
    }

    .payment-modal-container .top-container .left h1 {
        margin-top: calc(var(--s-unit) * 4)
    }

    .payment-modal-container .top-container .right {
        width: 100%;
        order: 1;
        justify-content: center
    }

    .payment-modal-container .cards-container {
        gap: calc(var(--s-unit) * 2)
    }
}

.icon-card-container {
    width: calc(232px - var(--s-unit) * 1);
    padding: calc(var(--s-unit) * 2);
    text-align: left;
    background-color: var(--color-black);
    border-radius: 20px;
    min-height: 322px;
    position: relative;
    border: 2px solid #333333
}

.icon-card-container .title {
    margin: 19px 0 0;
    font-size: 16px;
    line-height: 24px
}

.icon-card-container .desc {
    margin-top: calc(var(--s-unit) * 2);
    margin-bottom: calc(var(--s-unit) * 5);
    height: 56px;
    font-size: 13px;
    line-height: 19.5px
}

.icon-card-container .toggle {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: calc(var(--s-unit) * 3) calc(var(--s-unit) * 2);
    width: calc(100% - var(--s-unit) * 4);
    font-size: 13px;
    line-height: 19.5px;
    font-weight: 200
}

.icon-card-container .toggle:hover {
    cursor: pointer;
    text-decoration: underline
}

.icon-card-container .icons-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: calc(var(--s-unit) * 1);
    width: 100%;
    margin-bottom: calc(var(--s-unit) * 5)
}

.icon-card-container .icons-container .icon-container {
    position: relative
}

.icon-card-container .icons-container .icon-container img {
    width: 50px;
    outline: 2px solid rgba(255, 255, 255, .6);
    outline-offset: -2px;
    border-radius: 10px
}

.icon-card-container .icons-container .icon-container .tooltip {
    visibility: hidden;
    width: 120px;
    background-color: #000000b3;
    right: calc(50% - 60px);
    color: var(--color-white);
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    text-transform: capitalize;
    position: absolute;
    z-index: 1
}

.icon-card-container .icons-container .icon-container:hover .tooltip {
    visibility: visible
}

@media (max-width: 683px) {
    .icon-card-container {
        height: auto;
        min-height: 0px;
        width: calc(300px - var(--s-unit) * 2);
        padding: calc(var(--s-unit) * 2)
    }

    .icon-card-container .icons-container {
        max-height: 1000px;
        margin-bottom: calc(var(--s-unit) * 4)
    }

    .icon-card-container .toggle {
        margin-bottom: calc(var(--s-unit) * 1)
    }
}

.search-input-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    position: relative
}

.search-input-container.sm {
    max-width: 519px;
    height: 40px
}

.search-input-container.sm .search-res-container {
    max-width: 519px
}

.search-input-container.lg {
    max-width: 700px;
    height: 60px
}

.search-input-container.lg .search-res-container {
    max-width: 700px;
    top: calc(60px + var(--s-unit))
}

.search-input-container.lg .icon-container {
    width: 60px
}

.search-input-container input {
    background-color: transparent;
    border: 0;
    font-family: var(--font-family);
    background-color: var(--color-white);
    border-radius: 10px 0 0 10px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    padding: 2px 12px;
    margin-right: -1px
}

.search-input-container input::placeholder {
    color: var(--color-black);
    opacity: .6
}

.search-input-container input:focus {
    outline: none;
    box-shadow: none
}

.search-input-container .icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-white);
    width: 40px;
    height: 100%;
    border-radius: 0 10px 10px 0
}

.search-input-container .search-res-container {
    position: absolute;
    top: calc(40px + var(--s-unit));
    left: 0;
    z-index: 2;
    background-color: var(--color-white);
    box-shadow: 0 4px 20px #00000040;
    border-radius: 10px;
    min-height: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start
}

.search-input-container .search-res-container .row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%
}

.search-input-container .search-res-container .row:hover {
    cursor: pointer
}

.search-input-container .search-res-container .row img {
    width: 28px;
    margin: var(--s-unit)
}

.search-input-container .search-res-container .row p {
    margin: var(--s-unit);
    text-transform: capitalize
}

@media (max-width: 1200px) {
    .search-input-container.lg {
        max-width: 494px;
        height: 40px
    }

    .search-input-container.lg .search-res-container {
        max-width: 494px;
        top: calc(40px + var(--s-unit))
    }

    .search-input-container.lg .icon-container {
        width: 40px
    }
}

.coverage-main {
    padding-top: 150px;
    width: calc(100vw - var(--s-unit) * 4);
    min-height: calc(100vh + 500px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 0px calc(var(--s-unit) * 2)
}

.coverage-main .top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1080px;
    width: 100%
}

.coverage-main .top .title {
    border-bottom: 1px solid rgba(255, 255, 255, .7);
    color: #ffffffb3;
    width: 100%;
    margin-bottom: calc(var(--s-unit) * 5)
}

.coverage-main .top .check {
    text-align: center;
    width: 100%;
    margin-top: 0
}

.coverage-main .top .search {
    align-self: center
}

.coverage-main .opacity-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1080px;
    width: 100%;
    margin: 0px 0px calc(var(--s-unit) * 3) 0px;
    border-radius: 10px
}

.coverage-main .opacity-container .country-list-main {
    margin: calc(var(--s-unit) * 3)
}

.coverage-main .curve {
    width: 100vw
}

.coverage-bg {
    z-index: -1;
    margin-top: -70px;
    top: 0 !important
}

.coverage-bg .bm-pl {
    height: 300px
}

.coverage-bg .bm-pl__blob {
    height: 100%;
    width: 300px;
    left: 48%;
    right: unset;
    top: 0
}

.coverage-bg .bm-pl__blob--r {
    left: 65%
}

@media (max-width: 1200px) {
    .coverage-main {
        padding-top: 80px;
        justify-content: center;
        align-items: center
    }

    .coverage-main .top {
        align-items: center;
        justify-content: center
    }

    .coverage-bg .bm-pl__blob {
        left: 50%;
        top: 0
    }

    .coverage-bg .bm-pl__blob--r {
        left: 26%
    }
}

:target {
    scroll-margin-top: 100px
}

.payins-main {
    padding-top: 70px;
    overflow: hidden
}

.payins-main .top .background .blur {
    bottom: -130%
}

.payins-main .solutions-curve {
    width: 100%;
    margin-bottom: -20px;
    margin-top: -180px
}

.payins-main #sol-title {
    justify-content: flex-end;
    min-height: 400px;
    text-align: center
}

.payins-main #sol-title .background {
    top: -1px
}

.payins-main #sol-title h2,
.payins-main #sol-title h3 {
    width: 100%
}

.payins-main #rec-payments,
.payins-main #split-payments {
    justify-content: flex-end;
    min-height: initial
}

.payins-main #rec-payments .background,
.payins-main #split-payments .background {
    top: 0;
    height: 100%
}

.payins-main #rec-payments .background .blur,
.payins-main #split-payments .background .blur {
    top: 0;
    bottom: auto
}

.payins-main #rec-payments h3 {
    width: 100%;
    margin-bottom: var(--s-unit)
}

.payins-main #steps-section {
    min-height: initial
}

.payins-main #split-payments .background .blur {
    top: -200px
}

.payins-main #installments {
    margin-bottom: 60px
}

.payins-main #installments .background {
    height: 100%
}

.payins-main #installments .background .degrade {
    width: 100vw;
    height: 350px;
    background: linear-gradient(0deg, rgba(2, 0, 36, 0) 0%, rgba(17, 97, 201, .9) 50%, rgba(0, 212, 255, 0) 100%);
    top: auto;
    bottom: -300px;
    opacity: .2
}

.payins-main #plugins .section-column {
    height: 1000px;
    align-items: flex-start;
    margin-bottom: calc(var(--s-unit) * 20)
}

.payins-main #plugins .section-column button {
    margin-top: calc(var(--s-unit) * 6)
}

.payins-main #plugins .background {
    height: 100%
}

.payins-main #plugins .background img {
    position: absolute;
    bottom: 6px
}

.payins-main #plugins .background .blur {
    top: px;
    bottom: auto
}

.payins-main #how-works .section-column {
    height: 500px
}

.payins-main #how-works .section-column .left-5,
.payins-main #how-works .section-column .right-5 {
    height: 360px
}

.payins-main #for-devs {
    background-color: var(--color-white)
}

.payins-main #for-devs .section-column {
    height: 300px
}

.payins-main #for-devs .section-column .title {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center
}

.payins-main #for-devs .section-column .title h2 {
    width: calc(100% - 60px)
}

.payins-main #for-devs .section-column .title svg {
    margin-right: calc(var(--s-unit) * 3);
    height: 40px !important;
    width: auto !important
}

.payins-main #for-devs .section-column div[class^=left],
.payins-main #for-devs .section-column div[class^=right] {
    height: auto
}

.payins-main #for-devs .section-column button {
    margin: auto;
    margin-top: calc(var(--s-unit) * 4)
}

@media (max-width: 992px) {
    .payins-main {
        padding-top: 0
    }

    .payins-main .top .background .blur {
        bottom: -30%
    }

    .payins-main .solutions-curve {
        margin-bottom: -10px
    }

    .payins-main #sol-title {
        min-height: 174px
    }

    .payins-main #installments .left-5 {
        order: 3 !important
    }

    .payins-main #installments .right-5 {
        order: 2 !important
    }

    .payins-main #installments button {
        margin-top: calc(var(--s-unit) * 3)
    }

    .payins-main #rec-payments {
        min-height: 190px !important
    }

    .payins-main #how-works .section-column,
    .payins-main #how-works .section-column .left-5,
    .payins-main #how-works .section-column .right-5 {
        height: auto !important
    }

    .payins-main #how-works .section-column .left-5 {
        text-align: center
    }

    .payins-main #how-works .section-column .left-5 img {
        width: calc(100% - var(--s-unit) * 2) !important
    }

    .payins-main #plugins .section-column {
        margin-bottom: calc(var(--s-unit) * 10)
    }

    .payins-main #plugins .solutions-list-item {
        margin-top: calc(var(--s-unit) * 3)
    }

    .payins-main #plugins button {
        margin-top: calc(var(--s-unit) * 1) !important
    }

    .payins-main #for-devs {
        min-height: 400px;
        background-color: var(--color-white)
    }

    .payins-main #for-devs .section-column {
        height: auto !important;
        max-width: 230px
    }

    .payins-main #for-devs .section-column .title .cursor svg {
        height: 28px !important;
        margin-right: calc(var(--s-unit) * 1.5)
    }

    .payins-main #for-devs .section-column div[class^=left],
    .payins-main #for-devs .section-column div[class^=right] {
        height: auto
    }

    .payins-main #for-devs .section-column div[class^=left] h4,
    .payins-main #for-devs .section-column div[class^=right] h4 {
        margin-bottom: 0
    }

    .payins-main #for-devs .section-column div[class^=left] p,
    .payins-main #for-devs .section-column div[class^=right] p {
        margin: 0
    }

    .payins-main #for-devs .section-column button {
        margin: auto;
        margin-top: calc(var(--s-unit) * 4)
    }
}

.top .section-column {
    height: 600px
}

.top .background {
    bottom: -10px
}

.top .background .blur {
    bottom: -90%
}

@media (max-width: 992px) {
    .top {
        min-height: 100px
    }

    .top .section-column {
        height: 300px
    }

    .top .background {
        bottom: -2px
    }

    .top .background .blur {
        width: 300vw;
        transform: translate(-50%)
    }
}

.solutions-head {
    width: 620px
}

@media (max-width: 1080px) {
    .solutions-head {
        margin-top: 20px;
        width: 100%
    }
}

.icon-features {
    background-color: var(--color-white)
}

.icon-features .section-column {
    align-items: flex-start
}

.icon-features .section-column h2 {
    width: 100%
}

.solutions-icon-text {
    margin: calc(var(--s-unit) * 2) 0px;
    width: 510px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between
}

.solutions-icon-text img,
.solutions-icon-text svg {
    width: 60px !important
}

.solutions-icon-text .text {
    width: 430px;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.solutions-icon-text .text h3 {
    margin: 0 0 var(--s-unit) 0
}

.solutions-icon-text .text p {
    margin: 0
}

@media (max-width: 520px) {
    .solutions-icon-text {
        justify-self: center;
        width: 100%
    }

    .solutions-icon-text img,
    .solutions-icon-text svg {
        width: 41px !important
    }

    .solutions-icon-text .text {
        width: calc(100% - 60px)
    }
}

.solution-numbers .background {
    top: -1px
}

.solution-numbers .background .blur {
    top: -50%
}

.solution-numbers .section-column {
    margin-top: calc(var(--s-unit) * 16)
}

.solution-numbers .section-column h2 {
    margin-bottom: 0
}

.solution-numbers .section-column h3 {
    width: 100%
}

.solution-numbers .line {
    height: 70px;
    width: 0px;
    border: none;
    border-right: 2px dotted var(--color-white)
}

@media (max-width: 992px) {
    .solution-numbers .section-column {
        margin: calc(var(--s-unit) * 5) 0px
    }
}

.statistic-card-container {
    height: 140px;
    width: 215px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start
}

.statistic-card-container p {
    margin: 0
}

@media (max-width: 992px) {
    .statistic-card-container {
        width: 160px
    }
}

.side-device {
    background-color: var(--color-white)
}

.side-device .section-column {
    height: 600px
}

.side-device .background {
    bottom: -10px
}

.side-device .left-5 h3 {
    padding-right: calc(var(--s-unit) * 2)
}

.side-device .right-5 {
    display: flex;
    justify-content: flex-start;
    align-items: center
}

.side-device .right-5 img,
.side-device .right-5 svg,
.side-device .right-5 video {
    width: calc(100% + 300px)
}

@media (max-width: 576px) {
    .side-device {
        text-align: center
    }

    .side-device button {
        margin: auto
    }

    .side-device .left-5,
    .side-device .right-5 {
        height: auto !important
    }

    .side-device .right-5 img,
    .side-device .right-5 svg,
    .side-device .right-5 video {
        width: calc(100% + 30px) !important
    }

    .side-device .background {
        top: 0
    }
}

.list-image .section-column {
    height: 800px;
    align-items: flex-start
}

.list-image .background {
    bottom: -10px
}

.list-image .title {
    width: 100%;
    margin-bottom: calc(var(--s-unit) * 1)
}

.list-image p.title {
    width: 550px;
    margin-top: 0
}

.list-image div[class^=left-] img,
.list-image div[class^=left-] video {
    width: 80%
}

.list-image div[class^=left-],
.list-image div[class^=right-] {
    display: flex;
    justify-content: center;
    align-items: center
}

.list-image div[class^=right-] {
    flex-direction: column
}

.list-image button {
    margin: auto
}

.list-image .plugins-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.list-image .plugins-container .icons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center
}

.list-image .plugins-container .icons-container img {
    height: 30px;
    margin: calc(var(--s-unit) * 3)
}

@media (max-width: 992px) {

    .list-image .section-column,
    .list-image .section-column div[class^=left-],
    .list-image .section-column div[class^=right-] {
        height: auto
    }
}

.solutions-list-item {
    width: 480px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;
    margin-bottom: calc(var(--s-unit) * 2)
}

.solutions-list-item img {
    width: 22px
}

.solutions-list-item .text {
    width: 440px
}

.solutions-list-item .text h4 {
    margin-top: 0;
    margin-bottom: var(--s-unit)
}

.solutions-list-item .text p {
    margin-top: 0
}

@media (max-width: 992px) {
    .solutions-list-item {
        width: auto
    }

    .solutions-list-item .text {
        width: calc(100% - 30px)
    }
}

.steps-section h4 {
    width: 100%;
    text-align: center;
    margin-bottom: calc(var(--s-unit) * 5)
}

@media (max-width: 992px) {
    .steps-section h4 {
        margin-bottom: calc(var(--s-unit) * 1)
    }
}


.solutions-step1 {
    /* width: 300px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding:10px;
}

.solutions-step {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start
}

.solutions-step .image {
    height: 180px;
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center
}

.solutions-step p {
    width: 300px;
    height: 80px;
    text-align: center
}

@media (max-width: 576px) {
    .solutions-step .image {
        height: 130px
    }
}

.solutions-steps {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.solutions-steps .dot-line {
    margin-top: 106px;
    width: 70px;
    height: 3px;
    border: none;
    background-image: linear-gradient(to right, var(--color-primary) 33%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 7px 2px;
    background-repeat: repeat-x
}

.solutions-steps .page {
    display: none;
    width: 100%
}

.solutions-steps .page.show {
    display: block
}

.solutions-steps .page .container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center
}

.solutions-steps .selectors-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%
}

.solutions-steps .selectors-container .step-selector {
    width: 53px;
    height: 3px;
    background-color: var(--color-white);
    margin: var(--s-unit)
}

.solutions-steps .selectors-container .step-selector:hover {
    cursor: pointer
}

.solutions-steps .selectors-container .step-selector.selected {
    background-color: var(--color-primary)
}

@media (max-width: 992px) {
    .solutions-steps .page .container {
        flex-direction: column;
        align-items: center
    }
}

.phone-step-container {
    width: 320px;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center
}

.phone-step-container .images {
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center
}

.phone-step-container .images img {
    display: none;
    width: 300px
}

.phone-step-container .images.step-1 .img-1,
.phone-step-container .images.step-2 .img-2,
.phone-step-container .images.step-3 .img-3 {
    display: block
}

.phone-step-container .steps {
    width: 260px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start
}

.phone-step-container .steps .step {
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.phone-step-container .steps .step:hover {
    cursor: pointer
}

.phone-step-container .steps .step:hover p {
    text-decoration: underline
}

.phone-step-container .steps .step.selected .number {
    background-color: var(--color-primary);
    border: none
}

.phone-step-container .steps .step .number {
    width: 61px;
    height: 61px;
    border-radius: 61px;
    border: 1px solid var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white)
}

.phone-step-container .description {
    width: 260px;
    text-align: center
}

.phone-step-container .description p {
    display: none
}

.phone-step-container .description.step-1 .txt-1,
.phone-step-container .description.step-2 .txt-2,
.phone-step-container .description.step-3 .txt-3 {
    display: block
}

.settlements-main {
    padding-top: 70px;
    overflow: hidden
}

.settlements-main .background .blur {
    bottom: 0
}

.settlements-main .solutions-curve {
    width: 100%;
    margin-bottom: -20px;
    margin-top: -180px
}

.settlements-main #list-settlements {
    background-color: var(--color-white)
}

.settlements-main #list-settlements .section-column {
    align-items: flex-start
}

.payment-links-main {
    padding-top: 70px;
    overflow: hidden
}

.payment-links-main #easy {
    padding-top: calc(var(--s-unit) * 16)
}

.payment-links-main #easy .background {
    top: -2px
}

.payment-links-main #easy h2 {
    text-align: center;
    width: 100%
}

.payment-links-main #seamless .right-5,
.payment-links-main #seamless .left-5 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.payment-links-main #seamless .right-5 h2,
.payment-links-main #seamless .left-5 h2 {
    width: 100%
}

.payment-links-main #seamless .background {
    height: 100%;
    bottom: -2px
}

.payment-links-main #seamless .background .degrade {
    width: 100vw;
    height: 500px;
    background: linear-gradient(180deg, rgba(2, 0, 36, 0) 0%, rgba(17, 97, 201, .9) 100%);
    top: auto;
    opacity: .2
}

@media (max-width: 992px) {
    .payment-links-main #easy {
        min-height: initial;
        padding-top: calc(var(--s-unit) * 4)
    }

    .payment-links-main #easy .background .blur {
        transform: translate(-50%, 20%)
    }

    .payment-links-main #seamless div[class^=left],
    .payment-links-main #seamless div[class^=right] {
        height: 350px
    }
}

.no-step-container {
    width: 320px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center
}

.no-step-container .images {
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center
}

.no-step-container .images img {
    display: none;
    width: 300px
}

.no-step-container .images.step-1 .img-1,
.no-step-container .images.step-2 .img-2,
.no-step-container .images.step-3 .img-3 {
    display: block
}

.payouts-main {
    padding-top: 70px
}

.payouts-main .top .background .blur {
    bottom: 0;
    width: 100vw;
    transform: translate(-50%, -5%)
}

.payouts-main .solutions-curve {
    width: 100%;
    margin-bottom: -20px;
    margin-top: -180px
}

.payouts-main #sol-title {
    justify-content: flex-end;
    min-height: 400px;
    text-align: center
}

.payouts-main #sol-title .background {
    top: -1px
}

.payouts-main #sol-title h2,
.payouts-main #sol-title h3 {
    width: 100%
}

.payouts-main #automation .left-5,
.payouts-main #automation .right-5 {
    display: flex;
    justify-content: flex-start;
    align-items: center
}

.payouts-main #automation .left-5 img,
.payouts-main #automation .right-5 img {
    width: 430px
}

.payouts-main #automation .right-5 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.payouts-main #automation .right-5 h3,
.payouts-main #automation .right-5 p {
    width: 100%
}

.payouts-main .call-to-action {
    margin: 20px 0;
    display: flex;
    justify-content: center
}

@media (min-width: 768px) and (max-width: 1200px) {
    .payouts-main .section-container.top .background .blur {
        bottom: 0;
        max-width: initial;
        transform: translate(-50%, -15%)
    }
}

@media (max-width: 768px) {
    .payouts-main {
        padding-top: 40px
    }

    .payouts-main .section-container.top .blur {
        bottom: 0;
        max-width: initial;
        transform: translate(-50%, -35%)
    }

    .payouts-main #icon-features {
        padding-top: 40px
    }

    .payouts-main #icon-features .section-column h2 {
        width: 80%
    }

    .payouts-main #icon-features .solutions-icon-text {
        margin-right: 40px
    }

    .payouts-main .solution-numbers {
        padding-top: 50px
    }

    .payouts-main .statistic-card-container {
        width: 150px
    }

    .payouts-main #sol-title {
        min-height: 174px
    }

    .payouts-main #automation.section-container {
        min-height: initial
    }

    .payouts-main #automation .section-column .left-5 {
        order: 2;
        height: initial
    }

    .payouts-main #automation .section-column .left-5 img {
        width: 100%
    }

    .payouts-main #automation .section-column .right-5 {
        order: 1;
        height: initial
    }

    .payouts-main .call-to-action {
        margin: 40px 0
    }

    .payouts-main #steps-section {
        margin: 50px 0
    }
}

.quick-pay {
    padding-top: 70px
}

.quick-pay .section-container.top {
    min-height: 500px
}

.quick-pay .section-container.top .section-column {
    height: 420px
}

.quick-pay .section-container.top .background .blur {
    bottom: 0;
    top: 20px
}

.quick-pay .section-container.top .background img:nth-of-type(2) {
    display: none
}

.quick-pay .section-container.top h1 {
    margin: 0
}

.quick-pay .section-container.top h3 {
    margin-top: 0
}

.quick-pay #video .video-background {
    float: left;
    position: absolute;
    top: -1px;
    width: 100vw
}

.quick-pay #video .video-background .blur {
    width: 120vw;
    height: auto;
    left: 50%;
    transform: translate(-50%, 100%);
    bottom: 0;
    margin: auto
}

.quick-pay #video h2 {
    width: 100%;
    text-align: center;
    margin-top: 0
}

.quick-pay #video .video-container {
    width: 850px;
    height: 478px;
    margin: 0 auto
}

.quick-pay #video .video-container img {
    width: 100%;
    cursor: pointer
}

.quick-pay #video .video-container iframe {
    width: 100%;
    background-color: var(--color-black)
}

.quick-pay #video #easy {
    margin-top: calc(var(--s-unit) * 5);
    max-width: calc(1080px - var(--s-unit) * 2);
    width: calc(100% - var(--s-unit) * 4);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center
}

.quick-pay #video #easy h2 {
    text-align: center;
    flex: 1
}

.quick-pay #video #easy .easy-footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: calc(var(--s-unit) * 5);
    padding: calc(var(--s-unit) * 5)
}

.quick-pay #video #easy .easy-footer .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around
}

.quick-pay #video #easy .easy-footer .text.left {
    width: 50%
}

.quick-pay #video #easy .easy-footer .text.left ul {
    margin: 0 0 12px
}

.quick-pay #video #easy .easy-footer .text.right {
    align-items: center;
    width: 30%;
    padding: 26px 20px
}

.quick-pay #video #easy .easy-footer .text.right.bg-opacity {
    background: rgba(255, 255, 255, .1);
    border-radius: 14px
}

.quick-pay #video #easy .easy-footer .text.right h4 {
    margin: 0
}

.quick-pay .easy-curve-bottom {
    width: 100%;
    margin-top: -220px;
    margin-bottom: -10px
}

.quick-pay #boost-icon-features.icon-features p {
    width: 100%;
    font-weight: 400
}

.quick-pay #solving-problem {
    position: relative
}

.quick-pay #solving-problem .solving-background {
    float: left;
    position: absolute;
    top: -1px;
    width: 100vw
}

.quick-pay #solving-problem .solving-background .blur {
    width: 120vw;
    height: auto;
    left: 50%;
    transform: translate(-50%);
    bottom: 0;
    margin: auto
}

.quick-pay #solving-problem .solving-background .solving-bottom {
    width: 120vw
}

.quick-pay #solving-problem .icon-features {
    background-color: var(--color-blackgray);
    padding-top: 50px
}

.quick-pay #solving-problem .icon-features .section-column {
    z-index: 1
}

.quick-pay #solving-problem .icon-features .section-column h2,
.quick-pay #solving-problem .icon-features .section-column p {
    color: var(--color-white) !important
}

.quick-pay #solving-problem .icon-features p {
    width: 100%;
    font-weight: 400
}

.quick-pay #solving-problem .text {
    color: var(--color-white) !important
}


.smart_pos #solving-problem {
    position: relative
}

.smart_pos #solving-problem .solving-background {
    float: left;
    position: absolute;
    top: -1px;
    width: 100vw
}

.smart_pos #solving-problem .solving-background .blur {
    width: 120vw;
    height: auto;
    left: 50%;
    transform: translate(-50%);
    bottom: 0;
    margin: auto
}

.smart_pos #solving-problem .solving-background .solving-bottom {
    width: 120vw
}

.smart_pos #solving-problem .icon-features {
    background-color: var(--color-blackgray);
    padding-top: 50px
}

.smart_pos #solving-problem .icon-features .section-column {
    z-index: 1
}

.smart_pos #solving-problem .icon-features .section-column h2,
.smart_pos #solving-problem .icon-features .section-column p {
    color: var(--color-white) !important
}

.smart_pos #solving-problem .icon-features p {
    width: 100%;
    font-weight: 400
}

.smart_pos #solving-problem .text {
    color: var(--color-white) !important
}
.smart_pos .solving-curve-bottom {
    width: 100vw;
    margin-top: -280px;
    margin-bottom: -10px;
    position: relative
}

.quick-pay .solving-curve-bottom {
    width: 100vw;
    margin-top: -280px;
    margin-bottom: -10px;
    position: relative
}

.quick-pay #for-devs {
    background-color: var(--color-white);
    min-height: 400px
}

.quick-pay #for-devs .section-column {
    height: auto;
    width: 33%
}

.quick-pay #for-devs .section-column .title {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center
}

.quick-pay #for-devs .section-column .title h2 {
    width: calc(100% - 60px);
    margin: 0
}

.quick-pay #for-devs .section-column .title svg {
    margin-right: calc(var(--s-unit) * 3);
    height: 40px !important;
    width: auto !important
}

@media (max-width: 1200px) {
    .quick-pay #video #easy .easy-footer {
        flex-direction: column;
        align-items: center
    }
}

@media (max-width: 992px) {
    .quick-pay .section-container.top {
        min-height: 250px;
        justify-content: flex-start
    }

    .quick-pay .section-container.top .section-column {
        height: 200px
    }

    .quick-pay #video {
        overflow: hidden;
        min-height: 300px;
        background-image: none !important
    }

    .quick-pay #video .video-background {
        top: initial;
        bottom: -1px
    }

    .quick-pay #video .video-background .blur {
        transform: translate(-50%, -19%)
    }

    .quick-pay #video .video-container {
        width: 100%;
        height: initial
    }

    .quick-pay #video .video-container iframe {
        height: 200px
    }

    .quick-pay #video #easy {
        width: 100%;
        padding: 20px
    }

    .quick-pay #video #easy .easy-footer {
        flex-direction: column
    }

    .quick-pay #video #easy .easy-footer .text.left,
    .quick-pay #video #easy .easy-footer .text.right {
        width: auto
    }

    .quick-pay #video .easy-curve-bottom {
        margin-top: -10px;
        margin-bottom: -1px
    }

    .quick-pay #solving-problem .solving-background .solving-bottom {
        width: 100%
    }

    .quick-pay #solving-problem .solving-curve-bottom {
        margin-top: 0
    }

    .quick-pay #for-devs {
        min-height: 300px
    }

    .quick-pay #for-devs .section-column {
        width: initial;
        padding: 0 20px
    }
}

.tools-platforms .solutions-head {
    width: 100%;
    margin-top: 160px
}

.tools-platforms .solutions-head h1 {
    margin-bottom: 0
}

.tools-platforms .solutions-head h2 {
    width: 620px;
    margin-top: 0
}

.tools-platforms .solutions-head button.btn {
    margin: calc(var(--s-unit) * 4) 0 calc(var(--s-unit) * 6)
}

.tools-platforms .solutions-head .sep {
    margin-top: calc(var(--s-unit) * 12)
}

.tools-platforms .section-container.top {
    min-height: 860px;
    justify-content: flex-start
}

.tools-platforms .section-container .background .blur {
    bottom: 0;
    transform: translate(-50%, -10%)
}

.tools-platforms .section-container .background img {
    width: 101vw
}

.tools-platforms .section-container .cols {
    display: flex;
    gap: 20px;
    width: 80%
}

.tools-platforms .section-container .cols .solutions-list-item {
    width: 50%;
    align-items: flex-start;
    justify-content: flex-start
}

.tools-platforms .section-container .cols .solutions-list-item .text {
    width: 340px;
    padding-left: 8px
}

.tools-platforms #sol-title {
    position: initial;
    justify-content: flex-start;
    min-height: 400px;
    margin-top: -1px
}

.tools-platforms #sol-title h3 {
    margin: 0 auto;
    padding: 124px 0 50px
}

.tools-platforms #sol-title .solutions-step p {
    height: initial
}

.tools-platforms #getting-started {
    padding-bottom: 100px
}

.tools-platforms #getting-started.list-image .section-column {
    height: initial
}

.tools-platforms #getting-started .right-5 {
    align-items: flex-start
}

.tools-platforms #getting-started .left-5 video {
    width: 100%
}

@media (min-width: 992px) and (max-width: 1200px) {
    .tools-platforms .section-container.top .background .blur {
        bottom: 0;
        max-width: initial;
        transform: translate(-50%, -30%)
    }
}

@media (max-width: 992px) {
    .tools-platforms .solutions-head {
        width: 100%;
        margin-top: initial
    }

    .tools-platforms .solutions-head h2 {
        width: 100%
    }

    .tools-platforms .section-container.top {
        overflow: hidden;
        min-height: 600px;
        justify-content: flex-start
    }

    .tools-platforms .section-container.top .background .blur {
        bottom: 0;
        max-width: initial;
        width: 250% !important;
        transform: translate(-50%, -10%)
    }

    .tools-platforms .section-container.top .section-column {
        height: 650px
    }

    .tools-platforms .section-container.top .btn {
        margin: 40px 0 60px
    }

    .tools-platforms .section-container .cols {
        flex-direction: column;
        gap: initial;
        margin: initial;
        width: 100%
    }

    .tools-platforms .section-container .cols .solutions-list-item {
        width: 100%
    }

    .tools-platforms #getting-started {
        padding-bottom: 50px
    }

    .tools-platforms #getting-started .btn {
        margin-top: 60px
    }
}
.swiper {
    width: 100%;
    height: 550px;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100% !important;
    height: 535px;
  }

  .swiper {
    margin-left: auto;
    margin-right: auto;
  }

.slide-text1 {
    padding-bottom: 25px;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    margin-left: 70px;
    color: #6C1E8A;
    text-align: left !important;
    font-size: 35px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-text2{
    position: absolute;
    bottom: 166px;
    left: 0;
    right: 583px;
    color: #FF8D13;
    font-size: 35px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-text3 {
    position: absolute;
    bottom: 210px;
    left: 0;
    right: 0px;
    text-align: left !important;
    margin-left: 58px;

    font-size: 45px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .slide-text1 {
        margin-left: 15px;
        font-size: 20px;
        bottom: 71px;
    }

    .slide-text2 {
        bottom: 230px;
        right: 20px;
        font-size: 20px;
        text-align: center;
    }

    .slide-text3 {
        bottom: 158px;
        margin-left: 9px;
        font-size: 25px;
    }
}
.convenient_container {
    color: #fff;
    padding: 20px;
}
.convenient_container .container {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 20px;
    flex-wrap: wrap;
}
.convenient_container .content, .image {
    flex: 1;
    margin: 10px;
}
.convenient_container h1 {
    color: #fff;
    font-size: 2em;

}
.convenient_container ul {
    list-style-type: none;
    padding: 0;
}
.convenient_container ul li {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
}
.convenient_container ul li div {
    padding-top: 10px;

}
.convenient_container img {
    max-width: 100%;
    border-radius: 8px;
}
@media (max-width: 768px) {
    .convenient_container .container {
        flex-direction: column;
    }
    .convenient_container .image {
        order: -1;
    }
}


.language-selector {
    position: sticky;
    top: 10px;
    right: 30px;
    font-size: 16px;
    color: white;
    z-index: 9999999;
    float: center;
}
.flags {
    display: flex;
    gap: 10px;
    margin-top: 5px;
    align-items: center;
}
.flags img {
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.language-selector h3 {
    margin: 0;
    font-size: 16px;
    color: white;
}
.flags img.hidden {
    display: none;
}

.swiper-slide {
    cursor: pointer; /* Add cursor pointer to indicate clickability */
}