/* CSS-Document */

* {
    margin: 0;
    padding: 0;
    font-family: "acumin-variable", sans-serif;
    font-variation-settings: "slnt" 0, "wdth" 100, "wght" 194.2857;
    color: white;
    font-weight: 200;
}

.flex{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.heads{
    width: 100%;
    margin: 30px 0 0;
}

aside{
    width: 48%;
}

article{
    width: 100%;
    margin: 30px 0 0;
}

.main-content{
    background-color: #004464;
    padding: 75px;
}

h1{
    font-size: 24px;
}

h2{
    font-size: 20px;
}

h3{
    color: #BE9B53;
    font-size: 24px;
    margin: 20px 0;
}

.wrap{
    width: 1000px;
    margin: 0 auto;
}

a{
    color: #BE9B53;
    text-decoration: none;
    font-size: 20px;
}

article p{
    color: #BE9B53;
    text-align: center;
}

p{
    font-size: 20px;
}

.logo img{
    width: 48%;
    height: auto;
    max-width: 230px;
}

.logo img:last-of-type{
    max-width: 450px;
}

.logo{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: flex-start;
}

main{
    display: flex;
    align-items: center;
    height: 100vh;
}

.sub-page{
    height: auto;
    padding: 50px 0;
}

.sub-page a{
    color: #BE9B53;
}

.sub-page p, .sub-page h1, .sub-page h2, .sub-page h3{
    color: black;
}

@media only screen and (max-width:1064px){
    .wrap{
        width: 90%;
    }

    .main-content{
        padding: 50px 30px;
    }

    aside{
        width: 100%;
        margin: 10px 0;
    }

    .logo img{
        width: 200px;
    }
    
    h1{
        font-size: 20px;
    }

    h2{
        font-size: 18px;
    }

    h3, a, p{
        font-size: 16px;
    }
}

@media only screen and (max-width:600px){
    .logo img{
        width: 100%;
        margin: 10px 0;
    }

    .logo{
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
}