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

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: #000;
}

@font-face {
    font-family: CamptonSemiBold;
    src: url('/enote/fonts/CamptonSemiBold.otf') format('opentype');
}

@font-face {
    font-family: CamptonMedium;
    src: url('/enote/fonts/CamptonMedium.otf') format('opentype');
}

nav {
    max-width: 100%;
    overflow: hidden;
}

.banner {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.banner_title {
    position: absolute;
    top: 15vh;
    right: 0;
    width: 50vw;
}

main {
    display: flex;
    flex-flow: column;
    align-items: center;
    max-width: 100%;
}

section {
    display: flex;
    flex-flow: column;
    align-items: center;
    padding-left: 8%;
    padding-right: 8%;
}

.first-section {
    padding-top: 10%;
    padding-bottom: 10%;
}

.second-section {
    
}

.second-section img,
.img5 {
    margin-top: -9%;
}

.img4 {
    margin-top: -12% !important;
}

article {
    display: flex;
    flex-flow: row;
    justify-content: center;
}

article img {
    width: 30%;
    margin-right: 5%;
}

.imgBig {
    width: 50%;
    margin-right: 5%;
}

article div {
    display: flex;
    flex-flow: column;
    justify-content: center;
}

article div h1 {
    margin: 0;
}

.third-section {
    padding-top: 5%;
    padding-bottom: 5%;
}

.links {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-top: 8%;
}

.links a {
    width: 40%;
    display: flex;
}

.links a img {
    width: 100%;
}

h1 {
    color: #ba253b;
    font-family: CamptonSemiBold, Arial, sans-serif;
    font-size: 49px;
    margin-bottom: 50px;
}

h2 {
    font-family: CamptonMedium, Arial, sans-serif;
    font-weight: 400;
    font-size: 34px;
}

.subtitle {
    text-align: center;
}

.arrow-down {
    margin-bottom: 5%;
}

.contact {
    display: flex;
    flex-flow: column;
    align-items: center;
    margin-top: 20%;
    text-align: center;
}

.contact img {
    width: 20%;
}

.contact h1,
h2 {
    margin-bottom: 0;
    font-family: CamptonSemiBold, Arial, sans-serif;
}

.second {
    margin-top: 5%;
}

.iframeVideo {
    width: 80%;
    height: 40vh;
}

footer {
    width: 100%;
    background-color: #bababa2c;
    padding: 15px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    justify-content: center;
}

footer a {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    font-family: CamptonSemiBold, Arial, sans-serif;
}

footer img {
    width: 40%;
    margin-left: 8px;
}

@media screen and (max-width: 768px) {
    article {
        flex-flow: column;
    }

    article img {
        width: 100%;
        margin-bottom: 5%;
    }

    .imgBig {
        width: 100%;
    }

    article>div h1 {
        text-align: center;
    }

    article>div h2 {
        text-align: center;
    }

    .second-section {
        padding-top: 5%;
    }

    .second-section img {
        margin-top: 1%;
    }

    .links {
        flex-flow: column;
        align-items: center;
    }

    .iframeVideo {
        width: 100%;
        height: 40vh;
    }

    .contact h1 {
        font-size: 1.5rem;
    }

    .contact h2 {
        font-size: 1rem;
    }
}

@media screen and (max-width: 1024px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 24px;
    }
}