.form-wrapper {
  min-height: 800px;
  padding: 40px 15px;
  background-image: linear-gradient(rgba(0, 133, 203, 0.77), #4C4C4C80 70%), url("/src/public/images/contact-us-background.png");
  background-position: 75% 10%;
  background-size: cover;
}
.form-wrapper .contact-form__info, .form-wrapper .captcha {
  line-height: 1.8;
}
.form-wrapper .captcha {
  font-size: 0.85rem;
}
.form-wrapper .contact-form {
  height: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.form-wrapper .contact-heading, .form-wrapper p {
  color: white;
}
.form-wrapper .contact-heading h3, .form-wrapper p h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
}
.form-wrapper .contact-heading__deco {
  height: 50px;
  background-image: url("/src/public/images/sleek-divider-element-white.svg");
  background-position: center;
  background-size: 80px 50px;
  background-repeat: no-repeat;
}
.form-wrapper .top-inputs {
  width: 100%;
}
.form-wrapper .input-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  border-radius: 3px;
  border: none;
  background: white;
  margin: 10px 0;
  padding: 15px;
}
.form-wrapper .input-wrapper input, .form-wrapper .input-wrapper select, .form-wrapper .input-wrapper textarea {
  background: none;
  border: none;
}
.form-wrapper input::placeholder {
  font-family: 'PT Sans', sans-serif;
  font-size: 0.75rem;
}
.form-wrapper textarea::placeholder {
  font-family: 'PT Sans', sans-serif;
  font-size: 0.75rem;
}
.form-wrapper select {
  font-family: 'PT Sans', sans-serif;
  font-size: 0.75rem;
}
.form-wrapper input[type='submit'] {
  -webkit-appearance: none;
  background-color: white;
  border: none;
  border-radius: 3px;
  color: #0085CB;
  font-size: 0.9rem;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  height: 40px;
  width: 100%;
}
.form-wrapper label {
  opacity: 0.5;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  color: #4C4C4C;
  font-size: 0.65rem;
  margin-bottom: 7.5px;
}
.form-wrapper .captcha {
  padding: 20px 0;
  width: 100%;
}
@media only screen and (min-width: 800px) {
  .form-wrapper {
    min-height: 0;
    padding: 25px 10%;
  }
  .form-wrapper .contact-form {
    height: auto;
    max-width: 50%;
  }
  .form-wrapper .contact-form .top-inputs {
    width: 100%;
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
  }
  .form-wrapper .contact-form input[type='submit'] {
    width: 175px;
    align-self: flex-start;
    height: 50px;
  }
}
.main-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 150px;
  color: white;
  background: #0085CB;
}
.main-footer a img {
  height: 25px;
  margin: 10px;
}
.main-footer p {
  margin-bottom: 25px;
  font-size: 0.85rem;
}
@media only screen and (min-width: 800px) {
  .main-footer {
    padding: 0 10%;
    height: 100px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .main-footer p {
    margin: 0;
  }
}
.main-header {
  font-size: 0.75rem;
}
.main-header__secondary {
  color: white;
  background: #0085CB;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-family: 'PT Sans', sans-serif;
  height: 45px;
  padding: 0.5em 15px;
}
.main-header__secondary a {
  padding: 5px;
}
.main-header__secondary img {
  max-width: 15px;
}
.main-header__primary {
  color: #4C4C4C;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 25px 15px;
}
.main-header__primary img {
  width: 10em;
}
.main-header__primary #hamburger-menu {
  cursor: pointer;
  width: 25px;
}
.main-header__primary #navigation {
  font-size: 1.4rem;
  z-index: 1000;
  display: none;
  flex-direction: column;
  position: absolute;
  left: 0;
  width: 100%;
  margin-top: 35px;
  background: white;
}
.main-header__primary #navigation a {
  color: #4C4C4C;
  text-decoration: none;
  margin: 15px;
}
.main-header__primary #navigation #login-btn {
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  color: white;
  border: none;
  border-radius: 3px;
  background-color: #0085CB;
  margin: 15px;
  width: 85px;
  text-align: center;
}
@media only screen and (min-width: 800px) {
  .main-header .main-header__primary {
    margin: 0 10%;
  }
  .main-header .main-header__secondary {
    padding: 0 10%;
  }
}
@media only screen and (min-width: 1000px) {
  .main-header #hamburger-menu {
    display: none;
  }
  .main-header #navigation {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    position: static;
    font-size: 1rem;
    margin: 0;
  }
  .main-header #navigation a {
    margin: 0;
    padding: 5px 10px;
  }
  .main-header #navigation button {
    font-size: 1rem;
    font-weight: 500;
    height: auto;
    padding: 7.5px 15px;
  }
}
.benefits {
  color: #4C4C4C;
  background: #F6F6F6;
  margin-top: 75px;
  padding: 0.5em 15px;
}
.benefits h2, .benefits h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}
.benefits h3 {
  color: #0085CB;
  font-size: 1.5rem;
}
.benefits .benefits-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  width: 100%;
  text-align: center;
}
.benefits .benefits-heading__deco {
  width: 70px;
  height: 20px;
  background-image: url("/src/public/images/sleek-divider-element.svg");
  background-repeat: no-repeat;
  margin-top: 15px;
}
.benefits .benefits-section {
  margin-top: 50px;
}
.benefits .benefits-section .benefits-section__text {
  margin: 15px 0;
  line-height: 1.4;
}
.benefits .benefits-section .benefits-section__img {
  height: 250px;
  width: 100%;
  max-width: 100%;
  background-position: center;
  background-size: cover;
  border-radius: 3px;
}
.benefits .benefits-section .benefits-img1 {
  background-image: linear-gradient(rgba(0, 133, 203, 0.77), #4C4C4C80 70%), url("/src/public/images/paper-free-image.png");
}
.benefits .benefits-section .benefits-img2 {
  background-image: linear-gradient(rgba(0, 133, 203, 0.77), #4C4C4C80 70%), url("/src/public/images/hassle-free-image.png");
}
.benefits .benefits-section .benefits-img3 {
  background-image: linear-gradient(rgba(0, 133, 203, 0.77), #4C4C4C80 70%), url("/src/public/images/mobile-image.png");
}
@media only screen and (min-width: 800px) {
  .benefits .benefits-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 75px 10%;
  }
  .benefits .benefits-section .benefits-section__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 565px;
    margin: 0 25px;
  }
  .benefits .benefits-section .benefits-section__info p {
    max-height: 329px;
    line-height: 1.6;
  }
  .benefits .benefits-section .benefits-section__img {
    width: 500px;
    min-width: 350px;
    height: 329px;
  }
  .benefits .section1, .benefits .section3 {
    flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 1000px) {
  .benefits .benefits-section {
    margin: 75px 15%;
  }
}
@media only screen and (min-width: 1200px) {
  .benefits .benefits-section {
    margin: 75px 17.5%;
  }
}
.call-to-action {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  margin: 20px 15px;
  height: 300px;
  max-width: 100%;
  background-image: linear-gradient(rgba(0, 107, 160, 0.9), #4C4C4C80), url("/src/public/images/register-call-to-action-background.png");
  border-radius: 3.6px;
  color: white;
  font-family: 'Montserrat', sans-serif;
}
.call-to-action h2 {
  text-align: center;
  font-weight: 400;
  max-width: 75%;
}
.call-to-action button {
  cursor: pointer;
  border: none;
  border-radius: 2.5px;
  background: #fff;
  width: 250px;
  height: 55px;
  font-size: 1.4rem;
  font-family: 'Montserrat', sans-serif;
  color: #0085CB;
}
@media only screen and (min-width: 800px) {
  .call-to-action {
    margin: 25px 5%;
  }
}
.features {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  color: #4C4C4C;
  font-family: 'PT Sans', sans-serif;
  height: auto;
}
.features__section {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  margin: 25px 0;
}
.features h3 {
  color: #0085CB;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  margin: 15px;
}
.features p {
  width: 250px;
  text-align: center;
  line-height: 1.4;
}
@media only screen and (min-width: 800px) {
  .features {
    margin: 25px 5% 5% 50px;
  }
}
.hero-slider {
  overflow: hidden;
}
.hero-slider .hero-slider__img {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(rgba(0, 107, 160, 0.9), #4C4C4C80), url("/src/public/images/slider-background@2x.png");
  background-position: 60% 60%;
  height: 475px;
}
.hero-slider .hero-slider__img span {
  color: white;
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  text-align: center;
  max-width: 60%;
  line-height: 1.5;
}
@media only screen and (min-width: 800px) {
  .hero-slider .hero-slider__img {
    justify-content: flex-start;
  }
  .hero-slider .hero-slider__img span {
    font-size: 2.5rem;
    max-width: 500px;
    margin-left: 10%;
  }
}
.tax-guide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 260px;
  background-image: linear-gradient(rgba(0, 133, 203, 0.77), #4C4C4C80 70%), url("/src/public/images/tax-guide-background.png");
  background-position: center;
  background-size: cover;
  border-radius: 3px;
  margin: 75px 15px;
}
.tax-guide .tax-guide__btn {
  font-size: 1.2rem;
  color: #0085CB;
  font-family: 'Montserrat', sans-serif;
  border: none;
  border-radius: 3px;
  background: white;
  height: 55px;
  width: 250px;
}
@media only screen and (min-width: 800px) {
  .tax-guide {
    margin: 75px 5%;
  }
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  max-width: 100vw;
  font-family: 'PT Sans', sans-serif;
}
