/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lora&family=Montserrat:wght@400;500;600;700&family=Oswald&display=swap');

/* Variables */
:root {
    --header-height: 4rem;

    /* Colors */
    --first-color: #2DAEEE;
    --second-color: #8BC743;
    --title-color: #323232;
    --body-color: #808080;
    --white-color: #FFFFFF;

    /* Typography */
    --title-font: 'Montserrat', sans-serif;
    --body-font: 'Lora', serif;

    /* Fonts */
    --biggest-font-size: 4.375rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1rem;
    --normal-font-size: 1rem;
    --button-font-size: 1rem;

    /* Font Weights */
    --title-weight: 700;
    --body-weight: 400;

}

@media screen and (max-width: 992px) {
    :root {
        --biggest-font-size: 2.5rem;
        --h1-font-size: 1.875rem;
        --h2-font-size: 0.875rem;
        --normal-font-size: 0.875rem;
        --button-font-size: 1rem;
    }
}

@media screen and (max-width: 600px) {
    :root {
        --biggest-font-size: 1.875rem;
    }
}

/* Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* font-size: 62.5%; */
    height: 100%;
}

body {
    /* margin: var(--header-height) 0 0 0; */
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--white-color);
    color: var(--text-color);
    height: 100%;
}

section {
    position: relative;
    width: 100%;
    height: 100%;
}

h1, h2, h3 {
    color: var(--title-color);
    font-weight: var(--title-weight);
    font-family: var(--title-font);
}

a {
    color: var(--white-color);
    text-decoration: none;
}

img, video {
    max-width: 100%;
    height: auto;
}

.main {
    overflow-x: hidden;
}

/* Reusable Classes */

.section-title {
    font-size: var(--h2-font-size);
    font-family: var(--title-font);
    font-weight: var(--title-weight);
    color: var(--title-color);
    text-align: left;
    text-transform: capitalize;
    margin-bottom: 0.375rem;
}

.section-subtitle {
    font-size: var(--h1-font-size);
    font-family: var(--title-font);
    font-weight: var(--title-weight);
    color: var(--title-color);
    text-align: left;
    text-transform: capitalize;
    margin-bottom: 0.375rem;
}

.section-text {
    font-size: var(--normal-font-size);
    font-family: var(--body-font);
    font-weight: var(--body-weight);
    color: var(--body-color);
    text-align: left;
    margin-bottom: 3.125rem;
}

.big-title {
    font-family: var(--title-font);
    font-size: var(--biggest-font-size);
    font-weight: var(--title-weight);
    color: var(--title-color);
    text-align: left;
    text-transform: capitalize;
    margin-bottom: 1.25rem;
}

.blue {
    color: var(--first-color);
}

.white {
    color: var(--white-color);
}

.btn {
    background: var(--second-color);
    padding: 12px 27px;
    border: none;
    border-radius: 150px;
    color: var(--white-color);
    font-size: var(--button-font-size);
    font-weight: var(--body-weight);
    font-family: var(--title-font);
    text-align: center;
    cursor: pointer;
}

.container {
    margin: auto;
}

@media screen and (max-width: 600px) {
    .container {
        max-width: 315px;
    }   
}

@media screen and (min-width: 600px) {
    .container {
        max-width: 600px;
    }
}

@media screen and (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media screen and (min-width: 992px) {
    .container {
        max-width: 992px;
    }
}

@media screen and (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}