body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
    font-size: 62.5%;
    font-size: 10px;
    

font-family: sofia-pro, sans-serif;

font-weight: 300;

font-style: normal;
}

li {margin-top: .9em;}

a{text-decoration: none;
color:#fff;}
a:hover {color:#fff;}
/*-- Inspiration taken from abdo steif -->
/* --> https://codepen.io/abdosteif/pen/bRoyMb?editors=1100*/

/* Navbar section */


.nav2 {
    width: 100%;
    min-height: 90px;

    position: relative;
    line-height: 65px;
    text-align: center;
    z-index: 9999;
   box-shadow: 0 0  10px  rgba(0, 0, 0, 0.1);

}

.nav2 div.logo2 {
    float: left;
    width: auto;
    height: auto;
    padding-left: 3rem;

}

.nav2 div.logo2 a {
    text-decoration: none;
    color: #000;
    font-size: 2.5rem;
}

.nav2 div.logo2 a:hover {
    color: #00E676;
}

.nav2 div.main_list2 {
    height: 65px;
    float: right;
}

.nav2 div.main_list2 ul {
    width: 100%;
    height: 65px;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav2 div.main_list2 ul li {
    width: auto;
    height: 65px;
    padding: 0;
    padding-right: 3rem;
}

.nav2 div.main_list2 ul li a {
    text-decoration: none;
    color: #000;
    line-height: 65px;
    font-size: 2.4rem;

}

.nav2 div.main_list2 ul li a:hover {
    color:#000;
}


/* Home section */

.home {
    width: 100%;
    height: 100vh;
    background-position: center top;
    background-size:cover;
}
.navTrigger {
    display: none;
}

.nav2 {
    padding-top: 5px;
    padding-bottom: 20px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;

}


/* Media qurey section */

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .container {
        margin: 0;
    }
}

@media screen and (max-width:768px) {
    .navTrigger {
        display: block;
    }
    .nav2 div.logo2 {
        margin-left: 15px;
    }
    .nav2 div.main_list2 {
        width: 100%;
        height: 0px;
        overflow: hidden;
    }
    .nav2 div.show_list2 {
        height: auto;
        display: none;
    }
    .nav2 div.main_list2 ul {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        right: 0;
        left: 0;
        bottom: 0;
        background-color: #0a3859;
        /*same background color of navbar*/
        background-position: center top;
    }
    .nav2 div.main_list2 ul li {
        width: 100%;
        text-align: right;
    }
    .nav2 div.main_list2 ul li a {
        text-align: center;
        width: 100%;
        font-size: 3rem;
        padding: 20px;
    }
    .nav2 div.media_button {
        display: block;
    }
}
