@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/inter-v13-latin-regular.woff2') format('woff2'),
        url('../fonts/inter-v13-latin-regular.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/inter-v13-latin-500.woff2') format('woff2'),
        url('../fonts/inter-v13-latin-500.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/inter-v13-latin-600.woff2') format('woff2'),
        url('../fonts/inter-v13-latin-600.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/inter-v13-latin-700.woff2') format('woff2'),
        url('../fonts/inter-v13-latin-700.ttf') format('truetype');
}

body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    color: #112950;
    background-size: 100% auto;
    background-repeat: no-repeat;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    background-image:
        radial-gradient(at 95% 0%, rgba(56, 189, 248, 0.27) 0px, transparent 50%),
        radial-gradient(at 17% 33%, #ffffff 0px, transparent 50%);
    height: 100%;
    z-index: -1;
}

a {
    text-decoration: none;
}

header {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: #FFF;
    border-bottom: 1px solid #e2e8f0;
}

header .container {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    margin-right: auto;
    padding: 10px 0;
}

.header-logo img {
    height: 80px;
    width: auto;
}

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

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

.header-menu>li>a {
    padding: 10px 0;
    font-size: 15px;
    color: #0a2540;
    font-weight: 600;
    display: block;
}

.header-toggle {
    background-color: transparent;
    border: 0;
    padding: 9px 10px;
}

.header-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background-color: #38bdf8;
}

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

.header-collapse {
    display: none;
}

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

.header-navbar {
    padding-bottom: 20px;
}

@media (max-width: 991.99px) {
    header .btn {
        width: 100%;
        margin-top: 10px;
    }

    header.show-collapse .header-navbar {
        animation: mega-nav-entry-animation 0.5s ease-out;
    }
}

@media (min-width: 992px) {
    header {
        flex-wrap: nowrap;
        justify-content: flex-start;
        background: transparent;
        border: 0;
    }

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

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

    .header-toggle {
        display: none;
    }

    .header-logo {
        padding: 15px 0;
    }

    .header-logo img {
        height: 120px;
    }

    .header-navbar {
        padding-bottom: 0;
        margin-left: auto;
        background-color: rgba(255, 255, 255, 0.6);
        border: 1px solid #e2e8f0;
        border-radius: 40px;
        box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.05), 0px 4px 6px -4px rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        padding: 8px;
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
    }

    .header-menu {
        margin-right: 36px;
    }

    .header-menu>li {
        margin-left: 12px;
    }

    .header-menu>li>a {
        padding: 0 8px;
    }
}

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

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

.btn {
    display: inline-block;
    padding: 6px 16px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    border: 0px;
    border-radius: 999px;
    box-shadow: rgba(99, 102, 241, 0.25) 0px 1px 3px 0px, rgba(99, 102, 241, 0.25) 0px 1px 2px -1px;
    transition: all 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-primary {
    background-color: #38bdf8;
    color: #FFF;
}

.btn-white {
    background-color: #FFF;
    color: #38bdf8;
}

.btn-primary:hover {
    background-color: #0a2540;
    color: #FFF;
}

.card-link svg,
.btn svg {
    stroke-width: 2px;
    fill: none;
    stroke: currentColor;
    margin-left: 5px;
    vertical-align: 0px;
}

.card-link svg path:first-child,
.btn svg path:first-child {
    opacity: 0;
    transition: opacity 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.card-link svg path:last-child,
.btn svg path:last-child {
    transform: none;
    transition: transform 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.card:hover .card-link svg path:first-child,
.btn:hover svg path:first-child {
    opacity: 1;
}

.card:hover .card-link svg path:last-child,
.btn:hover svg path:last-child {
    transform: translateX(3px);
}

.form-label {
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 500;
    color: #0a2540;
    display: block;
}

.form-label .required,
.form-check-label .required {
    color: #d61c00;
}

.form-control,
.form-select {
    display: block;
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    color: #112950;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #FFF;
    background-clip: padding-box;
    border: 0;
    box-shadow: rgb(224, 224, 224) 0px 0px 0px 1px, rgba(0, 0, 0, 0.07) 0px 2px 4px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1.5px 0px;
    border-radius: 6px;
    transition: box-shadow .08s ease-in;
}

.form-control.is-invalid,
.form-select.is-invalid {
    box-shadow: rgb(239, 152, 150) 0px 0px 0px 1px, rgba(0, 0, 0, 0.07) 0px 2px 4px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1.5px 0px;
}

.form-control:focus,
.form-select:focus,
.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
    outline: 0;
    box-shadow: rgba(50, 151, 211, 0.7) 0px 0px 0px 1px, rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(50, 151, 211, 0.3) 0px 0px 0px 4px;
}


.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 12px;
    padding-right: 36px;
}

.form-group+.form-type-headline {
    margin-top: 40px;
}

.form-headline {
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 600;
    color: #171E68;
}

.form-check {
    display: block;
    min-height: 24px;
    padding-left: 24px;
    line-height: 24px;
    color: #212529;
}

.form-check .form-check-input {
    float: left;
    margin-left: -24px;
}

.form-check-input {
    width: 16px;
    height: 16px;
    margin-top: 4px;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #FFF;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
}

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

.form-check-input:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.25);
}

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

.form-selectgroup-input:checked+.form-selectgroup-label {
    border-color: #206bc4;
    color: #206bc4;
}

.form-check-input:checked,
.form-selectgroup-input:checked+.form-selectgroup-label .form-selectgroup-check {
    background-color: #206bc4;
    border: 1px solid #206bc4;
}

.form-check-input:checked[type=checkbox],
.form-selectgroup-input[type=checkbox]:checked+.form-selectgroup-label .form-selectgroup-check {
    background-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],
.form-selectgroup-input[type=radio]:checked+.form-selectgroup-label .form-selectgroup-check {
    background-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: #d63939;
}

.form-check-input.is-invalid:checked {
    background-color: #d63939;
}

.form-check-input.is-invalid:focus {
    box-shadow: 0px 0px 0px 4px rgba(214, 57, 57, 0.25);
}

.form-check-input.is-invalid~.form-check-label {
    color: #d63939;
}

.alert {
    position: relative;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid transparent;
    border-radius: 6px;
}

.alert-success {
    color: #0a3622;
    border-color: #a3cfbb;
    background-color: #d1e7dd;
}

.alert-danger {
    color: #58151c;
    border-color: #f1aeb5;
    background-color: #f8d7da;
}

section {
    padding: 80px 0;
}


@media (min-width: 992px) {
    .section-hero {
        padding-top: 0;
    }

    section {
        padding: 120px 0;
    }
}

.section-hero img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(4px 6px 15px rgba(0, 0, 0, 0.1));
}

.heading {
    margin-bottom: 30px;
}

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

.heading-alt {
    color: #38bdf8;
    font-weight: 600;
}

.heading-title {
    font-weight: 700;
    color: #0a2540;
    font-size: 40px;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 0;
}

.heading-subtitle {
    font-weight: 700;
    color: #0a2540;
    font-size: 26px;
    letter-spacing: -1.5px;
    line-height: 1;
    margin-bottom: 0;
    margin-top: 16px;
}

.heading-title-sm {
    font-size: 28px;
    letter-spacing: -0.9px;
    line-height: 1.2;
}

.heading-text {
    margin-top: 20px;
    font-size: 18px;
}

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

@media (min-width: 992px) {
    .heading-title {
        font-size: 56px;
        letter-spacing: -1.5px;
    }

    .heading-subtitle {
        font-size: 32px;
        letter-spacing: -1.5px;
    }

    .heading-title-sm {
        font-size: 36px;
        letter-spacing: -0.9px;
    }
}

.text-white {
    color: #d1d5db;
}

.text-white .heading-title {
    color: #FFF;
}

.container+.container {
    margin-top: 120px;
}

.iconbox {
    padding-left: 64px;
    position: relative;
}

.iconbox-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: 1.5px solid #38bdf8;
    color: #38bdf8;
    background-color: #f3fafe;
    text-align: center;
    border-radius: 6px;
    box-shadow: rgba(56, 191, 248, 0.12) 0px 4px 6px -1px, rgba(56, 191, 248, 0.12) 0px 2px 4px -2px;
    margin-bottom: 20px;
    position: absolute;
    left: 0;
    top: 0;
}

.iconbox-icon svg {
    width: 22px;
    height: 22px;
    vertical-align: middle;
    line-height: 1;
}

.iconbox-title {
    font-weight: 600;
    color: #0a2540;
    margin-bottom: 10px;
    font-size: 16px;
}

.bg-light {
    background: #f9fafb;

}

.partner-logo {
    margin-bottom: 20px;
}

.partner-logo img {
    height: 45px;
    width: auto;
}

.img-fluid {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.h-100 {
    height: 100%;
}



@keyframes animate_text {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}


.list-tags {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    overflow: hidden;
    grid-column-gap: 20px;
}

.list-tags-items {
    grid-column-gap: 20px;
    display: flex;
    list-style: none;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    max-width: none;
    animation: animate_text 60s linear infinite;
}

.list-tags-items li {
    background-color: #d7f1fd;
    border-radius: 25px;
    padding: 7px 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-weight: 500;
}

.list-tags-items li svg {
    margin-right: 8px;
    width: 20px;
    height: 20px
}

.box {
    background: #ebf8fe;
    padding: 30px 0;
    border-radius: 10px;
}

.box .heading {
    padding: 0 30px;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .box {
        padding: 60px 0;
    }

    .box .heading {
        padding: 0 60px;
    }
}

.stack-cards .swiper-slide {
    height: auto;
    padding-bottom: 20px;
}

.stack-cards .swiper-button-prev,
.stack-cards .swiper-button-next {
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid #e2e8f0;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.05), 0px 4px 6px -4px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    width: 60px;
    height: 60px;
    color: #38bdf8;
}

.stack-cards .swiper-button-prev:after,
.stack-cards .swiper-button-next:after {
    font-size: 20px;
    font-weight: bold;
}

.stack-card {
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid #e5e7eb;
    min-height: 400px;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.05), 0px 4px 6px -4px rgba(0, 0, 0, 0.05);
}

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

.stack-card-body ul li p {
    margin: 0;
}

.stack-card-number {
    color: #38bdf8;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-size: 12px;
}

.stack-card-number:after {
    content: '///';
    margin-left: 16px;
    color: rgba(0, 0, 0, .2);
}

.stack-card-title {
    font-size: 24px;
    letter-spacing: -0.9px;
    line-height: 1.2;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 20px;
}

.stack-card-image {
    height: 300px;
    margin-top: auto;
}

.stack-card-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media (min-width: 992px) {

    .stack-card {
        flex-direction: row;
    }

    .stack-card-body {
        padding: 55px;
        width: 55%;
        flex: 0 0 auto;
    }

    .stack-card-image {
        height: 100%;
        position: absolute;
        width: 45%;
        right: 0;
    }
}

section.hero-service {
    padding-bottom: 0;
}

section.service {
    padding-top: 40px;
}

.hero-title {
    font-weight: 700;
    color: #0a2540;
    font-size: 45px;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 0;
}

.hero-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 0;
}

.hero-crumb {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
}

.hero-crumb li a {
    color: #38bdf8;
    font-weight: 600;
}

.hero-crumb li:after {
    content: '///';
    margin: 0 14px;
    color: rgba(0, 0, 0, .2);
}

.hero-meta {
    margin-top: 14px;
    font-weight: 600;
    color: #0a2540;
    font-size: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.hero-meta i {
    color: #38bdf8;
    margin-right: 8px;
}

.hero+.content {
    margin-top: -40px;
    padding-top: 80px;
}

.border-top {
    border-top: 1px solid #e2e8f0;
}

.border-bottom {
    border-bottom: 1px solid #e2e8f0;
}

.bg-gradient {
    border-top: 1px solid #e2e8f0;
    position: relative;
    overflow: clip;
    z-index: 1;
    background-color: #FFF;
}

.bg-gradient:before {
    content: '';
    position: absolute;
    height: 24rem;
    margin-top: -12rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    border-radius: 50%;
    filter: blur(96px);
    background: #f9fafb;
    z-index: -1;
    left: 0;
    right: 0;
}

.blocks {
    line-height: 1.75;
}

.blocks p {
    margin-bottom: 20px;
}

.blocks ul,
.blocks ol {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 26px;
}

.blocks li {
    margin-top: 8px;
    margin-bottom: 8px;
    padding-left: 6px;
}

.blocks h2,
.blocks h3,
.blocks h4,
.blocks h5 {
    font-weight: 700;
    margin-bottom: 24px;
}

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

.blocks img {
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.widget-title,
.blog-widget-title {
    font-weight: 600;
    color: #0a2540;
    font-size: 16px;
}

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

.widget-nav a {
    color: #475569;
    display: block;
    padding: 5px 0;
    position: relative;
    padding-left: 24px;
    font-weight: 500;
}

.widget-nav a.active {
    color: #38bdf8;
}

.widget-nav a.active svg {
    display: block;
    position: absolute;
    left: 0;
    top: 13px;
    width: 16px;
    height: 8px;
    fill: currentColor;
}

.blog-widget+.blog-widget {
    margin-top: 40px;
}

.blog-widget-categories,
.blog-widget-archives,
.blog-widget-tags {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-widget-categories a,
.blog-widget-archives a {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 5px 0;
    color: #475569;
}

.blog-widget-categories a:hover,
.blog-widget-archives a:hover {
    color: #0a2540;
}

.blog-widget-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-widget-tags a {
    font-weight: 600;
    border-radius: 100px;
    padding: 5px 12px;
    font-size: 12px;
    background: rgba(148, 163, 184, 0.1);
    color: #64748b;
}

.author {
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.author-avatar {
    border-radius: 50%;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    margin-right: 15px;
}

.author-avatar img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-title {
    font-weight: 600;
    margin-bottom: 0;
}

.author-desc {
    color: rgb(71, 85, 105);
    margin-bottom: 0;
}

.author-social {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 5px;
}

.author-social li {
    display: inline-block;
    margin-right: 6px;
}

.author-social li a {
    color: #000;
}

.footer-primary {
    padding: 80px 0;
    color: #475569;
}

.footer-primary img {
    height: 120px;
    width: auto;
}

.footer-title {
    font-weight: 600;
    color: #0a2540;
}

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

.footer-nav a {
    display: block;
    padding: 4px 0;
    color: inherit;
}

.footer-contact li {
    padding: 4px 0;
    display: flex;
}

.footer-contact i {
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    margin-right: 15px;
    color: #38bdf8;
}

.footer-contact svg {
    color: #38bdf8;
    margin-right: 15px;
    width: 20px;
    height: 24px;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 40px 0;
    font-size: 13px;
    color: #475569;
}

.footer-bottom a {
    color: inherit;
}

.card {
    position: relative;
}

.card-image {
    margin-bottom: 20px;
}

.card-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.card-title {
    font-weight: 700;
    color: #0a2540;
    font-size: 24px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.card-title a {
    color: inherit;
}

.card-link {
    color: #38bdf8;
    font-weight: 600;
}

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

#map {
    height: 400px;
    border-radius: 10px;
}




#whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    padding: 0;
    box-shadow: 0px 5px 40px rgba(0, 0, 0, 0.16);
    text-align: center;
    background-color: #25d366;
    color: #FFF;
}

#whatsapp-button svg {
    width: 30px;
    height: 30px;
}

#whatsapp-chat {
    position: fixed;
    bottom: 110px;
    right: 30px;
    z-index: 999;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 5px 40px rgba(0, 0, 0, 0.16);
    max-width: 300px;
    transform: scale(0);
    opacity: 0;
    transform-origin: bottom right;
    transition: transform .3s cubic-bezier(0, 1.2, 1, 1), opacity 83ms ease-out;
}

#whatsapp-chat.open {
    opacity: 1;
    transform: scale(1);
}

.whatsapp-header {
    background: #128c7e;
    padding: 14px;
    color: #FFF;
    position: relative;
    padding-right: 60px;
    font-weight: 500;
    font-size: 14px;
}

#whatsapp-close {
    position: absolute;
    right: 14px;
    border: 0;
    background: transparent;
    color: #FFF;
    padding: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

#whatsapp-close svg {
    width: 22px;
    height: 22px;
}

.whatsapp-body {
    background: #e5dcd5;
    padding: 14px;
}

.whatsapp-message {
    background: #FFF;
    color: #000;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 14px;
    font-weight: 400;
    font-size: 14px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.16);
}

.whatsapp-form {
    padding-right: 50px;
    position: relative;
    margin-top: 10px;
}

.whatsapp-form input {
    width: 100%;
    box-sizing: border-box;
    height: 35px;
    line-height: 35px;
    padding: 0 14px;
    border: 0;
    border-radius: 50px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.16);
    font-weight: 500;
    font-size: 14px;
}

.whatsapp-form input:focus {
    outline: 0;
}

.whatsapp-form button {
    position: absolute;
    right: 0;
    top: 0;
    background: #128c7e;
    color: #FFF;
    width: 35px;
    height: 35px;
    padding: 0;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.16);
}

.whatsapp-form button svg {
    width: 16px;
    height: 16px;
}

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

.pricing-title {
    font-weight: 700;
    color: #0a2540;
    font-size: 18px;
    line-height: 1.1;
}

.pricing {
    background: #FFF;
    padding: 30px;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.05), 0px 4px 6px -4px rgba(0, 0, 0, 0.05);
}

.pricing-tabs {
    list-style: none;
    padding: 6px;
    margin: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    border: 1px solid #e2e8f0;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 21px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.05), 0px 4px 6px -4px rgba(0, 0, 0, 0.05);
}

.pricing-tabs button {
    font-size: 15px;
    color: #0a2540;
    font-weight: 600;
    border: 0;
    background: none;
    padding: 6px 12px;
    display: block;
    border-radius: 37px;
    transition: all .2s;
    width: 100%;
}

.pricing-tabs button.active {
    background-color: #38bdf8;
    color: #FFF;
}

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

    .pricing-tabs {
        display: inline-flex;
        flex-direction: row;
        border-radius: 40px;
    }
}

@media (min-width: 1200px) {
    .pricing {
        padding: 50px;
    }

    .pricing-tabs button {
        padding: 6px 15px;
    }
}

.pricing-text {
    font-size: 14px;
}

.pricing-item+.pricing-item {
    margin-top: 30px;
}

.pricing-price {
    background: #ebf8fe;
    padding: 30px;
    border-radius: 10px;
}

.pricing-price-title {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 14px;
}

.pricing-price-value {
    font-size: 32px;
    font-weight: 700;
}

.pricing-price-tax {
    font-size: 12px;
    opacity: .7;
    margin-bottom: 30px;
}

.accordion-item {
    padding: 24px;
    border-radius: 16px;
    border: 1px solid transparent;
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 18px;
    border: 0;
    background: transparent;
    font-weight: 600;
    text-align: left;
    padding: 0;
}

.accordion-button:after {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2338bdf8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 20px auto;
}

.accordion-body {
    padding-top: 20px;
}

.accordion-collapse {
    display: none;
}

.accordion-item.active {
    background-color: #FFF;
    border-color: #e2e8f0;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.05), 0px 4px 6px -4px rgba(0, 0, 0, 0.05);
}

.accordion-item.active .accordion-button:after {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-collapse {
    display: block;
}

.accordion-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-body ul li {
    position: relative;
    padding-left: 25px;
}

.accordion-body ul li:after {
    content: '';
    left: 0;
    top: 9.5px;
    display: block;
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #38bdf8;
    border-radius: 50%;
}

.accordion-body ul li+li {
    margin-top: 5px;
}


.feature {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform .65s cubic-bezier(.05, .2, .1, 1);
}

.feature img,
.feature svg {
    width: 100%;
    height: auto;
    transform: scale(1.08);
    transition: all .7s cubic-bezier(.2, 1, .22, 1);
}

.feature:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 26, 26, 0.4);
    z-index: 9;
}

.feature-body {
    position: absolute;
    top: 0;
    padding: 30px;
    z-index: 99;
    width: 100%;
    height: 100%;
    color: #FFF;
    display: flex;
    flex-direction: column;
}

.feature-body:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    display: block;
    z-index: 10;
    content: "";
    background: linear-gradient(to bottom, rgba(0, 0, 0, .4) 0%, transparent 100%);
    opacity: 1;
    z-index: -1;
    opacity: 1;
    transform: none;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.6px;
    margin-bottom: 12px;
}

.feature-title a {
    color: inherit;
}

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

.feature:before,
.feature-text,
.feature-btn {
    opacity: 0;
    transition: opacity .7s cubic-bezier(.2, 1, .22, 1);
}

.feature:hover img {
    transform: scale(1);
}

.feature:hover {
    transform: translateY(-10px);
}

.feature:hover:before,
.feature:hover .feature-text,
.feature:hover .feature-btn {
    opacity: 1;
}

.CookieCardTable td,
.CookieCardTable th {
    padding: 8px;
    border-bottom: 1px solid rgb(222, 226, 230);
    vertical-align: top;
}

.qualia {
    font-size: 14px;
    border: 1px solid #DDD;
    padding: 20px;
    border-radius: 10px;
}

.qualia-title {
    font-weight: 600;
}

.qualia p {
    margin-bottom: 0;
}