.wrapper {
  width: 100%;
  min-height: 100vh;
}

.steps_area {
  width: 35%;
  position: relative;
}

.image_holder img {
  width: 100%;
  height: 100vh;
}

.form_wrapper {
  background-image: url("../images/background/tinta_bg_2_2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-width: 100%;
  min-height: 100vh;
  /* background-color: #1b84e7; */
  /* background-image: linear-gradient(to right, #1b84e7 0%, #1E77E7 100%); */
  background-repeat: no-repeat;
}

.count_clock img {
  width: 7.8125rem;
}

.count_number span {
  font-size: 3.125rem;
  background: -webkit-linear-gradient(#fff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.question_title h1 {
  width: 80%;
  /* font-size: 3.959375rem; for simple button*/
  font-size: 3.199975rem; /* for flip card */
  font-weight: 1200;
  padding: 2rem 4rem;
  margin: 0 8rem;
  /* color: rgb(0, 64, 255); for simple button*/
  color: rgb(255, 196, 0); /* for flip card */
  text-shadow: -1px 1px 0 yellow,
                          1px 1px 0 yellow,
                         1px -1px 0 yellow,
                        -1px -1px 0 yellow;
  /* background-color: #1b84e7; */
  /* background-image: linear-gradient(to right, #1b84e7 0%, #1E77E7 100%); */
  background-repeat: repeat-x;
}
.container {
  /* position: relative; */
  text-align: center;
  /* color: white; */
}
.centered {
  position: absolute;
  top: 17%; /* for flip card*/
  /* top: 45%;  for simple btn */
  left: 41.5%;
  transform: translate(-50%, -50%);
}
.bottom-centered {
  position: absolute;
  /* top: 60%; */
  bottom: 12%;
  left: 18%;
  /* transform: translate(-50%, -50%); */
  /* left: 16px; */
}

.flip-card {
  background-color: transparent;
  /* width: 320px;
  height: 140px; */
  width: 280px;
  height: 120px;
  /* width: 20rem;
  height: 8.75rem; */
  /* justify-content: center; */
  perspective: 1000px;
  /* display: -webkit-inline-box; */
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: #bbb;
  color: black;
}

.flip-card-back {
  background-color: #2980b9;
  color: white;
  transform: rotateY(180deg);
}

.text-card-center{
  margin-top: 43px;
  margin-bottom: auto;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  flex-direction: row;
}

.align-items-center {
  -ms-flex-align: center!important;
  align-items: center!important;
}
.d-flex {
  display: -ms-flexbox!important;
  display: flex!important;
}

.multisteps_form_panel {
  display: none;
}

.form_items {
  width: 65%;
  margin: 0 auto;
}

label {
  width: 100%;
  color: #0d1424;
  font-size: 1.81125rem;
  padding: 1rem;
  border: 3px solid #fff;
  cursor: pointer;
}
label input {
  display: none;
}
label.active {
  color: #ffffff;
  background: -webkit-gradient(linear, left top, right top, from(#c82090), to(#6a14d1));
  background: linear-gradient(to right, #c82090, #6a14d1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: none;
}

.progress {
  width: 100%;
  height: 1.25rem;
  font-size: 1rem;
  margin: 0 auto;
}
.progress .progress-bar {
  background: -webkit-gradient(linear, left top, right top, from(#c82090), to(#6a14d1));
  background: linear-gradient(to right, #c82090, #6a14d1);
  border: 3px solid #e1e1e1;
}

.step span {
  width: 3.75rem;
  height: 3.75rem;
  font-size: 2.07125rem;
  font-weight: 600;
  top: -40px;
  left: 15px;
  background-color: #cfcfcf;
}
.step span.active {
  background: -webkit-gradient(linear, left top, right top, from(#c82090), to(#6a14d1));
  background: linear-gradient(to right, #c82090, #6a14d1);
}
.step p {
  color: #cfcfcf;
  font-size: 1.24875rem;
  font-weight: 500;
}
.step p.active {
  background: -webkit-linear-gradient(#c82090, #6a14d1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.step.finish span {
  background: -webkit-gradient(linear, left top, right top, from(#c82090), to(#6a14d1));
  background: linear-gradient(to right, #c82090, #6a14d1);
}
.step.finish p {
  background: -webkit-linear-gradient(#c82090, #6a14d1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form_btn {
  bottom: 10%;
  left: 20%;
}

.prev_btn {
  font-size: 1rem;
  padding: 1rem;
  font-weight: 600;
  background-color: #000000;
}
.prev_btn .fas {
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  color: #000000;
  background-color: #ffffff;
}
.prev_btn .fas:hover {
  color: #ffffff;
  background-color: #000000;
  -webkit-transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.prev_btn:hover {
  color: #000000 !important;
  background-color: #ffffff;
  -webkit-transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.next_btn {
  font-size: 1rem;
  padding: 1rem;
  font-weight: 600;
  background: -webkit-gradient(linear, left top, right top, from(#c82090), to(#6a14d1));
  background: linear-gradient(to right, #c82090, #6a14d1);
}
.next_btn .fas {
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  background-color: #000000;
}
.next_btn .fas:hover {
  color: #000000;
  background-color: #ffffff;
  -webkit-transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.next_btn:hover {
  color: #000000 !important;
  background: -webkit-gradient(linear, left top, right top, from(#6a14d1), to(#c82090));
  background: linear-gradient(to right, #6a14d1, #c82090);
  -webkit-transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

body {
  font-weight: 400;
  line-height: 1.65;
  font-style: normal;
  font-display: swap;
  font-family: "Dosis", sans-serif;
}

a,
button,
input {
  cursor: pointer;
  text-decoration: none;
}
a:hover,
button:hover,
input:hover {
  text-decoration: none;
}
a:focus,
button:focus,
input:focus {
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
}

/* transition - start ============================ */
a,
button {
  -webkit-transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* transition - end ============================== */
.step_area_fixed {
  position: fixed;
}

.animate_25ms {
  -webkit-animation-delay: 25ms;
          animation-delay: 25ms;
}

.animate_50ms {
  -webkit-animation-delay: 50ms;
          animation-delay: 50ms;
}

.animate_100ms {
  -webkit-animation-delay: 100ms;
          animation-delay: 100ms;
}

.animate_150ms {
  -webkit-animation-delay: 150ms;
          animation-delay: 150ms;
}

.animate_200ms {
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
}
@media (min-width: 1800px) {
  .container {
    max-width: 1510px;
  }
  .question_title h1 {
    width: 100%;
    font-size: 3.8rem;
    padding: 2rem;
    margin: 0 auto;
  }
  .card-desc{
    margin-left: 25px;
  }
  .card-desc p{
    font-size: x-large;
  }
  .centered {
    position: absolute;
    top: 16%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .flip-card {
    background-color: transparent;
    /* width: 320px;
    height: 140px; */
    width: 25rem;
    height: 10.75rem;
    /* justify-content: center; */
    perspective: 1000px;
    /* display: -webkit-inline-box; */
  }
  .bottom-centered {
    position: absolute;
    /* top: 60%; */
    bottom: 15%;
    left: 18%;
    /* transform: translate(-50%, -50%); */
    /* left: 16px; */
  }
  
  img {
    width: 100%;
    height: 100%;
    /* object-fit: fill; */
    /* background-size: cover; */
    /* background-position: center; */  
  }
}
@media (min-width: 1700px) {
  .container {
    max-width: 1510px;
  }
  .question_title h1 {
    width: 100%;
    font-size: 3.8rem;
    padding: 2rem;
    margin: 0 auto;
  }
  .card-desc p{
    font-size: x-large;
  }
  .centered {
    position: absolute;
    top:20%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .flip-card {
    background-color: transparent;
    /* width: 320px;
    height: 140px; */
    width: 26rem;
    height: 10.75rem;
    /* justify-content: center; */
    perspective: 1000px;
    /* display: -webkit-inline-box; */
  }
  .bottom-centered {
    position: absolute;
    /* top: 60%; */
    bottom: 12%;
    left: 18%;
    /* transform: translate(-50%, -50%); */
    /* left: 16px; */
  }
  
  img {
    width: 100%;
    height: 100%;
    /* object-fit: fill; */
    /* background-size: cover; */
    /* background-position: center; */  
  }
}

@media (min-width: 1500px) {
  .container {
    max-width: 1510px;
  }
  
}
/* ==================================================
*   01 - media screen and (max-width: 1400px)
*   02 - media screen and (max-width: 1200px)
*	03 - media screen and (max-width: 992px)
*	04 - media screen and (max-width: 768px)
*	05 - media screen and (max-width: 576px)
*	06 - media screen and (max-width: 380px)
*   XX-Large devices (larger desktops)
*   No media query since the xxl breakpoint has no upper bound on its width
================================================== */
@media screen and (max-width: 1399.98px) {
  .question_title h1 {
    width: 80%;
    font-size: 2.7rem;
    padding: 2rem;
    margin: 0 auto;
  }

  .flip-card {
    background-color: transparent;
    /* width: 320px;
    height: 140px; */
    /* width: 40rem;
    height: 8.75rem; */
    width: 17rem;
    height: 7.2rem;
    /* justify-content: center; */
    perspective: 1000px;
    /* display: -webkit-inline-box; */
  }
  .card-desc{
    font-size: medium;
    /* text-align: left; */
  }
  .centered {
    position: absolute;
    top: 17%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  label {
    width: 90%;
    font-size: 1.1rem;
  }

  .step span {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    line-height: 3rem;
  }
  .step p {
    font-size: 1.1rem;
  }

  .form_btn {
    left: 11%;
  }

  .prev_btn {
    padding: 0.6rem;
    font-weight: 500;
  }

  .next_btn {
    padding: 0.6rem;
    font-weight: 500;
  }
}
@media screen and (max-width: 1199.98px) {
  .question_title h1 {
    width: 80%;
    font-size: 2.7rem;
    padding: 1.7rem;
  }
  .flip-card {
    background-color: transparent;
    /* width: 320px;
    height: 140px; */
    width: 15rem;
    height: 6.4rem;
    /* justify-content: center; */
    perspective: 1000px;
    /* display: -webkit-inline-box; */
  }
  .card-desc{
    font-size: medium;
    /* text-align: left; */
  }
  .centered {
    position: absolute;
    top: 17%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  label {
    width: 100%;
    font-size: 1rem;
    padding: 1rem;
  }

  .form_btn {
    left: 20%;
  }

  .next_btn {
    margin-top: 0.5rem;
  }

}
@media screen and (max-width: 991.98px) {
  .question_title h1 {
    width: 90%;
    font-size: 2.7rem;
    padding: 1.5rem;
    text-align: center;
  }
  .flip-card {
    background-color: transparent;
    /* width: 320px;
    height: 140px; */
    width: 13rem;
    height: 5.5rem;
    /* justify-content: center; */
    /* perspective: 1000px; */
    /* display: -webkit-inline-box; */
  }
  /* .d-flex {
    display: -ms-flexbox!important;
    display: flex!important;
    justify-content: flex-end;
  } */
  .card-desc{
    font-size: small;
    /* text-align: left; */
  }
  .centered {
    position: absolute;
    top: 17%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .steps_area {
    position: static;
  }

  label {
    padding: 1rem 2rem;
  }

  .steps_number {
    margin-bottom: 10rem;
  }

  .form_btn {
    left: 30%;
    bottom: 5%;
  }

  .mt-top {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767.98px) {
  .question_title h1 {
    width: 90%;
    font-size: 2rem;
    padding: 1.5rem;
    text-align: center;
  }
  .flip-card {
    background-color: transparent;
    /* width: 320px;
    height: 140px; */
    width: 14rem;
    height: 6rem;
    /* justify-content: center; */
    /* perspective: 1000px; */
    /* display: -webkit-inline-box; */
  }
  .d-flex {
    display: -ms-flexbox!important;
    display: flex!important;
    justify-content: flex-end;
  }
  .card-desc{
    font-size: small;
    /* text-align: left; */
  }
  .centered {
    position: absolute;
    top: 17%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  label {
    width: 80%;
    padding: 1rem 2rem;
  }

  .progress {
    width: 90%;
  }

  .step span {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    top: -40px;
    left: 15px;
  }
  .step p {
    font-size: 1rem;
  }

  .form_btn {
    left: 20%;
  }

  .mt-top {
    margin-top: 30px;
  }
}
@media screen and (max-width: 575.98px) {
  .question_title h1 {
    width: 90%;
    font-size: 2rem;
    padding: 1.5rem;
    text-align: center;
  }
  .flip-card {
    background-color: transparent;
    /* width: 320px;
    height: 140px; */
    width: 10rem;
    height: 3.85rem;
    /* justify-content: center; */
    /* perspective: 1000px; */
    /* display: -webkit-inline-box; */
  }
  .card-desc{
    font-size: small;
    text-align: center;
  }
  .centered {
    position: absolute;
    top: 17%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  label {
    width: 100%;
    font-size: 1rem;
    padding: 1rem 2rem;
  }

  .progress {
    width: 90%;
  }

  .step span {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    top: -40px;
    left: 15px;
  }
  .step p {
    font-size: 1rem;
  }

  .form_btn {
    bottom: 2%;
    left: 15%;
  }

  .mt-top {
    margin-top: 50px;
  }
}

.logoedu {
  width: 7.8125rem;
}
.mt-top {
  margin-top: 30px;
}
.bgeducity{
  color:#fff;
  background-color: #1b84e7;
  background-image: linear-gradient(to right, #f5e905 0%, #e7ab1e 100%);
  background-repeat: repeat-x;
}
.btn-outline-yellow {
  color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-yellow:hover {
  color: #fff;
  background-color:#ffc107;
  border-color:#ffc107;
  transition: 0.8s;
}
.btn2{
  border: 1px solid #ffc107;
  background: none;
  width: 100%;
  padding: 1rem 2rem;
  font-size: 20px;
  cursor: pointer;
  transition: 0.8s;
  position: relative;
  overflow: hidden;
}
/* .label1,.label2{
  color: #fff;
}
.label1:hover,.label2:hover{
  color: #3498db;
}
.btn2::before{
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0%;
  background: #3498db;
  z-index: -1;
  transition: 0.8s;
}
.label1::before{
  top: 0;
  border-radius: 0 0 50% 50%;
}
.label2::before{
  bottom: 0;
  border-radius: 50% 50% 0 0;
}
.label1::before,.label2::before{
  height: 180%;
}
.label1:hover::before,.label2:hover::before{
  height: 0%;
} */