﻿html {
    box-sizing: border-box;
    padding: 0;
    scroll-behavior: smooth;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

:root {
    --dark: #333333;
    --light: #EDE7E3;
    --cta-bg: #D50909;
    --blue: #3061FF;
    --light-blue: #A8D3DC;
    --error-red: #F02727;
}

body {
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    color: var(--dark);
}

.container {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
}

/* FLEX UTIL */

.flex {
    display: flex;
}

.row, .mobile-row {
    flex-direction: row;
}

@media screen and (max-width: 700px) {
    .row {
        flex-direction: column;
    }
}

.col {
    flex-direction: column;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.space-between {
    justify-content: space-between;
}

.space-evenly {
    justify-content: space-evenly;
}

.gap-1 {
    gap: 1rem;
}

.gap-1-5 {
    gap: 1.5rem;
}

.gap-2 {
    gap: 2rem;
}

.gap-3 {
    gap: 3rem;
}

.wrap {
    flex-wrap: wrap;
}

@media screen and (max-width: 700px) {
    .row {
        flex-direction: column;
    }
}

/* TEXT UTIL */

.text-center {
    text-align: center;
}

.bold {
    font-weight: 700;
}

.extrabold {
    font-weight: 900;
}

.dark {
    color: var(--dark);
}

/* CTA SECTION STYLES */

.cta__section{
    padding: 1rem;
}

.cta__section h1{
    font-size: 38px;
    text-wrap: balance;
}

.field, .field-error-label, .field-error-label-error {
    display: none;
}

.cta__container {
    width: 100%;
    background: #CCCCCC;
    border-radius: 8px;
    padding: 2rem 1.5rem 1rem 1.5rem;
}

.cta__container h2{
    font-size: 30px;
}

.cta-btn__container{
    margin-top: 2rem;
}

.cta-btn{
    padding: 1.5rem;
    color: #FFFFFF;
    text-align: center;
    font-size: 38px;  
    font-weight: 600;
    width: 100%;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.cta-green {
    background: #47BB16;
}

.cta-red {
    background: #F1411A;
}

@media screen and (max-width: 700px) {
    .cta__section h1 {
        font-size: 28px;
    }

    .cta-btn {
        font-size: 28px;
    }
}

/* FOOTER STYLES */

.footer {
    padding: 2rem 1rem;
    margin-top: 8rem;
}

.footer .logo-img{
    max-width: 275px;
    width: 100%;
}

    .footer a {
        color: var(--blue);
    }

