*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
body{
    overflow-x: hidden;
}
.presentation{
    display: none;
}
.menu{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    padding: 18px 16px;
    background: rgb(7, 37, 82);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    border-bottom: 2px solid rgb(27, 57, 102);}
.shield{
    width: 140px;
    height: 100%;
    border: 2px solid #a5a5a5;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
}
.shield__img{
    height: 80%;
    width: auto;
    object-fit: scale-down;
    margin-left: 5%;
}
.shield__text{
    font-size: 15px;
    color: white;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    margin-right: 5%;
}
.shield__text span{
    font-weight: bold;
    font-size: 20px;
    text-align: center;
}
.shield__name{
    display: block;
}
.shield__name-pc{
    display: none;
}
.menu__options{
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.login{
    text-decoration: none;
    color:cyan;
    font-weight: bold;
    margin-right: 10px;
    font-size: 17px;
}
.icon{
    width: 40px;
    height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 10px;
    border-left: 1px solid #979797;
}
.icon_i{
    color: white;
    font-size: 26px;
}
.icon_close{
    display: none;
}
.nav{
    position: fixed;
    overflow: scroll;
    top: 88px;
    left: 0px;
    width: 100%;
    height: 0;
    transition: .5s;
    background:  rgb(7, 37, 82);
    background: rgb(27, 57, 102);
    box-shadow: none;
    z-index: 1;
}
.nav::-webkit-scrollbar{
    display: none;
}
.nav-pc{
    display: none;
}

.nav__content{
    width: 100%;
    list-style: none;
    display: flex;
    flex-direction: column;
}
.nav__option{
    border: 1px solid rgb(27, 57, 102);
    border: 1px solid rgb(7, 37, 82);

}
.nav__option span{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.nav__option-link{
    width: 100%;
    padding: 8px;
    padding-right: 0;
    font-size: 20px;
    color: white;
    text-decoration: none;
}
.nav__torrent{
    color: white;
    font-size: 20px;
    padding: 10px;
    background: rgb(27, 57, 102);
    background:  rgb(7, 37, 82);
    cursor: pointer;
}
.nav__suboptions{
    display: none;
    background: rgb(230, 230, 230);
}
.nav__suboption{
    width: 100%;
    /* padding: 5px; */
    border-bottom: 1px solid #c5c5c5;
}
.nav__suboption-link{
    display: block;
    font-size: 17px;
    width: 100%;
    padding: 5px;
    text-decoration: none;
    color: black;
}
.admissions{
    width: 100%;
    padding: 15px 15px 30px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    background: white;
    border-bottom: 1px solid #bcbcbc;
}
.admissions__title{
    font-size: 25px;
    text-align: center;
    margin-bottom: 1%;
}
.admissions__subtitle{
    font-size: 15px;
    text-align: center;
    margin-bottom: 5%;
}
.admissions__content{
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}
.section{
    width: 100%;
    /* background:rgb(238, 255, 0); */
    text-decoration: none;
    color: black;
    padding-bottom: 23px;
    /* border-top: 1px solid #979797; */
    /* border-bottom: 1px solid #979797; */
}
.section__title{
    width: 100%;
    font-size: 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.section__subtitle{
    width: 100%;
    font-size: 15px;
}
.section__img-box{
    width: 100%;
    height: 160px;
    margin: 10px 0;
    border: 1px solid #979797;
}
.section__img-box img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#cover{
    object-fit: cover;
}
footer{
    width: 100%;
    padding: 8px;
    background:rgb(7, 37, 82);
}
.footer__content{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.contacts{
    width: 100%;
    padding: 12px;
    border-bottom: 2px solid rgb(27, 57, 102);
    display: flex;
    flex-direction: column;
    color: white;
}
.contacts__title{
    font-size: 15px;
    margin-bottom: 3%;

}
.contact{
    font-size: 15px;
    margin-bottom: 3%;
}
.directions{
    width: 100%;
    padding: 12px;
    display: flex;
    flex-direction: column;
    color: white;
}
.directions__title{
    font-size: 15px;
    margin-bottom: 3%;

}
.direction{
    font-size: 15px;
    margin-bottom: 3%;
}
.google_maps{
    position: relative;
    width: 100%;
    height: 45%;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.google_maps iframe{
    width: 100%;
    height: 90%;
}