/* 
* Base CSS
* -----------------------------------------------------
*/

:root {
    /* ================= Colors ================= */
    --primary-color: #93BEC3;
    --secondary-color: #1C3053;
    --tertiary-color: #C4D8ED;
    --text-color: #252B1F;


    --swiper-pagination-color: var(--tertiary-color);
    --swiper-pagination-bullet-size: 14px;
    --swiper-pagination-bullet-width: 14px;
    --swiper-pagination-bullet-height: 14px;
    --swiper-pagination-bullet-inactive-color: white;
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-bullet-opacity: 1;
}

* {
    box-sizing: border-box;
}



select,
input,
button {
    outline: none;
    border: none;
    background: none;
}

body a,
body a:hover {
    color: inherit;
    text-decoration: none;
}

body button {
    transition: .3s ease-in-out;
}

body section {
    position: relative;
    padding: 160px 0;
}

body input {
    color: white;
    font-family: 'Gaberito', sans-serif;
    font-weight: 400;
    font-size: 15px;
}

body h1 {
    font-family: 'Fraunces 144pt', sans-serif;
    font-weight: 600;
    font-size: 60px;
    line-height: 72px;
}

body h2 {
    color: var(--secondary-color);
    font-family: 'Fraunces 144pt', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
}

body h3 {
    color: var(--secondary-color);
    font-family: 'Circular Std', sans-serif;
    font-size: 30px;
}

body h4 {
    color: var(--secondary-color);
    font-family: 'Fraunces 144pt', sans-serif;
    font-weight: 600;
    font-size: 24px;
}

body h5 {
    color: var(--primary-color);
    font-family: 'Gabarito', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
}

body p {
    color: inherit;
    font-family: 'Gabarito', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
}

@media(max-width:1200px) {

    body section {
        padding: 80px 0;
    }
}

@media(max-width:998px) {
    body input {
        font-size: 13px;
    }

    body h1 {
        font-size: 50px;
        line-height: 62px;
    }

    body h2 {
        font-size: 38px;
        line-height: 46px;
    }

    body h3 {
        font-size: 24px;
    }
}

@media(max-width:480px) {
    :root {
        --swiper-pagination-bullet-size: 12px;
        --swiper-pagination-bullet-width: 12px;
        --swiper-pagination-bullet-height: 12px;
    }

    body section {
        padding: 40px 0;
    }

    body input {
        font-size: 12px;
    }

    body h1 {
        font-size: 36px;
        line-height: 48px;
    }

    body h2 {
        font-size: 28px;
        line-height: 36px;
    }

    body h3 {
        font-size: 20px;
    }

    body h4 {
        font-size: 18px;
    }

    body p {
        font-size: 14px;
        line-height: 24px;
    }
}
@media(hover: hover){
    body button:hover {
            filter: brightness(1.05);
        }
}