.nav{
    top: 0;
    position: sticky;
    width: 100%;
    display: inline-flex;
    flex-direction: row;
    background-color: #9EB3C2;
    box-shadow: 1px 1px 10px #8C8989;
    z-index: 1000;
}
#logo{
    height: 90px;
    width: auto;
}
#logo a{
    margin-left: 100px;
    width: auto;
    display: inline-flex;
}
#logo img{
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
}
.logo{
    font-size: 28px;
    width: 250px;
    font-family: "ADLaM Display", system-ui;
    display: inline-flex;
    padding: 0;
    height: auto;
    align-items: center;
    font-weight: bold;
    gap: -10px;
}
.inline{
    padding: 5px 0;
    display: flex;
    flex-direction: column;
}

nav{
    height: 90px;
    top: 0;
    width: 70%;
    display: inline-flex;
    text-align: center;
    justify-content: center;
    z-index: 1000;
}
.desktop-nav{
    width: 100%;
    display: inline-flex;
}
h1{
    font-family: "Inter", sans-serif;
    padding-left: 60px;
    display: inline-flex;
    align-items: center;
    height: 70px;
    font-weight: bold;
    gap: 20px;
}
h1 img{
    width: 50%;
}
nav ul{
    width: 100%;
    margin: 0;
    align-items: center;
    justify-content: center;
    display: inline-flex;
}
nav ul li{
    list-style: none;
}
nav ul li a{
    padding: 0 5px;
    margin: 20px;
    font-size: 20px;
    font-weight: bold;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    text-decoration: none;
}
.active-nav{
    color: #8C8989;
}
.contain p{
    margin-top: 10px;
}
footer{
    bottom: 0;
    color: white;
    margin-top: 20px;
    padding-top: 60px;
    width: 100%;
    box-shadow: 1px 1px 10px #8C8989;
    background-color: #065A82;
    bottom: 0; 
}
footer h2{
    color: white;
    font-size: 20px;
}
footer p{
    color: white;
    font-size: 15px;
}
footer ul{
    color: white;
    list-style: none;
    margin-top: 10px;
}
footer ul li{
    padding: 2px;
    color: white;
    font-size: 15px;
    display: flex;
    align-items: center;
}
footer ul li a{
    color: white;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}
footer ul li img{
    padding: 2px 0;
    border-radius: 2px;
    width: 20px;
}
footer ul li a img{
    padding: 2px 0;
    border-radius: 2px;
    width: 20px;
}
.row{
    color: white;
    display: inline-flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-evenly;
}
.contain{
    width: 18%;
}
.sidepanel  {
    width: 0px;
    position: fixed;
    z-index: 100000;
    height: 250px;
    top: 0;
    right: 0;
    overflow-x: hidden;
    background-color: #000;
    transition: 0.5s;
    padding-top: 60px;
  }
  
  .sidepanel a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
  }
  
  .sidepanel a:hover {
    color: #f1f1f1;
  }
  
  .sidepanel .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
  }
  
  .openbtn {
    font-size: 30px;
    cursor: pointer;
    background-color: #9EB3C2;
    color: #000;
    padding: 10px 15px;
    border: none;
    display: none;
  }
  .rights{
    margin-top: 20px;
    width: 100%;
    background-color: #000;
    color: #fff;
    text-align: center;
    font-size: 20px;
    padding: 10px 0;
}
@media only screen and (max-width: 1200px) and (min-width: 426px){
    .logo{
        width: 220px;
    }
    #logo a{
        margin-left: 40px;
        width: auto;
        display: inline-flex;
    }
    nav ul li a{
        margin: 10px;
        font-size: 18px;
    }
    footer .row{
        flex-direction: row;
    }
}

@media only screen and (max-width: 426px){
    .nav{
        justify-content: space-between;
    }
    .logo{
        width: 220px;
    }
    #logo a{
        margin-left: 10px;
        width: auto;
        display: inline-flex;
    }
    .desktop-nav{
        display: none;
    }
    .openbtn {
        right: 0;
        display: block;
      }

    h1{
        font-size: 20px;
        padding-left: 10px;
    }
    h1 img{
        width: 40%;
    }
    h2{
        font-size: 20px;
    }
    p{
        font-size: 12px;
    }
    .desktop-nav{
        display: none;
    }
    nav ul{
        height: auto;
        margin-left: 0;
    }
    footer .row{
        gap: 20px;
        padding: 20px;
        flex-direction: column;
    }
    .row{
        width: 80%;
    }
    .contain{
        width: 40%;
    }
    .rights{
        font-size: 15px;
        padding: 5px 0;
        overflow-x: hidden;
    }
}