@import url(../fonts/iransansX/iransasnX.css);
@font-face {
  font-family: "Damavand";
  font-weight: 800;
  src: url("../fonts/DamavandExtraBold.woff") format("woff"),
    url("../fonts/DamavandExtraBold.woff2") format("woff2");
  font-style: normal;
}

*,
html {
  scroll-behavior: smooth !important;
}
* {
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
  font-family: "iransansX";
  direction: rtl;
  background-color: #00234b;
  color: #ffffff;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  text-decoration: none;
}
p {
  margin: 0;
}
section {
  padding: 0;
}
.row {
  margin: 0 auto;
}
.section_title {
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  font-family: "Damavand";
  text-align: center;
  text-align-last: center;
  margin: 0 auto 21px;
}
.gold_color {
  color: #f8c034;
}
.form-group {
  margin: 0;
  text-align: center;
}
.mobile {
  display: none;
}

.btn-check:focus + .btn,
.btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 9999s ease-in-out 0s,
    color 9999s ease-in-out 0s;
  transition: background-color 9999s ease-in-out 0s, color 9999s ease-in-out 0s;
  color: #fff !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

input:-internal-autofill-selected {
  color: #fff !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.form-control:focus {
  color: #fff;
  background-color: transparent;
  border-color: transparent;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* ====================================== header ====================================== */
header {
  background: #2c486a;
  padding: 27px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 100;
  display: none;
  width: 100%;
}
header .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .title {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  line-height: 30px;
  text-align: right;
  text-align-last: right;
  margin: 0;
}
header.stickyHeader {
  display: block;
}
/* ====================================== condition ==================================== */
#condition {
  padding: 140px 0 108px;
}
#condition .content {
  background: #0b233d;
  padding-top: 45px;
  padding-bottom: 45px;
  align-items: center;
  max-width: 90%;
}
#condition .content .right {
  text-align: center;
  position: relative;
}
#condition .content .right .condition_img {
  position: relative;
  z-index: 10;
}
#condition .content .right .light {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -10%;
  max-width: 85%;
}
#condition .content .title {
  font-family: "Damavand";
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  margin: 0 0 8px;
  text-align: right;
  text-align-last: right;
}
#condition .content .caption {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 26px;
  text-align: justify;
  text-align-last: right;
  max-width: 97%;
  
}
#condition .content .caption a {
  color: #90e0ef;
  text-decoration: underline;
}
#condition .content li {
  padding-right: 20px;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  position: relative;
  margin-bottom: 12px;
}
#condition .content li::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 1000px;
  position: absolute;
  right: 0;
  top: 8px;
  background: transparent;
  border: 2px solid #f8c034;
}

/* ========================================== advantage ========================================== */
#advantage {
  padding: 0 0;
}
#advantage .row {
  max-width: 70%;
  margin: 0 auto;
}
#advantage .item_box {
  background: #233758;
  border-radius: 12px;
  padding: 21px 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 18px;
}
#advantage .item_box .icon {
  margin-left: 14px;
}
#advantage .item_box .label {
  font-size: 18px;
  font-weight: 500;
}

.scroll_box.first {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 100;
  top: 5%;
}
.scroll_box {
  text-align: center;
}

.scroll_box .mouse {
  width: 34px;
  margin: 0 auto 5px;
}
.scroll_box.first .arrow_down {
  filter: brightness(100) invert(1);
}
.scroll_box .arrow_down {
  margin: 0 auto 10px;
  filter: invert(87%) sepia(48%) saturate(3080%) hue-rotate(326deg)
    brightness(97%) contrast(100%);
  /*animation: shake 4s ease 0s infinite normal forwards;*/
}
.scroll_box img {
  display: block;
}

@keyframes shake {
  0%,
  100% {
    transform: translateY(0);
  }
  10%,
  30%,
  50%,
  70% {
    transform: translateY(-4px);
  }
  20%,
  40%,
  60% {
    transform: translateY(4px);
  }
  80% {
    transform: translateY(3.4px);
  }
  90% {
    transform: translateY(-3.4px);
  }
}

/*================================ starter ================================*/
#starter {
  background-image: url(../images/main_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /*margin-top: 84px;*/
}
#starter .bg_blur {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  bottom: 0;
}
#starter .content {
  background-image: url(../images/start_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0 auto;
  width: 673.35px;
  height: 312.57px;
  padding: 33px 36px 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}
#starter .content .mouse_box {
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 18.29px;
  background: #01234b;
  width: 182px;
  height: 155px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#starter .content .logo_2 {
  margin: 0 0 30px;
  max-width: 205px;
}
#starter .content .title {
  font-family: "Damavand";
  color: #fff;
  text-align: right;
  text-align-last: right;
  font-size: 46px;
  font-weight: 800;
  line-height: normal;
  margin: 0 0 12px;
}
#starter .content .title span {
  color: #fcd36b;
}
#starter .content .subtitle {
  color: #fff;
  text-align: right;
  text-align-last: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin: 0 0 30px;
}
#starter .callToAction {
  margin: 0 0 0 15px;
}

/*============== callToAction and it's hover ==================*/
.callToAction {
  border-radius: 6px;
  background: #f8c034;
  color: #00234b;
  padding: 3px 22px;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  transition: all 0.7s;
  line-height: 32px;
}
.callToAction:hover {
  background: #f8c034;
  color: #00234b;
}
.callToAction2 {
  border-radius: 6px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  transition: all 0.7s;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  padding: 3px 20px;
  line-height: 32px;
  margin: 0 0 0 15px;
}
.callToAction2:hover {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.callToAction3 {
  border-radius: 8px;
  background: #2fd574;
  border: none;
  color: #2d2d2d;
  transition: all 0.7s;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  padding: 10px 55px;
  line-height: 38px;
}
.callToAction3:hover {
  background: #2fd574;
  color: #2d2d2d;
}

/*============== callToAction and it's hover ==================*/
#introduction {
  padding: 48px 0 95px;
  position: relative;
}
#introduction .row {
  align-items: center;
  max-width: 90%;
  margin: 0 auto;
}
#introduction .section_title {
  text-align: right;
  text-align-last: right;
  margin: 0 0 12px;
}
#introduction .description {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  text-align: justify;
  text-align-last: right;
  margin: 0 0 27px;
}
#introduction .callToAction {
  padding: 4px 43px;
  font-size: 16px;
  border-radius: 6px;
}
#introduction .left {
  text-align: center;
  position: relative;
}
#introduction .left .box_img {
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
#introduction .left .light {
  position: absolute;
  top: -25%;
  left: 0;
  right: 0;
}

/* section.about-section img {
  width: 100%;
} */

/* ====================================== footer ====================================== */
footer {
  background-color: #0e1e2f;
  position: relative;
  padding: 57px 0;
  overflow: hidden;
}
footer .row {
  align-items: center;
}
footer .section_title {
  font-size: 26px;
  text-align: right;
  text-align-last: right;
  margin-bottom: 16px;
}
footer .content .description {
  max-width: 80%;
  font-size: 18px;
  line-height: 33px;
  text-align: justify;
  text-align-last: right;
  font-weight: 400;
}
footer .content .title {
  max-width: 224px;
  margin-bottom: 24px;
}
footer .content .contact-items li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
}
footer .content .contact-items li img {
  margin-left: 8px;
}
footer .content .contact-items .label {
  max-width: 80%;
}
footer .content .contact-items .label,
footer .content .contact-items a {
  color: #c6c6c6;
  font-size: 18px;
  font-weight: 300;
  text-align: right;
  text-align-last: right;
}
footer .vertical_logo {
  max-width: 118px;
  margin: 0 auto 20px;
}
footer .col-md-2 {
  text-align: center;
}

/*================================ membership ================================*/
#membership {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 0 148px;
}
#membership .content {
  background: #233758;
  border-radius: 12px;
  padding: 12px;
  max-width: 78.5%;
}
#membership .content .right {
  display: flex;
  align-items: center;
  justify-content: center;
}
#membership .content .right .logo {
  max-width: 205px;
  margin: 0 0 45px;
}
#membership .content .left {
  padding: 0;
}
#membership .content .left .form_img {
  width: 100%;
}
#membership .title {
  font-family: "Damavand";
  color: #fff;
  font-weight: 800;
  font-size: 25px;
  line-height: 29px;
  text-align: right;
  text-align-last: right;
  margin: 0 auto 24px;
}
#membership .step1,
#membership .step2,
#membership .step3 {
  width: 88%;
}
#membership .step2 .title {
  color: #fff;
  margin: 0 auto 8px;
  text-align: center;
  text-align-last: center;
}

/*  forms styles */
#subscribers {
  margin-bottom: 0;
  text-align: center;
}
#membership .form .form-group {
  width: 100%;
  position: relative;
  text-align: right;
  min-height: 75px;
}
#membership .form .form-group label.error {
  margin: 0;
  color: #fff;
  font-size: 12px;
}
#membership .form .form-control {
  background: #31405a;
  border-radius: 8px;
  border: none;
  height: 48px;
  width: 100%;
  color: #fff !important;
  padding: 0 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
#membership .form .form-control::placeholder {
  color: #b6b6b6;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  opacity: 1;
  text-align: right;
  text-align-last: right;
}
.step1 .callToAction {
  margin: 0 auto;
}
#membership .form button {
  width: 100%;
  font-size: 16px;
  padding: 7px 0;
  color: #000;
}

/* ============ form.step2 styles ============ */
.step2 {
  display: none;
  text-align: center;
}
.step2 .callToAction {
  margin: 70px auto 0;
}
.userInput {
  text-align: center;
  margin: 0 auto;
  direction: ltr;
}
.userInput input {
  width: 50px;
  height: 50px;
  background: #e9ecef;
  border: 1px solid #c7d1db;
  border-radius: 8px;
  color: #000;
  text-align: center;
  margin: 0 8px;
}
.userInput input::placeholder {
  color: rgba(0, 0, 0, 0.43);
}
.false_number {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  text-align-last: center;
  color: #fff;
  margin: 0 auto 24px;
}
#editMobile {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  cursor: pointer;
  width: fit-content;
  margin: 16px auto 0;
  text-decoration: underline;
}
.again_box {
  margin: 24px auto 0;
}
#smsTimer {
  font-size: 16px;
  font-weight: 400;
  margin: 20px auto 0;
}
#sendAgain {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin: 0;
  display: none;
  align-items: center;
}

/* ============ general styles ============ */
.step2,
.step3,
.step4,
#result,
.information {
  display: none;
}

#membership .form .form-control.error {
  border: 1px solid #fff;
}

/*  ========================================= timer ========================================= */
.rotor-group-heading {
  display: none;
}
#flipdown * {
  color: #f8c034 !important;
  font-size: 14px;
  font-family: "iransansX";
}
.flipdown {
  overflow: visible;
  width: fit-content;
  height: fit-content;
}
.flipdown .rotor-group {
  padding-right: 15px;
}
.flipdown .rotor-group:nth-child(n + 2):nth-child(-n + 3):after,
.flipdown .rotor-group:nth-child(n + 2):nth-child(-n + 3):before {
  display: none;
}
.flipdown .rotor-leaf.flipped {
  transition: none !important;
}
.flipdown .rotor-top,
.flipdown .rotor-bottom {
  width: 30px;
  height: 20px;
}
.flipdown .rotor-top {
  line-height: 40px;
}
.flipdown .rotor-leaf-front,
.flipdown .rotor-leaf-rear {
  height: 20px;
  width: 30px;
}
.flipdown .rotor-leaf-front {
  line-height: 40px;
}
.flipdown .rotor-leaf {
  width: 30px;
  height: 40px;
}
.flipdown .rotor {
  width: 30px;
  height: 40px;
}
.flipdown.flipdown__theme-dark .rotor:after {
  border: none;
}
.flipdown.flipdown__theme-dark .rotor-bottom,
.flipdown.flipdown__theme-dark .rotor-leaf-rear,
.flipdown.flipdown__theme-dark .rotor,
.flipdown.flipdown__theme-dark .rotor-top,
.flipdown.flipdown__theme-dark .rotor-leaf-front {
  background-color: #01336e;
}
.rotor {
  position: relative;
}
.rotor::before {
  content: "";
  display: block;
  width: 2px;
  height: 7px;
  background-image: url(../images/left.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: -2px;
  top: 16px;
}
.rotor::after {
  content: "";
  display: block;
  width: 2px !important;
  height: 7px !important;
  background-image: url(../images/right.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute !important;
  right: -2px;
  top: 16px;
  bottom: unset !important;
  left: unset !important;
}
.time_txt {
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  font-size: 10px;
  margin-top: 5px;
}
.timer_box {
  direction: ltr;
  display: flex;
  flex-direction: column;
  position: relative;
  display:none;
}
.timer_box .dots {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 70px;
  position: absolute;
  left: 0;
  top: 5px;
  z-index: 10;
  width: 100%;
}

/*  ========================================= responsive ========================================= */

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1200px;
  }
}
@media only screen and (max-width: 768px) {
  .mobile {
    display: block;
  }
  .desktop {
    display: none;
  }

  img {
    max-width: 100%;
  }
  header {
    display: block;
    position: relative;
    padding: 5px 0;
  }
  header .callToAction3 {
    padding: 0px 9px;
    line-height: 27px;
  }

  .callToAction {
    border-radius: 3px;
    padding: 5px 0px;
    font-size: 10px;
    line-height: 15px;
  }
  .callToAction2 {
    border-radius: 3px;
    font-size: 10px;
    line-height: 15px;
    padding: 5px 0px;
    margin: 0 0 7px;
  }
  .section_title {
    font-size: 26px;
    margin: 0 auto 21px;
  }

  /*  ========================================= timer ========================================= */
  header .title {
    font-size: 12px;
    line-height: 21px;
    flex: 5;
  }
  .timer_box {
    flex: 7;
  }
  .flipdown .rotor-group {
    padding-right: 9px;
  }

  .flipdown .rotor-top,
  .flipdown .rotor-bottom {
    width: 19px;
    height: 12px;
  }
  .flipdown .rotor-top {
    line-height: 24px;
  }
  .flipdown .rotor-leaf-front,
  .flipdown .rotor-leaf-rear {
    height: 12px;
    width: 19px;
  }
  .flipdown .rotor-leaf-front {
    line-height: 24px;
  }
  .flipdown .rotor-leaf {
    width: 19px;
    height: 24px;
  }
  .flipdown .rotor {
    width: 19px;
    height: 24px;
  }

  .rotor::before {
    width: 1px;
    height: 4px;
    left: -1px;
    top: 10px;
  }
  .rotor::after {
    width: 1px !important;
    height: 4px !important;
    right: -1px;
    top: 10px;
  }
  .time_txt {
    padding: 0 0 0 17px;
    font-size: 8px;
    margin-top: 2px;
    justify-content: flex-start;
  }
  .time_txt p:nth-child(1) {
    margin-right: 35px;
  }
  .time_txt p:nth-child(2) {
    margin-right: 30px;
  }
  .time_txt p:nth-child(3) {
    margin-right: 33px;
  }

  .timer_box .dots {
    font-size: 12px;
    padding: 0;
    justify-content: flex-start;
    top: 3px;
  }
  .timer_box .dots p:first-child {
    margin-left: 44px;
  }
  .timer_box .dots p:nth-child(2) {
    margin-left: 47px;
  }
  .timer_box .dots p:nth-child(3) {
    margin-left: 46px;
  }
  /*  ========================================= starter ========================================= */
  #starter {
    background-image: url(../images/main_bg_mo.png);
    height: 480px;
    background-position: top center;
    margin-top: 0px;

  }
  #starter .content {
    background-image: url(../images/start_bg_mo.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    max-width: 336px;
    height: 210px;
    padding: 18px 18px 0 0;
  }
  #starter .content .logo_2 {
    margin: 0 0 10px;
    max-width: 100px;
  }
  #starter .content .title {
    font-size: 28px;
    margin: 0 0 3px;
  }
  #starter .content .subtitle {
    font-size: 12px;
    margin: 0 0 7px;
  }
  #starter .callToAction {
    margin: 0 0 7px;
  }
  #starter .content .mouse_box {
    width: 91px;
    height: 106px;
    border-radius: 9px;
  }
  #starter .btn_groups {
    display: flex;
    flex-direction: column;
    width: 204px;
  }
  #starter .btn_groups * {
    width: 100%;
  }
  .scroll_box {
    text-align: center;
  }
  .scroll_box .arrow_down {
    margin: 0 auto 15px;
  }
  #starter .scroll_box {
    max-width: 16px;
  }
  #starter .scroll_box .arrow_down {
    max-width: 8px;
    margin: 0 auto;
  }

  /* ====================================== introduction ====================================== */
  #introduction {
    padding: 25px 0 74px;
  }
  #introduction .row {
    max-width: 100%;
  }
  #introduction .left img {
    margin: 0 auto;
    max-width: 55%;
  }
  #introduction .right {
    order: 2;
    padding-top: 14px;
  }
  #introduction .section_title {
    text-align: center;
    text-align-last: center;
    margin: 0 auto 9px;
  }
  #introduction .description {
    font-size: 12px;
    text-align-last: center;
    margin: 0 auto 20px;
  }
  #introduction .callToAction {
    padding: 6.4px 0;
    width: 100%;
    border-radius: 4px;
    font-size: 12px;
  }

  /* ====================================== advantage ====================================== */
  #advantage .row {
    max-width: 100%;
  }
  #advantage .item_box {
    padding: 12px 14px;
    margin-bottom: 8px;
  }
  #advantage .item_box img {
    max-width: 24px;
  }
  #advantage .item_box .label {
    font-size: 14px;
  }

  /* ====================================== condition ====================================== */

  #condition {
    padding: 56px 0 74px;
  }
  #condition .content {
    padding-top: 23px;
    padding-bottom: 23px;
    max-width: 100%;
  }
  #condition .content .right {
    order: 2;
    padding-top: 10px;
  }
  #condition .content .right img {
    max-width: 80%;
  }
  #condition .content .title {
    font-size: 26px;
  }
  #condition .content .caption {
    color: #fff;
    font-size: 14px;
    max-width: 100%;
    line-height: 170%;

  }
  #condition .content li {
    font-size: 14px;
    margin-bottom: 6px;
  }
  #condition .content li::before {
    top: 4px;
  }

  footer {
    padding: 30px 0 20px;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
  }
  footer .section_title {
    font-size: 18px;
    margin-bottom: 4px;
  }
  footer .content .title {
    text-align: center;
    max-width: 137px;
    margin-bottom: 8px;
  }
  footer .content .description {
    max-width: 100%;
    font-size: 12px;
    margin-bottom: 18px;
  }
  footer .contact-items {
    border-bottom: 1px solid #333333;
    padding-bottom: 18px;
  }
  footer .col-md-2 {
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 18px;
  }
  footer .vertical_logo {
    max-width: 46px;
    margin: 0;
  }
  footer .content .contact-items .label,
  footer .content .contact-items a {
    font-size: 12px;
  }
  footer .content .contact-items li {
    margin-bottom: 12px;
  }
  footer .content .contact-items li img {
    margin-left: 8px;
    max-width: 16px;
  }
  footer .content .column-title {
    text-align: center;
  }
  footer .content ul.links {
    text-align: center;
    margin-bottom: 35px;
  }
  footer .content .social-icons {
    margin-top: 20px;
  }

  #membership {
    padding: 0 0 74px;
  }
  #membership .content {
    padding: 14px 12px 22px;
    max-width: 100%;
  }
  #membership .content .right {
    order: 1;
    min-height: 317px;
  }
  #membership .content .right .form {
    text-align: center;
  }
  #membership .content .right .logo {
    max-width: 172px;
    margin: 0 0 24px;
  }
  #membership .content .left {
    margin-bottom: 24px;
  }
  #membership .title {
    font-size: 25px;
    text-align: center;
    text-align-last: center;
    max-width: 90%;
  }
  #membership .form button {
    font-size: 12px;
    padding: 12px 0;
    border-radius: 8px;
  }
  #membership .step1,
  #membership .step2,
  #membership .step3 {
    width: 100%;
  }

  .userInput input {
    margin: 0;
  }
  .step2 .callToAction {
    margin: 40px auto 0;
  }
  .information {
    padding: 20px;
  }
  .scroll_box .mouse {
  width: 34px;
  margin: 0 auto 2.5px;
}
}

@media only screen and (max-width: 360px) {
  header .title {
    flex: 4;
  }
  .timer_box {
    flex: 8;
  }
}

.error-submit {
    color: #ff5656;
    text-align: center;
    margin: 10px;
}
