.page_main {
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-gap: 50px;
}

.page_main section{
    padding-bottom: 3rem;
}

.page_title {
    font-family: var(--font-a);
    font-size: 2rem;
    font-weight: bold;
}

.page_main aside{
    display: flex;
    flex-direction: column;
    grid-gap: 2rem;
    padding-bottom: 3rem;
}

.page_main aside .footer_form {
    border-bottom: 1px solid;
}

.page_content h1{
    margin-bottom: 3rem;
    font-family: Simpler-e;
    font-size: 2.12rem;
}



.page_content h1 a{
    font-family: Simpler-e;
    font-size: 2.12rem;
}

.page_content a{
    color: var(--s-font-color);
    transition: 0.1s;
}

.page_content a:hover{
    transform: scale(1.1);
}

.page_content {
    line-height: 1.5;
    font-size: 1.3rem;
    width: 70%;
    padding-bottom: 3rem;
}

.page_content iframe{
    width: 100%;
}


.the_team{
    width: 85%;
}

.the_team h2{
    margin-bottom: 2rem;
    font-family: Simpler-e;
}

.the_team_loop {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    grid-gap: 2rem;
    grid-row-gap: 4rem;
}

.the_team_loop_item{
    display: flex;
    flex-direction: column;  
}

.the_team_loop_item div{
    height: 130px;
    width: 130px;
    border-radius: 50%;
    background-position: center;
    margin-bottom: 1.5rem;
    background-blend-mode: luminosity;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-color: #00286c;
}

.the_team_loop_item span{
    font-weight: 700;
    font-size: 1rem;
}


@media screen and (max-width: 1024px){
    
    .page_main aside{
        display: none;
    }

    .page_main {
        grid-template-columns: 1fr;
    }

    .page_content {
        width: 100%;
    }

    .the_team{
        width: 100%;
    }

}