
.intro-box {
  padding: 10px 20px;
  border: solid rgb(9, 102, 104) 4px;
  border-radius: 15px;
  margin-bottom: 55px;
}

.intro {
  margin-bottom: 20px;
  font-family: 'Open Sans';
  color: rgb(0, 120, 160);
  font-weight: bold;
}

.intro-box p {
  padding-left: 30px;
  font-family: 'Open Sans';
  font-size: 18px;
}

.server-img {
  background-image: url('/img/servers.jpg');
  background-color: rgb(9, 102, 104);
  color: rgb(255, 255, 255);
  font-family: 'Roboto';
  margin: 100px 0;
  padding: 50px;
}

.details-box {
  display: flex;
  justify-content: center;
}

.details-box h2 {
  color: rgb(0, 120, 160);
}

.details-box > div {
  max-width: 80%;
}

.details-box ul li {
  font-family: 'Open Sans';
  font-size: 16px;
}

.faq {
  margin-top: 50px;
}

.faq div {
  margin-bottom: 50px;
}

.q-and-a > h3 {
  color: rgb(0, 120, 160);
  opacity: 0;
}

.q-and-a.on-screen > h3 {
  animation: slide 1s linear;
  opacity: 1;
}

.q-and-a > p {
  opacity: 0;
  font-family: 'Open Sans';
  font-size: 16px;
}

.q-and-a.on-screen > p {
  animation: fadeIn 1s linear;
  opacity: 1;
}

.row.cta {
    text-align: center;
    padding-bottom: 20px;
    padding-top: 20px;
}

.btn-cta {
    color: #fff;
    border: 2px solid #ffba16 !important;
    background-color: #ffba16;
    font-family: "Roboto";
    font-weight: 700 !important;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 30px;
}

.btn-cta:hover {
    background-color: #cba750;
}

@media screen and (max-width: 865px) {
  .intro-box {
    max-width: 80%;
    margin: auto;
  }
}

@keyframes slide {
  0% {transform: translateY(70px); opacity: 0;}
  20% {transform: translateY(40px); opacity: 1;}
  100% {transform: translateY(0);}
}

@keyframes fadeIn {
  0% {opacity: 0;}
  50% {opacity: 0;}
  100% {opacity: 1;}
}
