* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    text-decoration: none;
}

.top {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    background-color: #A9C9FF;
    background-image: linear-gradient(180deg, #A9C9FF 0%, #FFBBEC 100%);

}

.topl {
    padding: 0px 10px 0px 10px;
}

.topr {
    padding: 15px 5px 10px 10px;
    color: #002D72;
    text-align: center;
    margin-left: 0%;
    width: 100%;
}

.topr {
    font-size: 27px;
}

.topr h3 {
    text-align: right;
    font-style: italic;
}

.topl img {
    height: 170px;
    width: 170px;
}

/* responsive code start heree */
@media only screen and (max-width: 800px) {
    .topr {
        font-size: 10px;
    }

    .topl img {
        height: 90px;
        width: 90px;
    }

    .topr h3 {
        font-size: 12px;
    }

    .topr {
        padding: 10px 5px 10px 2px;
    }
}

/* dropdown nav bat css code  */
.nav{
  position: sticky;
  top: 0%;
  left: 0%;
  z-index: 999;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
  }
  
  li {
    float: left;
  }
  
  li a, .dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  li a:hover, .dropdown:hover .dropbtn {
    background-color: red;
  }
  
  li.dropdown {
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }

  .remain-box-design{
    color: rgb(255, 255, 255);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    cursor: pointer;
  }
  
  .dropdown-content a:hover {background-color: rgb(118, 6, 174);}
  
  .dropdown:hover .dropdown-content {
    display: block;
  }