* {
    font-family: "Lato", sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #FFFFFF;
    font-family: "Lato", sans-serif;
    font-size: 20px;
    line-height: 145%;
    font-weight: 300;
}


.container {
    max-width: 1280px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
    font-family: 'Satoshi', sans-serif;
}

h1 {
    font-size: 56px;
    line-height: 120%;
    font-weight: 500;
}

h2 {
    font-size: 52px;
    line-height: 121%;
    font-weight: 500;
}

h3 {
    font-size: 30px;
    line-height: 120%;
    font-weight: 500;
}

h4 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
}

h5 {
    font-size: 26px;
    line-height: 120%;
    font-weight: 500;
}

h6 {
    font-size: 20px;
    line-height: 130%;
    font-weight: 500;
    color: #1A1A1A;
}

.subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    line-height: 100%;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #095483;
    text-transform: uppercase;
}

.title {
    font-family: 'Satoshi', sans-serif!important;
    font-size: 52px;
    line-height: 121%;
    font-weight: 500;
    color: #000000;
}

.subtitle span,
.title span {
    color: #095483;
    font-family: 'Satoshi', sans-serif!important;
}

@media (max-width: 1280px) {
    .container {
        max-width: 1280px;
        padding: 0 16px;
    }
}
@media (max-width: 991px) {
    .container {
        max-width: 768px;
    }
}
@media (max-width: 480px) {
    .container {
        max-width: 100%;
    }
}

.logo img {
    max-width: 340px;
    width: 100%;
    height: 49px;
    object-fit: contain;
}

.footer__logo img {
    max-width: 343px;
    width: 100%;
    height: 49px;
    object-fit: contain;
}

.btn-blur {
    width: max-content;
    min-width: 217px;
    min-height: 49px;
    padding: 14px 29px;
    border-radius: 500px;
    border: 1px solid #FFFFFF33;
    background: #FFFFFF33;
    font-family: 'Satoshi', sans-serif;
    font-size: 18px;
    line-height: 100%;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    transition: all 0.3s;
}

.btn-blur:hover {
    background: transparent;
}

.btn-primary {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: max-content;
    min-width: 263px;
    min-height: 63px;
    opacity: 1;
    border-radius: 500px;
    padding: 10px 20px;
    border: 1px solid #1E88F2;
    background: #1E88F2;
    font-family: 'Satoshi', sans-serif;
    font-size: 22px;
    line-height: 100%;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: transparent;
    color: #1E88F2;
}

.btn-primary svg rect {
    fill: #FFFFFF;
    transition: all 0.3s;
}

.btn-primary:hover svg rect {
    fill: #1E88F2;
}

.btn-secondary {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 11px;
    width: max-content;
    font-family: 'Satoshi', sans-serif;
    font-size: 22px;
    line-height: 100%;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: all 0.3s;
}

.btn-secondary svg {
    transition: all 0.3s;
}

.btn-secondary:hover svg {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .subtitle {
        font-family: 'Lato', sans-serif;
        font-size: 16px;
        line-height: 100%;
        font-weight: 300;
        letter-spacing: 0.1em;
        color: #095483;
        text-transform: uppercase;
    }

    .title {
        font-family: 'Satoshi', sans-serif;
        font-size: 24px;
        line-height: 28px;
        font-weight: 500;
        color: #000000;
    }
    .btn-primary {
        min-width: min-content;
        min-height: 45px;
        padding: 6.5px 16px;
        font-size: 16px;
        line-height: 105%;
    }

    .btn-secondary {
        font-size: 16px;
    }

    .btn-secondary svg {
        width: 37px;
        height: 37px;
        font-size: 16px;
    }

    .btn-primary svg {
        width: 31px;
        height: 31px;
    }
}