/* Main Page CSS */
body{
    margin: 0px;
    min-width: 890px;
    color: rgb(90, 90, 90);

}

nav a {
    color: rgb(90, 90, 90);
    font-size: 20px;
} 

.link{
    text-decoration: none; 
    color: rgb(90, 90, 90);

}

nav.horizontal{
    height: 100px;
    background-color: rgb(212, 212, 212);
}

body > header > nav.horizontal > ul {
    display: flex;
    padding: 0px;
    margin: 0px;
    margin-right: 40%;
}

body > header > nav.horizontal > ul > li:not(#dashButton) {
    flex: 1;
    text-align: center;
    height: 15px;
    padding: 10px;
    list-style-type: none;
    margin-top: 35px;
    min-width: 165px;
}



body > header > nav.horizontal > ul > li#dashButton{
    display: block;
    text-align: center;
    float: left;
    /* border-collapse: collapse; */
    /* border: 2px solid gray; */
    list-style-type: none;
    margin-right: 100px;
}

header{
    border-bottom: 3px solid gray;
}

#logo{
    height: 65px;
    position: absolute;
    right: 20px;
    top: 15px;
    display:block;
}

#logoContainer{
  /* position: relative; */
  /* width: 100%; */
  /* height: 100vh; */
  position: absolute;
  right: 0px;
  top: 0px;
    display:block;
}

#dashes{
    height: 30px;
    position: absolute;
    left: 20px;
    top: 35px;
}

#dashesDrop{
    width: 30px;
    position: absolute;
    left: 12px;
    top: 10px;
}

/* dropdown menu */
  .dropdown-btn {
    text-decoration: none;
    display: block;
    border: none;
    background: none;
    width:100%;
    text-align: left;
    cursor: pointer;
    outline: none;
  }
  
  
  /* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
  .dropdown-container {
    display: none;
    background-color: rgb(235, 235, 235);
    height: 100%;
    width: 230px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    overflow-x: hidden;
    padding-top: 50px;
  }
  
  .dropdown-container .link{
    /* color: rgb(90, 90, 90); */
    color: #5a5a5a;
    font-size: 20px;
    display:block;
    padding-left: 50px;
    padding-bottom: 20px;
    text-align: left;
}

#sideMap{
    width: 200px;
    display: block;
    margin: auto;
}

.paragraphCenter{
    margin-left: 50px;
    margin-right: 50px;
}


.footer ul{
    display: inline-block;
    margin-top: 0%;
    margin-left: 15%;
    margin-right: 15%;
    margin-bottom: 0%;
    padding: 20px;
}

.footer a {
    /* text-decoration: none; */
    color: rgb(114, 114, 114);
}

.footer li {
    list-style-type: none;
    flex: 1;
    font-size: 17px;
}

.bottom {
    display: flex;
    text-align: left;
    background-color: rgb(32, 32, 32);
    color: rgb(114, 114, 114);
    font-size: 20px;
    margin:0%;
    vertical-align:middle;
}


#copyrightBottom{
    /* width: 526px; */
    /* min-width: 481px; */
    display: inline-block;
    padding-left: 30px;
    margin-top: auto;
    margin-bottom: auto;
}

.bottom #linksBottom {
    text-align: right;
    padding: 30px;
    padding-left: 0px;
    word-spacing: 5px;
    width:fit-content;
    min-width: 511px;
    flex-grow: 1;
    display: inline-block;
}

.bottom a {
    text-decoration: none;
    color: rgb(114, 114, 114);

}

/* Animations */
@keyframes slideRight {
    from {
      transform: translateX(500px);
    }
    to {
      transform: translateX(0px);
    }
  }
  
  @keyframes slideLeft {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-400px);
    }
  }
  
  @keyframes fade {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  
  /* CSS for Reviews */
#review{
  margin-top: 15px;
  width: 175px;
}
.others{
  display:flex;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  border: 4px solid rgb(192, 192, 192);
  border-radius: 20px;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.5);
  width: 60%;
  height: auto;
  padding: 15px;
}

#reviews{
  display: flex;
  align-items: center;
}

#arrow{
  width: 25px;
  height: 25px;
  margin-right: 15px;
}

#arrowRight{
  width: 25px;
  height: 25px;
  margin-left: 15px;
}