* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

nav {

  background-color: rgb(255, 255, 255);
  border-bottom: 3px solid #7d131f;
  margin-bottom: 1%;
}

.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

.mySlides,
img {
  text-align: center;
  max-width: 100%;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.8);
}

/* 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(104, 101, 101, 0.8);
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}

.title,
h2 {
  text-align: center;
  margin-top: 1%;
  font-family: "Prompt", Sans-serif;
  font-size: 45px;
}

input,
text {
  display: block;
  margin-top: 2%;
  margin-bottom: 2%;
  margin-left: auto;
  margin-right: auto;
  font-family: "Prompt", Sans-serif;
  background-color: #f7fafc;
  color: #000000;
  height: 40px;
  width: 300px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid rgb(216, 222, 227);
}

input,
select {
  display: block;
  margin-top: 2%;
  margin-bottom: 2%;
  margin-left: auto;
  margin-right: auto;
  font-family: "Prompt", Sans-serif;
  background-color: #f7fafc;
  color: #1a202c;
  height: 50px;
  width: 600px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid rgb(216, 222, 227);
}

.a{
  font-size: 11px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.panel {
  margin-top: 2%;
  margin-bottom: 2%;
  background-color: #ffffff;
}

.termpanel {
  padding: 1%;
  margin-left: 25%;
  margin-right: 25%;
  margin-bottom: 2%;
  background-color: #ffffff;
  /*border: 1px solid #1a202c;*/
  border-radius: 25px;
}

.inline {
  width: unset;
  margin: 0 0.5em 0 0;
  vertical-align: middle;
  display: inline-block;
}

.txtred {
  color: #7d131f;
}

.button {
  border: 2px solid #019267;
  color: #019267;
}

.button:hover {
  background-color: #019267;
  color: #ffffff;
}



@media only screen and (max-width: 480px) {

  input,
  select {
    display: block;
    margin-top: 2%;
    margin-bottom: 3%;
    margin-left: auto;
    margin-right: auto;
    font-family: "Prompt", Sans-serif;
    background-color: #f7fafc;
    color: #1a202c;
    height: 60px;
    width: 350px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid rgb(216, 222, 227);
  }

  .termpanel {
    padding: 1%;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 2%;
    background-color: #ffffff;
    /*border: 1px solid #1a202c;*/
    border-radius: 25px;
  }

  .title,
  h2 {
    margin-left: 1%;
    margin-top: 2%;
    font-family: "Prompt", Sans-serif;
    font-size: 25px;
    border-bottom: 0.5px solid #7d131f;

  }

  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 8px;
    color: white;
    font-weight: bold;
    font-size: 10px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(109, 109, 109, 0.8);
  }

}