@font-face {
    font-family: 'Satoshi Variable';
    src: url('../fonts/Satoshi-Variable.woff2') format('woff2'),
        url('../fonts/Satoshi-Variable.woff') format('woff'),
        url('../fonts/Satoshi-Variable.ttf') format('truetype');
    font-weight: 300 900;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi Variable';
    src: url('../fonts/Satoshi-VariableItalic.woff2') format('woff2'),
        url('../fonts/Satoshi-VariableItalic.woff') format('woff'),
        url('../fonts/Satoshi-VariableItalic.ttf') format('truetype');
    font-weight: 300 900;
    font-display: swap;
    font-style: italic;
}

@font-face {
    font-display: swap;
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 500;
    src: url('../fonts/playfair-display-v40-latin-500italic.woff2') format('woff2'),
        url('../fonts/playfair-display-v40-latin-500italic.ttf') format('truetype');
}

:root {
    --color-title: #1a3c51;
    --color-text: #1a3c51;
    --color-white-title: #ffffff;
    --color-white-text: rgba(255, 255, 255, 0.85);
    --color-primary: #0052ff;
    --color-primary-rgb: 0, 82, 255;
    --top: 150px;
}

body {
    font-family: "Satoshi Variable", Arial, sans-serif;
    font-optical-sizing: auto;
    color: var(--color-text);
    background-color: rgb(249, 251, 253);
    font-size: 18px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

@media screen and (min-width: 1280px) {
    .container {
        max-width: 1320px;
        padding-left: 40px;
        padding-right: 40px;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0 0;
    position: absolute;
    transition: all .2s ease-in-out;
}

.header-toggle {
    display: block;
    background: #FFF;
    border: 1px solid transparent;
    padding: 14px 10px;
    border-radius: 12px;
}

.header-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background-color: var(--color-primary);
}

.header-toggle span+span {
    margin-top: 4px;
}

.header-navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 2px #1f3c5105,
        0 8px 4px #1f3c5105,
        0 16px 8px #1f3c5105,
        0 32px 16px #1f3c5105;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    position: relative;
    transition: all .2s ease-in-out;
}

.header-logo {
    color: #FFF;
}

.header-logo svg {
    width: 70px;
    height: auto;
    fill: currentcolor;
}

.header-collapse {
    flex-grow: 1;
    flex-basis: 100%;
    align-items: center;
}

.header-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    margin-right: auto;
    margin-left: auto;
}

.header-menu>li>a {
    display: block;
    padding: 8px 0px;
    color: #FFF;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
}

.header-has-submenu {
    position: relative;
}

.header-submenu-dialog {
    animation: mega-nav-entry-animation 0.15s cubic-bezier(.5, .35, .15, 1);
    background: #FFF;
    padding: 12px;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 16px 24px 0px,
        rgba(0, 0, 0, 0.04) 0px 2px 6px 0px,
        rgba(0, 0, 0, 0.04) 0px 0px 1px 0px;
}

@keyframes mega-nav-entry-animation {
    from {
        opacity: 0;
        transform: translateY(-32px)
    }

    to {
        opacity: 1;
        transform: translateY(0px)
    }
}

.header-item {
    display: flex;
    position: relative;
    padding: 12px;
    border-radius: 8px;
    transition: all .2s ease-in-out;
    height: 100%;
}

.header-item-icon {
    flex-shrink: 0;
    width: 50px;
    font-size: 44px;
    color: var(--color-primary);
    line-height: 1;
}

.header-item-icon img {
    max-width: 100%;
    height: auto;
}

.header-item-body {
    flex-grow: 1;
    margin-left: 12px;
}

.header-item-title {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 16px;
    transition: all .2s ease-in-out;
    color: var(--color-title);
}

.header-item-text {
    margin-bottom: 0;
    font-size: 15px;
}

.header-item:hover {
    background-color: #f7f7f7;
}

.header-item:hover .header-item-title {
    color: var(--color-primary);
}

.header-collapse {
    display: none;
}

.header-show .header-collapse {
    display: block;
}

.header-submenu {
    display: none;
}

@media (min-width: 992px) {
    header {
        position: fixed;
    }

    .header-dark {
        padding-top: 15px;
    }

    .header-dark .header-navbar {
        border-color: rgba(0, 82, 255, 0.9);
        background-color: rgba(0, 82, 255, 0.9);
    }

    .header-navbar {
        padding: 0 12px;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .header-logo {
        margin-left: 13px;
    }

    .header-toggle {
        display: none;
    }

    .header-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .header-menu {
        flex-direction: row;
    }

    .header-menu>li>a {
        padding: 24px 12px;
    }

    .header-submenu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 620px;
        padding-top: 16px;
    }

    .header-has-submenu:hover .header-submenu {
        display: block;
    }
}

@media (max-width: 991.99px) {
    .header-menu {
        margin: 20px 0;
    }

    .header-submenu {
        transform: none !important;
    }

    .header-navbar .btn {
        width: 100%;
    }

    .header-show .header-navbar {
        background-color: var(--color-primary);
    }

    .header-show-submenu>.header-submenu {
        display: block;
    }
}

.header-item-icon svg,
.iconbox-icon svg,
.bi {
    display: inline-block;
    vertical-align: -.125em;
    fill: currentcolor;
    width: 1em;
    height: 1em;
}

.btn {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 15.5px 27px;
    font-size: 18px;
    letter-spacing: -0.36px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    border-radius: 10px;
    background-color: transparent;
    transition: color .25s ease-in-out, background-color .25s ease-in-out, border-color .25s ease-in-out;
    box-shadow: rgba(26, 60, 81, 0.07) 0px 0px 0px 1px,
        rgba(26, 60, 81, 0.02) 0px 4px 2px 0px,
        rgba(26, 60, 81, 0.02) 0px 8px 4px 0px,
        rgba(26, 60, 81, 0.02) 0px 16px 8px 0px,
        rgba(26, 60, 81, 0.02) 0px 32px 16px 0px;

}

.btn-sm {
    padding: 12px 20px;
    line-height: 21px;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: #FFF;
}

.btn-white {
    border-color: #FFF;
    background-color: #FFF;
    color: rgb(26, 60, 81);
}

.btn-black {
    border-color: #000;
    background-color: #000;
    color: #FFF;
}

.btn-outline-primary {
    border-color: rgba(var(--color-primary-rgb), 0.3);
    background-color: transparent;
    color: var(--color-primary);
}

.btn-outline-white {
    border-color: #ffffff;
    background-color: transparent;
    color: #FFF;
}

.btn-outline-black {
    border-color: rgba(0, 0, 0, 0.3);
    background-color: transparent;
    color: #000;
}

.btn-hover-primary:hover {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: #FFF;
}

.btn-hover-white:hover {
    border-color: #FFF;
    background-color: #FFF;
    color: var(--color-primary);
}

.btn-hover-black:hover {
    border-color: #000;
    background-color: #000;
    color: #FFF;
}

.btn-arrow {
    position: relative;
    overflow: hidden;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: #FFF;
    border-radius: 6px;
}

.btn-arrow-inner {
    transform: rotate(-45deg);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-arrow-inner>*:last-child {
    position: absolute;
    top: 0;
    right: 110%;
}

.btn-arrow-inner>* {
    transition: transform .25s ease-in-out;
}

.btn-text {
    position: relative;
    overflow: hidden;
}

.btn-text::after {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
}

.btn-text::after,
.btn-text>span {
    display: block;
    transition: transform .25s ease-in-out;
}

.btn:hover .btn-text::after,
.btn:hover .btn-text>span {
    transform: translateY(-100%);
}

.btn:hover .btn-arrow-inner>* {
    transform: translateX(110%);
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.hero {
    background-color: var(--color-primary);
    color: #FFF;
    padding: 250px 0 150px 0;
    text-align: center;
    position: relative;
}

.hero-overlay {
    background-color: rgba(19, 43, 63, 0.7);
    position: absolute;
    inset: 0%;
}

.hero-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-video>video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: -100;
    background-size: cover;
}


.hero .heading-title,
.hero .heading-text {
    margin-left: auto;
    margin-right: auto;
}

.hero .heading-title {
    max-width: 900px;
}

.heading-swiper .swiper {
    width: 100%;
    max-width: 1000px;
}

.heading-swiper .swiper-slide {
    height: auto;
}

.heading-swiper .heading-title {
    max-width: none;
}

.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
}

.hero .heading-text {
    max-width: 620px;
    margin-bottom: 40px;
}

/*
.hero.hero-home {
    height: 100vh;
    padding: 100px 0 0 0;
}
*/

.hero.hero-home .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-swiper {
    width: 100%;
    max-width: 1000px;
}

.hero-swiper .swiper-slide {
    height: auto;
}

.hero-title-item {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.hero-title-item p {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 72px;
    letter-spacing: -1.28px;
    line-height: 1.07;
    color: var(--color-white-title);
}

.block-buttons {
    display: flex;
    gap: 16px;
}

.text-start {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-center .block-buttons {
    justify-content: center;
}

.text-end .block-buttons {
    justify-content: end;
}

.hero .block-buttons {
    justify-content: center;
}

.client-swiper {
    width: 100%;
    height: 100px;
}

.client-swiper .swiper-slide {
    display: flex;
    align-items: center;
}

.client-swiper .swiper-slide svg {
    width: 100%;
    height: 100%;
    max-height: 60px;
}

section {
    padding: 150px 0;
    color: var(--color-text);
}

.overflow-hidden {
    overflow: hidden;
}

.block-section-cards {
    overflow: visible;
}

.bg-white {
    background-color: rgb(249, 251, 253);
}

.bg-black {
    background-color: #000;
}

.bg-light {
    background-color: rgb(239, 243, 247);
}

.bg-primary {
    background-color: var(--color-primary);
}

.bg-white+.bg-white,
.bg-light+.bg-light,
.bg-primary+.bg-primary {
    margin-top: -150px;
}

.bg-cover {
    position: relative;
    z-index: 1;
    background-color: #132b3e;
}

.bg-cover-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: .2;
}

.text-end {
    text-align: right;
}

@media (min-width: 992px) {
    .text-lg-end {
        text-align: right;
    }

    .text-lg-end .block-buttons {
        justify-content: end;
    }
}

.block-text+.btn {
    margin-top: 8px;
}

.heading {
    margin-bottom: 30px;
}

.heading-center {
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.heading-space {
    margin-bottom: 50px;
}

.heading-alt {
    font-size: 15px;
    line-height: 145%;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.heading-title {
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -.03em;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--color-title);
}

.heading-title-lg {
    margin-bottom: 30px;
    font-size: 42px;
    line-height: 1.05;
}

.heading-title-sm {
    font-size: 23px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.heading-title em {
    font-family: "Playfair Display", sans-serif;
    font-style: italic;
    font-weight: 500;
    letter-spacing: -.02em;
}

.heading-title .highlight {
    background-image: url("../img/pattern/highlight.svg");
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: -23px;
    margin-left: -10px;
    margin-right: -10px;
    padding-bottom: 23px;
    padding-left: 10px;
    padding-right: 10px;
    display: inline-block;
}

.heading-text {
    font-size: 20px;
    line-height: 150%;
    color: var(--color-text);
    margin-bottom: 0;
}

.heading-center {
    text-align: center;
}


@media (min-width: 768px) {
    .heading-title {
        font-size: 38px;
    }

    .heading-title-lg {
        font-size: 62px;
    }

    .heading-title-sm {
        font-size: 28px;
    }
}

@media (min-width: 992px) {
    .heading-title {
        font-size: 48px;
    }

    .heading-title-lg {
        font-size: 72px;
    }

    .heading-title-sm {
        font-size: 38px;
    }
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-rounded {
    border-radius: 15px;
}

.img-white {
    background-color: #FFF;
    border-radius: 10px;
    padding: 20px
}

.img-fullwidth {
    width: 100%;
    height: auto;
}

footer {
    overflow: hidden;
    background-color: var(--color-primary);
}

.footer-primary {
    color: #FFF;
    padding: 90px 0;
}

.footer-logo svg {
    fill: currentcolor;
    width: 100%;
    height: auto;
}

.footer-title {
    font-weight: 700;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li+li {
    margin-top: 4px;
}

.footer-bottom {
    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a {
    transition: all .2s;
}

.footer-bottom a:hover {
    color: #FFF;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal li:after {
    content: '·';
    margin: 0 8px;
}

.footer-legal li:last-child::after {
    content: none;
}

.aos-init {
    opacity: 0;
}

.aos-animate {
    opacity: 1;
    transition: opacity, transform, filter ease-out;
    transition-duration: 0.6s;
}

.aos-fade-up {
    transform: translateY(50px);
}

.aos-fade-up.aos-animate {
    transform: translate(0);
}

.aos-fade-left {
    transform: translateX(-50px);
}

.aos-fade-left.aos-animate {
    transform: translate(0);
}

.aos-fade-right {
    transform: translateX(50px);
}

.aos-fade-right.aos-animate {
    transform: translate(0);
}

.client-title {
    font-size: 24px;
    text-align: center;
    font-weight: 600;
    letter-spacing: -.02em;
    margin-bottom: 5px;
    color: var(--color-title);
}

.client-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.client-gradient-start,
.client-gradient-end {
    width: 150px;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
}

.client-gradient-start {
    background-image: linear-gradient(90deg, rgb(249, 251, 253) 15%, transparent);
    left: 0;
}

.client-gradient-end {
    background-image: linear-gradient(270deg, rgb(249, 251, 253) 15%, transparent);
    right: 0;
}

.form-title {
    font-weight: 600;
    font-size: 24px;
    color: var(--color-title);
    letter-spacing: -1px;
    margin-bottom: 0;
}

.form-label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-title);
    font-size: 16px;
}

.form-text {
    margin-top: .25rem;
    font-size: .875em;
    color: rgba(33, 37, 41, 0.75);
}

.form-control {
    display: block;
    width: 100%;
    padding: 10px 16px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #FFF;
    background-clip: padding-box;
    border: 1px solid #dae2eb;
    border-radius: 15px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-required {
    color: rgb(214, 57, 57);
}

.form-control:focus {
    color: rgb(33, 37, 41);
    background-color: #FFF;
    border-color: var(--color-primary);
    outline: 0;
}

.form-control.is-invalid {
    border-color: rgb(214, 57, 57);
    padding-right: 20px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d63939' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='18' y1='6' x2='6' y2='18'%3e%3c/line%3e%3cline x1='6' y1='6' x2='18' y2='18'%3e%3c/line%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 9px center;
    background-size: 18px 18px;
}

.form-control.is-invalid:focus {
    border-color: rgb(220, 53, 69);
}

.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: 0.125rem;
    font-size: 16px;
}

.form-check .form-check-input {
    float: left;
    margin-left: -1.5em;
}

.form-check-inline {
    display: inline-block;
    margin-right: 1rem;
}

.form-check-input {
    flex-shrink: 0;
    width: 1em;
    height: 1em;
    margin-top: 0.25em;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #FFF;
    background-image: var(--bs-form-check-bg-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #CCC;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    print-color-adjust: exact;
}

.form-check-input[type=checkbox] {
    border-radius: 0.25em;
}

.form-check-input[type=radio] {
    border-radius: 50%;
}

.form-check-input:active {
    filter: brightness(90%);
}

.form-check-input:focus {
    border-color: rgba(var(--color-primary-rgb), 0.6);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(var(--color-primary-rgb), 0.25);
}

.form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked[type=radio] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-input.is-invalid {
    border-color: rgb(220, 53, 69);
}

.form-check-input.is-invalid:checked {
    background-color: rgb(220, 53, 69);
}

.form-check-input.is-invalid:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.form-check-input.is-invalid~.form-check-label {
    color: rgb(220, 53, 69);
}

.p-0 {
    padding: 0 !important;
}

.text-primary {
    color: var(--color-primary);
}

.text-white {
    --color-title: var(--color-white-title);
    --color-text: var(--color-white-text);
    color: var(--color-text);
}


.pricing {
    background: #FFF;
    padding: 20px;
    max-width: 1123px;
    margin-left: auto;
    margin-right: auto;

}

.price {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
}

@media (min-width:992px) {
    .price {
        padding: 40px;
    }
}

.price-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 82px;
    margin-bottom: 48px;
}

.text-white .price-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.price-icon {
    font-size: 30px;
    color: var(--color-title);
    margin-bottom: 24px;
}

.price-icon svg {
    display: inline-block;
    vertical-align: -.125em;
    fill: currentcolor;
    width: 1em;
    height: 1em;
}

.price-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--color-title);
    letter-spacing: -1.92px;
    margin-bottom: 12px;
}

.price-text {
    margin-bottom: 0;
}

.price-body-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-title);
    margin-bottom: 24px;
}

.price .btn {
    margin-top: auto;
}

.price-list {
    margin-bottom: 64px !important;
}

.accordion-item {
    overflow: hidden;
    border-bottom: 1px solid rgb(218, 226, 235);
    padding-bottom: 25px;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 25px 0 0 0;
    text-align: left;
    background-color: transparent;
    border: 0;
    transition: all .15s ease-in-out;
    font-size: 22px;
    font-weight: 600;
    gap: 20px;
}

.accordion-button-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-left: auto;
    background-color: var(--color-primary);
    color: #FFF;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    display: flex;
    position: relative;
    transition: all .2s;
}

.accordion-button:not(.collapsed) .accordion-button-icon {
    transform: rotate(45deg);
}

.accordion-body {
    padding-top: 10px;
    margin-right: 40px;
}

.accordion-body>*:last-child {
    margin-bottom: 0;
}

.collapse:not(.show) {
    display: none;
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

.card {
    border-radius: 15px;
    background-color: #FFF;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(26, 60, 81, 0.071),
        0 4px 2px rgba(26, 60, 81, 0.02),
        0 8px 4px rgba(26, 60, 81, 0.02),
        0 16px 8px rgba(26, 60, 81, 0.02),
        0 32px 16px rgba(26, 60, 81, 0.02);
    position: relative;
    z-index: 1;
}

.card+.card {
    margin-top: 35px;
}

.h-100 {
    height: 100%;
}

.card-body {
    padding: 35px;
}

.card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-title);
    letter-spacing: -.02em;
    line-height: 130%;
}

.card-text {
    margin-bottom: 0;
}

.card-feature {
    text-align: center;
}

.card-feature .card-body {
    padding: 50px;
}

.card-feature img {
    width: 100%;
    height: 130px;
    object-fit: contain;
    margin-bottom: 30px;
}

.card-icon {
    text-align: center;
}

.card-icon img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    margin-bottom: 24px;
}

.carousel-visible {
    overflow: visible;
}

.carousel-height .swiper-slide {
    height: auto;
}

.carousel-button-next,
.carousel-button-prev {
    background-color: var(--color-primary);
    color: #FFF;
    border-radius: 100%;
    position: absolute;
    width: 44px;
    height: 44px;
    top: 50%;
    margin-top: -22px;

    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-button-next {
    right: -22px;
}

.carousel-button-prev {
    left: -22px;
}

.carousel-button-next svg,
.carousel-button-prev svg {
    width: 12px;
    height: 12px;
}

.carousel-button-next.swiper-button-disabled,
.carousel-button-prev.swiper-button-disabled {
    opacity: 0;
}

.carousel-pagination {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: .3;
}

.carousel-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(34, 34, 34, 0.4);
}

.carousel-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #222;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 35px;
    padding-top: 35px;
    border-top: 1px solid rgb(218, 226, 235);
}

.contact-info li {
    display: flex;
    gap: 20px;
}

.contact-info-icon {
    width: 32px;
}

.contact-info-icon img {
    width: 100%;
}

.contact-info-title {
    margin-bottom: 3px;
    font-size: 18px;
    font-weight: 600;
    line-height: 135%;
    letter-spacing: -.02em;
}

.sticky {
    position: sticky;
    top: 140px;
}

.card-process {
    display: flex;
    gap: 35px;
    flex-direction: column;
}

.card-process-image img {
    max-height: 110px;
    width: auto;
}

@media (min-width: 768px) {
    .card-process {
        flex-direction: row;
    }

    .card-process-reverse {
        flex-flow: row-reverse;
    }
}

.narrow-description {
    border-bottom: 1px solid rgb(218, 226, 235);
    margin-bottom: 35px;
    padding-bottom: 35px;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.text-white .checklist li {
    color: #FFF;
}

.text-white .checklist-icon {
    background-color: #FFF;
    color: var(--color-primary);
}

.checklist li {
    display: flex;
    gap: 10px;
    color: #1a3c51;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.36px;

}

.checklist li+li {
    margin-top: 10px;
}

.checklist-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;

}


.card-stack .card-body {
    padding: 30px;
}

.card-stack .card-image {
    background: #eff3f7;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stack-cards {
    --stack-cards-gap: 24px;
    --stack-cards-item-ratio: 2/1;
}

.stack-cards__item {
    top: 30px;
    -webkit-transform-origin: center top;
    transform-origin: center top;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .card-stack {
        min-height: 588px;
    }

    .stack-cards__item {
        position: relative;
        position: -webkit-sticky;
        position: sticky;
        top: 128px;
        margin-bottom: 0;
    }

    .card-stack .card-body {
        padding: 60px;
    }

    .card-stack .card-image {
        min-height: 468px;
    }
}

@media (max-width: 991.99px) {
    .stack-cards__item {
        transform: none !important;
    }
}

.img-wrap {
    background: #FFF;
    border-radius: 15px;
    padding: 30px;
}

.ratio {
    position: relative;
    width: 100%;
}

.ratio::before {
    display: block;
    padding-top: var(--bs-aspect-ratio);
    content: "";
}

.ratio-1x1 {
    --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
    --bs-aspect-ratio: 75%;
}

.ratio>* {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ratio>img {
    object-fit: contain;
}

.card-step {
    height: 100%;
    overflow: hidden;
}

.card-step .card-body {
    height: 100%;
    position: relative;
    padding-bottom: 150px;
}

.card-step .card-number {
    font-size: 70px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    background-color: rgba(0, 81, 255, 0.15);
    color: #0052ff;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    bottom: -30px;
    right: -20px;
}

.card-step,
.card-step .card-title,
.card-step .card-number,
.card-step .card-text {
    transition: background-color .2s, color .2s;
}

.card-step:hover {
    background-color: var(--color-primary);
}

.card-step:hover .card-title {
    color: var(--color-white-title);
}

.card-step:hover .card-text {
    color: var(--color-white-text);
}

.card-step:hover .card-number {
    background-color: rgba(255, 255, 255, 0.15);
    color: #FFF;
}

.card-calculadora .card-body {
    padding: 20px;
}

.card-calculadora .card-body-inner {
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .card-calculadora .card-body-inner {
        padding: 40px;
    }
}

.calculadora-box {
    margin-top: auto;
    padding: 20px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    text-align: center;
}

.calculadora-result {
    font-size: 40px;
    color: var(--color-title);
    font-weight: 900;
    line-height: 1;
}

@media (min-width: 992px) {
    .world-bg {
        margin-right: -100px;
    }
}

.world-bg img {
    width: 100%;
    height: auto;
}

.team {
    text-align: center;
}

.team-image {
    border-radius: 50%;
    display: inline-flex;
    width: 200px;
    height: 200px;
    overflow: hidden;
    margin-bottom: 18px;
    border: 8px solid #FFF;
    box-shadow: 0 0 0 1px rgba(26, 60, 81, 0.071),
        0 4px 2px rgba(26, 60, 81, 0.02),
        0 8px 4px rgba(26, 60, 81, 0.02),
        0 16px 8px rgba(26, 60, 81, 0.02),
        0 32px 16px rgba(26, 60, 81, 0.02);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-title);
    letter-spacing: -.02em;
    line-height: 130%;
    margin-bottom: 8px;
}

.team-text {
    margin-bottom: 0;
}

.bloquote {
    padding: 50px;
    border-radius: 14px;
}



.blocks h1,
.blocks h2,
.blocks h3,
.blocks h4,
.blocks h5 {
    font-weight: 600;
    color: var(--color-title);
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -.03em;
}

.blocks *+h1,
.blocks *+h2,
.blocks *+h3,
.blocks *+h4,
.blocks *+h5 {
    margin-top: 50px;
}

.blocks h2 {
    font-size: 32px;
}

.blocks h3 {
    font-size: 28px;
}

.blocks h4 {
    font-size: 22px;
}

.blocks h5 {
    font-size: 20px;
}

.blocks a {
    color: var(--color-primary);
}


#cc-main {
    --cc-btn-primary-bg: var(--color-primary);
    --cc-btn-primary-border-color: var(--color-primary);
    --cc-btn-primary-hover-bg: var(--color-primary);
    --cc-btn-primary-hover-border-color: var(--color-primary);
    --cc-toggle-on-bg: var(--color-primary);
}

.alert {
    padding: 16px;
    border-radius: 6px;
    border: 0;
    margin-bottom: 16px;
}

.alert-success {
    background-color: #f0fdf4;
    color: #026630;
}

.alert-danger {
    background-color: #fef2f2;
    color: #9f0712;
}