/**----General Styles
-------**/
* {
    box-sizing: border-box;
}
body {
    font-size: 62.5%;
    font-family: 'Open Sans', sans-serif;
    color: #212121;
    background: #f9f9f9;
    /* font-family: 'Montserrat', sans-serif; */
}

/**----Navbar
-------**/
nav {
    margin-top: 10px;
}
.navbar-nav a {
    font-size: 1.2em;
    text-decoration: none;
    color: #212121;
    margin-right: 40px;
    transition: all 0.5s ease-in;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content{
    display: none;
    position: absolute;
    background-color: #fafafa;
    border-radius: 3px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0,0.05);
    z-index: 1;
}
.dropdown-content a {
    margin-top: 15px;
    margin-bottom: 10px;
    display: block;
}
.dropdown:hover .dropdown-content, .dropdown:active .dropdown-content, .dropdown:focus .dropdown-content {
    display: block;
}
.navbar-nav a:hover, .navbar-nav a.active{
    color: #A52163;
    font-weight: bolder;
}
.navbar img {
    width: 200px;
}
@media (max-width: 1000px) {
    .navbar-nav a {
        font-size: 1em;
    }
    .navbar img{
        width: 120px;
    }
}
@media (max-width: 480px) {
    .navbar-nav a {
        margin-right: 15px;
        font-size: 0.8em;
    }
}

/* ----Section 
------ */
.main {
    max-width: 750px;
    margin: 64px auto;
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
    align-items: center;
    margin-left: 20%;
}
.avatar img {
    height: 450px;
}
.info {
    font-size: 1.3em;
    line-height: 1.6;
}
@media (max-width: 580px) {
    .main {
        margin: 64px auto;
    }
}
.more {
    clear: both;
    margin-top: 48px;
    min-height: 220px;    
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
    justify-content: space-around;
}
.tutorials, .network {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    justify-content: space-around;
}
.tutorials h3, .network h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8em;
    font-weight: 500;
    margin-bottom: 16px;
}
.tutorials p, .network p {
    font-size: 1.4em;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 16px;
}
.tutorials a, .network a {
    float: right;
    padding: 8px 12px;
    font: 600 10px 'Montserrat', sans-serif;
    color: #212121;
    text-decoration: none;
    border: 1px solid #bbbbbb;
    border-radius: 5px;transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
}
.tutorials a:hover, .network a:hover {
    background: #212121;
    color: #bbbbbb;
    border: none;
    transform: scale(1.1);
}
@media (max-width: 575px) {
    .tutorials h3, .network h3 {
        font-size: 1.6em;
    }
    .tutorials p, .network p {
        font-size: 1.4em;
    }
    .network {
        margin-top: 32px;
    }
}
.vl {
    border-left: 1px solid #bbbbbb;
    margin-left: 2px;
}
.landpage {
    height: 95px;
    position: sticky;
    float: right;
    bottom: 20px;
}

/**----Footer
-------**/
footer {
    margin-top: 64px;
    margin-bottom: 20px;
}
.foot {
    margin: auto;
}
.copy {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 1.4em;
    margin-bottom: 10px;
}
.copy img {
    width: 120px;
}
.links > div {
    float: right;
    right: 0%;
}
.quicklinks, .contacts {
    font-size: 1.1em;
    opacity: .7;
}
.links p {
    font-family: 'Montserrat', sans-serif;
    opacity: 1;
    font-weight: 500;
    font-size: 1.3em;
}
.quicklinks a {
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    color: #212121;
}
.quicklinks a:hover {
    color: #A52163;
    font-weight: bolder;
}
.contacts div {
    margin-top: 10px;
}
.contacts div i {
    margin-right: 12px;
}
.facebook, .facebook:hover i{
    color: #385C8E;
}
.twitter, .twitter:hover i{
    color: #03A9F4;
}
.linkedin, .linkedin:hover i{
    color: #0E76A8;
}
.instagram, .instagram:hover i {
    color: #000000;
}
.socials {
    margin-top: 10px;
}
.socials a.media {
    display: inline-block;
    text-align: center;
    width: 30px;
    height: 30px;
    margin: auto;
    border-radius: 50%;
    margin-right:5px;
    box-shadow: 10px 12px 30px
     rgba(0, 0, 0, 0.15); 
}
.socials a i {
    font-size: 1em;
    vertical-align: -webkit-baseline-middle;
    margin: 7px auto 0;
}
.socials:hover a.media {
    color: #212121;
}
@media (max-width: 400px) {
    .socials a.media {
        margin-right: 3px;
    }
    .copy {
        margin-top: 16px;
    }
}
