:root {
  --blue-color: #409ad2;
  --number-blue-color: rgba(13, 96, 147, 0.75);
  --yellow: #ffe400;
}

@font-face {
  font-family: "AcuminProCondBlack";
  src: URL("../fonts/Acumin Pro Condensed Black.ttf") format("truetype");
}
@font-face {
  font-family: "AcuminProCond";
  src: URL("../fonts/Acumin Pro Condensed.ttf") format("truetype");
}
font {
  vertical-align: unset;
}

html {
  font-size: 16px;
}

a {
  color: #fff !important;
}
a:hover {
  cursor: pointer;
  text-decoration: none !important;
}

.main {
  background-image: url("../images/desktop-bg.png");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  position: relative;
}
.main header .logo {
  width: 33.3%;
  margin: 70px auto 50px;
  transition: all 0.3s ease-in-out;
}
.main header .logo:hover {
  cursor: pointer;
  transform: scale(1.1);
}
.main .container-70 {
  width: 90%;
  margin: 0 auto 150px;
}
.main .body .title-bar {
  background-color: var(--blue-color);
  padding: 0px 18px 5px;
  border-radius: 100px;
  color: #fff;
  box-shadow: 10px 15px 40px 0px rgba(0, 0, 0, 0.75);
  transition: all 0.3s ease-in-out;
}
.main .body .title-bar h1 {
  margin: 0;
  text-align: center;
  font-size: 4.375rem;
  font-family: "AcuminProCondBlack", sans-serif;
}
.main .body .title-bar:hover {
  background-color: var(--yellow);
  color: #000 !important;
}
.main .body .container-body {
  background-image: url("../images/container-bg.png");
  background-position: 0 -98px;
  background-repeat: no-repeat;
  background-size: cover;
  width: 95%;
  margin: 0 auto 50px;
  padding: 50px 80px;
  position: relative;
}
.main .body .cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 70px;
}
.main .body .cta .btn-register {
  background-color: var(--blue-color);
  font-family: "AcuminProCondBlack", sans-serif;
  font-size: 2.815rem;
  color: #fff;
  font-weight: bold;
  padding: 0px 50px 5px;
  border-radius: 40px;
  margin: 0 auto;
  box-shadow: 13px 15px 40px 0px rgba(0, 0, 0, 0.75);
  transition: all 0.3s ease-in-out;
}
.main .body .cta .btn-register:hover {
  background-color: var(--yellow);
  color: #000 !important;
  transform: scale(1.1);
}
.main .body .cta .terms-modal-btn {
  font-family: "AcuminProCond", sans-serif;
  font-size: 1.875rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 3px 6px #000;
  transition: all 0.3s ease-in-out;
}
.main .body .cta .terms-modal-btn:hover {
  transform: scale(1.1);
}
.main .body .boy-img {
  position: absolute;
  left: -5%;
  bottom: -20%;
  transition: all 0.3s ease-in-out;
}
.main .body .boy-img img {
  width: 280px;
}
.main .body .boy-img:hover {
  transform: rotate(-5deg);
}
.main .icon-box {
  display: flex;
  align-items: start;
  gap: 20px;
}
.main .icon-box .number {
  background-color: var(--number-blue-color);
  font-family: "AcuminProCondBlack", sans-serif;
  font-size: 2.1875rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.75);
  transition: all 0.3s ease-in-out;
}
.main .icon-box .text {
  color: #fff;
}
.main .icon-box .text h2 {
  font-family: "AcuminProCondBlack", sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0;
}
.main .icon-box .text p {
  font-family: "AcuminProCond", sans-serif;
  font-size: 2.25rem;
  margin-bottom: 0;
  line-height: 1.15em;
  text-transform: uppercase;
}
.main .icon-box .text p span {
  display: block;
}
.main .icon-box .text .yellow {
  font-family: "AcuminProCondBlack", sans-serif;
  font-weight: bold;
  color: var(--yellow);
  text-decoration: underline;
}
.main .icon-box:hover .number {
  transform: scale(1.1);
  background-color: var(--yellow);
  color: #000;
}

footer {
  background-color: var(--blue-color);
  padding: 20px 20px 10px;
  color: #fff;
  font-family: "AcuminProCond", sans-serif;
  font-weight: bold;
  line-height: 1em;
}
footer small {
  font-size: 1rem;
  line-height: 1.25em;
}
footer .d-flex {
  gap: 20px;
}
footer img {
  max-width: 395px;
}
footer a {
  transition: all 0.3s ease-in-out;
}
footer a:hover {
  transform: scale(1.1);
  color: var(--yellow) !important;
}

@media (min-width: 2560px) {
  .main {
    min-height: unset !important;
  }
  .main header .logo {
    margin: 130px auto 70px;
  }
  .main .container-70 {
    width: 70%;
  }
  .main .body .boy-img {
    left: -12%;
    bottom: -70%;
  }
  .main .body .boy-img img {
    width: 450px;
  }
  footer {
    margin-top: 25rem;
  }
}
@media (min-width: 1920px) and (max-width: 2500px) {
  .main {
    min-height: unset !important;
  }
  .main header .logo {
    margin: 100px auto 70px;
  }
  .main .container-70 {
    width: 70%;
  }
  .main .body .boy-img {
    left: -12%;
    bottom: -40%;
  }
  .main .body .boy-img img {
    width: 350px;
  }
  footer {
    margin-top: 18rem;
  }
}
@media (min-width: 1600px) and (max-width: 1900px) {
  .main header .logo {
    margin: 50px auto 50px;
  }
  .main .container-70 {
    width: 80%;
  }
  .main .body .boy-img {
    left: -12%;
    bottom: -20%;
  }
  .main .body .boy-img img {
    width: 300px;
  }
}
@media (max-width: 1400px) {
  .main header .logo {
    margin: 100px auto 120px;
  }
  .main .container-70 {
    width: 90%;
  }
  footer {
    position: unset !important;
  }
}
@media (max-width: 1300px) {
  html {
    font-size: 12px;
  }
  .main header .logo {
    width: 50%;
    margin: 50px auto 50px;
  }
  .main .container-70 {
    width: 90%;
  }
  .main .body .container-body {
    padding: 50px;
  }
  .main .body .boy-img {
    left: -5%;
    bottom: -20%;
  }
  .main .body .boy-img img {
    width: 250px;
  }
}
@media (max-width: 1000px) {
  html {
    font-size: 14px;
  }
  .main header .logo {
    width: 50%;
    margin: 50px auto 50px;
  }
  .main .container-70 {
    width: 90%;
  }
  .main .body .title-bar h1 {
    font-size: 3.25rem;
  }
  .main .body .container-body {
    padding: 50px;
  }
  .main .body .boy-img {
    left: -5%;
    bottom: -20%;
  }
  .main .body .boy-img img {
    width: 250px;
  }
  .main .body .cta {
    margin-top: 1.5rem;
    gap: 1rem;
  }
  .main .icon-box {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .main .icon-box .number {
    width: 40px;
    height: 40px;
  }
  .main .icon-box .text p span {
    display: inline;
  }
  footer .row {
    gap: 1.5rem;
    text-align: center;
  }
  footer .d-flex {
    flex-direction: column-reverse;
  }
  footer img {
    width: 300px;
  }
}
@media (max-width: 1000px) {
  .main {
    background-image: url("../images/mobile-bg.png");
    background-position: center center;
    background-size: cover;
  }
  .main header .logo {
    width: 80%;
    margin: 50px auto 25px;
  }
  .main .container-70 {
    width: 90%;
  }
  .main .body .title-bar {
    position: relative;
    transform: translateY(10px);
    z-index: 1;
  }
  .main .body .title-bar h1 {
    font-size: 2.25rem;
    line-height: 1em;
  }
  .main .body .title-bar h1 span {
    display: block;
  }
  .main .body .container-body {
    background-image: url("../images/container-mobile-bg.png");
    padding: 30px 20px;
  }
  .main .body .boy-img {
    left: -7%;
    bottom: -25%;
  }
  .main .body .boy-img img {
    width: 150px;
  }
  .main .body .cta {
    margin-top: 0rem;
    gap: 1rem;
  }
  .main .body .cta .btn-register {
    font-size: 2rem;
    padding: 0px 35px 2px;
  }
  .main .body .cta .terms-modal-btn {
    font-size: 1.25rem;
  }
  .main .icon-box {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
  }
  .main .icon-box .number {
    width: 40px;
    height: 40px;
    font-size: 1.75rem;
  }
  .main .icon-box .text h2 {
    font-size: 2rem;
  }
  .main .icon-box .text p {
    font-size: 1.75rem;
  }
  .main .icon-box .text p span {
    display: inline;
  }
  footer {
    position: unset !important;
  }
  footer .row {
    gap: 1.5rem;
    text-align: center;
  }
  footer .d-flex {
    flex-direction: column-reverse;
  }
  footer img {
    width: 300px;
  }
  footer small {
    font-size: 0.85rem;
  }
}/*# sourceMappingURL=style.css.map */