@font-face {
    font-family: 'Vaulto-ExtraBold';
    src: url(../fonts/Vaulto-ExtraBold.woff2) format("woff2"), url(../fonts/Vaulto-ExtraBold.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

.font-vaulto {
    font-family: 'Vaulto-ExtraBold';
    font-weight: 400;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #355872;
    --primaryLight: #7AAACE;
    --secondary: #9CD5FF;
    --secondaryLight: #ddf1ff;
    --third: #43b0ef;
    --thirdLight: #fca3ce;
    --headerColor: #1a1a1a;
    --bodyTextColor: #4e4b66;
    --bodyTextColorWhite: #F7F8F0;
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    --headerFontSize: clamp(1.5375rem, 7.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
    margin: 0;
    padding: 0;
}

p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 1px;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

.cs-topper {
    font-size: var(--topperFontSize);
    font-family: sans-serif;
    line-height: 1.2em;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 900;
    color: var(--third);
    margin-bottom: 0.25rem;
    display: block;
}

.cs-title {
    font-family: 'Vaulto-ExtraBold';
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
}

.cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    max-width: 40.625rem;
    color: var(--bodyTextColor);
}

.primarylight {
    color: var(--primaryLight) !important;
    font-weight: bold;
}

.primary {
    color: var(--primary) !important;
    font-weight: bold;
}

/* BUTTON ********************************/
.btn-main {
    font-size: .8rem;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 10px;
    text-transform: uppercase;
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-decoration: none;
    font-weight: 400;
    text-align: center;
    margin: 0;
    color: #fff;
    border: none;
    max-width: 22.375rem;
    width: 100%;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: .4rem;
    overflow: hidden;
    display: inline-block;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    transition-duration: 0.6s;
    cursor: pointer;
    margin-bottom: 20px;
}

.btn-main.variante {
    background-color: var(--primaryLight) !important;
}

.btn-main:hover {
    letter-spacing: 11px;
}