.navbar {
    position: -webkit-sticky;
    top: 0;
    position: sticky;
    width: 100%;
    min-height: 70px;
    display: flex;
    justify-content:flex-end;
    align-items: center;
    margin-bottom: 0px;
    background-color: #FFF;
    z-index: 15;
    font-family: Constantine,Geneva,Tahoma,Verdana,sans-serif; 
    background-color: #6A802A;
}
#cart {
    color: #6A802A;
    background-color: rgba(245, 245, 245, .5);
    margin-right: 5px;
    border-radius: 5px;
    padding: auto 12px;
}
  
  /* Style the links inside the navigation bar */
  .navbar a {
    float: left;
    color: #FFF;
    text-align: center;
    padding: 20px 10px;
    margin: auto 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
  }
  
  /* Change the color of links on hover */
  .navbar a:hover {
    color: #6A802A;
    background-color: rgba(245, 245, 245, .5);
    border-radius: 5px;
  }
  
  /* Add a color to the active/current link */
  .navbar a.active {
    color: #6A802A;
    background-color: rgba(245, 245, 245, .5);
    border-radius: 5px;
  }

/* dropdown css */
.dropbtn {
    font-family: Comfortaa,Geneva,Tahoma,Verdana,sans-serif; 
    color: #000;
    padding: 20px;
    font-size: 14px;
    border: none;
    width: 180px;
    background-color: rgba(245, 245, 245, .7);
    font-weight: bold;
  }
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
    padding: 20px;
    min-width: 120px;
  }
/* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 18;
    background-color: #FFF;
    margin-top: 20px;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 16px 0px;
    text-decoration: none;
    display: block;
    min-width: 96%;
    max-width: 96%;
    font-size: 12px;
  }
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: block;
}

  .dropdown:hover #right_arrow {
    transform: rotate(90deg);
    transition: .4s ease;
}
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {
    color: #226280;
    cursor: pointer;
}

  #right_arrow {
    position: absolute;
    top: 25px;
    right: 15px;
    font-size: 16px;
  }

/* dropdown css end */

#logo {
    top: 0;
    right: 100%;
    position: sticky;
    height: 20px;
    z-index: 6;
    float: left;
    display: flex;
    justify-items: center;
    align-items: center;
}
#logo img {
    height: 40px;
}
#logo:hover {
    background: none;
    cursor: pointer;
}
#logo_small {
  display: none;
}




#slogan {
  width: 100%;
  padding: 0;
  text-align: center;
  font-style: italic;
}
#slogan h3 {
  color: #226280;
  margin: 35px 0px 20px 0px;
  width: 100%;
  text-align: center;
}
#slogan .cl {
  font-weight: bold;
  font-family: Tahoma,Verdana,sans-serif;
}
div#connect_list {
  display: inline-flex;
  justify-content: space-around;
  color: rgba(54, 54, 54, .8);
  width: 92.5%;
  margin-bottom: 5px;
  font-size: 18px;
}

#small_logo {
  width: 100%;
  background-color: #A1825A;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
#small_logo img {
  padding-top: 15px;
  padding-bottom: 15px;
  width: 5%;
}
#copyright {
  width: 100%;
  margin-top: 0px;
  text-align: center;
  background-color: #A1825A;
  color: #FFF;
  bottom: 0;
  left: 0;
  height: 45px;
}
#copyright h5 {
  border-top: 1px solid rgba(245, 245, 245, .25);
  margin-top: 0px;
  font-size: 18px;
  width: 100%;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #A1825A;
}



@media screen and (max-width: 1100px) {
  #small_logo img {
    width: 10%;
    }
}

@media screen and (max-width: 750px) {
  .navbar a {
    padding: 15px 5px;
    font-size: 11px;
  }
  #logo {
    font-size: 13px;
    width: 50%;
    margin-left: 5px;
  }
  #small_logo img {
    width: 15%;
    }
}



@media screen and (max-width: 400px) {
  .navbar a {
    padding: 5px 1px;
    font-size: 11px;
  }

  #logo {
    display: none;
  }
  #logo_small {
    display: flex;
    width: 25%;
    margin-right: 0px;
    padding-right: 2.5px;
  }
  #logo_small img {
    width: 50%;
    max-height: 50px;
    margin-left: 0%;
    padding-right: 2.5px;
  }

  #logo img {
    width: 100%;
    margin-left: 5px;
  }
  #small_logo img {
  width: 25%;
  }
}

