@font-face {
    font-family: "Open Sans";
    font-weight: normal;
    font-style: normal;
    src: url('/assets/fonts/Open_Sans/OpenSans-Regular.ttf');
}

@font-face {
    font-family: "Open Sans";
    font-weight: 600;
    font-style: normal;
    src: url('/assets/fonts/Open_Sans/OpenSans-SemiBold.ttf');
}

@font-face {
    font-family: "Open Sans";
    font-weight: 600;
    font-style: italic;
    src: url('/assets/fonts/Open_Sans/OpenSans-SemiBoldItalic.ttf');
}

@font-face {
    font-family: "Open Sans";
    font-weight: 700;
    font-style: normal;
    src: url('/assets/fonts/Open_Sans/OpenSans-Bold.ttf');
}

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

html,
body {
    margin: 0;
    overflow-x: hidden;
    font-size: 21px;
    font-family: "Open Sans";
    scroll-behavior: smooth;
}

header,
main,
footer {
    width: 100vw;
}

a {
    color: inherit;
    text-decoration: inherit;
}

.section {
    display: flex;
    padding: 42px 150px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-wrapper {
    margin-top: 10px;
}

header .section {
    padding: 5px 150px;
}

#menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-item {
    margin: 0 20px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
}

.menu-item a {
    color: #094067;
}

.section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #094067;
}

.banner-wrapper {
    width: 100vw;
    height: 38.23vw;
    position: relative;
    overflow: hidden;
    color: white;
}

.banner-wrapper .section {
    width: 100%;
    height: 100%;
}

.banner-wrapper .text {
    width: 100%;
    text-align: center;
}

h2 {
    position: relative;
}

h2::after {
    position: absolute;
    content: '';
    width: 20px;
    height: 10px;
    border-bottom: 3px solid #FAAE2B;
    bottom: -10px;
    left: 0;
}

.banner-wrapper .text h1 {
    font-size: 64px;
    font-weight: 700;
    font-style: normal;
}

.banner-wrapper .layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#layer1 {
    z-index: 1;
}

#layer2 {
    z-index: 2;
    opacity: 0.6;
}

#layer3 {
    z-index: 2;
    left: 50%;
    width: 50%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#quote {
    background-color: #D8EEFE;
    height: 17.36vw;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

#quote h2 {
    margin-bottom: 40px;
}

#quote-text {
    font-style: italic;
    font-weight: 600;
    font-size: 32px;
    line-height: 48px;
    color: #094067;
}

#about-us .text {
    width: 40%;
}

#about-us h2 {
    margin-bottom: 30px;
}

#about-us .text p {
    margin: 0.6em 0;
    font-size: 21px;
    margin-bottom: 1.4em;
}

.image-illus {
    width: 38.54vw;
}

#contact {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

#contact .content {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    font-size: 21px;
    color: #094067;
}

#copy-right {
    color: #094067;
    margin-top: 0;
    margin-bottom: 40px;
    text-align: center;
    font-size: 16px;
}

@media only screen and (max-width: 820px) {
    header .section {
        padding: 5px 50px;
    }
    .banner-wrapper .text h1 {
        font-size: 37px;
    }
    .banner-wrapper .text {
        width: 100%;
        text-align: center;
    }
    #layer3 {
        left: 40%;
        width: 60%;
        padding: 0 30px;
        justify-content: center;
    }
    .section {
        padding: 42px 50px;
        flex-wrap: wrap;
    }
    #about-us .text {
        width: 100%;
    }
    .image-illus {
        width: 100%;
    }
    #quote {
        height: unset;
    }
    #contact .content {
        font-size: 16px;
    }
}

@media only screen and (max-width: 412px) {
    header .section {
        padding: 5px 30px;
        justify-content: center;
    }
    .banner-wrapper .text h1 {
        font-size: 24px;
    }
    .banner-wrapper .text {
        width: 100%;
        text-align: center;
    }
    .section h2 {
        font-size: 25px;
    }
    #layer3 {
        left: 0;
        width: 100%;
        padding: 0 30px;
        justify-content: center;
    }
    .section {
        padding: 42px 50px;
        flex-wrap: wrap;
    }
    #about-us .text {
        width: 100%;
    }
    .image-illus {
        width: 100%;
    }
    #quote {
        height: unset;
    }
    #quote-text {
        font-size: 30px;
        line-height: 35px;
    }
    #contact .content {
        font-size: 16px;
        flex-wrap: wrap;
    }
    .address {
        overflow-x: scroll;
    }
}