/* Fonts */
@font-face {
    font-family: 'Inter Regular';
    src: url(assets/fonts/inter/Inter-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'Inter';
    src: url(assets/fonts/inter/Inter-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'Inter Medium';
    src: url(assets/fonts/inter/Inter-Medium.ttf) format('truetype');
}

@font-face {
    font-family: 'Inter Semi-Bold';
    src: url(assets/fonts/inter/Inter-SemiBold.ttf) format('truetype');
}

/* Body */
body {
    color: #FFFFFF;
    font-family: Inter;
    margin: 0;
    background-color: #F9F9F9;
}

h2 {
    font-family: Inter Semi-Bold;
    font-color: #121317;
    font-size: 44px;
  }

h3 {
    font-family: Inter Medium;
    font-color: #121317;
    font-size: 24px;
  }

a {
    color: #015CFE;
    font-family: Inter Medium;
    font-size: 18px;
}
p {
    color: #000
}
/* Header */
header {
background-color: #DEDCDD;
}
header img {
    width: 240px;
    height: 31px;
    vertical-align: middle;
    margin: 21px;
}

/* Banner */
.banner img {
    width: 100%;
}

/* Section Wrapper*/
.section-title {
    color: #000;
}
.section-wrapper {
    margin: 26px;
}

.section-wrapper .section-title {
    font-family: 'Inter';
    font-size: 32px;
    font-weight: 900;
    line-height: 41.89px;
}

.section-wrapper p {
    font-family: 'Inter Medium';
    font-size: 20px;
    font-weight: 500;
    line-height: 26.18px;
    margin-bottom: 40px;
}

.section-wrapper p span {
    display: block;
}

.section-wrapper a {
    font-family: 'Inter Medium';
    font-size: 14px;
    font-weight: 500;
    line-height: 18.33px;
    color: #015CFE;
    margin-top: 10px;
    display: block;
}

.title-border {
    border-bottom: 3px solid #FFFFFF;
    width: 71px;
    margin: 26px 0;
}

/* Footer */
footer {
    text-align: center;
    font-family: 'Inter Semi-Bold';
    font-size: 14px;
    font-weight: 700;
    line-height: 18.33px;
}

footer .footer-links {
    margin: 18px;
    list-style: none;
    display: inline-flex;
    padding: 0;
}

footer .footer-links li:not(:last-child) {
    margin-right: 10px;
    padding-right: 10px;
    border-right: 2px solid;
}

footer .footer-links li a {
    text-decoration: none;
    color: #FFFFFF;
}

footer .copyright {
    font-family: 'Inter Medium';
    font-size: 12px;
    font-weight: 500;
    line-height: 15.71px;
    margin: 0 15px 15px;
}


@media only screen and (min-width: 512px) {
    header img {
        margin: 30px 0 30px 35px;
    }

    .section-wrapper {
        margin: 30px 40px;
    }

    footer .footer-links {
        font-size: 16px;
    }

    footer .copyright {
        font-size: 14px;
    }

    footer .copyright span {
        display: block;
    }
}

@media only screen and (min-width: 810px) {
    header img {
        width: 287px;
        height: 37px;
        margin: 36px 0 36px 35px;
    }

    .title-border {
        margin: 14px 0 26px;
    }
    .section-wrapper {
        margin: 52px 40px;
    }

    .section-wrapper .section-title {
        font-size: 36px;
        line-height: 47.12px;
    }

    .section-wrapper p {
        font-size: 24px;
        line-height: 31.42px;
    }

    .section-wrapper p span {
        display: inline-block;
    }

    .section-wrapper a {
        font-size: 18px;
        line-height: 23.56px;
    }

}

@media only screen and (min-width: 1280px) {
    header img {
        width: 287px;
        height: 37px;
        margin: 36px 0 36px 35px;
    }

    .section-wrapper {
        margin: 58px auto;
        max-width: 1146px;
    }

    .section-wrapper .section-title {
        font-size: 36px;
        line-height: 47.12px;
    }

    .section-wrapper p {
        font-size: 24px;
        line-height: 31.42px;
    }
    .section-wrapper p span {
        display: inline-block;
    }

    .section-wrapper a {
        font-size: 18px;
        line-height: 23.56px;
    }

}