* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.button {
  background-color: #E3E3E3;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  transition: 0.3s ease-in-out;
  transition: transform 400ms cubic-bezier(0.47, 1.64, 0.41, 0.8);
}
.button:hover {
  background-color: #d8d8d8;
}
.button-shadow {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.button-scale:hover {
  transform: scale(1.1);
}
.button-scale-v02:hover {
  transform: scale(1.05);
}
.button-primary {
  background-color: #304D70;
  color: whitesmoke;
}
.button-primary:hover {
  background-color: #022A59;
  color: whitesmoke;
}
.button-info {
  background-color: #0074FF;
  color: whitesmoke;
}
.button-info:hover {
  background-color: #005dcf;
  color: whitesmoke;
}
.button-disabled {
  pointer-events: none !important;
  background-color: #1c2e44;
  user-select: none;
}

.dt-info {
  z-index: 99999;
  padding: 10px 20px;
  max-width: 500px;
  text-align: center;
  background-color: white;
  border-radius: 57px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: all 400ms cubic-bezier(0.47, 1.64, 0.41, 0.8);
  cursor: default;
}
.dt-info:hover {
  font-size: 18px;
}
@media screen and (max-width: 425px) {
  .dt-info {
    font-size: 14px;
    width: 70%;
  }
}

#md-tiw-form {
  display: none;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vw;
  z-index: 99999999;
}
#md-tiw-form #close-modal_auth {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
}
@media screen and (max-width: 600px) {
  #md-tiw-form {
    height: -webkit-fill-available !important;
  }
}

#auth-form {
  height: fit-content;
  background-color: white;
  z-index: 9999999999999;
  border-radius: 15px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: 400ms cubic-bezier(0.47, 1.64, 0.41, 0.8);
}
#auth-form img {
  width: 420px;
}
@media screen and (min-width: 600px) {
  #auth-form {
    min-width: 560px;
  }
}
#auth-form .modal-content {
  height: fit-content;
  padding: 25px 0px;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px dashed;
  border-radius: 15px;
  padding: 50px 90px;
  font-family: Poppins, sans-serif;
}
#auth-form .modal-content #reg_form_dt {
  min-width: 340px;
}

#benefits_modal {
  z-index: 9999999999;
}
#benefits_modal .modal-dialog {
  border: 2px dashed;
  border-radius: 15px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) !important;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#password_reset_dt {
  min-width: 325px;
}

.iti__flag {
  background-image: url("../vendor/toolkit/intl-tel-input/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("../vendor/toolkit/intl-tel-input/img/flags@2x.png");
  }
}
.iti {
  display: block !important;
}

.iti__country-list {
  z-index: 555 !important;
}

@font-face {
  font-family: Poppins;
  src: url("../fonts/poppins/Poppins-Regular.ttf");
}
@font-face {
  font-family: Poppins;
  src: url("../fonts/poppins/Poppins-Regular.ttf");
}
header {
  width: 100%;
  height: 80px;
  border-bottom: 2px dashed;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 999999;
  background-color: white;
  position: fixed;
  top: 0;
}
header a {
  text-decoration: none;
}
header a img {
  width: 300px;
}
header #header-logo {
  z-index: 99999;
}
header ul {
  list-style-type: none;
}
header ul li {
  display: inline-flex;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: fit-content;
  margin: auto;
}
header #nav-items a {
  border-bottom: 2px solid transparent;
}
header #nav-items a:hover {
  color: #3C3C3C;
  border-color: #3C3C3C;
}
header ul li:not(:last-child) {
  margin-right: 20px;
}
header ul li a {
  color: #6e6e6e;
  font-weight: 700;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1378px) {
  header nav {
    width: 100%;
    display: flex;
    justify-content: space-around;
  }
  header #nav-items {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    background-color: white;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    padding-left: 0px;
  }
  header #nav-items li {
    margin-right: 0;
  }
  header #nav-items li a {
    font-size: 25px;
  }
  header #nav-items li:not(:last-child) {
    margin-bottom: 45px;
  }
  header #mob-evs {
    display: flex !important;
  }
}
@media screen and (max-width: 900px) {
  header ul {
    display: none;
  }
}
@media screen and (max-width: 425px) {
  header #nav-items {
    padding-left: 0px;
  }
  header #nav-items li a {
    font-size: 16px;
  }
}
header #mob-evs {
  position: fixed;
  bottom: 0;
  height: 75px;
  background-color: white;
  border-top: 2px dashed;
  z-index: 99999999;
  display: flex;
  justify-content: center;
}
header #mob-evs div {
  width: fit-content;
}

footer {
  border-top: 2px dashed;
  padding: 15px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1276px) {
  footer #footer-teacher-idf {
    font-size: 14px;
  }
}
footer img {
  width: 300px;
}
footer ul {
  list-style-type: none;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 15px;
}
@media screen and (max-width: 1276px) {
  footer ul {
    gap: 5px;
  }
}
footer ul li a {
  color: #6e6e6e;
}
footer ul li a:hover {
  color: #3C3C3C;
}
footer #footer-term-st a {
  text-decoration: none;
  font-weight: 600;
}
@media screen and (max-width: 425px) {
  footer {
    padding-bottom: 100px;
  }
  footer div {
    flex-direction: column;
  }
  footer #footer-term-st {
    gap: 5px !important;
    align-items: center;
    width: 100%;
  }
}

@font-face {
  font-family: Poppins;
  src: url("../fonts/poppins/Poppins-Regular.ttf");
}
.section-content {
  width: 1280px;
  margin: auto;
}
@media screen and (max-width: 1276px) {
  .section-content {
    width: 100%;
  }
}

section {
  width: 100%;
  border-radius: 0px 0px 57px 57px;
  background-position: top right;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 425px) {
  section {
    background-position: unset;
    border-radius: 0 !important;
  }
}

.hero_girl_ro {
  background-image: url("../img/hero-bg_ro.jpg") !important;
}

#online-classes {
  padding-top: 90px;
  padding-bottom: 90px;
  min-height: 106vh;
  z-index: 99999;
  background-image: url("../img/hero-bg.jpg");
}
#online-classes .section-content {
  margin-top: 65px;
}
#online-classes .section-content h1,
#online-classes .section-content h3 {
  font-family: Poppins, sans-serif;
  width: 70%;
  margin-bottom: 45px;
}
@media screen and (max-width: 1378px) {
  #online-classes .section-content h1 {
    width: 70%;
    margin-left: 45px;
  }
  #online-classes .section-content h3 {
    font-size: 18px;
    width: 50%;
    margin-left: 45px;
  }
  #online-classes .section-content div {
    margin-left: 45px;
  }
}
@media screen and (max-width: 1276px) {
  #online-classes .section-content h1 {
    width: 50%;
    margin-left: 45px;
  }
  #online-classes .section-content h3 {
    font-size: 16px;
    width: 30%;
    margin-left: 45px;
  }
}
@media screen and (max-width: 900px) {
  #online-classes .section-content div {
    flex-direction: column;
    width: fit-content;
    text-align: center;
    margin: auto;
  }
}
@media screen and (max-width: 425px) {
  #online-classes .section-content h1,
  #online-classes .section-content h3 {
    width: 90%;
    margin: auto;
  }
  #online-classes .section-content h1 {
    font-size: 24px;
  }
  #online-classes .section-content h3 {
    margin-top: 25px;
    font-size: 14px;
  }
  #online-classes .section-content div {
    margin-top: 55px;
    gap: 10px !important;
  }
  #online-classes .section-content div a {
    font-size: 16px !important;
    margin-bottom: 0px;
  }
}
#online-classes .section-content h1 {
  font-weight: 900;
}
#online-classes .section-content h3 {
  font-weight: 600;
}

.online-classes-dt-teacher {
  background-image: url("../img/hero-bg-teacher.jpg") !important;
  background-position: center !important;
}
.online-classes-dt-teacher h1 {
  font-size: 45px;
}
@media screen and (max-width: 425px) {
  .online-classes-dt-teacher {
    min-height: fit-content !important;
  }
}

#why-us {
  min-height: 120vh !important;
  margin-top: -120px;
  padding-top: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding-bottom: 90px;
  background-image: url("../img/why_us_blob.webp");
  background-size: cover;
  background-repeat: no-repeat;
}
#why-us .section-content .d-flex {
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  min-height: 400px;
  position: relative;
}
#why-us .card {
  border: none;
  border-radius: 20px;
  padding: 25px 20px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  width: 280px;
  min-height: 200px;
  cursor: pointer;
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#why-us .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
#why-us .card:nth-child(1) {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  transform: rotate(-5deg);
  margin-top: 20px;
}
#why-us .card:nth-child(2) {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  transform: rotate(3deg);
  margin-top: -10px;
}
#why-us .card:nth-child(3) {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  transform: rotate(-2deg);
  margin-top: 15px;
}
#why-us .card:nth-child(4) {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  transform: rotate(4deg);
  margin-top: -5px;
}
#why-us .card:nth-child(5) {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  color: #333;
  transform: rotate(-3deg);
  margin-top: 25px;
}
#why-us .card:nth-child(6) {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  color: #333;
  transform: rotate(2deg);
  margin-top: -15px;
}
#why-us .card:nth-child(7) {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  color: #333;
  transform: rotate(-4deg);
  margin-top: 10px;
}
#why-us .card:hover {
  transform: translateY(-8px) scale(1.02) rotate(0deg) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 10;
}
#why-us .card:hover::before {
  opacity: 1;
}
@media screen and (max-width: 900px) {
  #why-us .card:nth-child(1) {
    transform: rotate(-2deg);
  }
  #why-us .card:nth-child(2) {
    transform: rotate(1deg);
  }
  #why-us .card:nth-child(3) {
    transform: rotate(-1deg);
  }
  #why-us .card:nth-child(4) {
    transform: rotate(2deg);
  }
  #why-us .card:nth-child(5) {
    transform: rotate(-1.5deg);
  }
  #why-us .card:nth-child(6) {
    transform: rotate(1.5deg);
  }
  #why-us .card:nth-child(7) {
    transform: rotate(-2deg);
  }
  #why-us .card:hover {
    transform: translateY(-4px) scale(1.01) rotate(0deg) !important;
  }
}
@media screen and (max-width: 768px) {
  #why-us .section-content .d-flex {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    min-height: auto;
  }
  #why-us .card {
    width: 90% !important;
    max-width: 350px;
    margin: 0 auto !important;
  }
  #why-us .card:nth-child(1) {
    transform: rotate(-1deg);
    margin-top: 0;
  }
  #why-us .card:nth-child(2) {
    transform: rotate(0.5deg);
    margin-top: 0;
  }
  #why-us .card:nth-child(3) {
    transform: rotate(-0.5deg);
    margin-top: 0;
  }
  #why-us .card:nth-child(4) {
    transform: rotate(1deg);
    margin-top: 0;
  }
  #why-us .card:nth-child(5) {
    transform: rotate(-0.5deg);
    margin-top: 0;
  }
  #why-us .card:nth-child(6) {
    transform: rotate(0.5deg);
    margin-top: 0;
  }
  #why-us .card:nth-child(7) {
    transform: rotate(-1deg);
    margin-top: 0;
  }
}
@media screen and (max-width: 425px) {
  #why-us .section-content .d-flex {
    gap: 15px !important;
  }
  #why-us .card {
    width: 95% !important;
    margin: 0 auto !important;
    padding: 20px 15px !important;
    min-height: 150px !important;
    font-size: 14px !important;
  }
  #why-us .card:nth-child(1), #why-us .card:nth-child(2), #why-us .card:nth-child(3), #why-us .card:nth-child(4), #why-us .card:nth-child(5), #why-us .card:nth-child(6), #why-us .card:nth-child(7) {
    transform: rotate(0deg);
    margin-top: 0;
  }
  #why-us .card:hover {
    transform: translateY(-2px) scale(1.01) rotate(0deg) !important;
  }
}

#about-lessons {
  min-height: 105vh !important;
  z-index: 600;
  background-color: white;
  height: fit-content;
  padding-bottom: 50px;
  position: relative;
  background-image: url("../img/about-lessons.png");
}
#about-lessons .section-content {
  margin-top: 100px;
}
#about-lessons h1 {
  text-align: center;
  font-family: Poppins, sans-serif;
  font-weight: 800;
  margin-bottom: 45px;
}
#about-lessons .container-dt {
  background-color: white;
  width: 90%;
  margin: auto;
  height: 70%;
  position: relative;
  border: 2px dashed;
  border-radius: 15px;
  padding-top: 50px;
  padding-bottom: 50px;
}
#about-lessons .container-dt ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
#about-lessons .container-dt ul li {
  font-size: 18px;
  font-weight: 700;
  font-family: Poppins, sans-serif;
  display: flex;
  align-items: center;
  width: 90%;
  margin: auto;
  gap: 25px;
  transition: transform 0.3s ease;
  cursor: default;
  z-index: 400;
}
#about-lessons .container-dt ul li img {
  width: 80px;
}
@media screen and (max-width: 425px) {
  #about-lessons .container-dt ul li {
    font-size: 12px;
  }
  #about-lessons .container-dt ul li img {
    width: 65px;
  }
}
#about-lessons .container-dt ul li:hover {
  transform: scale(1.05);
}
#about-lessons .container-dt #dt_alert_about {
  font-size: 16px;
  font-weight: 700;
  font-family: Poppins, sans-serif;
  margin-top: 45px;
  margin-left: 90px;
  z-index: 400 !important;
}
@media screen and (max-width: 425px) {
  #about-lessons .container-dt #dt_alert_about {
    font-size: 12px;
    margin-left: 0px;
    padding: 0px 10px;
    text-align: center;
  }
}

#try_free {
  margin-top: -55px;
  background-image: url("../img/try_free.jpg");
}
@media screen and (max-width: 1276px) {
  #try_free #try_free_dt-info p {
    font-size: 16px;
  }
}
#try_free #try_free_dt-info,
#try_free #form_Request_data {
  min-height: 85vh;
}
#try_free .section-content {
  padding-top: 120px;
}
#try_free .section-content h1 {
  color: white;
  text-align: center;
  font-size: 2em;
  font-weight: 700;
  font-family: Poppins, sans-serif;
}
@media screen and (max-width: 425px) {
  #try_free .section-content h1 {
    font-size: 16px;
    padding: 0px 15px;
  }
  #try_free .section-content div {
    flex-direction: column-reverse;
  }
  #try_free .section-content div .card {
    width: 100%;
    border: none;
  }
}
#try_free .section-content .card {
  width: 45%;
  height: 100%;
  min-height: 65vh;
  padding: 15px 20px;
  border: 2px dashed;
  border-radius: 15px;
  transition: transform 400ms cubic-bezier(0.47, 1.64, 0.41, 0.8);
}
#try_free .section-content .card form input,
#try_free .section-content .card form select {
  border: 1px dashed #a1a1a1;
}
#try_free .section-content .card form p {
  font-size: 14px;
}
#try_free .section-content .card a {
  display: block !important;
  color: white;
  margin: auto;
  text-align: center;
}
#try_free .section-content .card a:hover {
  transform: scale(1.04);
}
@media screen and (max-width: 900px) {
  #try_free .section-content .card:hover {
    transform: none;
  }
}

#how_to_pay {
  min-height: 80vh;
  padding-bottom: 120px;
  box-shadow: none;
  border-bottom: none;
}
@media screen and (max-width: 1276px) {
  #how_to_pay {
    padding: 0px 25px;
    padding-bottom: 50px;
  }
}
#how_to_pay .section-content {
  padding-top: 125px;
}
#how_to_pay .section-content h1 {
  background-color: #0074FF;
  color: white;
  width: fit-content;
  padding: 15px 20px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 425px) {
  #how_to_pay .section-content h4 {
    font-size: 16px;
  }
}
#how_to_pay .section-content h4 {
  line-height: 1.5em;
}
#how_to_pay .section-content .table-responsive {
  border: 2px dashed;
  padding: 15px;
}
#how_to_pay .section-content .table-responsive table {
  cursor: default;
  transition: transform 0.2s ease-in;
}
#how_to_pay .section-content .table-responsive:hover table {
  transform: scale(1.01);
}

#why-us-dteacher {
  min-height: 100vh;
  font-family: Poppins, sans-serif;
  background-color: white;
  z-index: 9999;
}
#why-us-dteacher .section-content {
  padding-top: 150px;
  padding-bottom: 150px;
}
#why-us-dteacher .section-content h1 {
  text-align: center;
  font-weight: 700;
}
#why-us-dteacher .section-content #dt-teacher-kinfo p {
  transition: transform 0.4s cubic-bezier(0.47, 1.64, 0.41, 0.8);
  cursor: default;
}
#why-us-dteacher .section-content #dt-teacher-kinfo p:hover {
  transform: scale(1.1);
}
#why-us-dteacher .section-content .card {
  border: 2px dashed;
  padding: 10px 15px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  height: 100%;
}
#why-us-dteacher .section-content .card-first {
  background-color: #96ff65;
}
#why-us-dteacher .section-content .card-second {
  background-color: #65ffc8;
}
#why-us-dteacher .section-content .card-third {
  background-color: #fff065;
}
#why-us-dteacher .section-content #first-column-dt {
  min-height: 469px;
}

#about-us {
  min-height: 100vh;
  font-family: Poppins, sans-serif;
}
#about-us .section-content {
  padding-top: 60px;
  padding-bottom: 60px;
}
#about-us .section-content h1 {
  background-color: #0074FF;
  color: white;
  width: fit-content;
  padding: 15px 20px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
#about-us .section-content div ul {
  list-style-type: none;
}
#about-us .section-content div ul li {
  font-size: 18px;
  font-weight: 500;
}
#about-us .section-content div ul li i {
  margin-right: 10px;
}
#about-us .section-content div ul li:not(:last-child) {
  margin-bottom: 15px;
}

#how-to-teach {
  min-height: 100vh;
  font-family: Poppins, sans-serif;
  box-shadow: none;
}
#how-to-teach .section-content {
  padding-top: 150px;
  padding-bottom: 150px;
}
#how-to-teach .section-content h1 {
  background-color: #0074FF;
  color: white;
  width: fit-content;
  padding: 15px 20px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
#how-to-teach .section-content .dt-card {
  width: 550px;
}
#how-to-teach .section-content .dt-card .dt-card_num {
  background-color: #304D70;
  font-size: 32px;
  color: white;
  height: fit-content;
  padding: 5px 20px;
  border-radius: 5px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
#how-to-teach .section-content .dt-card div {
  margin-left: 15px;
}
#how-to-teach .section-content .dt-card div p {
  margin-left: 3px;
}

#try_free-dt_teacher {
  min-height: 100vh;
  font-family: Poppins, sans-serif;
  box-shadow: none;
}
#try_free-dt_teacher .section-content {
  padding-top: 110px;
  padding-bottom: 150px;
}
#try_free-dt_teacher .section-content h1 {
  text-align: center;
}
#try_free-dt_teacher .section-content .card-dt {
  width: 100%;
  max-width: 650px;
  margin: auto;
  border: 2px dashed;
  border-radius: 57px;
  padding: 20px 35px;
}
#try_free-dt_teacher .section-content .card-dt a {
  display: block;
  width: 60%;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.47, 1.64, 0.41, 0.8);
}
#try_free-dt_teacher .section-content .card-dt a:hover {
  transform: scale(1.1);
}

#about_new_platform {
  min-height: 115vh !important;
  z-index: 600;
  background-color: white;
  height: fit-content;
  padding-bottom: 50px;
  font-family: Poppins, sans-serif;
  margin-top: -70px;
  color: white;
  position: relative;
  background-image: url("../img/about_new_platform.jpg");
}
#about_new_platform .section-content {
  margin-top: 170px;
}
#about_new_platform h1 {
  text-align: center;
  font-weight: 800;
  margin-bottom: 45px;
}
#about_new_platform p {
  font-size: large;
}
#about_new_platform .container-dt {
  background-color: white;
  width: 90%;
  margin: auto;
  height: 70%;
  position: relative;
  border: 2px dashed;
  border-radius: 15px;
  padding-top: 50px;
  padding-bottom: 50px;
}

#teacher_form_data {
  min-height: 115vh !important;
  z-index: 600;
  background-color: white;
  height: fit-content;
  padding-bottom: 50px;
  font-family: Poppins, sans-serif;
  margin-top: -70px;
  color: white;
  position: relative;
  background-image: url("../img/teacher_form_data.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#teacher_form_data .section-content {
  margin-top: 110px;
  display: flex;
  flex-direction: row-reverse;
}
#teacher_form_data .section-content h1 {
  background-color: #0074FF;
  color: white;
  width: fit-content;
  padding: 15px 20px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
#teacher_form_data .section-content .card-dt {
  width: 100%;
  min-width: 650px;
  border: 4px dashed;
  border-radius: 57px;
  padding: 20px;
}
#teacher_form_data .section-content .card-dt .card-dt-content {
  background-color: white;
  border-radius: 57px;
  padding: 25px;
  color: black;
  height: 100vh;
  position: relative;
  overflow-y: auto;
}
#teacher_form_data .section-content .card-dt .card-dt-content form input {
  font-weight: bold;
  font-family: Poppins, sans-serif;
}
#teacher_form_data .section-content .card-dt .card-dt-content form .teacher_form_input {
  width: 100%;
  padding: 10px 20px;
  border: 2px dashed;
  border-radius: 57px;
  margin-bottom: 20px;
}
#teacher_form_data .section-content .card-dt .card-dt-content form .teacher_form_input_invalid {
  border-color: red !important;
}
#teacher_form_data .section-content .card-dt .card-dt-content form .teacher_form_textarea {
  width: 100%;
  padding: 10px 20px;
  border: 2px dashed;
  border-radius: 27px;
  height: 100px;
  margin-top: 10px;
  resize: none;
  font-weight: bold;
}
#teacher_form_data .section-content .card-dt .card-dt-content form #form_success_container {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 169, 28, 0.836);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 9999;
  position: absolute;
  top: 0;
  left: 0;
}
#teacher_form_data .section-content .card-dt .card-dt-content form #form_success_container h1 {
  background-color: transparent;
  border: none;
  box-shadow: none;
  font-size: 6rem;
}
#teacher_form_data .section-content .card-dt .card-dt-content form #form_success_container h2 {
  color: white;
  font-weight: bold;
}
#teacher_form_data .section-content .card-dt .card-dt-content form .select2 .select2-selection {
  border: 2px dashed;
  border-radius: 57px;
  padding: 10px 20px;
}
#teacher_form_data .section-content .card-dt .card-dt-content form .iti__selected-flag {
  border-radius: 57px 0px 0px 57px;
  padding: 10px 20px;
}
#teacher_form_data .section-content .card-dt .card-dt-content form .required:after {
  content: " *";
  color: red;
}

#reviews {
  min-height: 125vh;
  margin-top: -30px;
  background-image: url("../img/reviews.svg");
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
  background-color: #f8f9fa;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#reviews h1 {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  text-align: center;
}
#reviews h4 {
  font-family: Poppins, sans-serif;
}
#reviews .section-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
#reviews #review_carousel .splide__track {
  overflow: hidden;
}
#reviews #review_carousel .splide__list {
  align-items: stretch;
}
#reviews #review_carousel .splide__slide {
  padding: 0;
}
#reviews #review_carousel .review_card {
  width: 100%;
  max-width: 400px;
  background: linear-gradient(135deg, #ffffff 0%, #ffe0b3 100%);
  background-color: white;
  padding: 25px;
  padding-top: 40px;
  border-radius: 20px;
  border: 2px solid #f0f0f0;
  transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.4s ease, border-color 0.3s ease;
  position: relative;
  margin-top: 30px;
}
#reviews #review_carousel .review_card:hover {
  transform: translateY(-5px);
}
@media screen and (max-width: 768px) {
  #reviews #review_carousel .review_card {
    max-width: 350px;
  }
}
#reviews #review_carousel .review_card .review_card_header {
  margin-bottom: 20px;
}
#reviews #review_carousel .review_card .review_card_header .review_badges {
  position: absolute;
  top: -15px;
  left: 25px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  z-index: 10;
}
#reviews #review_carousel .review_card .review_card_header .review_badges .badge {
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  color: white;
  text-transform: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
  transform-origin: center;
  transform: rotate(var(--rotation, 0deg));
  animation-fill-mode: both;
}
#reviews #review_carousel .review_card .review_card_header .review_badges .badge.badge-score {
  background: linear-gradient(135deg, #e91e63, #f06292);
  --rotation: 0deg;
  animation-delay: 0s;
}
#reviews #review_carousel .review_card .review_card_header .review_badges .badge.badge-subject {
  background: linear-gradient(135deg, #ff9800, #ffb74d);
  --rotation: 0deg;
  animation-delay: 1s;
}
#reviews #review_carousel .review_card .review_card_header .review_badges .badge.badge-grade {
  background: linear-gradient(135deg, #2196f3, #64b5f6);
  --rotation: 0deg;
  animation-delay: 1s;
}
#reviews #review_carousel .review_card .review_card_header .review_badges .badge:hover {
  animation-play-state: paused;
  transform: rotate(0deg) scale(1.1);
  transition: transform 0.3s ease;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(var(--rotation, 0deg));
  }
  50% {
    transform: translateY(-5px) rotate(var(--rotation, 0deg));
  }
}
#reviews #review_carousel .review_card .review_card_header .review_user_info {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
#reviews #review_carousel .review_card .review_card_header .review_user_info .review_avatar {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 3px solid #e0e0e0;
  flex-shrink: 0;
}
#reviews #review_carousel .review_card .review_card_header .review_user_info .review_user_details {
  flex: 1;
}
#reviews #review_carousel .review_card .review_card_header .review_user_info .review_user_details .review_username {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin: 0 0 5px 0;
  font-family: "Poppins", sans-serif;
}
#reviews #review_carousel .review_card .review_card_header .review_user_info .review_user_details .review_user_description {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
}
#reviews #review_carousel .review_card .review_card_body .review_text {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin: 0;
  font-weight: 400;
  overflow-wrap: break-word;
}
#reviews #review_carousel .splide__arrows .splide__arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: #333;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  opacity: 1;
}
#reviews #review_carousel .splide__arrows .splide__arrow svg {
  fill: currentColor;
}
#reviews #review_carousel .splide__arrows .splide__arrow--prev {
  left: -50px;
}
#reviews #review_carousel .splide__arrows .splide__arrow--next {
  right: -50px;
}
@media screen and (max-width: 768px) {
  #reviews #review_carousel .splide__arrows .splide__arrow--prev {
    left: -6px;
  }
  #reviews #review_carousel .splide__arrows .splide__arrow--next {
    right: -6px;
  }
}
#reviews #review_carousel .splide__pagination {
  position: static;
  margin-top: 18px;
  gap: 8px;
}
#reviews #review_carousel .splide__pagination .splide__pagination__page {
  background: #e0e0e0;
  opacity: 1;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  transition: transform 0.2s ease, background 0.2s ease;
}
#reviews #review_carousel .splide__pagination .splide__pagination__page.is-active {
  background: #0d6efd;
  transform: scale(1.25);
}

.review-modal {
  z-index: 99999999 !important;
}
.review-modal .modal-dialog {
  max-width: 480px;
  max-height: 90vh;
  margin: 1.75rem auto;
}
.review-modal .review-modal-content {
  border: none;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  position: relative;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}
.review-modal .review-modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e91e63, #ff9800, #2196f3);
}
.review-modal .review-modal-header {
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 15px 20px 12px;
  position: relative;
  flex-shrink: 0;
}
.review-modal .review-modal-header .review-modal-user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}
.review-modal .review-modal-header .review-modal-user-info .review-modal-avatar {
  position: relative;
}
.review-modal .review-modal-header .review-modal-user-info .review-modal-avatar img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.review-modal .review-modal-header .review-modal-user-info .review-modal-avatar::after {
  content: "";
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #4caf50, #8bc34a);
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.review-modal .review-modal-header .review-modal-user-info .review-modal-user-details .review-modal-title {
  font-size: 20px;
  font-weight: 700;
  color: black;
  margin: 0 0 4px 0;
  font-family: "Poppins", sans-serif;
  background: black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.review-modal .review-modal-header .review-modal-user-info .review-modal-user-details .review-modal-user-role {
  font-size: 12px;
  color: #7f8c8d;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.8px;
}
.review-modal .review-modal-header .review-modal-close {
  background: none;
  border: none;
  font-size: 18px;
  color: #95a5a6;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.review-modal .review-modal-header .review-modal-close:hover {
  background: #e74c3c;
  color: #fff;
  transform: rotate(90deg);
}
.review-modal .review-modal-body {
  padding: 15px 20px;
  background: #fff;
  flex: 1;
  overflow-y: auto;
  max-height: calc(85vh - 120px);
}
.review-modal .review-modal-body .review-modal-content-wrapper {
  position: relative;
  padding: 10px 0;
}
.review-modal .review-modal-body .review-modal-content-wrapper .review-modal-quote {
  position: absolute;
  top: -8px;
  left: -8px;
  font-size: 32px;
  color: #1e32e9;
  opacity: 0.25;
  z-index: 1;
}
.review-modal .review-modal-body .review-modal-content-wrapper .review-modal-quote-end {
  position: absolute;
  bottom: -8px;
  right: -8px;
  font-size: 32px;
  color: #211ee9;
  opacity: 0.25;
  z-index: 1;
}
.review-modal .review-modal-body .review-modal-content-wrapper .review-modal-text {
  font-size: 14px;
  line-height: 1.6;
  color: #34495e;
  margin: 0;
  font-weight: 400;
  text-align: justify;
  position: relative;
  z-index: 2;
  padding: 5px 12px;
}
.review-modal .review-modal-body .review-modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}
.review-modal .review-modal-body .review-modal-footer .review-modal-rating {
  display: flex;
  gap: 4px;
}
.review-modal .review-modal-body .review-modal-footer .review-modal-rating i {
  font-size: 16px;
  color: #f39c12;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  animation: sparkle 2s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.2s);
}
.review-modal .review-modal-body .review-modal-footer .review-modal-rating i:nth-child(1) {
  --i: 0;
}
.review-modal .review-modal-body .review-modal-footer .review-modal-rating i:nth-child(2) {
  --i: 1;
}
.review-modal .review-modal-body .review-modal-footer .review-modal-rating i:nth-child(3) {
  --i: 2;
}
.review-modal .review-modal-body .review-modal-footer .review-modal-rating i:nth-child(4) {
  --i: 3;
}
.review-modal .review-modal-body .review-modal-footer .review-modal-rating i:nth-child(5) {
  --i: 4;
}
.review-modal .review-modal-body .review-modal-footer .review-modal-date {
  font-size: 13px;
  color: #7f8c8d;
  margin: 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.review-modal .review-modal-body .review-modal-footer .review-modal-date::before {
  content: "";
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  border-radius: 50%;
  display: inline-block;
}
.review-modal.show .modal-dialog {
  animation: modalSlideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.review-modal .modal-backdrop {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
}

@keyframes sparkle {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}
@keyframes modalSlideIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
#chatWidget_button {
  position: fixed;
  bottom: 30px;
  right: 35px;
  outline: none;
  border: none;
  height: 50px;
  width: 50px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0074FF;
  transition: all 0.2s ease;
  color: white;
  font-size: large;
  z-index: 99999;
}
#chatWidget_button:hover {
  background: rgb(0, 92.8, 204);
  transform: scale(1.1);
}

#chatWidget {
  opacity: 0;
  position: fixed;
  right: 35px;
  bottom: 90px;
  width: 420px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  pointer-events: none;
  transform: scale(0.5);
  transform-origin: bottom right;
  box-shadow: 0 0 128px 0 rgba(0, 0, 0, 0.1), 0 32px 64px -48px rgba(0, 0, 0, 0.5);
  transition: all 400ms cubic-bezier(0.47, 1.64, 0.41, 0.8);
  z-index: 999999;
}
#chatWidget.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  transition: all 400ms cubic-bezier(0.47, 1.64, 0.41, 0.8);
}
#chatWidget header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: fit-content;
  padding: 15px 0px 30px 0px;
  position: relative;
  text-align: center;
  color: #fff;
  background: #0074FF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 0;
  font-size: 1.2rem;
  font-family: "Poppins", sans-serif;
}
#chatWidget #chatWidget_chatbox {
  height: 350px;
  overflow-y: scroll;
}
#chatWidget #chatWidget_chatbox .accordion-item {
  border-radius: 0px !important;
}
#chatWidget #chatWidget_chatbox .accordion-button {
  border-radius: 0px;
  border: none;
}
#chatWidget #chatWidget_chatbox .accordion-header {
  font-family: "Poppins", sans-serif;
}
#chatWidget #chatWidget_searchbar {
  border-radius: 0;
  padding: 10px 15px;
  font-family: "Poppins", sans-serif;
  position: relative;
  z-index: 9999999999;
  position: relative;
  bottom: 15px;
  width: 80%;
  margin: auto;
  border: 2px dashed;
  border-radius: 30px;
  outline: none !important;
  box-shadow: none !important;
}
#chatWidget .chatWidget_category {
  color: gray;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  cursor: default;
  padding: 5px 15px;
  margin: 0;
}

@media only screen and (max-width: 1441px) {
  #teacher_form_data .section-content {
    margin-top: 90px;
  }
  #teacher_form_data .section-content div:first-child {
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px;
    padding-top: 30px;
  }
  #teacher_form_data .section-content div:first-child h1 {
    width: 100% !important;
    text-align: center;
  }
  #teacher_form_data .section-content #form_first_elements {
    line-height: 2.5;
  }
  #teacher_form_data .section-content #form_first_elements a {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1025px) {
  #about-lessons .section-content h1 {
    font-size: 32px;
  }
  #online-classes .section-content h1 {
    margin-bottom: 60px;
    font-size: 40px;
  }
  #online-classes .section-content h3 {
    font-size: 24px;
    width: 60%;
    margin-top: 90px;
    margin-bottom: 90px;
  }
  #why-us-dteacher .section-content {
    padding: 100px 25px;
  }
  #why-us-dteacher .section-content h1 {
    font-size: 38px;
  }
  #why-us-dteacher .section-content h4 {
    line-height: 1 !important;
    padding-bottom: 40px;
  }
  #teacher_form_data .section-content {
    margin-top: 90px;
  }
  #teacher_form_data .section-content div:first-child {
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px;
    padding-top: 30px;
  }
  #teacher_form_data .section-content div:first-child h1 {
    width: 100% !important;
    text-align: center;
  }
  #teacher_form_data .section-content #form_first_elements a {
    font-size: 20px;
  }
  #about-us .section-content {
    width: 100%;
    padding: 60px 25px;
  }
  #about-us .section-content h1 {
    width: 100%;
    text-align: center;
  }
  #how-to-teach .section-content {
    width: 100% !important;
    padding: 100px 25px;
  }
  #how-to-teach .section-content h1 {
    width: 100%;
    text-align: center;
  }
  #how-to-teach .section-content div {
    width: 100% !important;
    text-align: center;
    flex-direction: column;
    padding: 20px 0px;
    margin-right: 35px;
  }
  #try_free .section-content {
    width: 100%;
    padding: 0px 25px;
    margin: auto;
  }
  #try_free .section-content h1 {
    margin-top: 80px;
    padding-top: 20px;
    line-height: 1.3;
  }
  #try_free .section-content div {
    flex-direction: column;
  }
  #try_free .section-content div .card {
    width: 100% !important;
    text-align: center;
    height: fit-content !important;
    min-height: fit-content !important;
  }
  #try_free .section-content div div:not(.iti__flag-container) {
    width: 100% !important;
  }
  #try_free .section-content div div:not(.iti__flag-container) input {
    width: 100%;
  }
  #try_free .section-content div div:not(.iti__flag-container) select {
    width: 100%;
  }
  #try_free .section-content .card h5 {
    font-size: 24px;
  }
  #try_free .section-content .card div p {
    font-size: 18px !important;
    text-align: left;
  }
  #try_free .section-content .card div a {
    font-size: 18px !important;
  }
  #try_free .section-content #form_Request_data h4 {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 25px !important;
  }
}
@media only screen and (max-width: 768px) {
  #benefits_modal .modal-dialog {
    width: 450px !important;
  }
  #benefits_modal .modal-dialog .modal-content {
    overflow-y: scroll !important;
    min-width: none !important;
  }
  #try_free .section-content {
    padding-top: 40px;
    margin-top: 20px;
  }
  #try_free .section-content h1 {
    font-size: 28px;
    padding-top: 35px;
  }
  #online-classes {
    background-position: center !important;
    background-size: cover !important;
  }
  #online-classes .section-content h1 {
    width: 70%;
    font-size: 36px;
  }
  #how_to_pay .section-content {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 426px) {
  #online-classes {
    background-position: center !important;
    background-size: cover !important;
  }
  #online-classes .section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #online-classes .section-content h1 {
    width: 90%;
    font-size: 26px;
    line-height: 1.3;
    text-align: center;
    max-width: 400ch;
    margin: 0%;
    padding: 16px;
    display: block;
    word-wrap: break-word;
  }
  #online-classes .section-content .fs-4 {
    font-size: 16px !important;
    margin-bottom: 40px;
    margin-top: 40px;
    width: 80%;
    line-height: 1.3 !important;
  }
  #online-classes .section-content div {
    margin-top: 16px !important;
  }
  #online-classes .section-content h1 {
    width: 90%;
    display: flex;
    font-size: 26px;
    padding: 0%;
    margin: 16px 42px;
  }
  #online-classes .section-content h3 {
    font-size: 16px;
    margin: 40px 42px;
    width: 80%;
  }
  #online-classes .section-content div {
    margin-top: 20px;
    padding: 0%;
    gap: 20px !important;
  }
  #why-us-dteacher .section-content {
    padding-top: 50px;
  }
  #why-us-dteacher .section-content h1 {
    font-size: 26px;
  }
  #why-us-dteacher .section-content h4 {
    font-size: 14px;
    line-height: 1.3;
    padding: 0%;
    margin: 30px 0px !important;
    text-align: left !important;
  }
  #why-us-dteacher .section-content #dt-teacher-kinfo p {
    width: 100% !important;
    font-size: 14px !important;
    line-height: 1.5;
  }
  #why-us-dteacher .section-content #dt-teacher-kinfo img {
    width: 60% !important;
  }
  #why-us-dteacher .section-content div {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }
  #teacher_form_data .section-content div:first-child {
    flex-direction: column !important;
  }
  #teacher_form_data .section-content .card-dt {
    min-width: fit-content !important;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
  #teacher_form_data .section-content .card-dt .card-dt-content {
    width: 100% !important;
    align-items: center;
  }
  #teacher_form_data .section-content .card-dt select {
    width: 100% !important;
  }
  #teacher_form_data .section-content .iti__flag-container {
    padding-left: 7px !important;
  }
  #about-us .section-content {
    width: 100% !important;
  }
  #about-us .section-content div {
    flex-direction: column !important;
    display: flex !important;
  }
  #about-us .section-content div ul {
    width: 100% !important;
    margin: 0%;
    padding: 25px 0%;
  }
  #how-to-teach .section-content {
    padding: 25px 25px;
    width: 100% !important;
  }
  #how-to-teach .section-content div {
    width: 100% !important;
    margin: 0px !important;
  }
  #how-to-teach .section-content div .dt-card {
    padding: 0%;
  }
  #how-to-teach .section-content span {
    font-size: 20px !important;
  }
  #why-us .section-content h1 {
    margin: 0px 20px;
    font-size: 24px;
  }
  #why-us .section-content h1 .text-primary {
    font-size: 24px;
  }
  #about-lessons .section-content {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  #about-lessons .section-content h1 {
    margin: 0px 21px;
    font-size: 24px;
  }
  #about-lessons .container-dt ul {
    padding: 0%;
  }
  #about-lessons .container-dt ul p {
    font-size: 14px;
    margin: 0%;
  }
  #about-lessons .container-dt ul li {
    flex-direction: column;
    align-items: center;
  }
  #about-lessons .container-dt #dt_alert_about {
    font-size: 14px;
    text-align: left;
    margin: 0%;
    padding: 0px 18.922px;
  }
  #try_free h1 {
    font-size: 24px !important;
    line-height: 1.3;
    padding-top: 35px !important;
    margin: 0% !important;
    line-height: 1.5 !important;
  }
  #try_free .card a {
    width: 100% !important;
  }
  #try_free #form_Request div:not(.iti__flag-container) {
    width: 100% !important;
  }
  #try_free #form_Request div:not(.iti__flag-container) input {
    width: 100%;
  }
  #try_free #form_Request div:not(.iti__flag-container) select {
    width: 100%;
  }
  #try_free #form_Request a {
    width: 100% !important;
  }
  #try_free #form_Request p {
    font-size: 14px !important;
  }
  #try_free #form_Request p a {
    font-size: 14px !important;
  }
  #how_to_pay .section-content h1 {
    font-size: 24px;
  }
  #footer div:first-child {
    flex-direction: column;
  }
  #footer div:first-child ul {
    width: 100% !important;
    flex-direction: column;
    padding: 0%;
  }
  #footer div:first-child ul li {
    width: 98%;
    margin: 10px 20px;
    display: flex !important;
  }
  #footer div:first-child ul li .button {
    width: 90% !important;
    text-align: center;
  }
  #footer div {
    gap: 10px !important;
  }
  #footer #footer_social_links {
    width: 100% !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 0px !important;
    align-items: center !important;
  }
  #footer #footer_social_links li {
    width: fit-content !important;
  }
  #footer #footer_social_links li a {
    width: fit-content !important;
  }
  #footer #footer-term-st {
    text-align: center;
  }
  #footer #footer-term-st img {
    width: 100% !important;
  }
  #chatWidget_button {
    bottom: 95px !important;
    right: 25px !important;
  }
  #chatWidget {
    bottom: 125px !important;
    right: 25px !important;
    z-index: 0 !important;
    width: 375px !important;
    height: 390px !important;
    overflow-y: scroll !important;
  }
}
.iti__flag,
.iti__arrow {
  display: none !important;
}

.iti__selected-flag {
  padding: 0% !important;
  padding-right: 10px !important;
  justify-content: center !important;
  align-items: center !important;
}

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