*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #042C53;
    --secondary-color: #D07F10;
    --body-text: #042C53B2;
    --font-family-heading: "Outfit", sans-serif;
    --body-font: "Inter", sans-serif;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
}

img,
svg,
picture,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

ul,
ol {
    list-style: none;
}

.page-width {
    padding: 0 40px;
}

@media(max-width: 767px) {
    .page-width {
        padding: 0 20px;
    }
}

/* TITLE  */

.prefix {
    font-weight: 500;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 21%;
    text-align: center;
    color: var(--secondary-color);
}

.hero-title {
    font-family: var(--font-family-heading);
    font-weight: 800;
    font-size: 70px;
    line-height: 130%;
    letter-spacing: 1%;
    text-transform: uppercase;
    color: var(--primary-color);
}

.section-title {
    font-family: var(--font-family-heading);
    font-weight: 800;
    font-size: 50px;
    line-height: 130%;
    letter-spacing: 1%;
    text-align: center;
    text-transform: uppercase;
    color: var(--primary-color);
}

.description {
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 1%;
    color: var(--body-text);
    font-family: var(--body-font);
}

@media(max-width: 767px) {
    .prefix {
        font-size: 18px;
        line-height: 100%;
    }

    .hero-title {
        font-size: 28px;
        line-height: 130%;
    }

    .section-title {
        font-size: 25px;
        line-height: 130%;
    }

    .description {
        font-size: 15px;
        line-height: 140%;
    }
}

/* BUTTON  */

.btn {
    font-weight: 700;
    font-size: 17px;
    line-height: 100%;
    letter-spacing: 1%;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--body-font);
    padding: 14.5px 18px;
    border-radius: 100px;
    transition: transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.btn-white {
    border: 1px solid #042C531A;
    background: #FFFFFF;
    color: var(--primary-color);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgb(165 165 165 / 25%);
}

.btn-green {
    background: #2BB641;
    border: 1px solid #2BB641;
    color: #FFFFFF;
}

.btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(32, 185, 87, .25);
}

.btn-dark {
    background: var(--primary-color);
    color: #FFFFFF;
    border: 1px var(--primary-color);
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(7, 52, 93, .25);
}