@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,600;1,700;1,800;1,900&family=Urbanist:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css");
header {
  position: fixed;
  width: 100%;
  z-index: 10;
  background-color: #F0F0F0;
  height: 96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

header .menu-wrapper {
  width: 90%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

header .menu-wrapper .logo img {
  width: 250px;
  height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media only screen and (max-width: 768px) {
  header .menu-wrapper .logo img {
    width: 150px;
    height: 150px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

header .menu-wrapper .navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 52%;
}

@media only screen and (max-width: 768px) {
  header .menu-wrapper .navbar {
    display: none;
  }
}

header .menu-wrapper .navbar ul {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header .menu-wrapper .navbar ul :nth-child(2) .subMenu {
  left: 32%;
}

header .menu-wrapper .navbar ul :nth-child(4) .subMenu {
  left: 68%;
}

header .menu-wrapper .navbar ul :nth-child(5) .subMenu {
  left: 87%;
  width: 31%;
}

header .menu-wrapper .navbar ul .first-sub {
  left: 10%;
}

header .menu-wrapper .navbar ul li a {
  font-size: 100%;
  color: black;
  text-decoration: none;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

header .menu-wrapper .navbar ul li a i::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

header .menu-wrapper .navbar ul li a:hover {
  color: #FFCC02;
}

header .menu-wrapper .navbar ul li a:hover i::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

header .menu-wrapper .navbar ul li:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

header .menu-wrapper .navbar ul li:hover .subMenu {
  opacity: 1;
  visibility: visible;
}

header .menu-wrapper .navbar ul li .subMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 15px;
  width: 160px;
  background-color: #F0F0F0;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 10px 15px 10px;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  text-align: center;
  z-index: 3;
}

header .menu-wrapper .navbar ul li .subMenu .for-relative {
  position: relative;
}

header .menu-wrapper .navbar ul li .subMenu .for-relative:hover .sub-menutwo {
  opacity: 1;
  visibility: visible;
}

header .menu-wrapper .navbar ul li .subMenu li {
  font-weight: 500;
  font-size: 12px;
  line-height: 180%;
  text-transform: uppercase;
  color: black;
  text-align: center;
}

header .menu-wrapper .navbar ul li .subMenu li .sub-menutwo {
  text-align: center;
  width: 160px;
  padding: 10px 15px 10px;
  border-radius: 15px;
  position: absolute;
  background-color: #F0F0F0;
  top: 0;
  left: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

header .menu-wrapper .showphone {
  padding: 17px 33px;
  border-radius: 29px;
  font-weight: 500;
  font-size: 15px;
  background-color: #FFCC02;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  header .menu-wrapper .showphone {
    display: none;
  }
}

header .menu-wrapper .showphone a {
  color: black;
  text-decoration: none;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

header .menu-wrapper .showphone a:hover {
  color: #FFFFFF;
}

header .menu-wrapper .showphone a i {
  font-size: 20px;
}

header .menu-wrapper .phone-mobile {
  background-color: #FFCC02;
  border-radius: 100%;
  width: 55px;
  height: 55px;
  padding: 12px;
  margin: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (min-width: 768px) {
  header .menu-wrapper .phone-mobile {
    display: none;
  }
}

header .menu-wrapper .phone-mobile a {
  font-size: 25px;
  color: black;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

header .menu-wrapper .phone-mobile a:hover {
  color: #FFFFFF;
}

header .menu-wrapper .burger-menu {
  padding: 10px;
}

@media only screen and (min-width: 768px) {
  header .menu-wrapper .burger-menu {
    display: none;
  }
}

header .menu-wrapper .burger-menu i {
  font-size: 40px;
}

header .menu-wrapper .phone-navbar {
  min-height: 100vh;
  width: 100%;
  background-color: #F0F0F0;
  z-index: 100;
  position: fixed;
  left: 0;
  top: -130%;
  overflow: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (min-width: 768px) {
  header .menu-wrapper .phone-navbar {
    display: none;
  }
}

header .menu-wrapper .phone-navbar ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 3;
  list-style: none;
  margin: 0;
  padding: 0;
}

header .menu-wrapper .phone-navbar ul .phone-menu-side {
  text-align: center;
}

header .menu-wrapper .phone-navbar ul .phone-menu-side a {
  text-decoration: none;
  color: black;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

header .menu-wrapper .phone-navbar ul .phone-menu-side a:hover {
  color: #FFCC02;
}

header .menu-wrapper .phone-navbar ul .phone-menu-side .subMenu-phone {
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 0px;
}

header .menu-wrapper .phone-navbar ul .phone-menu-side .subMenu-phone .for-relative-phone {
  position: relative;
}

header .menu-wrapper .phone-navbar ul .phone-menu-side .subMenu-phone .sub-menutwo-phone {
  height: 0;
  z-index: 3;
  text-align: center;
  width: 160px;
  padding: 10px 15px 10px;
  border-radius: 15px;
  position: absolute;
  background-color: #F0F0F0;
  top: 18%;
  left: 27%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

header .menu-wrapper .phone-navbar ul .phone-menu-side .subMenu-phone .sub-menutwo-phone-active {
  opacity: 1;
  visibility: visible;
  height: auto;
}

header .menu-wrapper .phone-navbar ul .phone-menu-side .phone-active {
  opacity: 1;
  visibility: visible;
  height: auto;
}

header .menu-wrapper .active {
  top: 14%;
}

@media only screen and (min-width: 768px) {
  header .menu-wrapper .active {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  header .menu-wrapper .translate {
    position: absolute;
    top: 70%;
    left: 79%;
  }
  header .menu-wrapper .translate a {
    font-size: 20px !important;
  }
}

header .menu-wrapper .translate a {
  opacity: 0.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  color: black;
}

header .menu-wrapper .translate a :hover {
  opacity: 1;
}

main {
  margin-top: 60px;
}

main #main-side {
  margin-top: 95px 0 40px;
}

main #main-side .left-side h3 {
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: initial;
}

@media (max-width: 768px) {
  main #main-side .left-side h3 {
    margin-top: 40px;
    text-align: center;
  }
}

main #main-side .left-side h3 span {
  color: #01467F;
}

main #main-side .left-side .up-side {
  border-left: 1px solid black;
  line-height: 135%;
  padding-left: 30px;
}

@media (max-width: 768px) {
  main #main-side .left-side .up-side {
    border: none;
    padding-left: 0;
    text-align: center;
  }
}

main #main-side .left-side span {
  font-weight: 700;
}

main #main-side .left-side .button-area {
  margin-top: 35px;
}

main #main-side .left-side .button-area a {
  color: black;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  background-color: #FFCC02;
  padding: 17px 13px;
  border-radius: 29px;
}

main #main-side .left-side .button-area a:hover {
  color: #FFFFFF;
}

main #main-side .right-side {
  width: 45%;
  max-width: 520px;
}

main #main-side .right-side .for-video-border {
  border: 3px solid #FFCC02;
  border-radius: 5px;
  width: 100%;
  padding-bottom: 57%;
  position: relative;
  background: #FFFFFF;
  height: unset;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  main #main-side .right-side .for-video-border {
    margin-top: 65px;
  }
}

main #main-side .right-side .for-video-border video {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

main #special-course .img-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 768px) {
  main #special-course .img-side {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    height: 215px;
  }
}

main #special-course .img-side img {
  width: 400px;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media only screen and (max-width: 768px) {
  main #special-course .img-side img {
    width: 300px;
    height: 216px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

main #special-course .writing-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main #special-course .writing-side a {
  text-decoration: none;
  color: #01467F;
  font-size: 22px;
  line-height: 120%;
  font-weight: 800;
  display: block;
  text-align: right;
  margin-bottom: 40px;
}

main #special-course .writing-side h2 {
  margin-bottom: 40px;
  text-align: right;
  font-size: 22px;
  line-height: 27px;
}

main #special-course .writing-side .result-items-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 768px) {
  main #special-course .writing-side .result-items-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

main #special-course .writing-side .result-items-wrapper .result-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 50%;
  position: relative;
}

@media only screen and (max-width: 768px) {
  main #special-course .writing-side .result-items-wrapper .result-item {
    width: 100%;
    margin-bottom: 20px;
  }
}

main #special-course .writing-side .result-items-wrapper .result-item .result-num {
  width: 53px;
  height: 53px;
  color: black;
  background-color: #FFCC02;
  border-radius: 100%;
  padding: 12px;
  margin: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main #special-course .writing-side .result-items-wrapper .result-item .title {
  font-weight: 700;
  font-size: 20px;
  margin: 20px 0px;
}

main #special-course .writing-side .result-items-wrapper .result-item .result-item-description {
  text-align: right;
  margin-bottom: auto;
  margin-left: 20px;
}

@media only screen and (max-width: 768px) {
  main #special-course .writing-side .result-items-wrapper .for-after::after {
    top: -4% !important;
    width: 326px !important;
  }
}

main #special-course .writing-side .result-items-wrapper .for-after::after {
  content: "";
  position: absolute;
  top: 5%;
  left: 0;
  border-bottom: 1px dashed #01467F;
  width: 200px;
}

main #teacher-about .about-teacher-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main #teacher-about .about-teacher-area .about-teacher-card {
  background-color: #FFCC02;
  padding: 20px;
  border-radius: 20px;
  max-width: 344px;
  width: 100%;
  min-height: 465px;
  font-size: 15px;
  line-height: 135%;
}

main #teacher-about .about-teacher-area .about-teacher-card .img-side-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main #teacher-about .about-teacher-area .about-teacher-card .img-side-card img {
  width: 250px;
  height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
}

main #teacher-about .about-teacher-area .about-teacher-card .main-info {
  margin-top: 45px;
  height: 286px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

@media (max-width: 768px) {
  main #teacher-about .about-teacher-area .about-teacher-card .main-info {
    margin-top: 18px;
    height: 169px;
  }
}

main #teacher-about .about-teacher-area .about-teacher-card .main-info .name {
  font-weight: 600;
  font-size: 17px;
  line-height: 21px;
  color: black;
}

main #teacher-about .about-teacher-area .about-teacher-card .main-info a {
  font-size: 13px;
  line-height: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  color: black;
  text-align: center;
  width: 75%;
}

main #teacher-about .about-teacher-area .about-teacher-card .main-info a:hover {
  color: #FFFFFF;
}

main #teacher-about .about-teacher-area .about-teacher-card .main-info .experience {
  padding: 1em;
  font-weight: 400;
}

main #teacher-about .about-teacher-area .about-teacher-card .main-info .experience span {
  color: #01467F;
  font-weight: 500;
}

main #teacher-about .about-teacher-area .about-teacher-card .main-info .study {
  text-align: center;
  width: 64%;
  font-weight: 400;
}

main #teacher-about .about-teacher-area .about-teacher-card .main-info .study span {
  color: #01467F;
  font-weight: 500;
}

main #teacher-about .about-teacher-area .about-teacher-card .extra-information .hover-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 12px;
}

main #teacher-about .about-teacher-area .about-teacher-card .extra-information .hover-area p {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

main #teacher-about .about-teacher-area .about-teacher-card .extra-information .hover-area p:hover {
  cursor: pointer;
}

main #teacher-about .about-teacher-area .about-teacher-card .extra-information .hover-area-content {
  display: none;
  text-align: center;
  height: 0;
}

main #teacher-about .about-teacher-area .about-teacher-card .extra-information .content-active {
  display: block;
  height: 250px;
  text-align: center;
}

main #teacher-about .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  main #teacher-about .owl-nav {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin: 20px 0px;
  }
}

main #teacher-about .owl-nav .owl-prev {
  z-index: 10 !important;
  position: absolute;
  top: 0;
  left: 4%;
  background-color: #FFCC02;
  width: 53px !important;
  height: 53px !important;
  border-radius: 50%;
  background: #FFCC02;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  main #teacher-about .owl-nav .owl-prev {
    position: static;
  }
}

main #teacher-about .owl-nav .owl-prev span {
  font-size: 40px;
}

main #teacher-about .owl-nav .owl-prev:focus {
  outline: none !important;
}

main #teacher-about .owl-nav .owl-next {
  width: 53px !important;
  height: 53px !important;
  border-radius: 50%;
  position: absolute;
  left: 92%;
  top: 0;
  background-color: #FFCC02;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  main #teacher-about .owl-nav .owl-next {
    position: static;
  }
}

main #teacher-about .owl-nav .owl-next span {
  font-size: 40px;
}

main #teacher-about .owl-nav .owl-next:focus {
  outline: none !important;
}

main #study-programs {
  position: relative;
  margin-top: 50px;
}

main #study-programs .for-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  main #study-programs .for-title {
    margin-bottom: 25px;
  }
}

main #study-programs .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main #study-programs .program-item {
  text-align: center;
  width: 100%;
  height: 100%;
  max-width: 313px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main #study-programs .program-item .imgh3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main #study-programs .program-item .imgh3 img {
  width: 70px;
  margin-bottom: 20px;
  display: block;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

main #study-programs .program-item .imgh3 h3 {
  text-align: center;
  font-weight: 700;
  font-size: 17px;
  line-height: 21px;
  color: black;
}

main #study-programs .program-item .stduy-desc {
  font-size: 13px;
  line-height: 135%;
  text-align: center;
  color: rgba(0, 0, 0, 0.35);
  margin: 10px 0;
}

main #study-programs .program-item .program-list {
  text-align: left;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-weight: 400;
}

main #study-programs .program-item .program-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
}

main #study-programs .program-item .program-list li i {
  font-size: 15px;
}

main #study-programs .swiper-button-prev {
  width: 53px !important;
  height: 53px !important;
  border-radius: 50%;
  background: #FFCC02;
  z-index: 1 !important;
  position: absolute;
  top: 60%;
  left: 9%;
}

@media (max-width: 768px) {
  main #study-programs .swiper-button-prev {
    top: 102%;
    left: 9%;
  }
}

main #study-programs .swiper-button-next {
  width: 53px !important;
  height: 53px !important;
  border-radius: 50%;
  background: #FFCC02;
  z-index: 1 !important;
  position: absolute;
  top: 60%;
  left: 90%;
}

@media (max-width: 768px) {
  main #study-programs .swiper-button-next {
    top: 102%;
    left: 75%;
  }
}

main #cost-about .title {
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  text-transform: initial;
  color-interpolation-filters: black;
}

@media (max-width: 768px) {
  main #cost-about .title {
    padding-top: 42px;
  }
}

@media only screen and (max-width: 768px) {
  main #cost-about .for-responsive {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
}

main #cost-about .cost-cards {
  width: 100%;
  max-width: 255px;
  height: 370px;
  padding: 35px 25px;
  background-color: #f1f1f1;
  border-radius: 15px;
}

main #cost-about .cost-cards .cost-item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main #cost-about .cost-cards .cost-item-wrapper h3 {
  margin-bottom: 15px;
  text-transform: initial;
  font-weight: 700;
  font-size: 15px;
  line-height: 21px;
  color: black;
}

main #cost-about .cost-cards .cost-item-wrapper ul {
  height: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0;
  font-weight: 400;
}

main #cost-about .cost-cards .cost-item-wrapper ul :nth-child(3) {
  color: #01467F;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main #cost-about .cost-cards .cost-item-wrapper ul .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: start;
  list-style: none;
  position: relative;
  line-height: 25px;
}

main #cost-about .cost-cards .cost-item-wrapper ul .list-item i {
  padding-right: 15px;
}

main #cost-about .cost-cards .cost-item-wrapper ul .list-item i::before {
  opacity: 0.5;
  color: #FFCC02;
}

main #cost-about .cost-cards .cost-item-wrapper a {
  margin-top: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3 ease-in-out;
  transition: 0.3 ease-in-out;
  color: black;
  padding: 17px 33px;
  border-radius: 29px;
  font-size: 15px;
  line-height: 18px;
}

main #cost-about .cost-cards .cost-item-wrapper a:hover {
  background-color: #FFCC02;
  color: #FFFFFF;
}

main #famous-course .title {
  text-align: center;
}

main #famous-course .course {
  height: 100%;
}

main #famous-course .course h3 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 17px;
  line-height: 21px;
  color: black;
}

@media (max-width: 768px) {
  main #famous-course .course h3 {
    text-align: center;
  }
}

main #famous-course .course .course-description {
  margin-bottom: 20px;
  padding-bottom: 0;
  font-weight: 400;
}

main #famous-course .course .bottom-wrapper {
  margin-top: auto;
}

@media (max-width: 768px) {
  main #famous-course .course .bottom-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

main #famous-course .course .bottom-wrapper p {
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  line-height: 135%;
  color: #01467F;
  margin: 20px 0;
}

main #famous-course .course .bottom-wrapper a {
  display: inline-block;
  padding: 17px 33px;
  background-color: #FFCC02;
  border-radius: 29px;
  font-weight: 500;
  font-size: 15px;
  color: black;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  line-height: 18px;
  letter-spacing: -0.035em;
  text-decoration: none;
}

main #famous-course .course .bottom-wrapper a:hover {
  color: #FFFFFF;
}

main #famous-course .famous-img-side {
  width: 100%;
  max-width: 340px;
}

@media (max-width: 768px) {
  main #famous-course .famous-img-side {
    margin-top: 40px !important;
  }
}

main #famous-course .famous-img-side img {
  display: block;
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

main #reasons .title-h2 {
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  color: black;
  text-transform: initial;
}

main #reasons .reason-post-title {
  margin: 30px auto 40px;
  line-height: 135%;
  text-align: center;
  color: rgba(0, 0, 0, 0.35);
  max-width: 485px;
  width: 100%;
}

main #reasons .reason-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main #reasons .reason-wrapper .reasons-item {
  width: 30%;
  min-width: 335px;
}

main #reasons .reason-wrapper .reasons-item .reason-item-wrapper {
  height: 100%;
  text-align: center;
}

main #reasons .reason-wrapper .reasons-item .reason-item-wrapper h3 {
  text-align: center;
  color: #01467F;
  margin-bottom: 20px;
}

main #reasons .reason-wrapper .reasons-item .reason-item-wrapper .reason-description {
  text-align: center;
}

main #reasons .button {
  margin: 15px auto 0;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 17px 33px;
  background-color: #FFCC02;
  text-decoration: none;
  border-radius: 29px;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: -0.035em;
  color: black;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

main #reasons .button:hover {
  color: #FFFFFF;
}

main #comment .review {
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
  main #comment .review {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
  }
}

main #comment .review .review-photo {
  width: 106px;
  min-width: 106px;
  height: 103px;
  margin-right: 20px;
  border-radius: 50%;
  overflow: hidden;
}

main #comment .review .review-photo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

main #comment .review .review-content .review-autor-name {
  font-weight: 700;
  font-size: 27px;
  line-height: 33px;
  color: #000;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  main #comment .review .review-content .review-autor-name {
    text-align: center;
  }
}

main #comment .review .review-content .review-author-desc {
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  main #comment .review .review-content .review-author-desc {
    text-align: center;
  }
}

main #comment .review .review-content .review-text {
  text-align: left;
}

main #form .form-wrapper {
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 2px 7px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 7px 4px rgba(0, 0, 0, 0.2);
  margin-top: 100px;
  border-radius: 10px;
  height: 272px;
  width: 100%;
  max-width: 608px;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

main #form .form-wrapper .titleh2 {
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  color: black;
  text-transform: initial;
}

main #form .form-wrapper .titleh2 span {
  color: #01467F;
}

main #form .form-wrapper a {
  font-style: italic;
  line-height: 135%;
  color: #01467F;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

main #form .form-wrapper a:hover {
  color: #FFCC02;
}

main #form .form-wrapper .write-us {
  padding-bottom: 0;
  margin: 0;
  font-weight: 400;
}

main #form .form-wrapper .socials {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

main #form .form-wrapper .socials a {
  margin-right: 15px;
}

main #form .form-wrapper .socials a i {
  font-size: 30px;
}

@media only screen and (max-width: 768px) {
  main #form .form-img {
    padding-top: 160px;
    display: none;
  }
}

main #form .form-img img {
  width: 500px;
  height: 485px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media only screen and (max-width: 768px) {
  main #form .form-img img {
    width: 340px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  main #form .form-img img {
    width: 400px;
  }
}

footer p {
  text-align: center;
}

footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

footer ul li {
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 15px;
}

@media only screen and (max-width: 600px) {
  footer ul li {
    text-align: center;
  }
}

footer ul li span {
  color: #01467F;
  font-weight: 600;
}

footer ul .for-footer-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media only screen and (max-width: 768px) {
  footer ul .for-footer-socials {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

footer ul .for-footer-socials a {
  font-size: 30px !important;
  color: #01467F;
}

footer ul .for-footer-socials a:hover {
  -webkit-filter: drop-shadow(0 0 30px #FFCC02);
          filter: drop-shadow(0 0 30px #FFCC02);
  color: #FFCC02;
}

footer ul a {
  text-decoration: none !important;
  color: black;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 17px;
}

footer ul a:hover {
  -webkit-filter: drop-shadow(0 0 30px #FFCC02);
          filter: drop-shadow(0 0 30px #FFCC02);
  color: #FFCC02;
}

footer .down-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

footer .down-side .img-side {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  footer .down-side .img-side {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 6px 48px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

footer .down-side .img-side img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

footer .footer-down-side {
  color: #bfc7cd;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 25px;
  font-weight: 400;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  font-family: 'Poppins', sans-serif;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
/*# sourceMappingURL=style.css.map */