* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html, body, main {
    height: 100%;
    width: 100%;
}
body {
    font-size: .9vw;
    background-color: #52544f;
    font-family: sans-serif;
}
a {
    text-decoration: none;
}
main {
    display: -webkit-box;
    display: -ms-flexbox;
    grid-template-columns: 2fr 15fr;
    display: grid;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
/*navigation bar*/
aside {
    background: #080808ab;
    width: 100%;
    height: 100%;
    overflow: none;
    z-index: 1;
    text-align: center;
    padding: 0;
}
nav {
    display: block;
}


/*navigation bar*/
aside {
    background: #080808ab;
    width: 100%;
    height: 100%;
    overflow: none;
    z-index: 1;
    text-align: center;
    padding: 0;
}
nav {
    display: block;
}
aside nav img {
    width: 100%;
}
aside a {
    display: block;
    padding: 1.7vw 0 0 0;
    color: #fff;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    text-transform: uppercase;
    font-size: 19px;
    letter-spacing: .1vw;
}
aside a i {
    margin-bottom: 0.2vw;
    font-size: 1.8vw !important;
}
.top_nav .icon {
    display: none;
}



section {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    color: #f7f5f2;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
section h1 {
    text-align: center;
    font-size: 3vw;
    font-family: serif;
    margin-top: 1vw;
    color: #f7f5f2;
}
.partners_box_container a {
    display: contents;
    color: white;
}
.partners_box_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    height: 15%;
    margin: 5vw 10vw 0 0;
}
.partners_img {
    width: 15%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
#umic {
    background-image: url(../images/umic_logo_eng.png);
}
#gorisgamma {
    background-image: url(../images/goris-logo.jpg);
}
#optogak {
    background-image: url(../images/optogak.jpg);
}
#militaryservice {
    background-image: url(../images/militaryservice.jpg);
}
.partners_info {
    font-size: 20px;
    width: 60%;
    height: 100%;
    overflow-y: scroll;
}
.partners_info::-webkit-scrollbar {
    width: .4vw;
    height: .3vw;
}
.partners_info::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px grey;
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
}
.partners_info::-webkit-scrollbar-thumb {
    background: #868c7f; 
    border-radius: 10px;
}
.partners_info::-webkit-scrollbar-thumb:hover {
    background: #232623; 
}
.scroll_width_thin{
    scrollbar-width: thin;
}



@media (max-width: 1400px) {
    aside a {
        padding: 3vw 0 0 0;
        font-size: 17px;
    }
    aside a i {
        font-size: 2.5vw !important;
    }
}

@media (max-width: 1100px) {
    main {
        grid-template-columns: 3fr 15fr;
    }
    aside a {
        padding: 4vw 0 0 0;
        font-size: 19px;
    }
}

@media screen and (max-width: 800px) {
    main {
        grid-template-columns: 5fr 15fr;
    }
    aside a i {
        font-size: 5vw !important;
    }
    aside a {
        font-size: 20px;
    }
    .partners_box_container {
        margin: 5vw 1vw 0 1vw;
    }
    section h1 {
        font-size: 5vw;
    }
    .partners_box_container {
        height: 25%;
    }
}
@media screen and (max-width: 600px) {
    main {
        grid-template-columns: unset;
        height: auto;
    }
    aside {
        background: #080808d9;
    }
    aside a i {
        font-size: 8vw !important;
    }
    aside nav img {
        width: 100%;
        max-width: 120px;
        height: auto;
    }
    aside nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .top_nav a:not(:first-child) {display: none;}
    .top_nav a.icon {

        float: right;
        display: block;
    }
    .top_nav.responsive {position: relative;}
    .top_nav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .top_nav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
    .partners_info {
        width: 80%;
    }
    .partners_box_container {
        margin: 10vw 1vw 0 1vw;
    }
    section h1 {
        font-size: 8vw;
    }
}

