*{
    box-sizing: border-box;
    font-family: Poppins,sans-serif;
}  
body{
    display: block;
    margin: 0%;
    padding: 0%;
    justify-content: center;
}
html{
    scroll-behavior: smooth;
}

/* SCROLL TO TOP */
#scrolling {
    display: none; 
    position: fixed; 
    bottom: 20px; 
    right: 50px; 
    z-index: 100; 
    background-color: transparent; 
    border: none;
    color: #0069B1; 
    cursor: pointer; 
    font-size: 50px; 
}
#scrolling:hover {
    color: #7FB4D8;
}
#scrolling.show{
    display: block;
    z-index: 100;
}
/* END */

/* TOPPER */
#topper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    margin: auto;
}

#topper img{
    width: 205px;
    height: 57px;
    margin: 20px 0px;
}

.tagline h3{
    font-size: 18px;
    color: #353535;
}

.linked{
    display: flex;
    justify-content: space-evenly;
}

.linked i{
    font-size: 24px;
    color: gainsboro;
}
.linked i:hover{
    color: #353535;
}
/* end */

/* Navbar */
.topnav {
    overflow: hidden;
    padding: 0px 30px 0px 30px;
}

.topnav a {
    float: left;
    display: block;
    color: #353535;
    font-weight: 600;
    font-size: 24px;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
.topnav a:hover {
    color: #DF4F61;
}
.topnav a.active {
    color: #DF4F61;
}
.topnav .icon {
    display: none;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    margin: auto;
    z-index: 10;
    background-color: white;
    padding: 0% !important;
    transition: 0.3s all;
}



@media screen and (max-width: 768px) {
    .topnav a:not(:first-child) {
        display: none;
    }
    .topnav a.icon {
      float: right;
      display: block;
    }
    
    #scrolling{
        display: none !important;
    }

}
  
@media screen and (max-width: 768px) {
    .topnav.responsive {
        position: fixed;
        background-color: white;
        width: 100%;
    }
    .topnav.responsive a.icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}