
html{
  scroll-behavior:smooth;
  box-sizing:border-box
}
button{
  width: 200px;;
  height:30px;
  margin: 5px;
  color: rgb(255, 255, 255);
  background-color:black;
  border-radius: 5px;
  border:none;
}
button:hover{
  background-color: #c2c2c2;
  color: rgb(0, 0, 0);
}
.container {
  border-radius: 0px;
  background-color: #ffffff;
  text-align: center;
  align-items: center;
  width: 100%;
  padding-bottom: 60px;
  min-height: 450px;
}

nav{
  display:flex;
  justify-content: space-around;
  align-items: center;
  min-height: 8vh;
  background-color:rgb(37, 37, 37);
}

.Footer{
  padding-left: 10%;
  padding-right: 10%;
  min-height: 200px;
  background-color: rgb(37, 37, 37);
  padding-top: 30px;
  
}

.sidebar {
  animation-name: ImagePop;
      animation-duration: 1s;
      animation-fill-mode: forwards;
      animation-delay: 1s;
  height: 175px;
  width: 0px;
  position: fixed;
  display: inline-block;
  left: 0;
  top: 40%;
  padding-top: 10px;
  background-color: rgb(255, 255, 255);
  border-radius:5px;
  align-items: center;
  box-shadow: 2px 2px 1px #ccc;  
}

.sidebar div {
  padding: 5px;
  font-size: 24px;
  display: block;
  background:transparent;
  position: relative;
}

.sideIcons{
  width: 0;
  margin-left: 10px;
  animation-name: iconGrow;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
  border-radius:7px;
}
  
.sideIcons:hover{
  background-color:rgba(204, 204, 204, 0.425);
  margin-left: 14px;
}

.subSelect button {
  background-color: rgb(37, 37, 37);
  border: none;
  border-radius: 5px;
  letter-spacing:1px;
  color: rgb(255, 255, 255);
  text-align: center;
  font-size: 16px;
  box-shadow: 2px 2px 1px rgba(204, 204, 204, 0.274);
  width: 150px;
  height: 70px;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 8px;
  margin-bottom:8px;
}

.subSelect{
  text-align: center;
  height: max-content;
  width: 100%;
  top: 0;
  margin-left: auto;  
  margin-right: auto;
  background-color:rgb(255, 254, 254);
}

.subSelect button:hover{
  background-color:rgb(171, 169, 169);
  font-size: 17px;
  padding-top: 4px;
  padding-bottom: 4px;
  color:rgb(0, 0, 0);
}
  
.navigationHeader{
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 3px 3px 1px rgba(204, 204, 204, 0.493);
}
  
@keyframes grow{
  from {
    font-size: 20px;
  }
  to{
    font-size:40px;
  }
}

@keyframes growImage{
  from {
    width: 100%;
  }
  to{
    width: 90%;
  }
}

@keyframes ImagePop{
  from {
    width: 20px;
  }
  to{
    width: 75px;
  }
}

@keyframes iconGrow{
  from {
    width: 0px;
  }
  to{
  width: 60px;
  }
}

@keyframes iconHover{
  from {
    width: 50px;
  }
  to{
    width: 60px;
  }
}
  
.logo{
  color:rgb(231, 230, 230);
  Text-transform: uppercase;
  letter-spacing:3px;
  font-size: 20px;
  left: 0;
  margin-left: 30px;
  position: relative;
  width: 50%;
}

.nav-links{
  display:flex;
  justify-content: space-around;
  top: 0;
  right: 0;
  width:30%;
  padding-right: auto;   
}

.nav-links a{
  color:rgb(231, 230, 230);
  text-decoration:none;
  letter-spacing:3px;
  font-size: 14px;
  padding: 5px; 
}

.nav-links li{
  list-style:none;
  margin-right: 30px;
  margin-left: 30px;
  margin-top: 0;
  margin-bottom: 0;
}

.burger{
  display:none;
  cursor:pointer;
}

.burger div{
  width:25px;
  height:5px;
  background-color:rgb(231, 230, 230);
  margin:5px;
  transition: all 0.3s ease;
}

@media screen and (max-width:1200px){
  .nav-links{
    display:flex;
    justify-content: space;
     width:80%;
  }
}

@media screen and (max-width:768px){
  body{
    overflow-x: hidden;
  }
  .nav-links{
    position: absolute;
    right:0px;
    height:200px;
    top:7vh;
    background-color:rgb(37, 37, 37);
    display:fixed;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width:175px;
    transform:translateX(100%);
    transition: transform 0.5s ease-in;
    padding-right: 60px;
    padding-bottom: 20px;
    border-radius: 5px;
  }

  .nav-links li{
    opacity: 0;
    padding-top: 10px;
    padding-bottom:10px;
    text-align: center;
    margin-left: 30px;
    margin-right: 0;

  }

  .nav-links a:hover{
    padding-right: 70px;
  }
    
  .burger{
    display: block;
  }
}

.nav-active{
  transform:translateX(0%);
}

@keyframes navLinkFade{
  from{
    opacity:0;
    transform: translateX(50px);
  }
  to{
    opacity:1;
    transform: translateX(0px);
  }
}

.toggle .line1{
  transform: rotate(-45deg) translate(-8px,6px);
}

.toggle .line2{
  opacity: 0;
}

.toggle .line3{
  transform: rotate(45deg) translate(-8px,-6px);
}

h1{
  animation-name: grow;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  align-content: center;  
  text-align: center;
  text-transform: uppercase; 
  font-weight: bold;
  letter-spacing: 3.5px;
  margin-left: auto;
  margin-right: auto;
}

h2{
  letter-spacing:1px;
  margin-left: auto;
  margin-right: auto;

}

h3{
  text-align: center;
  text-transform: uppercase;
  font-size: 15px;
  margin-left: auto;
  margin-right: auto;
}

h4{
  font-size:12px;
  color: rgba(22, 22, 22, 0.692);
  text-align: center;
}

p{
  font-size:large;
  padding: 20px;
  align-content: center;
  letter-spacing:0.2px;
}

.boldText{
  font-weight: bold;
}
  
ul{
  text-transform: uppercase;
}

img{
  width: 90%;
  height: auto;   
  border-radius:5px;         
}

input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

input[type=submit] {
  background-color: #000000;
  color: white;
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #3b3b3b;
}
  
form{
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  background-color: #f2f2f2;
  padding: 20px;
  position: relative;
  width:80%;
  align-items: center;
  border: solid 1px rgba(204, 204, 204, 0.342);
}

.center {
  margin: auto;
  width:fit-content;
  padding: 10px;
  border: solid 1px rgba(204, 204, 204, 0.568);
  border-radius: 5px;
  box-shadow: 5px 5px 2px rgba(204, 204, 204, 0.568);
  margin-bottom: 20px;
  align-items: center;
}

.center .subSelect button{
  margin: auto;
}

.banner{
  width: 100%;
  height: auto;
  margin-top: 60px;
  margin-bottom: 30px;
  text-align: center;
  display: inline-block;
}

.logos{
  animation-name: growImage;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  align-items: center;
}

article{
  border-radius: 5px;
  border-style:solid;
  text-align: center;
  display:none;
  padding: 50px;
  
}

.row{
  text-align: center;
}

* {
  box-sizing: border-box;
}

/* Position the image container (needed to position the left and right arrows) */
.row {
  padding-left: auto;
  padding-right: auto;
  border-radius:5px;
  display: flex;
  text-align: center;
}

/* Hide the images by default */
.mySlides {
  display: none;
  margin-top: -50px;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: relative;
  top: 40%;
  width: auto;
  padding: 30px;
  margin-top: -50px;
  color: rgba(39, 39, 39, 0.719);
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  margin: 50px;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
  padding: 20px;
}

.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
  padding: 20px;
}

.nextPrev{
  padding: 20px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.384);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  left: 900px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: none;
  width: 16.66%;
  text-align: center;
  margin: auto;
  top: 0;
}

.Footer .column{
  height: 250px;
}

.footer h1,.Footer h2,.Footer h3,.Footer h4,.Footer a{
  color: #ffffff;
}



/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
  border-radius: 3px;
  margin-left: 3px;
  margin-right: 3px;
}

.container2{
  width: 100%;
  text-align: center;
}

.active,
.demo:hover {
  opacity: 1;
}

.body-text {
  margin-left: 10%;
  margin-right: 10%;
  padding-top: 40px;
}

 
  

  