@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");
@font-face {
  font-family: Renogate;
  src: url("../fonts/RenogareSoft-Regular.ttf");
  font-weight: 400; }
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column; }
  body * {
    font-family: Poppins; }

.wrap {
  width: 100%;
  padding: 0 15px;
  max-width: 1170px;
  margin: 0 auto; }

body {
  background: #FAFAFA; }

.header {
  position: fixed;
  background: white;
  padding: 15px 0;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 10; }
  .header .flex-row {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .header .flex-row .logo {
      width: 220px;
      transition: 0.2s; }
      .header .flex-row .logo:hover {
        opacity: 0.5; }
      .header .flex-row .logo img {
        width: 100%; }
    .header .flex-row .tel {
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: 0.2s;
      font-size: 22px;
      font-weight: 700;
      color: black; }
      .header .flex-row .tel img {
        width: 32px;
        margin-right: 10px; }
      .header .flex-row .tel:hover {
        opacity: 0.5; }

.footer {
  margin-top: auto;
  text-align: center; }

.section.full {
  min-height: calc(100vh - 34px);
  padding: 140px 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }

.text-center {
  text-align: center; }

.upper {
  text-transform: uppercase; }

h2 {
  font-size: 22px;
  color: #28316F;
  font-family: Renogate;
  line-height: 150%; }

h1 {
  font-size: 38px;
  color: #28316F;
  font-family: Renogate;
  line-height: 150%; }

.gray {
  color: #828282; }

p {
  font-size: 18px;
  line-height: 150%; }

.footer img {
  width: 105px;
  display: block;
  margin: 0 auto; }
.footer .bottom {
  background: white;
  padding: 5px 0;
  margin-top: 0; }
  .footer .bottom a {
    font-size: 14px;
    color: #828282; }

.top-form-heading {
  margin-bottom: 40px; }
  .top-form-heading p {
    margin-top: 14px; }

.form-handler-result {
  min-height: 30px;
  margin-top: 17px;
  margin-bottom: 13px;
  font-size: 22px;
  font-weight: 600;
  color: #28316F;
  display: flex;
  align-items: center;
  justify-content: center; }
  .form-handler-result img {
    width: 30px;
    margin-right: 8px; }

.step-form .small-form-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto; }
  .step-form .small-form-row .inp {
    width: calc(100% - 200px); }
.step-form p {
  margin-top: 20px; }

.inp input {
  width: 100%;
  height: 50px;
  outline: none;
  padding: 0 20px;
  border: 1px solid #BDBDBD;
  border-radius: 5px;
  background: white;
  font-size: 16px;
  color: #828282;
  transition: 0.2s; }
  .inp input:focus, .inp input:hover, .inp input:not(:placeholder-shown) {
    border-color: #28316F;
    color: #28316F; }
  .inp input.error {
    border-color: #EB5757;
    color: #EB5757; }

.main-btn {
  width: 180px;
  text-align: center;
  height: 50px;
  border-radius: 5px;
  background: #48BAEB;
  transition: 0.2s;
  color: white;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center; }
  .main-btn:disabled {
    background: #F2F2F2 !important;
    color: rgba(0, 0, 0, 0.5) !important;
    cursor: not-allowed; }
  .main-btn:hover {
    background: #F7EF72;
    color: #28316F; }

.logos {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px; }
  .logos img {
    height: 50px; }
    .logos img:not(:last-of-type) {
      margin-right: 40px; }

.labels-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-flow: row;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px; }
  .labels-wrap input {
    display: none; }
    .labels-wrap input:checked + label {
      background: #F7EF72;
      color: #28316F; }
  .labels-wrap label {
    width: calc(33.3% - 15px);
    cursor: pointer; }

.dates-wrap {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px; }
  .dates-wrap input {
    display: none; }

.progress {
  position: relative;
  display: inline-block;
  padding: 0;
  text-align: center; }

/* Item */
.progress > li {
  display: inline-block;
  position: relative;
  text-align: center;
  color: #93A2AC;
  font-family: Lato;
  font-weight: 100;
  margin: 0 auto;
  width: 160px;
  height: 160px; }
  .progress > li:after {
    content: '';
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    top: 3px;
    background: url("../img/circle.svg") no-repeat top center;
    background-size: 9px;
    position: absolute;
    left: 3px;
    transform-origin: 50%;
    transform: rotate(360deg);
    animation: rotate 10s;
    animation-timing-function: linear;
    animation-fill-mode: forwards; }

.progress svg {
  width: 100%;
  height: 100%;
  animation: dis5 10s;
  animation-fill-mode: forwards; }

.progress svg:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg); }

.progress svg:nth-child(2) path:last-of-type {
  fill: none;
  stroke-width: 5;
  stroke-dasharray: 629;
  stroke: #E0E0E0;
  animation: load 10s;
  animation-timing-function: linear; }

.progress svg:nth-child(2) path:first-of-type {
  fill: none;
  stroke-width: 5;
  stroke: #48BAEB; }

@keyframes load {
  0% {
    stroke-dashoffset: 0; } }
@keyframes rotate {
  0% {
    transform: rotate(0); }
  99% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: rotate(360deg); } }
.img-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0; }
  .img-container img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0; }
    .img-container img.img1 {
      animation: dis1 10s; }
    .img-container img.img2 {
      animation: dis2 10s; }
    .img-container img.img3 {
      animation: dis3 10s; }
    .img-container img.img4 {
      animation: dis4 10s;
      animation-fill-mode: forwards; }

.loader-steps {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 600;
  height: 33px;
  position: relative; }
  .loader-steps span {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    width: 100%; }
    .loader-steps span:nth-of-type(1) {
      animation: dis1 10s; }
    .loader-steps span:nth-of-type(2) {
      animation: dis2 10s; }
    .loader-steps span:nth-of-type(3) {
      animation: dis3 10s; }
    .loader-steps span:nth-of-type(4) {
      animation: dis4 10s;
      animation-fill-mode: forwards; }

.load-percentage {
  font-size: 22px;
  font-weight: 700;
  color: #48BAEB;
  margin-top: 20px; }

@keyframes dis1 {
  0% {
    opacity: 1; }
  35% {
    opacity: 1; }
  36% {
    opacity: 0; }
  100% {
    opacity: 0; } }
@keyframes dis2 {
  0% {
    opacity: 0; }
  35% {
    opacity: 0; }
  36% {
    opacity: 1; }
  75% {
    opacity: 1; }
  76% {
    opacity: 0; }
  100% {
    opacity: 0; } }
@keyframes dis3 {
  0% {
    opacity: 0; }
  75% {
    opacity: 0; }
  76% {
    opacity: 1; }
  99% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes dis4 {
  0% {
    opacity: 0; }
  99% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes dis5 {
  0% {
    opacity: 1; }
  99% {
    opacity: 1; }
  100% {
    opacity: 0; } }
.steps {
  width: 100%; }

.top-stages {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  color: black;
  overflow: hidden; }
  .top-stages span {
    position: relative; }
    .top-stages span b {
      position: relative;
      z-index: 2; }
    .top-stages span:nth-of-type(1):before {
      content: '';
      width: 50%;
      left: 0;
      top: 0;
      height: 100%;
      background: #FAFAFA;
      position: absolute;
      z-index: 1; }
    .top-stages span:nth-of-type(2):before {
      content: '';
      width: 100vw;
      left: 50%;
      bottom: 15px;
      height: 1px;
      background: #E0E0E0;
      position: absolute;
      transform: translateX(-50%);
      z-index: 0; }
    .top-stages span:nth-of-type(3) img {
      filter: grayscale(1); }
    .top-stages span:nth-of-type(3):before {
      content: '';
      width: 50%;
      right: 0;
      top: 0;
      height: 100%;
      background: #FAFAFA;
      position: absolute;
      z-index: 1; }
  .top-stages img {
    width: 30px;
    display: block;
    margin: 10px auto 0;
    position: relative;
    z-index: 2; }

.subheading {
  margin: 25px 0 40px;
  font-size: 22px;
  font-weight: 600; }
  .subheading span {
    color: #48BAEB; }

.last-block {
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto; }
  .last-block p {
    font-size: 14px;
    font-weight: 300; }

.text-left {
  text-align: left; }

.text-content .flex-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: white;
  margin: 40px 0; }
  .text-content .flex-row .col {
    padding: 40px;
    width: 50%;
    text-align: left; }
    .text-content .flex-row .col li {
      color: #4F4F4F;
      margin-top: 10px;
      line-height: 180%; }
    .text-content .flex-row .col h2 {
      color: #48BAEB;
      margin-bottom: 20px;
      text-align: left;
      margin-top: 0; }
    .text-content .flex-row .col:first-of-type,.text-content .flex-row .col:nth-of-type(2) {
      border-right: 1px solid #E0E0E0; }
.text-content img {
  width: 30px;
  display: block;
  margin: 0 auto 40px; }
.text-content h2 {
  text-align: center;
  margin-top: 40px; }
  .text-content h2 + h2 {
    margin-top: 20px !important; }
.text-content b, .text-content strong {
  font-weight: 700; }
.text-content i {
  font-style: normal;
  color: #48BAEB; }
.text-content p {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  color: #4F4F4F;
  line-height: 180%; }
  .text-content p a {
    color: #48BAEB;
    text-decoration: underline;
    font-weight: 600; }
    .text-content p a:hover {
      text-decoration: none; }

.links {
  font-size: 16px; }
  .links p {
    font-weight: 700;
    color: #4F4F4F; }
    .links p a {
      font-weight: 700;
      color: #4F4F4F; }

.text-content-inner ul {
  padding-left: 20px; }
.text-content-inner li {
  font-size: 16px;
  color: #4F4F4F;
  margin-bottom: 10px; }
  .text-content-inner li:before {
    content: '-';
    color: #F7EF72;
    width: 20px;
    margin-left: -20px;
    display: inline-block;
    position: relative; }

@media (max-width: 1110px) {
  body {
    min-height: 100vh;
    /* Fallback for browsers that do not support Custom Properties */
    min-height: calc(var(--vh, 1vh) * 100); }

  /*html{
      height: 100vh; 
      height: calc(var(--vh, 1vh) * 100);
  }*/
  .header .flex-row .logo {
    width: 150px; }
  .header .flex-row .tel {
    font-size: 15px; }
    .header .flex-row .tel img {
      width: 18px;
      margin-right: 7px; }

  .section.full {
    min-height: calc(100vh - 34px);
    /* Fallback for browsers that do not support Custom Properties */
    min-height: calc((var(--vh, 1vh) * 100) - 34px);
    padding: 70px 0 30px; }

  /* Avoid Chrome to see Safari hack */
  @supports (-webkit-touch-callout: none) {
    .section.full {
      /* The hack for Safari */
      min-height: calc(100vh - 34px);
      /* Fallback for browsers that do not support Custom Properties */
      min-height: calc((var(--vh, 1vh) * 100) - 34px); } }
  .upper {
    text-transform: uppercase; }

  h2 {
    font-size: 18px; }

  h1 {
    font-size: 30px; }

  p {
    font-size: 16px; }

  .footer img {
    width: 70px; }
  .footer .bottom {
    margin-top: 0; }

  .top-form-heading {
    margin-bottom: 40px; }
    .top-form-heading p {
      margin-top: 14px; }

  .form-handler-result {
    min-height: 18px;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 16px; }
    .form-handler-result img {
      width: 18px;
      margin-right: 8px; }

  .step-form .small-form-row {
    display: block;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto; }
    .step-form .small-form-row .inp {
      width: 100%;
      margin-bottom: 15px; }
    .step-form .small-form-row button {
      display: flex;
      margin-left: auto;
      margin-right: auto; }
  .step-form p {
    margin-top: 15px; }

  .logos {
    margin-top: 30px; }
    .logos img {
      height: 50px; }
      .logos img:not(:last-of-type) {
        margin-right: 20px; }

  .labels-wrap {
    display: block;
    flex-flow: row;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px; }
    .labels-wrap input {
      display: none; }
      .labels-wrap input:checked + label {
        background: #F7EF72;
        color: #28316F; }
    .labels-wrap label {
      width: 100%;
      max-width: 300px;
      margin-left: auto;
      margin-right: auto;
      display: flex; }
      .labels-wrap label:not(:last-of-type) {
        margin-bottom: 15px; }

  .dates-wrap {
    margin-top: 20px; }

  .loader-steps {
    margin-top: 20px;
    font-size: 18px;
    height: 25px; }

  .load-percentage {
    font-size: 18px;
    margin-top: 15px; }

  .top-stages {
    font-size: 14px; }
    .top-stages span {
      position: relative; }
    .top-stages img {
      width: 25px;
      margin: 10px auto 0; }

  .subheading {
    margin: 15px 0 20px;
    font-size: 18px; }

  .last-block {
    margin-top: 20px; }
    .last-block p {
      font-size: 14px; }

  .text-content .flex-row {
    margin: 20px 0;
    display: block; }
    .text-content .flex-row .col {
      padding: 20px;
      width: 100%;
      text-align: left; }
      .text-content .flex-row .col li {
        color: #4F4F4F;
        margin-top: 10px;
        line-height: 180%; }
      .text-content .flex-row .col h2 {
        color: #48BAEB;
        margin-bottom: 20px;
        text-align: left;
        margin-top: 0; }
      .text-content .flex-row .col:first-of-type,.text-content .flex-row .col:nth-of-type(2) {
        border: none;
        border-bottom: 1px solid #E0E0E0; }
  .text-content img {
    width: 25px;
    margin: 0 auto 20px; }
  .text-content h2 {
    margin-top: 30px; }
    .text-content h2 + h2 {
      margin-top: 15px !important; }
  .text-content b, .text-content strong {
    font-weight: 700; }
  .text-content i {
    font-style: normal;
    color: #48BAEB; }
  .text-content p {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 400;
    color: #4F4F4F;
    line-height: 180%; }
    .text-content p a {
      color: #48BAEB;
      text-decoration: underline;
      font-weight: 600; }
      .text-content p a:hover {
        text-decoration: none; }

  .links {
    font-size: 14px; }

  .steps:not(.step-1) {
    transform: translateX(100%);
    opacity: 0;
    animation-name: fromright;
    animation-iteration-count: 1;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-fill-mode: forwards; } }
@keyframes fromright {
  100% {
    transform: translateX(0);
    opacity: 1; } }

/*# sourceMappingURL=main.css.map */
