
body {
    font-family: "Roboto Condensed", serif;
    line-height: 1.6;
    background-color: #FFF;
    color: #003767;
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}
img, svg {
    vertical-align: middle;
}
.container {
    width: 100%;
    padding-right: calc(1.5rem * .5);
    padding-left: calc(1.5rem * .5);
    margin-right: auto;
    margin-left: auto;
}
.d-flex {
    display: flex;
}
.d-flex-columns {
    flex-direction: column;
}
.white-section {
    background-color: #FFF;
}
.gray-section {
    background-color: #EEE;
    padding: 2em 0;
}

.why-section h2 {
    font-size: 61px;
    font-weight: 500;
}
.why-section .why-box {
    background-color: #FFF;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    padding: 2em;
    margin: 2em 0;
}
.why-section .why-box .why-box-content {
    border-bottom: 1px solid #9AB4C9;
    padding: 1em;
}
.why-section .why-box .why-box-content img {
    margin: 0 auto 1em;
    display: block;
    width: 27%;
}
.why-section .why-box .why-box-content h3 {
    font-size: 28px;
    font-weight: 400;
}
.why-section .why-box .why-box-content p {
    font-family: "Roboto Flex", serif;
}

/* ------------- Responsive ----------------- */

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    .d-flex-columns {
        flex-direction: row;
    }
    .welcome-section h1 {
        font-size: 58px;
    }
    .welcome-section h2 {
        font-size: 34px;
    }
    .welcome-section p {
        font-size: 23px;
        line-height: 1;
        margin-bottom: 1rem;
    }
    .welcome-section span {
        display: block;
        font-size: 16px;
        color: #FFF;
        line-height: 1;
    }
    .welcome-section .box-divider {
        padding-left: 2em;
        margin-left: 2em;
    }
    .counter-section .d-flex {
        justify-content: space-between;
    }
    .counter-section .d-flex div {
        text-align: center;
    }
    .counter-section .d-flex div:nth-child(2n) {
        background-color: #FFF;
    }
    .counter-section p {
        font-size: 62px;
    }
    .why-section .d-flex {
        gap: 2em;
        align-items: center;
        justify-content: space-between;
    }
    .why-section .why-box {
        width: 59%;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
    .welcome-section .box-divider {
        padding-left: 4em;
        margin-left: 4em;
    }
    .welcome-section h1 {
        font-size: 75px;
    }
    .welcome-section h2 {
        font-size: 45px;
    }
    .welcome-section p {
        font-size: 26px;
    }
    .welcome-section span {
        font-size: 18px;
        line-height: 1.3;
    }
    .form-section {
        padding: 5em 0 0;
    }
    .counter-section p {
        font-size: 72px;
    }
    .why-section .d-flex {
        gap: 7em;
    }
    .why-section .why-box {
        width: 60%;
    }
    .why-section .why-box .why-box-content {
        display: flex;
        flex-direction: row-reverse;
        gap: 1em;
        align-items: center;
        justify-content: space-between;
    }
    .why-section .why-box .why-box-content img {
        width: 16%;
        margin: 0;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    .why-section .why-box {
        width: 66%;
    }
    .why-section .why-box .why-box-content img {
        width: 12%;
    }
}