body {
  font-family: "Open Sans", sans-serif;
  padding: 0px;
  margin: 0px;
}
.header {
  background-color: #2d7cd6;
  color: white;
  height: 45px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  padding-left: 20px;
}
.header h2 {
  font-size: 17px;
  text-align: left;
}
.main-content {
  display: flex;
  flex-direction: column;
  max-width: 750px;
  margin: auto;
}
.title-section p {
  text-align: center;
}
.title-section h1 {
  font-size: 24px;
}
.author-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
.author-section img {
  border-radius: 50%;
}
.featured-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-top: 20px;
}
.featured-img img {
  width: 100%;
  height: auto;
  display: block;
}
.footer {
  background-color: #eaeaea;
  color: rgb(35, 35, 35);
  padding: 35px;
  line-height: 24px;
  margin-top: 100px;
}
.footer p {
  font-size: 13px;
}
.article-content {
  text-align: center;
}
.article-content a {
  color: rgb(57, 57, 255);
  text-decoration: underline;
  font-weight: 750;
  font-size: 19px;
}
.article-content a:hover {
  cursor: pointer;
  color: rgb(34, 34, 233);
}
.article-content-about {
  text-align: left;
}
.cta-section h1 {
  text-align: center;
}
.cta-section a {
  background-color: #3b82f6;
  color: #ffffff;
  border-radius: 5px;
  font-size: 26px;
  font-weight: 600;
  padding: 20px 50px;
  width: 100%;
  text-align: center;
}
.cta-section a:hover {
  cursor: pointer;
  background-color: #397be5;
}
.button-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding-bottom: 5px;
}
.article-content p {
  font-size: 20px;
  line-height: 32px;
}
.article-content h3 {
  line-height: 28px;
}
.bot-logo {
  text-align: center;
  margin-top: -20px;
  padding: 10px 0px;
}
.quiz h1 {
  font-size: 26px;
}
#success {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  padding: 24px 24px 50px 24px;
  border-top: 5px solid #00007c;
  box-shadow: 0 0 7px #0003;
}
#success p {
  font-size: 20px;
}
#loading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  padding: 24px 24px 50px 24px;
  border-top: 5px solid #00007c;
  box-shadow: 0 0 7px #0003;
}
#loading h1 {
  font-size: 18px;
}
.floating-phone {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  text-align: center;
  padding: 14px 0px 0px 0px;
  box-shadow: 0 -6px 13px -6px #00000080;
  z-index: 999;
  min-height: 80px;
}
.call-now-button {
  max-width: 500px;
  align-self: center;
}
.green-button:hover {
  cursor: pointer;
}
.green-button {
  background-color: #21b744;
  color: #ffffff;
  border-radius: 10px;
  font-size: 20px;
  padding: 10px 20px;
  width: 100%;
  text-align: center;
  display: block;
  width: 200px;
  margin: auto;
  box-shadow: 0 -6px 3px -6px #00000080;
}
.hide-me {
  display: none !important;
}
.article-content button {
  color: white;
  background-color: #2d7cd6;
  border-radius: 10px;
  border: none;
  padding: 16px 36px;
  font-size: 20px;
  letter-spacing: 0.1rem;
}
.article-content-about button:hover {
  cursor: pointer;
  background-color: #4084d2;
}
.article-content-about button {
  color: white;
  background-color: #2d7cd6;
  border-radius: 10px;
  border: none;
  padding: 16px 36px;
  font-size: 20px;
  letter-spacing: 0.1rem;
}
.article-content button:hover {
  cursor: pointer;
  background-color: #4084d2;
}
.footer-links {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
@keyframes throb {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.throb {
  animation: throb 2s infinite ease-in-out;
}
.throb a {
  text-decoration: none;
}
@media only screen and (max-width: 1200px) {
  .main-content button {
    font-size: 34px;
    padding: 30px 40px;
  }
  .main-content {
    max-width: none;
    padding: 0px 20px;
  }
  .main-content p {
    font-size: 2rem;
    line-height: 60px;
  }
  .cta-section {
    padding-left: 100px;
    padding-right: 100px;
  }
  .call-now-button {
    max-width: 500px;
    align-self: center;
  }
  .header {
    height: 120px;
  }
  .header h2 {
    font-size: 2.5rem;
  }
  .title-section h1 {
    font-size: 3rem;
  }
  .footer-links {
    flex-direction: column;
    font-size: 3rem;
    gap: 4rem;
    margin-top: 70px;
    margin-bottom: 70px;
    text-align: center;
  }
  .cta-section {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 100px;
  }
  .cta-section a {
    width: auto;
  }
  .button-row {
    flex-direction: column;
    gap: 20px;
  }
  .button-row a {
    height: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border-radius: 16px;
  }
  .quiz h1 {
    font-size: 3rem;
  }
  #loading h1 {
    font-size: 3rem;
  }
  #success h1 {
    font-size: 3rem;
  }
  #success p {
    font-size: 2rem;
  }
  #success a {
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 4rem;
    text-decoration: none;
  }
  #success-phone a {
    height: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    /* padding-left: 200px;
    padding-right: 200px; */
    font-size: 3rem;
  }
  #success-phone img {
    height: 60px !important;
  }
  #success-phone p {
    font-size: 2rem;
  }
  .green-button {
    width: 700px;
    margin-top: 50px;
  }
  .call-now-button {
    max-width: none;
    align-self: normal;
  }
}
.fade {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
