body {
  color: black;
  font-family: "Montserrat";
}
div a{
  text-decoration: none;
  color: white;
}
.hidden{
  margin: 5%;
  display:none ;
}
.optionBtn {
  background-color: #001e38;
  color: white;
  width: 35%;
  border-radius: 5%;
  -webkit-border-radius: 5%;
  -moz-border-radius: 5%;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;

  margin-top: 10%;
}
.optionBtn h2 {
  display: none;
  color: #001e38;
}
.optionBtn:hover {
  background-color: #fff;
  border: 10px solid #001e38;
  color: #001e38;
  box-shadow: 40px black;
  cursor: pointer;
}
.optionBtnRow {
  justify-content: space-around;
  flex-wrap: wrap;
}
.contactTitle {
  font-weight: 600;
  margin: 0;
}

.optionBtn:hover {
  background-color: #fff;
  border: 10px solid #001e38;
  color: #001e38;
  box-shadow: 40px black;
  cursor: pointer;

  -webkit-animation: vibrate-1 0.5s linear infinite both;
  animation: vibrate-1 0.5s linear infinite both;
}

.optionBtn:hover i {
  display: none;
}
.optionBtn:hover h2 {
  display: unset;
}

.form {
  background-color: #001e38;
  color: #fff;
  border-radius: 2%;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
  border-color: #ffffff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #b6ddff;
  outline: 0 none;
}
.modal-body h2 {
  margin: 0;
}
.modal-body {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
button a:hover{
  color: white;
}

.modal-header{
  flex-direction: column;
}
.modal-body h2{
  font-size: calc(2rem + -0.1vw)
}
@media only screen and (max-width: 800px) {
  .optionBtn {
    height: 8rem;
  }
}
@media only screen and (max-width: 574px) {
  .modal-body h2{
    font-size: calc(1rem + 1vw)
  }
}
@media only screen and (max-width: 1024px) {
  .optionBtn h2{
    font-size: calc(2vh + 5px);
  }
}

@-webkit-keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
