html, body, button {
    font-family: Montserrat, sans-serif;
}
button {
    outline: none;
    -webkit-appearance: none;
}

body {
    background: #fff;
    color: #111;
    margin: 0 auto;
    padding: 0 0 64px 0;
}

.background {
    background-image: url('./images/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}
.background:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    background-image: linear-gradient(80deg, #0096FF 50%, #71ACD5 100%);
    opacity: 0.6;
}

.header {
    padding: 18px 0;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    max-width: 1200px;
}
.header-logo {
    background-image: url('./images/logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    height: 67px;
    width: 150px;
}

.banner {
    height: 570px;
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    justify-items: center;
}
.banner-text {
    font-size: 16px;
    line-height: 28px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    max-width: 1200px;
}
.banner-text-title {
    font-family: Josefin Sans, Arial, sans-serif;
    font-size: 45px;
    line-height: 50px;
    font-weight: 600;
    margin-bottom: 36px;
}

.backgroundBlue {
    position: relative;
    min-height: 520px;
}
.backgroundBlue:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./images/pattern-blue.png');
    background-repeat: no-repeat;
    background-position: 100% 100%;
    opacity: 0.1;
}

.backgroundPink {
    position: relative;
    min-height: 620px;
}
.backgroundPink:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./images/pattern-pink.png');
    background-repeat: no-repeat;
    background-position: 0 100%;
    opacity: 0.1;
}

.numberedGrid {
    max-width: 1200px;
    margin: 24px auto 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.numberedGrid-item {
    margin: 24px;
}
.numberedGrid-number {
    font-family: Josefin Sans, Arial, sans-serif;
    font-size: 90px;
    font-weight: 600;
    color: #0096FF;
    border-top: 2px solid #0096FF;
    padding: 24px 0;
}
.numberedGrid-subtitle {
    font-family: Josefin Sans, Arial, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    color: #0096FF;
}
.numberedGrid-title {
    font-family: Josefin Sans, Arial, sans-serif;
    font-size: 28px;
    font-weight: 600;
    margin: 18px 0;
}
.numberedGrid-text {
    font-size: 14px;
    line-height: 22px;
}


.title {
    font-family: Josefin Sans, Arial, sans-serif;
    font-weight: 500;
    font-size: 50px;
    margin: 24px 0;
    text-align: center;
}

.grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.grid-item {
    font-size: 16px;
    padding: 24px;
    font-size: 14px;
    line-height: 22px;
}
.grid-title {
    font-family: Josefin Sans, Arial, sans-serif;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 18px;
}


.paragraph {
    margin: 0 auto;
    text-align: center;
    max-width: 1000px;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 36px;
    padding: 0 12px;
}


@media only screen and (max-width: 690px) {
    .header {
        padding: 18px 12px;
    }
    .banner-text {
        padding: 24px;
    }
    .numberedGrid {
        grid-template-columns: 1fr;
    }
    .grid {
        grid-template-columns: 1fr;
    }
    .title {
        font-size: 36px;
        padding: 0 12px;
    }
}