*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
body{
    overflow-x: hidden;
}
.menu{
    position: sticky;
    top: 0px;
    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: 3;
    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%;
    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;
    text-align: center;
}
.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(27, 57, 102);
    box-shadow: none;
    z-index: 3;
}
.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(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(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;
}
.presentation{
    display: none;
}
.dependences{
    width: 100%;
    /* max-width: 1500px; */
    margin: auto;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.dependences__title{
    font-size: 25px;
    text-align: center;
    margin-bottom: .5%;
}
.dependences__subtitle{
    font-size: 15px;
    margin-bottom: 5%;
    text-align: center;
}
.dependences__content{
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-wrap: wrap-reverse;
    /* flex-wrap: wrap; */
    align-items: center;
    justify-content: space-around;
}
.dependence{
    width: 100%;
    max-width: 600px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 3%;
    transition: 0.5s;
}
.dependence:hover .dependence__title{
    border-radius: 10px 10px 0 0;
}
.dependence__title{
    padding: 5px 10px;
    background: rgb(27, 57, 102);
    border-radius: 10px;
    /* margin-bottom: 5px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .5s;
}
/* .g2 .dependence__title{
    background: #752157;
}
.g4 .dependence__title{
    background: #007297;
}
.g3 .dependence__title{
    background: #da8e00;
} */
.dependence__title h2, .dependence__title i{
    font-size: 15px;
    color: white;
}
.dependence__content{
    height: 0px;
    overflow: hidden;
    visibility: hidden;
    padding: 5px;
    border-radius: 0 0 10px 10px;
    transition: 0.5s;
}
.dependence:hover .dependence__content{
    background: #efefef;
    visibility: visible;
    height: 200px;
}
.dependence__img{
    width: 30%;
    max-width: 125px;
    /* border: 3px solid rgb(27, 57, 102); */
    box-shadow: 5px 5px 5px 0px #787878;;
    display: block;
    margin: 10px auto;
    background: #ffffff;
}
.dependence__info{
    width: 60%;
    text-align: center;
    margin-bottom: 10px;
}
.dependence__name{
    font-size: 20px;
}
/* .pc{
    display: none;
} */

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%;
}
@media(min-width: 600px){
    .dependence:hover .dependence__content{
        width: 100%;
        height: 150px;
        padding: 15px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background: #efefef;
    }
    .dependence:hover .dependence__img{
        margin: 0;
    }
}
