

.modal {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  color: black;
}

.modal-content {
  display: flex;
  background: #fff;
  margin: 8% auto;
  padding: 0;
  border-radius: 10px;
  width: 70%;
  max-width: 900px;
  overflow: hidden;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
}

.left-pane {
  background-color: #f8f8f8;
  width: 50%;
  padding: 40px 30px;
  text-align: center;
}

.left-pane img {
  width: 150px;
  height: 150px;
  margin-bottom: 40px;
}


.right-pane {
  width: 50%;
  padding: 40px 30px;
}

.right-pane h2 {
  margin-bottom: 10px;
}

.right-pane form {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.right-pane input {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.right-pane button {
  background-color:  rgb(39, 150, 152);
  color: white;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
}

.right-pane a {
  color:  rgb(39, 150, 152);
  text-decoration: none;
}

.terms, .help {
  font-size: 12px;
  margin-top: 15px;
}

@media only screen and (max-width: 600px) {
    .left-pane{
      display:none;
    }
    .right-pane{
      width: 100%;
    }
    .modal-content{
      margin: 15% auto;
    }
}
.slideshow-container1{
    width:100%;
    margin: auto;
}

.slideshow-container1 .mySlides1 img{
    width:150px;
    height:150px;
    margin: 50px 0;
}

.mySlides1{
    display:none;
}

  .dotclass1{
    margin: -45px 0 10px 0;
  }
  
  /* The dots/bullets/indicators */
  .dot1 {
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade1 {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade1 {
    from {opacity: .4} 
    to {opacity: 1}
  }
  .slideshow-container2{
    width:100%;
    margin: auto;
}

.slideshow-container2 .mySlides2 img{
    width:150px;
    height:150px;
    margin: 50px 0;
}

.mySlides2{
    display:none;
}

  .dotclass2{
    margin: -45px 0 10px 0;
  }
  
  /* The dots/bullets/indicators */
  .dot2 {
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade2 {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade2 {
    from {opacity: .4} 
    to {opacity: 1}
  }
