* {
    box-sizing: border-box
}

html,
body {
    overscroll-behavior: none
}

body {
    margin: 0;
    background-color: #1d2637;
    font-family: "REM", sans-serif
}

body.is-mobile-menu-open {
    overflow: hidden
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    opacity: 0;
    pointer-events: none
}

.mobile-menu-overlay.is-open {
    display: block;
    opacity: 1;
    pointer-events: auto
}

.mobile-menu-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px)
}

.mobile-menu-overlay__panel {
    position: absolute;
    inset: 0;
    background: #172031;
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 20px 16px 28px 16px;
    transform: translateY(16px);
    opacity: 0
}

.mobile-menu-overlay__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.mobile-menu-overlay__brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #fff
}

.mobile-menu-overlay__brand img {
    height: 56px;
    width: auto;
    display: block
}

.mobile-menu-overlay__close {
    width: 48px;
    height: 48px;
    border-radius: 1000px;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0360d9;
    color: #fff
}

.mobile-menu-overlay__close:focus {
    outline: 2px solid #fff;
    outline-offset: 2px
}

.mobile-menu-overlay__nav {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.mobile-menu-overlay__link {
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    padding: 12px 16px;
    transition: all 200ms ease;
    display: flex;
    align-items: center;
    gap: 16px
}

.mobile-menu-overlay__link svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0
}

.mobile-menu-overlay__link:hover {
    color: #0360d9
}

.mobile-menu-overlay__link2 {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 8px 20px;
    transition: all 200ms ease;
    display: flex;
    align-items: center;
    gap: 8px
}

.mobile-menu-background {
    background-color:#1d2637;
    border-radius: 6px;
    padding-bottom: 6px;
}

.mobile-menu-overlay__link2:hover {
    color: #0360d9
}
.mobile-menu-overlay__cta {
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin-top: 16px;
    margin-bottom: 32px;
    padding: 14px 24px;
    background: #0360d9;
    border-radius: 1000px;
    text-align: center;
    display: block;
    transition: all 200ms ease
}

.mobile-menu-overlay__cta:hover {
    background: #024fb3
}

.mobile-menu-overlay.is-open {
    transition: opacity 320ms ease
}

.mobile-menu-overlay.is-open .mobile-menu-overlay__panel {
    transition: transform 320ms cubic-bezier(0.2, 0.9, 0.2, 1), opacity 320ms ease;
    transform: translateY(0);
    opacity: 1
}

.mobile-menu-overlay.is-animating-out {
    opacity: 0
}

.mobile-menu-overlay.is-animating-out .mobile-menu-overlay__panel {
    transform: translateY(16px);
    opacity: 0
}

@media only screen and (min-width: 1024px) {
    .mobile-menu-overlay {
        display: none !important
    }
}

.hero {
    position: relative;
    contain: layout;
    margin-top: 16px;
    width: calc(100% - 24px);
    background-color: #172031;
    border-radius: 16px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 24px;
    padding-bottom: 24px
}

@media only screen and (min-width: 768px) {
    .hero {
        border-radius: 42px
    }
}

@media only screen and (min-width: 1024px) {
    .hero {
        margin-top: 24px;
        width: calc(100% - 48px);
        padding-top: 0
    }
}

.hero .nav {
    width: 100%;
    display: none
}

@media only screen and (min-width: 1024px) {
    .hero .nav {
        display: flex;
        flex-direction: row;
        justify-content: space-between
    }
}

.hero .menu-left,
.hero .menu-right {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 16px;
    list-style: none;
    width: 37.5%;
    margin: 0;
    padding: 0 24px
}

.hero .menu-left li a,
.hero .menu-right li a {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    transition: all 200ms ease
}

.hero .menu-left li a:hover,
.hero .menu-right li a:hover {
    color: #0360d9
}

@media only screen and (min-width: 1024px) {

    .hero .menu-left li a,
    .hero .menu-right li a {
        gap: 8px;
        font-size: 12px
    }

    .hero .menu-left li a svg,
    .hero .menu-right li a svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0
    }
}

@media only screen and (min-width: 1260px) {

    .hero .menu-left li a,
    .hero .menu-right li a {
        font-size: 16px
    }
}

@media only screen and (min-width: 1440px) {

    .hero .menu-left li a,
    .hero .menu-right li a {
        font-size: 18px;
        gap: 16px
    }

    .hero .menu-left li a svg,
    .hero .menu-right li a svg {
        width: 24px;
        height: 24px
    }
}

.hero .logo {
    height: 128px
}

@media only screen and (min-width: 1024px) {
    .hero .logo {
        display: block;
        width: fit-content;
        top: -48px;
        left: 0;
        right: 0;
        margin: auto;
        z-index: 3
    }
}

.hero .logo-desktop {
    display: none
}

@media only screen and (min-width: 1024px) {
    .hero .logo-desktop {
        display: block;
        position: absolute;
        top: -24px;
        left: 0;
        right: 0;
        margin: auto;
        z-index: 3
    }
}

.hero .mobile-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px
}

@media only screen and (min-width: 1024px) {
    .hero .mobile-menu {
        display: none
    }
}

.hero .button-menu {
    width: 48px;
    height: 48px;
    border-radius: 1000px;
    background-color: #0360d9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 0;
    color: #fff
}

.hero .island {
    display: none
}

@media only screen and (min-width: 1024px) {
    .hero .island {
        max-width: 30%;
        height: auto;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: auto
    }
}

.hero .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px
}

@media only screen and (min-width: 768px) {
    .hero .wrapper {
        flex-direction: row
    }
}

.hero .wrapper .claim {
    width: 100%
}

@media only screen and (min-width: 768px) {
    .hero .wrapper .claim {
        width: 41.6666666667%;
        margin-left: 8.3333333333%
    }
}

.hero .wrapper .claim .title {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 500;
    color: #fff
}

.hero .wrapper .claim .title .second {
    color: #0360d9
}

@media only screen and (min-width: 1024px) {
    .hero .wrapper .claim .title {
        font-size: 32px
    }
}

@media only screen and (min-width: 1260px) {
    .hero .wrapper .claim .title {
        font-size: 42px
    }
}

@media only screen and (min-width: 1440px) {
    .hero .wrapper .claim .title {
        font-size: 64px
    }
}

.hero .wrapper .claim .description {
    width: 100%;
    max-width: 625px;
    font-weight: 200;
    font-size: 18px;
    color: #fff;
    margin-top: 24px;
    margin-bottom: 24px
}

.hero .wrapper .claim .description--blue {
    color: #0360d9
}

.hero .wrapper .claim .button-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px
}

@media only screen and (min-width: 1260px) {
    .hero .wrapper .claim .button-wrapper {
        flex-direction: row
    }
}

.hero .wrapper .figure {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1
}

@media only screen and (min-width: 768px) {
    .hero .wrapper .figure {
        width: 41.6666666667%
    }
}

.hero .wrapper .figure:after {
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #172031 30%, transparent)
}

.hero .wrapper .figure img {
    display: block;
    margin: auto;
    max-width: 65%;
    height: 100%;
    position: relative;
    z-index: 2
}

.hero .wrapper .figure .circle {
    width: calc(100% - 86px);
    height: auto;
    aspect-ratio: 1/1;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    animation: rotate 20s linear infinite
}

.hero .wrapper .figure .icons {
    width: calc(100% - 86px);
    height: auto;
    position: absolute;
    bottom: 20%;
    left: 0%;
    right: 0;
    margin: auto;
    z-index: 1
}

.container {
    width: 1720px;
    max-width: 100%;
    margin: auto;
    padding: 0 24px
}

.button {
    border: 0;
    border-radius: 1000px;
    padding: 12px 24px;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    transition: all 200ms ease
}

.button:focus {
    outline: 2px solid #0360d9;
    outline-offset: 2px
}

.button.button-primary {
    background-color: #0360d9;
    color: #fff;
    padding-left: 10px;
    padding-right: 10px;
}

.button.button-primary:hover {
    background-color: #fff;
    color: #0360d9
}

.button.button-secondary {
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    border: 2px solid #0360d9
}

.button.button-secondary:hover {
    background-color: #fff;
    color: #0360d9;
    border-color: #fff
}

.about-us {
    padding: 24px 0
}

@media only screen and (min-width: 768px) {
    .about-us {
        padding: 48px 0
    }
}

@media only screen and (min-width: 1024px) {
    .about-us {
        padding: 64px 0
    }
}

@media only screen and (min-width: 1260px) {
    .about-us {
        padding: 96px 0
    }
}

.about-us .wrapper {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px
}

@media only screen and (min-width: 768px) {
    .about-us .wrapper {
        width: 66.6666666667%;
        flex-direction: row;
        align-items: center
    }
}

.about-us .wrapper .col-1 {
    width: 100%
}

@media only screen and (min-width: 768px) {
    .about-us .wrapper .col-1 {
        width: 62.5%
    }
}

.about-us .wrapper .col-1 .heading {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 500;
    color: #fff
}

.about-us .wrapper .col-1 .heading span {
    color: #0360d9
}

@media only screen and (min-width: 1024px) {
    .about-us .wrapper .col-1 .heading {
        font-size: 32px
    }
}

@media only screen and (min-width: 1260px) {
    .about-us .wrapper .col-1 .heading {
        font-size: 48px
    }
}

.about-us .wrapper .col-1 .description {
    max-width: 100%;
    width: 625px;
    font-weight: 200;
    font-size: 18px;
    color: #fff;
    margin-top: 24px;
    margin-bottom: 24px
}

@media only screen and (min-width: 768px) {
    .about-us .wrapper .col-1 .description {
        font-size: 20px
    }
}

.about-us .wrapper .col-2 {
    width: 100%
}

@media only screen and (min-width: 768px) {
    .about-us .wrapper .col-2 {
        width: 37.5%
    }
}

.about-us .wrapper .col-2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px
}

@media only screen and (min-width: 768px) {
    .about-us .wrapper .col-2 ul {
        gap: 44px
    }
}

.about-us .wrapper .col-2 ul li {
    min-height: 44px;
    padding-left: 32px;
    border-left: 2px solid #0360d9;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 21px;
    font-weight: 200;
    color: #fff
}

@media only screen and (min-width: 768px) {
    .about-us .wrapper .col-2 ul li {
        font-size: 24px;
        min-height: 92px
    }
}

@media only screen and (min-width: 1260px) {
    .about-us .wrapper .col-2 ul li {
        font-size: 32px
    }
}

.tech {
    width: calc(100% - 24px);
    background-color: #172031;
    border-radius: 16px;
    margin-left: auto;
    margin-right: auto;
    padding: 24px 0;
    text-align: center
}

@media only screen and (min-width: 768px) {
    .tech {
        border-radius: 42px;
        padding: 36px 0
    }
}

@media only screen and (min-width: 1024px) {
    .tech {
        width: calc(100% - 48px);
        padding: 64px 0
    }
}

.tech .heading {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 500;
    color: #fff;
    margin-bottom: 18px
}

@media only screen and (min-width: 768px) {
    .tech .heading {
        font-size: 32px
    }
}

@media only screen and (min-width: 1260px) {
    .tech .heading {
        font-size: 48px
    }
}

.tech .description {
    max-width: 100%;
    width: 720px;
    font-weight: 200;
    font-size: 16px;
    color: #fff;
    margin: 0 auto;
    margin-bottom: 24px
}

@media only screen and (min-width: 768px) {
    .tech .description {
        font-size: 20px
    }
}

.tech .wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px
}

@media only screen and (min-width: 768px) {
    .tech .wrapper {
        flex-direction: row;
        flex-wrap: wrap
    }
}

@media only screen and (min-width: 1024px) {
    .tech .wrapper {
        width: 83.3333333333%;
        margin: 0 auto;
        margin-top: 48px
    }
}

.tech .wrapper .box {
    width: 100%;
    height: auto;
    background-color: #1d2637;
    border-radius: 40px;
    margin-top: 48px;
    padding-bottom: 24px;
}

@media only screen and (min-width: 768px) {
    .tech .wrapper .box {
        width: calc(50% - 12px)
    }
}

@media only screen and (min-width: 1260px) {
    .tech .wrapper .box {
        width: calc(25% - 18px)
    }
}

.tech .wrapper .box img {
    margin-top: -48px;
    width: calc(100% - 48px);
    height: auto;
    border-radius: 40px
}

.tech .wrapper .box p {
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    height: 48px;
    padding: 0 24px
}

.offer {
    padding: 24px 0
}

@media only screen and (min-width: 768px) {
    .offer {
        padding: 36px 0
    }
}

@media only screen and (min-width: 1024px) {
    .offer {
        padding: 64px 0
    }
}

.offer .wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px
}

@media only screen and (min-width: 1024px) {
    .offer .wrapper {
        gap: 24px;
        flex-direction: row;
        flex-wrap: wrap;
        width: 83.3333333333%;
        margin: 0 auto
    }
}

.offer .wrapper .col-1 {
    width: 100%
}

@media only screen and (min-width: 1024px) {
    .offer .wrapper .col-1 {
        width: calc(30% - 16px)
    }
}

.offer .wrapper a {
    text-decoration: none;
    color: #fff;
}

.offer .wrapper a:hover {
    color: #0360d9
}

.offer .wrapper .col-1 .heading {
    margin-top: 0;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 500;
    color: #fff;
    margin-bottom: 18px
}

@media only screen and (min-width: 768px) {
    .offer .wrapper .col-1 .heading {
        font-size: 32px;
        margin-bottom: 40px
    }
}

@media only screen and (min-width: 1260px) {
    .offer .wrapper .col-1 .heading {
        font-size: 48px;
        margin-bottom: 64px
    }
}

.offer .wrapper .col-1 ul {
    padding-left: 0;
    list-style-position: inside
}

.offer .wrapper .col-1 ul li {
    color: #fff;
    font-size: 18px;
    font-weight: 200
}

@media only screen and (min-width: 768px) {
    .offer .wrapper .col-1 ul li {
        font-size: 20px
    }
}

.offer .wrapper .col-1 ul li:not(:last-child) {
    margin-bottom: 8px
}

.offer .wrapper .col-border {
    display: none
}

@media only screen and (min-width: 1024px) {
    .offer .wrapper .col-border {
        display: block;
        width: calc(10% - 16px)
    }

    .offer .wrapper .col-border .line {
        width: 2px;
        height: 100%;
        background-color: #2a364c;
        margin: auto
    }
}

.offer .wrapper .col-2 {
    width: 100%
}

@media only screen and (min-width: 1024px) {
    .offer .wrapper .col-2 {
        width: calc(60% - 16px)
    }
}

.offer .wrapper .col-2 .heading {
    margin-top: 0;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 500;
    color: #fff;
    margin-bottom: 18px
}

@media only screen and (min-width: 768px) {
    .offer .wrapper .col-2 .heading {
        font-size: 32px;
        margin-bottom: 40px
    }
}

@media only screen and (min-width: 1260px) {
    .offer .wrapper .col-2 .heading {
        font-size: 48px;
        margin-bottom: 64px
    }
}

.offer .wrapper .col-2 .inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px
}

@media only screen and (min-width: 768px) {
    .offer .wrapper .col-2 .inner {
        flex-direction: row;
        flex-wrap: wrap
    }
}

@media only screen and (min-width: 1024px) {
    .offer .wrapper .col-2 .inner {
        margin-bottom: 48px
    }
}

@media only screen and (min-width: 1330px) {
    .offer .wrapper .col-2 .inner {
        flex-wrap: nowrap
    }
}

.offer .wrapper .col-2 .inner .box {
    margin-top: 24px;
    width: 100%;
    flex-shrink: 1;
    flex-grow: 0;
    border: 2px solid #172031;
    border-radius: 40px;
    text-align: center;
    padding-bottom: 24px;
}

@media only screen and (min-width: 768px) {
    .offer .wrapper .col-2 .inner .box {
        width: calc(50% - 12px)
    }
}

@media only screen and (min-width: 1330px) {
    .offer .wrapper .col-2 .inner .box {
        width: calc(25% - 18px)
    }
}

.offer .wrapper .col-2 .inner .box .count {
    width: 48px;
    height: 48px;
    border-radius: 1000px;
    margin: auto;
    margin-top: -24px;
    background-color: #0360d9;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    box-shadow: 0px 0px 16px 4px rgba(3, 96, 217, .5)
}

.offer .wrapper .col-2 .inner .box .text {
    padding-inline: 24px;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    text-align: center
}

.offer .wrapper .col-2 .description {
    max-width: 100%;
    width: 720px;
    font-weight: 200;
    font-size: 16px;
    color: #fff;
    margin-bottom: 0
}

@media only screen and (min-width: 768px) {
    .offer .wrapper .col-2 .description {
        font-size: 20px
    }
}

.offer .wrapper .col-3 {
    margin-top: 24px;
    width: 100%
}

@media only screen and (min-width: 768px) {
    .offer .wrapper .col-3 {
        margin-top: 64px
    }
}

@media only screen and (min-width: 1024px) {
    .offer .wrapper .col-3 {
        margin-top: 96px
    }
}

.offer .wrapper .col-3 .small-heading {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 24px
}

@media only screen and (min-width: 768px) {
    .offer .wrapper .col-3 .small-heading {
        font-size: 24px;
        margin-bottom: 40px
    }
}

@media only screen and (min-width: 1024px) {
    .offer .wrapper .col-3 .small-heading {
        margin-bottom: 64px
    }
}

.offer .wrapper .col-3 .inner {
    display: flex;
    flex-direction: column;
    gap: 24px
}

@media only screen and (min-width: 768px) {
    .offer .wrapper .col-3 .inner {
        flex-direction: row;
        flex-wrap: wrap
    }
}

.offer .wrapper .col-3 .inner .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px
}

@media only screen and (min-width: 768px) {
    .offer .wrapper .col-3 .inner .box {
        width: calc(33.3333333333% - 16px)
    }
}

@media only screen and (min-width: 1260px) {
    .offer .wrapper .col-3 .inner .box {
        width: calc(16.6666666667% - 20px)
    }
}

.offer .wrapper .col-3 .inner .box svg {
    width: 20px;
    height: 20px
}

.offer .wrapper .col-3 .inner .box .text {
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    color: #fff
}

@media only screen and (min-width: 1260px) {
    .offer .wrapper .col-3 .inner .box .text {
        font-size: 20px
    }
}

.footer {
    width: calc(100% - 24px);
    background-color: #172031;
    border-radius: 16px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 32px
}

@media only screen and (min-width: 768px) {
    .footer {
        margin-bottom: 48px
    }
}

.footer .wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px 0;
    padding: 24px 0
}

@media only screen and (min-width: 1024px) {
    .footer .wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        width: 83.3333333333%;
        margin: auto;
        padding: 0 0 24px 0
    }
}

.footer .wrapper .col-1 {
    width: 100%;
    text-align: left
}

@media only screen and (min-width: 1024px) {
    .footer .wrapper .col-1 {
        width: 40%
    }
}

.footer .wrapper .col-2 {
    width: 100%
}

@media only screen and (min-width: 1024px) {
    .footer .wrapper .col-2 {
        width: 50%;
        margin-left: 10%
    }
}

.footer .wrapper .col-2 .form-wrapper {
    background-color: #0360d9;
    padding: 32px 16px;
    border-radius: 24px
}

@media only screen and (min-width: 1024px) {
    .footer .wrapper .col-2 .form-wrapper {
        border-radius: 0 0 40px 40px
    }
}

@media only screen and (min-width: 1260px) {
    .footer .wrapper .col-2 .form-wrapper {
        padding-top: 76px;
        padding-bottom: 48px;
        padding-left: 64px;
        padding-right: 64px
    }
}

.footer .wrapper .col-2 .form-wrapper .form h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
    text-align: left
}

@media only screen and (min-width: 768px) {
    .footer .wrapper .col-2 .form-wrapper .form h2 {
        font-size: 32px
    }
}

@media only screen and (min-width: 1024px) {
    .footer .wrapper .col-2 .form-wrapper .form h2 {
        font-size: 48px
    }
}

.footer .wrapper .col-2 .form-wrapper .form .form-inner {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px 16px
}

@media only screen and (min-width: 768px) {
    .footer .wrapper .col-2 .form-wrapper .form .form-inner {
        flex-direction: row;
        flex-wrap: wrap
    }
}

.footer .wrapper .col-2 .form-wrapper .form .form-inner .input-wrapper {
    width: 100%
}

@media only screen and (min-width: 768px) {
    .footer .wrapper .col-2 .form-wrapper .form .form-inner .input-wrapper {
        width: calc(50% - 8px)
    }
}

.footer .wrapper .col-2 .form-wrapper .form .form-inner .input-wrapper.input-wrapper--full {
    width: 100%
}

.footer .wrapper .col-2 .form-wrapper .form .form-inner .input-wrapper input,
.footer .wrapper .col-2 .form-wrapper .form .form-inner .input-wrapper textarea {
    width: 100%;
    padding: 12px 0;
    border: 0;
    border-bottom: 2px solid hsla(0, 0%, 100%, .3);
    background-color: rgba(0, 0, 0, 0);
    font-family: "REM", sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    transition: all 200ms ease, height 0ms ease
}

.footer .wrapper .col-2 .form-wrapper .form .form-inner .input-wrapper input:focus,
.footer .wrapper .col-2 .form-wrapper .form .form-inner .input-wrapper textarea:focus {
    outline: 0;
    border-bottom-color: #fff
}

.footer .wrapper .col-2 .form-wrapper .form .form-inner .input-wrapper input::placeholder,
.footer .wrapper .col-2 .form-wrapper .form .form-inner .input-wrapper textarea::placeholder {
    color: hsla(0, 0%, 100%, .3)
}

.footer .wrapper .col-2 .form-wrapper .form .form-inner .button-wrapper {
    display: flex;
    flex-direction: column-reverse;
    justify-content: start;
    align-items: center;
    gap: 16px
}

@media only screen and (min-width: 1260px) {
    .footer .wrapper .col-2 .form-wrapper .form .form-inner .button-wrapper {
        flex-direction: row
    }
}

.footer .wrapper .col-2 .form-wrapper .form .form-inner .button-wrapper button.button-submit {
    background-color: #172031;
    color: #fff;
    border: 0;
    border-radius: 1000px;
    padding: 12px 24px;
    min-width: 130px;
    font-size: 18px;
    font-weight: 500;
    transition: all 200ms ease;
    cursor: pointer
}

.footer .wrapper .col-2 .form-wrapper .form .form-inner .button-wrapper button.button-submit:focus {
    outline: 2px solid #fff;
    outline-offset: 2px
}

.footer .wrapper .col-2 .form-wrapper .form .form-inner .button-wrapper .checkbox-wrapper {
    display: flex;
    align-items: center;
    justify-content: start;
    cursor: pointer
}

.footer .wrapper .col-2 .form-wrapper .form .form-inner .button-wrapper .checkbox-wrapper input[type=checkbox] {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: 1px solid #fff;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 5px;
    appearance: none;
    cursor: pointer;
    position: relative
}

.footer .wrapper .col-2 .form-wrapper .form .form-inner .button-wrapper .checkbox-wrapper input[type=checkbox]:checked {
    background-color: #fff
}

.footer .wrapper .col-2 .form-wrapper .form .form-inner .button-wrapper .checkbox-wrapper input[type=checkbox]:checked:after {
    content: "";
    display: block;
    width: 4px;
    height: 8px;
    border-right: 2px solid #0360d9;
    border-bottom: 2px solid #0360d9;
    transform: rotate(45deg);
    position: absolute;
    inset: 0;
    margin: auto
}

.footer .wrapper .col-2 .form-wrapper .form .form-inner .button-wrapper .checkbox-wrapper label {
    margin-left: 8px;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    cursor: pointer;
    text-align: left
}

.footer .wrapper .col-2 .form-wrapper .form .form-inner .button-wrapper .checkbox-wrapper label a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px dashed #fff;
    font-weight: 300;
    transition: all 200ms ease
}

.footer .wrapper .col-3 {
    width: 100%;
    display: flex;
    flex-direction: column
}

@media only screen and (min-width: 1024px) {
    .footer .wrapper .col-3 {
        flex-direction: row
    }
}

.footer .wrapper .col-3 .copyright {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    padding: 12px 0
}

@media only screen and (min-width: 768px) {
    .footer .wrapper .col-3 .copyright {
        text-align: left;
        padding: 24px 0
    }
}

.footer .wrapper .col-3 .powerby {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    padding: 12px 0
}

@media only screen and (min-width: 768px) {
    .footer .wrapper .col-3 .powerby {
        text-align: right;
        padding: 24px 0
    }
}

.footer .wrapper .heading {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 32px
}

@media only screen and (min-width: 768px) {
    .footer .wrapper .heading {
        font-size: 32px;
        margin-bottom: 48px
    }
}

@media only screen and (min-width: 1024px) {
    .footer .wrapper .heading {
        font-size: 48px;
        margin-bottom: 64px
    }
}

.footer .wrapper .description {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
    color: #fff
}

@media only screen and (min-width: 768px) {
    .footer .wrapper .description {
        font-size: 18px
    }
}

@media only screen and (min-width: 1024px) {
    .footer .wrapper .description {
        font-size: 20px
    }
}

.footer .wrapper .description b,
.footer .wrapper .description strong {
    font-weight: 700
}

.footer .wrapper .small-heading {
    margin-top: 32px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 16px
}

@media only screen and (min-width: 768px) {
    .footer .wrapper .small-heading {
        margin-right: 48px;
        font-size: 24px;
        margin-bottom: 24px
    }
}

@media only screen and (min-width: 1024px) {
    .footer .wrapper .small-heading {
        margin-top: 64px
    }
}

.footer .wrapper .small-description {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 300;
    color: #fff
}

@media only screen and (min-width: 1024px) {
    .footer .wrapper .small-description {
        font-size: 20px
    }
}

.footer .wrapper .small-description a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px dashed #fff;
    font-weight: 300;
    transition: all 200ms ease
}

.footer .wrapper .small-description a:hover {
    color: #0360d9;
    border-bottom: 1px dashed #0360d9
}

.footer .wrapper .small-description a.blue-link {
    display: block;
    width: fit-content;
    margin-top: 24px;
    color: #0360d9;
    border: 0 !important
}

.footer .wrapper .small-description a.blue-link:hover {
    color: #fff
}

@media only screen and (min-width: 768px) {
    .footer .wrapper .small-description a.blue-link {
        margin-top: 48px
    }
}

.footer .wrapper .social-media-wrapper {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 24px;
    margin-top: 32px
}

@media only screen and (min-width: 768px) {
    .footer .wrapper .social-media-wrapper {
        margin-top: 48px
    }
}

.footer .wrapper .social-media-wrapper a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #aaa4ba;
    transition: all 200ms ease
}

.footer .wrapper .social-media-wrapper a:hover {
    color: #0360d9
}

@keyframes rotate {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}