body {
  margin: 0;
  padding: 0;
  font-family: "Mulish", sans-serif;
  background: url(../assets/auth-bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}

::-webkit-scrollbar-track {
  background-color: #F5F5F5;
}

::-webkit-scrollbar {
  width: 12px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #e4e4e4;
}

.color-modifier {
  color: #FF0000;
}

header {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2em 0;
  width: 100%;
  background-color: #ffffff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-shadow: 0px 0px 5px 0px #0000001A;
          box-shadow: 0px 0px 5px 0px #0000001A;
}

header .logo-container {
  margin: 0 0 0 25px;
  width: 60px;
  height: 12px;
}

header .logo-container img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

header svg {
  margin: 0 19px 0 0;
}

header .desktop-nav {
  display: none;
}

.error-inputs {
  display: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: -webkit-sticky;
  position: sticky;
  top: 18vh;
  left: 60%;
  z-index: 5;
  border: 1px solid #FFF3F2;
  border-radius: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  width: 80%;
  max-width: 250px;
  background-color: #FFF3F2;
}

.error-message {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: -webkit-sticky;
  position: sticky;
  bottom: 80vh;
  left: 10%;
  margin: 0 10% 0 0;
  width: 90%;
  max-width: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  place-items: center;
  padding: 0 .5em;
  z-index: 20;
}

.error-message span:hover {
  cursor: pointer;
}

.error-message p {
  padding-left: .75em;
  font-size: 12px;
  font-weight: 600;
}

.form-container {
  position: relative;
  top: 8vh;
}

.form-container form {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 90%;
  max-width: 800px;
  padding: 2em 0;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  border-radius: 14px;
}

.form-container form .form-container__header,
.form-container form .form-container__sub-header {
  color: #2D1145;
  text-align: center;
  margin: 0;
}

.form-container form .form-container__sub-header {
  margin: .5em 0 1.5em 0;
  font-size: 14px;
  font-weight: 600;
}

.form-container form div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: .75em;
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  width: 85%;
  height: 40px;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 0 0 1em 0;
}

.form-container form div label {
  display: none;
}

.form-container form div svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14.49px;
  height: 14.49px;
  z-index: 5;
}

.form-container form div input,
.form-container form div .text-area {
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  right: 0;
  display: block;
  width: 90%;
  border: none;
  background: #FFFFFF;
  padding: .85em .5em;
  border-radius: 4px;
  text-align: center;
}

.form-container form div input::-webkit-input-placeholder,
.form-container form div .text-area::-webkit-input-placeholder {
  position: relative;
  left: 30%;
  text-align: left;
  color: #B7B7B7;
}

.form-container form div input:-ms-input-placeholder,
.form-container form div .text-area:-ms-input-placeholder {
  position: relative;
  left: 30%;
  text-align: left;
  color: #B7B7B7;
}

.form-container form div input::-ms-input-placeholder,
.form-container form div .text-area::-ms-input-placeholder {
  position: relative;
  left: 30%;
  text-align: left;
  color: #B7B7B7;
}

.form-container form div input::placeholder,
.form-container form div .text-area::placeholder {
  position: relative;
  left: 30%;
  text-align: left;
  color: #B7B7B7;
}

.form-container form div .reveal-password {
  display: block;
  width: 14.49px;
  height: 14.49px;
  left: 90%;
}

.form-container form a {
  display: block;
  text-decoration: none;
  font-weight: 400;
  font-size: 11px;
  color: #000000;
  margin: 3em 0 3em 3.5em !important;
}

.form-container form button {
  width: 60%;
  margin: 6em 0 0 0;
  padding: .85em 0;
  color: #ffffff;
  background: #D40000;
  border: none;
  border-radius: 4px;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.form-container form button #loader {
  position: absolute;
  right: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}

footer {
  background: rgba(212, 0, 0, 0.05);
  position: relative;
  top: 15vh;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 36px 0;
  border: 1px solid rgba(212, 0, 0, 0.05);
}

footer .footer-container__desc .footer-container__desc-logo,
footer .footer-container__desc .footer-container__desc-text,
footer .footer-container__desc .footer-container__desc-play {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 0 0 14px 0;
}

footer .footer-container__desc .footer-container__desc-logo {
  width: 52px;
  height: 12px;
}

footer .footer-container__desc .footer-container__desc-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

footer .footer-container__desc .footer-container__desc-text {
  width: 244px;
  height: 28px;
}

footer .footer-container__desc .footer-container__desc-text p {
  font-size: 11px;
}

footer .footer-container__desc .footer-container__desc-play {
  width: 90px;
  height: 28px;
}

footer .footer-container__desc .footer-container__desc-play img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

footer .footer-container__links ul {
  position: relative;
  right: 20px;
  margin: 37px 0 0 0;
}

footer .footer-container__links ul li {
  list-style-type: none;
}

footer .footer-container__links ul li .group {
  margin: 0 auto;
  width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .footer-container__links ul li .group li {
  font-size: 10px;
  margin: 0 0 16px 0;
  font-weight: 600;
}

footer .footer-container__links ul li .group li a {
  text-decoration: none;
  color: #000000;
}

footer .footer-container__links-input {
  width: 90%;
  margin: 0 auto;
}

footer .footer-container__links-input input {
  margin: 0 0 0 10px;
  padding: 0 0 0 10px;
  width: 80%;
  height: 26.86px;
  border: none;
  background: #ffffff;
}

footer .footer-container__links-input input::-webkit-input-placeholder {
  color: #B9B9B9;
  font-size: 8px;
}

footer .footer-container__links-input input:-ms-input-placeholder {
  color: #B9B9B9;
  font-size: 8px;
}

footer .footer-container__links-input input::-ms-input-placeholder {
  color: #B9B9B9;
  font-size: 8px;
}

footer .footer-container__links-input input::placeholder {
  color: #B9B9B9;
  font-size: 8px;
}

footer .footer-container__links-input button {
  margin: 0 0 0 5px;
  background: #D40000;
  border: none;
  width: 26.86px;
  height: 26.86px;
  border-radius: 2px;
}

footer .footer-container__links .footer-container__links-inputs__terms ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 60%;
  position: relative;
  top: 15.14px;
  left: 50%;
  -webkit-transform: translateX(-58%);
          transform: translateX(-58%);
}

footer .footer-container__links .footer-container__links-inputs__terms ul li {
  font-size: 10px;
  font-weight: 600;
}

footer .copyright {
  position: relative;
  top: 45.14px;
  margin: 0 0 26px 0;
  font-size: 8px;
  text-align: center;
}

.hide {
  display: none;
}

.mobile-nav {
  z-index: 10;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
}

.mobile-nav header {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.mobile-nav .wrapper {
  height: 86%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.mobile-nav .wrapper .links .auth-links {
  margin-top: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.mobile-nav .wrapper .links .auth-links a {
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: .5em 2.5em;
  background-color: #D40000;
  border-radius: 4px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.mobile-nav .wrapper .links .auth-links a:nth-child(even) {
  background-color: #FFF5F5;
  color: #000000;
}

.mobile-nav .wrapper .links .navigation-links {
  margin-top: 50px;
}

.mobile-nav .wrapper .links .navigation-links ul li {
  list-style-type: none;
  margin-top: 2em;
}

.mobile-nav .wrapper .links .navigation-links ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 14px;
}

.mobile-nav .wrapper .footer .footer-desc {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 .5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  place-items: center;
}

.mobile-nav .wrapper .footer .footer-desc .footer-desc__item .logo-container {
  width: 70px;
  height: 40px;
}

.mobile-nav .wrapper .footer .footer-desc .footer-desc__item .logo-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.mobile-nav .wrapper .footer .footer-desc .footer-desc__item p {
  width: 95%;
  font-size: 10.5px;
  line-height: 12px;
  margin: 0;
}

.mobile-nav .wrapper .footer .footer-desc .play-container {
  position: relative;
  top: 25px;
  width: 150px;
  height: 80px;
}

.mobile-nav .wrapper .footer .footer-desc .play-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.mobile-nav .wrapper .footer .footer-links {
  margin-top: 40px;
}

.mobile-nav .wrapper .footer .footer-links ul {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.mobile-nav .wrapper .footer .footer-links ul li {
  list-style-type: none;
}

.mobile-nav .wrapper .footer .footer-links ul li a {
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  color: #000;
}

.mobile-nav .wrapper .footer .copyright {
  margin-top: 40px;
  text-align: center;
  font-size: 9px;
}

@media screen and (min-width: 768px) {
  body {
    background: url(../assets/pages-lg-bg.svg);
    background-size: cover;
    background-repeat: no-repeat;
  }
  header {
    padding: 1em 0;
  }
  header .logo-container {
    width: 100px;
    height: 24px;
    margin: 0 0 0 25px;
  }
  header .logo-container img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  header svg {
    display: none;
  }
  header .desktop-nav {
    width: 85%;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    place-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header .desktop-nav__links, header .desktop-nav__auth {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    place-items: center;
  }
  header .desktop-nav__links li, header .desktop-nav__auth li {
    list-style-type: none;
    margin: 0 30px 0 0;
    font-weight: 600;
  }
  header .desktop-nav__links li a, header .desktop-nav__auth li a {
    font-size: 13px;
    text-decoration: none;
    color: #000000;
  }
  header .desktop-nav__auth li a {
    color: #D40000;
  }
  header .desktop-nav__auth li:nth-child(even) a {
    color: #ffffff;
    background: #D40000;
    padding: .75em 1.5em;
    border-radius: 4px;
  }
  .mobile-nav {
    display: none;
  }
  .form-container form button {
    width: 30%;
  }
}

@media screen and (min-width: 900px) {
  footer {
    top: 32vh;
  }
}

@media screen and (min-width: 1200px) {
  .form-container form {
    width: 50%;
  }
  .form-container form .form-container__header {
    font-size: 36px;
  }
  .form-container form .text-area {
    overflow-x: hidden;
    height: 18vh;
  }
  .form-container form button {
    margin: 12em 0 0 0;
    width: 30%;
  }
  footer {
    height: 50vh;
  }
  footer .footer-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  footer .footer-container__desc {
    position: relative;
    top: 30px;
  }
  footer .footer-container__desc-logo {
    left: 0 !important;
    -webkit-transform: translateX(0) !important;
            transform: translateX(0) !important;
    width: 127px !important;
    height: 31.39px !important;
  }
  footer .footer-container__desc-text {
    top: 30px !important;
    width: 279.099px !important;
  }
  footer .footer-container__desc-text p {
    font-size: 18px !important;
    line-height: 18px;
  }
  footer .footer-container__desc-play {
    top: 70px;
    left: 0 !important;
    -webkit-transform: translateX(0) !important;
            transform: translateX(0) !important;
    width: 132px !important;
    height: 40.51px !important;
  }
  footer .footer-container__links {
    width: 60%;
  }
  footer .footer-container__links ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  footer .footer-container__links ul li .group {
    width: 250px;
  }
  footer .footer-container__links ul li .group li {
    font-size: 18px;
    margin: 0 30px 0 0;
  }
  footer .footer-container__links ul li .group .group-mod {
    position: absolute;
    top: 70px;
    left: -120px;
  }
  footer .footer-container__links-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    top: 120px;
    left: -40px;
  }
  footer .footer-container__links-input .footer-container__links-inputs__subscribe {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  footer .footer-container__links-input .footer-container__links-inputs__subscribe input {
    display: block;
    width: 550px;
    height: 57px;
  }
  footer .footer-container__links-input .footer-container__links-inputs__subscribe input::-webkit-input-placeholder {
    font-size: 14px;
  }
  footer .footer-container__links-input .footer-container__links-inputs__subscribe input:-ms-input-placeholder {
    font-size: 14px;
  }
  footer .footer-container__links-input .footer-container__links-inputs__subscribe input::-ms-input-placeholder {
    font-size: 14px;
  }
  footer .footer-container__links-input .footer-container__links-inputs__subscribe input::placeholder {
    font-size: 14px;
  }
  footer .footer-container__links-input .footer-container__links-inputs__subscribe button {
    width: 55px;
    height: 55px;
  }
  footer .footer-container__links-inputs__terms {
    position: relative;
    top: -55px !important;
  }
  footer .footer-container__links-inputs__terms ul {
    display: block !important;
  }
  footer .footer-container__links-inputs__terms ul li {
    margin: 0 0 15px 0;
    width: 150px;
    font-weight: 400 !important;
    font-size: 18px !important;
  }
  footer .copyright {
    font-size: 14px;
    top: 150px;
  }
}
/*# sourceMappingURL=contact.css.map */