

/* START OF TOPHEAD CSS*/

#TopHeadline {
  margin: auto;
}

#TopHeadTextH1 {
  text-align: center;
  font-size: 2.8vw;
  margin-bottom: 0px;
}

#TopHeadTextH2 {
  text-align: center;
  width: 850px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-weight: 50;
  margin-top: 0vw;
  margin-bottom: 1vw;
}

#StartButton {
  color: white;
  font-family: 'poppins', sans-serif;
  font-size: 25px;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  background-color: #3D66B5;
  border: 2px solid #3D66B5; 
  border-radius: 10px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
  padding-top: 0.3vw;
  
}

#StartButton:hover {
  transform: translateX(1vw);
  transition-duration: 1s;
}

#StartButton2 {
  color: #3D66B5;
  font-family: 'poppins', sans-serif;
  font-size: 25px;
  display: inline-block;
 
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  border: 2px solid white; 
  border-radius: 10px;
  
}

#ActionContainer{
max-width: 1000px;
margin: auto;
display: flex;
align-content: center;

}

/* END OF TOPHEAD CSS*/



/* START OF SLIDESHOW CSS*/
* {box-sizing: border-box}
body {font-family: 'poppins', sans-serif; margin:0}
.mySlides {display: none}
img {vertical-align: middle;}

#slideimg {vertical-align: middle;}


/* Slideshow container */
.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
  }
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: #4DEFFE;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }
  
  /* Caption text */
  .text {
    color: black;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active, .dot:hover {
    background-color: #220E3F;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  /* On smaller screens, decrease text size */
  @media only screen and (max-width: 300px) {
    .prev, .next,.text {font-size: 11px}
  }

/* END OF SLIDESHOW CSS*/
/* END OF SLIDESHOW CSS*/
/* END OF SLIDESHOW CSS*/

/* START of imageright section*/



  .grid-container {
    display: grid;
    column-gap: 2vh;
    grid-template-columns: auto auto auto;
    background-color: white;
    padding: 10px;
    align-content: center;
    place-items: center;
   max-width: 1200px;
    height: auto;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 0px;
  }

  .grid-item1 {
    background-color: #f5f5f5;
    border: 3px solid rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 2vw;
    padding-top: 0.6vw;
    text-align: left;
    margin-top: 0vw;
    height: 32vh;
   
  }
  
  .grid-item1:hover {
      transform: translateY(-5px);
      transform: scale(1.01);
      
  }
