:root {
  --color-white: 255,
      255,
      255;
  --color-white1: rgba(var(--color-white), 1);
  --color-white08: rgba(var(--color-white), 0.8);
  --color-white06: rgba(var(--color-white), 0.6);
  --color-white04: rgba(var(--color-white), 0.4);
  --color-white02: rgba(var(--color-white), 0.2);
  --color-white03: rgba(var(--color-white), 0.3);
  --color-white01: rgba(var(--color-white), 0.1);
  --color-white05: rgba(var(--color-white), 0.5);
  --color-black: 67, 70, 77;
  --color-black1: rgba(var(--color-black), 1);
  --color-black2: rgba(0, 0, 0, 1);
  --color-black3: rgba(20, 36, 68, 1);
  --color-black4: rgba(38, 50, 56, 1);
  --color-black5: rgba(57, 71, 98, 1);
  --color-black6: rgba(17, 16, 16, 1);
  --color-black7: rgba(18, 18, 18, 1);
  --color-red: 188, 17, 17;
  --color-red1: rgba(var(--color-red), 1);
  --color-grey: 122, 122, 122;
  --color-grey1: rgba(var(--color-grey), 1);
  --color-grey2: rgba(217, 217, 217, 1);
}

.wrapper {
  --height-marquee: 0px;
  --height-header: calc(118px + var(--height-marquee));
}
.wrapper.has-marquee {
  --height-marquee: 40px;
}
.wrapper.has-marquee .header-marquee {
  display: flex;
}
@media only screen and (max-width: 991px) {
  .wrapper {
    --height-header: calc(80px + var(--height-marquee));
  }
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
}
@media only screen and (max-width: 991px) {
  .section-header {
    margin-bottom: 24px;
  }
}
.section-header h2 {
  color: var(--color-black3);
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}
@media only screen and (max-width: 1199px) {
  .section-header h2 {
    font-size: 44px;
  }
}
@media only screen and (max-width: 991px) {
  .section-header h2 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 768px) {
  .section-header h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .section-header h2 {
    font-size: 25px;
  }
}
.section-header span {
  color: var(--color-white1);
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 2px 6px;
  border-radius: 10px;
  background: var(--color-red1);
  margin-left: 8px;
}
@media only screen and (max-width: 1199px) {
  .section-header span {
    font-size: 44px;
  }
}
@media only screen and (max-width: 991px) {
  .section-header span {
    font-size: 34px;
  }
}
@media only screen and (max-width: 768px) {
  .section-header span {
    font-size: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .section-header span {
    font-size: 25px;
  }
}

* {
  font-family: "GT Eesti Pro Display", sans-serif;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none !important;
}

:root {
  --width-container: 1680px;
}
@media only screen and (max-width: 1712px) {
  :root {
    --width-container: 1440px;
  }
}
@media only screen and (max-width: 1472px) {
  :root {
    --width-container: 1140px !important;
  }
}
@media only screen and (max-width: 1199px) {
  :root {
    --width-container: 992px !important;
  }
}
@media only screen and (max-width: 991px) {
  :root {
    --width-container: 100% !important;
  }
}
@media only screen and (max-width: 768px) {
  :root {
    --width-container: 100% !important;
  }
}
@media only screen and (max-width: 575px) {
  :root {
    --width-container: 100% !important;
  }
}

.networks {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.networks li a {
  border-radius: 12px;
  background: linear-gradient(180deg, #EEF0F5 0%, #DCE0E8 100%);
  display: flex;
  align-items: center;
  color: var(--color-black6);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  height: 47px;
  padding: 0 16px;
}
.networks li a i {
  font-size: 20px;
  color: var(--color-red1);
  margin-right: 8px;
}

.owl-dots {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  gap: 8px;
  z-index: 88;
}
.owl-dot {
  width: 20px;
  height: 8px;
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
  background-color: rgb(209, 215, 226) !important;
  border: none;
}
@media only screen and (max-width: 1199px) {
  .owl-dot {
    height: 7px;
  }
}
.owl-dot.active {
  width: 60px;
  background-color: var(--color-red1) !important;
}
@media only screen and (max-width: 1199px) {
  .owl-dot.active {
    width: 50px;
  }
}

button {
  outline: none !important;
}

.container {
  padding: 0px 16px;
  max-width: var(--width-container);
}

.my-d-none {
  display: none !important;
}
.my-d-flex {
  display: flex !important;
}
.my-d-block {
  display: block !important;
}

@media only screen and (max-width: 1472px) {
  .my-d-none-xl {
    display: none !important;
  }
  .my-d-flex-xl {
    display: flex !important;
  }
  .my-d-block-xl {
    display: block !important;
  }
}
@media only screen and (max-width: 1199px) {
  .my-d-none-lg {
    display: none !important;
  }
  .my-d-flex-lg {
    display: flex !important;
  }
  .my-d-block-lg {
    display: block !important;
  }
}
@media only screen and (max-width: 991px) {
  .my-d-none-md {
    display: none !important;
  }
  .my-d-flex-md {
    display: flex !important;
  }
  .my-d-block-md {
    display: block !important;
  }
}
@media only screen and (max-width: 768px) {
  .my-d-none-sm {
    display: none !important;
  }
  .my-d-flex-sm {
    display: flex !important;
  }
  .my-d-block-sm {
    display: block !important;
  }
}
.my-pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.my-pagination ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  aspect-ratio: 1/1;
  border-radius: 10px;
}
.my-pagination ul li:not(:first-child, :last-child) a {
  background: #FFF;
  box-shadow: 0px 2px 20px 0px rgba(17, 16, 16, 0.05);
  color: #394762;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.my-pagination ul li:not(:first-child, :last-child) a.active {
  color: var(--color-red1);
}
@media only screen and (max-width: 1199px) {
  .my-pagination ul li:not(:first-child, :last-child) a {
    font-size: 16px;
  }
}
.my-pagination ul li:first-child a, .my-pagination ul li:last-child a {
  color: var(--color-red1);
  font-size: 20px;
}
.my-pagination ul li:first-child a:hover, .my-pagination ul li:last-child a:hover {
  background-color: var(--color-white1);
}

.header {
  --width-container: 1840px;
  background-color: var(--color-white1);
  position: sticky;
  top: 0;
  z-index: 999;
  padding-top: var(--height-marquee);
  height: var(--height-header);
  display: flex;
  align-items: center;
  box-shadow: 0px 0px 30px 0px rgba(17, 16, 16, 0.1);
  --size-header-element: 56px;
}
@media only screen and (max-width: 1472px) {
  .header {
    --width-container: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .header {
    --width-container: 100%;
  }
}
.header-wrapper {
  display: flex;
  align-items: center;
}
.header-logo {
  display: block;
  max-width: 296px;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 1712px) {
  .header-logo {
    max-width: 240px;
  }
}
@media only screen and (max-width: 1472px) {
  .header-logo {
    max-width: 200px;
  }
}
@media only screen and (max-width: 991px) {
  .header-logo {
    max-width: 180px;
  }
}
@media only screen and (max-width: 768px) {
  .header-logo {
    max-width: 140px;
  }
}
.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.header-divider {
  width: 0;
  border-left: 1px solid rgb(217, 217, 217);
  height: 50px;
  margin: 0 30px;
}
@media only screen and (max-width: 1712px) {
  .header-divider {
    height: 48px;
    margin: 0 24px;
  }
}
@media only screen and (max-width: 1472px) {
  .header-divider {
    height: 40px;
    margin: 0 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-divider {
    height: 32px;
    margin: 0 16px;
  }
}
.header-menu {
  --height-menu: 44px;
}
@media only screen and (max-width: 1472px) {
  .header-menu._1 {
    margin-right: auto;
  }
}
@media only screen and (max-width: 768px) {
  .header-menu._1 > ul > li > ul {
    display: none;
  }
}
.header-menu._2 {
  margin: 0 auto;
}
@media only screen and (max-width: 1472px) {
  .header-menu._2 {
    display: none;
  }
}
.header-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-menu ul li a,
.header-menu ul li span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: var(--color-black1);
  cursor: pointer;
}
@media only screen and (max-width: 1712px) {
  .header-menu ul li a,
  .header-menu ul li span {
    font-size: 16px;
  }
}
.header-menu ul li a i,
.header-menu ul li span i {
  color: rgb(122, 122, 122);
}
.header-menu ul li a i.icon-burger,
.header-menu ul li span i.icon-burger {
  margin-right: 8px;
  font-size: 24px;
}
.header-menu ul li a i.icon-icon-bottom,
.header-menu ul li span i.icon-icon-bottom {
  margin-left: 4px;
  font-size: 20px;
}
.header-menu > ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media only screen and (max-width: 1712px) {
  .header-menu > ul {
    gap: 24px;
  }
}
@media only screen and (max-width: 1472px) {
  .header-menu > ul {
    gap: 16px;
  }
}
.header-menu > ul > li {
  position: relative;
  padding: 12px 0;
}
.header-menu > ul > li > a i, .header-menu > ul > li > span i {
  color: var(--color-red1) !important;
}
.header-menu > ul > li ul {
  position: absolute;
  max-width: 217px;
  min-width: 217px;
  background-color: var(--color-white1) !important;
  box-shadow: 0px 0px 30px 0px rgba(17, 16, 16, 0.1);
  border-radius: 12px;
  z-index: 1;
}
.header-menu > ul > li ul li {
  display: flex;
  align-items: center;
  position: relative;
  z-index: -1;
  padding: 0 12px;
}
.header-menu > ul > li ul li a,
.header-menu > ul > li ul li span {
  width: 100%;
  height: var(--height-menu);
}
.header-menu > ul > li ul li a:hover,
.header-menu > ul > li ul li a:hover i,
.header-menu > ul > li ul li span:hover,
.header-menu > ul > li ul li span:hover i {
  color: var(--color-red1);
}
.header-menu > ul > li ul li:not(:last-child) span,
.header-menu > ul > li ul li:not(:last-child) a {
  border-bottom: 1px solid rgb(225, 227, 232);
}
.header-menu > ul > li > ul {
  top: calc(100% - 1px);
  left: 0;
}
.header-menu > ul > li > ul::after {
  content: "";
  position: absolute;
  top: -12px;
  left: 32px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 12px 13px 12px;
  border-color: transparent transparent var(--color-white1) transparent;
  transform: rotate(0deg);
}
.header-menu > ul > li > ul > li > ul {
  left: calc(100% - 1px);
  top: 0;
}
.header-menu > ul li > ul {
  opacity: 0;
  visibility: hidden;
}
.header-menu > ul li:hover > ul {
  opacity: 1;
  visibility: visible;
}
.header-number {
  display: flex;
  flex-direction: column;
  margin-right: 24px;
}
@media only screen and (max-width: 1199px) {
  .header-number {
    display: none;
  }
}
.header-number span {
  margin-bottom: 4px;
  color: #7A7A7A;
  font-size: 18px;
  font-weight: 350;
  line-height: normal;
}
@media only screen and (max-width: 1712px) {
  .header-number span {
    font-size: 16px;
  }
}
.header-number a {
  color: var(--color-red1);
  font-size: 22px;
  line-height: normal;
  font-weight: 500;
}
@media only screen and (max-width: 1712px) {
  .header-number a {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1472px) {
  .header-number a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-number a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1712px) {
  .header {
    --size-header-element: 48px;
  }
}
@media only screen and (max-width: 1472px) {
  .header {
    --size-header-element: 40px;
  }
}
.header-icon {
  margin-right: 12px;
}
@media only screen and (max-width: 768px) {
  .header-icon {
    display: none;
  }
}
.header-icon > a,
.header-icon button {
  background: linear-gradient(180deg, #EEF0F5 0%, #DCE0E8 100%);
  width: var(--size-header-element);
  aspect-ratio: 1/1;
  border-radius: 12px;
  font-size: 22px;
  color: rgb(67, 70, 77);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
}
.header-icon > a::after,
.header-icon button::after {
  display: none;
}
@media only screen and (max-width: 768px) {
  .header-apply {
    display: none;
  }
}
.header-apply button {
  height: var(--size-header-element);
  padding: 0 16px;
  border: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  border-radius: 12px;
  background: linear-gradient(180deg, #D62626 0%, #AE0909 100%);
  color: var(--color-white1);
}
@media only screen and (max-width: 1712px) {
  .header-apply button {
    font-size: 16px;
  }
}
.header-navbar {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 22px;
  height: 18px;
  margin-left: 16px;
}
@media only screen and (max-width: 1472px) {
  .header-navbar {
    display: flex;
  }
}
@media only screen and (max-width: 575px) {
  .header-navbar {
    margin-left: unset;
  }
}
.header-navbar span {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--color-red1);
  border-radius: 5px;
}
.header-navbar span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header-navbar span:last-child {
  bottom: 0;
  top: unset;
}
.header-mobile-layer {
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header-mobile-layer.active {
  opacity: 1;
  visibility: visible;
}
.header-mobile-wrapper {
  max-width: 280px;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  transition: all 0.2s ease-in-out;
  position: fixed;
  left: 0;
  top: 0;
  background-color: var(--color-white1);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  z-index: 9999;
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.header-mobile-wrapper.active {
  transform: translateX(0);
}
.header-mobile-divider {
  border-bottom: 1px solid rgb(217, 217, 217);
  height: 0;
  margin: 24px 0 0 0;
}
.header-mobile-logo a {
  width: 100%;
  display: block;
}
.header-mobile-logo a img {
  width: 100%;
  height: auto;
}
.header-mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-mobile-menu ul li a,
.header-mobile-menu ul li button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--color-black1);
  cursor: pointer;
  padding: 0;
  outline: none;
  width: 100%;
  text-decoration: none !important;
  padding: 6px 0;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgb(217, 217, 217);
}
.header-mobile-menu ul li a i,
.header-mobile-menu ul li button i {
  font-size: 20px;
  color: #7A7A7A;
}
.header-mobile-menu ul li a:active, .header-mobile-menu ul li a:hover,
.header-mobile-menu ul li button:active,
.header-mobile-menu ul li button:hover {
  color: var(--color-red1);
}
.header-mobile-menu ul li a:active i, .header-mobile-menu ul li a:hover i,
.header-mobile-menu ul li button:active i,
.header-mobile-menu ul li button:hover i {
  color: var(--color-red1);
}
.header-mobile-menu ul li ul {
  padding-left: 16px;
}
.header-mobile-close {
  position: absolute;
  right: 16px;
  top: calc(var(--height-header) / 2);
  transform: translateY(-50%);
}
.header-mobile-close i {
  font-size: 24px;
  color: var(--color-red1);
  height: 40px;
  width: 40px;
  background-color: var(--color-white1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-mobile-lang {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-bottom: 12px;
  border-bottom: 1px solid rgb(217, 217, 217);
  margin-bottom: 8px;
}
.header-mobile-lang a {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  color: var(--color-black1);
  justify-content: center;
}
.header-mobile-lang a.active {
  color: var(--color-red1);
}
@media only screen and (max-width: 768px) {
  .header-mobile-apply {
    display: block !important;
  }
}
.header-mobile-apply a {
  display: block;
}
.header-mobile-apply a:not(:last-child) {
  margin-bottom: 8px;
}
.header-mobile-apply a:first-child button {
  background: linear-gradient(180deg, #EEF0F5 0%, #DCE0E8 100%);
  color: rgb(67, 70, 77);
}
.header-mobile-apply a button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.header-mobile-apply a button i {
  font-size: 18px;
}
.header-mobile-copy {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
.header-mobile-copy span {
  gap: 8px;
  display: flex;
}
.header-mobile-copy img {
  height: 24px;
}
.header-course {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  background-color: var(--color-white1) !important;
  box-shadow: 0px 0px 30px 0px rgba(17, 16, 16, 0.1);
  transform: translateY(-100%);
  display: none;
  transition: all 0.3s ease-in-out;
  transform: translateY(-100%);
  padding: var(--height-header) 16px 24px;
}
.header-course.active {
  transform: translateY(0);
}
@media only screen and (max-width: 768px) {
  .header-course {
    display: block;
  }
}
.header-course ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-course ul li a,
.header-course ul li button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--color-black1);
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 6px 0;
  width: 100%;
}
.header-course ul li a:hover, .header-course ul li a:active,
.header-course ul li button:hover,
.header-course ul li button:active {
  color: var(--color-red1);
}
.header-course ul li a:hover i, .header-course ul li a:active i,
.header-course ul li button:hover i,
.header-course ul li button:active i {
  color: var(--color-red1);
}
.header-course ul li:not(:last-child) a,
.header-course ul li:not(:last-child) button {
  border-bottom: 1px solid rgb(217, 217, 217);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.header-marquee {
  align-items: center;
  justify-content: center;
  position: relative;
  height: var(--height-marquee);
  background-color: #F6F7F9;
  overflow: hidden;
  max-width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  border-bottom: 1px solid #D9D9D9;
  display: none;
}
.header-marquee .marquee-track {
  display: flex;
  gap: 20px;
  white-space: nowrap;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
}
.header-marquee .marquee-items {
  flex-shrink: 0;
  display: flex;
  gap: 20px;
  justify-content: space-around;
  min-width: 100%;
  animation: marquee 100s linear infinite;
}
.header-marquee .marquee-items span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  transition: all 0.1s ease-in-out;
  font-size: 18px;
  color: rgb(255, 255, 255);
  gap: 4px;
  color: #394762;
  font-family: "GT Eesti Pro Display";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
}
@media only screen and (max-width: 768px) {
  .header-marquee .marquee-items span {
    font-size: 16px;
  }
}
.header-marquee .marquee-items span i {
  font-size: 20px;
  color: var(--color-red1);
}

.footer {
  background-color: var(--color-white1);
}
.footer-top {
  padding-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .footer-top {
    padding-bottom: 50px;
  }
}
.footer-top-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding: 50px;
  background: #F9B955;
  z-index: 1;
}
@media only screen and (max-width: 1472px) {
  .footer-top-card {
    padding: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-top-card {
    padding: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .footer-top-card {
    padding: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .footer-top-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.footer-top-card-content {
  display: flex;
  flex-direction: column;
  max-width: 30%;
}
@media only screen and (max-width: 1472px) {
  .footer-top-card-content {
    max-width: 35%;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-top-card-content {
    max-width: 40%;
  }
}
@media only screen and (max-width: 991px) {
  .footer-top-card-content {
    max-width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .footer-top-card-content {
    max-width: 65%;
  }
}
@media only screen and (max-width: 575px) {
  .footer-top-card-content {
    max-width: 100%;
  }
}
.footer-top-card-content h3 {
  color: var(--color-black6);
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1199px) {
  .footer-top-card-content h3 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-top-card-content h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 768px) {
  .footer-top-card-content h3 {
    font-size: 23px;
  }
}
.footer-top-card-content p {
  color: rgba(17, 16, 16, 0.8);
  font-size: 20px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
  margin: 0;
}
@media only screen and (max-width: 991px) {
  .footer-top-card-content p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .footer-top-card-content p {
    font-size: 16px;
  }
}
.footer-top-card-link button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white1);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  border-radius: 12px;
  background: linear-gradient(180deg, #D62626 0%, #AE0909 100%);
  border: none;
  outline: none;
  height: 55px;
  padding: 0 32px;
}
@media only screen and (max-width: 1199px) {
  .footer-top-card-link button {
    padding: 0 24px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-top-card-link button {
    line-height: 120%;
    padding: 0 16px;
    height: 45px;
    font-weight: 400;
  }
}
.footer-top-card-back {
  position: absolute;
  max-width: 500px;
  width: 100%;
  height: 500px;
  top: -60%;
  right: -7.7%;
  transform: translateY(-60%), translateX(-7.7%);
  z-index: -1;
}
@media only screen and (max-width: 1472px) {
  .footer-top-card-back {
    max-width: 430px;
    height: 430px;
    top: -41.5%;
    right: -9.1%;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-top-card-back {
    top: -44.5%;
    right: -11.3%;
  }
}
@media only screen and (max-width: 991px) {
  .footer-top-card-back {
    max-width: 350px;
    height: 350px;
    top: -48%;
    right: -13%;
  }
}
@media only screen and (max-width: 768px) {
  .footer-top-card-back {
    max-width: 280px;
    height: 280px;
    top: -40%;
    right: -12%;
  }
}
@media only screen and (max-width: 575px) {
  .footer-top-card-back {
    top: 50%;
    right: unset;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.footer-top-card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.footer-app {
  margin-bottom: 120px;
}
@media only screen and (max-width: 1199px) {
  .footer-app {
    margin-bottom: 100px;
  }
}
.footer-app-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 80px;
  border-radius: 12px;
  background: linear-gradient(90deg, #BC1111 0%, #620000 100%);
}
@media only screen and (max-width: 1472px) {
  .footer-app-card {
    padding: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-app-card {
    padding: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .footer-app-card {
    align-items: flex-start;
    flex-direction: column;
  }
}
.footer-app-card::before {
  content: "";
  position: absolute;
  bottom: -65px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  background: url("../images/fast-logo.png") no-repeat center/contain;
  max-width: 420px;
  width: 100%;
  height: 400px;
}
.footer-app-content {
  display: flex;
  align-items: center;
  gap: 32px;
  z-index: 3;
}
@media only screen and (max-width: 1472px) {
  .footer-app-content {
    max-width: 50%;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-app-content {
    gap: 24px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-app-content {
    max-width: 55%;
    gap: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .footer-app-content {
    margin-bottom: 30px;
    max-width: 100%;
  }
}
.footer-app-content-img {
  max-width: 166px;
  width: 100%;
  height: 166px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
}
@media only screen and (max-width: 768px) {
  .footer-app-content-img {
    display: none;
  }
}
.footer-app-content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}
.footer-app-content-text h3 {
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 4px;
  color: var(--color-white1);
}
@media only screen and (max-width: 1472px) {
  .footer-app-content-text h3 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-app-content-text h3 {
    font-size: 28px;
    line-height: 120%;
  }
}
@media only screen and (max-width: 991px) {
  .footer-app-content-text h3 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 768px) {
  .footer-app-content-text h3 {
    font-size: 21px;
  }
}
.footer-app-content-text p {
  font-size: 20px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
  color: var(--color-white08);
  margin-bottom: 24px;
}
@media only screen and (max-width: 1472px) {
  .footer-app-content-text p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-app-content-text p {
    font-size: 16px;
    margin-bottom: 14px;
    line-height: 125%;
  }
}
@media only screen and (max-width: 768px) {
  .footer-app-content-text p {
    margin-bottom: 10px;
  }
}
.footer-app-content-text-links {
  display: flex;
  gap: 16px;
}
.footer-app-content-text-links a {
  padding: 12px 20px;
  border-radius: 12px;
  background: #111010;
  height: 52px;
}
@media only screen and (max-width: 1199px) {
  .footer-app-content-text-links a {
    height: unset;
    padding: 10px 16px;
    border-radius: 8px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-app-content-text-links a {
    padding: 8px 12px;
  }
}
@media only screen and (max-width: 768px) {
  .footer-app-content-text-links a {
    height: 40px;
  }
}
.footer-app-content-text-links a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-fit: contain;
}
.footer-app-img {
  position: absolute;
  top: 50%;
  right: 120px;
  transform: translateY(-50%);
  max-width: 375px;
  width: 100%;
  height: 450px;
}
@media only screen and (max-width: 1712px) {
  .footer-app-img {
    right: 80px;
  }
}
@media only screen and (max-width: 1472px) {
  .footer-app-img {
    height: 400px;
    max-width: 340px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-app-img {
    max-width: 300px;
    height: 340px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-app-img {
    right: 20px;
    max-width: 260px;
    height: 300px;
  }
}
@media only screen and (max-width: 768px) {
  .footer-app-img {
    position: relative;
    top: unset;
    right: -50%;
    transform: translateX(-50%);
    height: 260px;
    max-width: 230px;
  }
}
.footer-app-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-fit: contain;
}
.footer-bottom {
  --width-container: 1840px;
}
.footer-bottom-wrapper {
  display: flex;
  flex-direction: column;
}
.footer-bottom-info {
  border-radius: 12px;
  background: #111010;
  padding: 0 40px;
}
@media only screen and (max-width: 1472px) {
  .footer-bottom-info {
    padding: 0 30px;
  }
}
.footer-bottom-info-inner {
  display: flex;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--color-white02);
}
@media only screen and (max-width: 1472px) {
  .footer-bottom-info-inner {
    padding: 30px 0;
  }
}
@media only screen and (max-width: 991px) {
  .footer-bottom-info-inner {
    flex-direction: column;
    gap: 15px;
    padding: 24px 0;
  }
}
.footer-bottom-info-inner .row {
  width: 100%;
  margin: -10px;
}
.footer-bottom-info-inner .row > div {
  padding: 10px;
}
.footer-bottom-info-inner-item {
  display: flex;
  align-items: center;
  height: 100%;
}
.footer-bottom-info-inner-item._1 {
  margin-right: 150px;
}
@media only screen and (max-width: 1472px) {
  .footer-bottom-info-inner-item._1 {
    margin-right: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-bottom-info-inner-item._1 {
    margin: 0;
  }
}
.footer-bottom-info-inner-item-img {
  max-width: 296px;
  min-width: 296px;
  width: 100%;
  height: 70px;
}
@media only screen and (max-width: 1472px) {
  .footer-bottom-info-inner-item-img {
    max-width: 250px;
    min-width: 250px;
  }
}
@media only screen and (max-width: 768px) {
  .footer-bottom-info-inner-item-img {
    max-width: 200px;
    min-width: 200px;
    height: 55px;
  }
}
.footer-bottom-info-inner-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-fit: contain;
}
.footer-bottom-info-inner-item-logo {
  display: flex;
}
.footer-bottom-info-inner-item-logo i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-white1);
  height: 50px;
  border-radius: 12px;
  background: var(--color-red1);
  padding: 0 13px;
}
@media only screen and (max-width: 768px) {
  .footer-bottom-info-inner-item-logo i {
    font-size: 18px;
    height: 45px;
    padding: 0 13.5px;
  }
}
.footer-bottom-info-inner-item-content {
  display: flex;
  flex-direction: column;
  margin-left: 12px;
}
@media only screen and (max-width: 768px) {
  .footer-bottom-info-inner-item-content {
    margin-left: 8px;
  }
}
.footer-bottom-info-inner-item-content span {
  color: var(--color-white06);
  font-size: 20px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
  margin-bottom: 4px;
}
@media only screen and (max-width: 1472px) {
  .footer-bottom-info-inner-item-content span {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-bottom-info-inner-item-content span {
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .footer-bottom-info-inner-item-content span {
    margin: 0;
    line-height: 115%;
  }
}
.footer-bottom-info-inner-item-content a {
  color: var(--color-white1);
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
@media only screen and (max-width: 1472px) {
  .footer-bottom-info-inner-item-content a {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-bottom-info-inner-item-content a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-bottom-info-inner-item-content a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .footer-bottom-info-inner-item-content a {
    font-weight: 450;
    line-height: 120%;
  }
}
.footer-bottom-info-networks {
  display: flex;
  align-items: center;
  padding: 20px 0;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .footer-bottom-info-networks {
    padding: 87px 0 20px 0;
  }
}
@media only screen and (max-width: 991px) {
  .footer-bottom-info-networks {
    flex-direction: column;
    padding: 20px 0;
    gap: 16px;
  }
}
.footer-bottom-info-networks p {
  color: var(--color-white08);
  font-size: 18px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
  margin: 0;
}
@media only screen and (max-width: 1199px) {
  .footer-bottom-info-networks p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 575px) {
  .footer-bottom-info-networks p {
    text-align: center;
  }
}
.footer-bottom-info-networks .networks {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media only screen and (max-width: 1199px) {
  .footer-bottom-info-networks .networks {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 991px) {
  .footer-bottom-info-networks .networks {
    position: unset;
    left: unset;
    top: unset;
    transform: translateX(0);
    margin: 0;
  }
}
@media only screen and (max-width: 768px) {
  .footer-bottom-info-networks .networks {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer-bottom-info-networks .networks li a {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  color: var(--color-white1);
  font-size: 18px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
  height: 47px;
  padding: 0 16px;
}
@media only screen and (max-width: 1199px) {
  .footer-bottom-info-networks .networks li a {
    font-size: 16px;
    padding: 0 12px;
  }
}
.footer-bottom-info-networks .networks li a i {
  font-size: 20px;
  color: var(--color-white1);
  margin-right: 8px;
}
.footer-bottom-info-networks span {
  display: flex;
  align-items: center;
  color: var(--color-white08);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media only screen and (max-width: 1199px) {
  .footer-bottom-info-networks span {
    margin-left: auto;
  }
}
@media only screen and (max-width: 991px) {
  .footer-bottom-info-networks span {
    margin: 0;
  }
}
.footer-bottom-info-networks span a {
  display: flex;
  align-items: center;
  margin-left: 12px;
  width: 104px;
  height: 26px;
}
.footer-bottom-info-networks span a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.footer-bottom-by {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 40px 0;
}
@media only screen and (max-width: 1472px) {
  .footer-bottom-by {
    padding: 30px 0;
  }
}
@media only screen and (max-width: 991px) {
  .footer-bottom-by {
    padding: 20px 0;
  }
}
.footer-bottom-by h1 {
  color: var(--color-black7);
  font-size: 60px;
  font-style: normal;
  font-weight: 250;
  line-height: normal;
  margin: 0;
}
@media only screen and (max-width: 1472px) {
  .footer-bottom-by h1 {
    font-size: 54px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-bottom-by h1 {
    font-size: 44px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-bottom-by h1 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 768px) {
  .footer-bottom-by h1 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 575px) {
  .footer-bottom-by h1 {
    font-size: 22px;
  }
}
.footer-bottom-by span {
  color: rgba(18, 18, 18, 0.6);
  font-size: 19px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
}
@media only screen and (max-width: 768px) {
  .footer-bottom-by span {
    font-size: 17px;
  }
}

.home {
  background: #F6F7F9;
}

.banner {
  position: relative;
  min-height: calc(100vh - var(--height-header));
}
.banner-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner-title {
  display: flex;
  align-items: center;
  padding-top: 50px;
  height: 100%;
}
@media only screen and (max-width: 1199px) {
  .banner-title {
    flex-direction: column;
    gap: 50px;
    padding-top: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .banner-title {
    padding-top: 45px;
  }
}
.banner-content {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  height: 100%;
  max-width: 55%;
}
@media only screen and (max-width: 768px) {
  .banner-content {
    max-width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .banner-content {
    text-align: center;
  }
}
.banner-content div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 1472px) {
  .banner-content div {
    gap: 6px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-content div {
    justify-content: center;
    text-align: center;
  }
}
@media only screen and (max-width: 1472px) {
  .banner-content {
    gap: 6px;
    justify-content: center;
  }
}
@media only screen and (max-width: 1199px) {
  .banner-content {
    max-width: 100%;
  }
}
.banner-content span {
  color: var(--color-white1);
  padding: 6px 8px;
  background-color: var(--color-red1);
  border-radius: 10px;
  font-size: 65px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media only screen and (max-width: 1199px) {
  .banner-content span {
    font-size: 45px;
    font-weight: 500;
    line-height: unset;
  }
}
@media only screen and (max-width: 991px) {
  .banner-content span {
    font-size: 38px;
  }
}
@media only screen and (max-width: 768px) {
  .banner-content span {
    font-size: 30px;
  }
}
.banner-content h1 {
  color: var(--color-black3);
  font-size: 65px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
@media only screen and (max-width: 1199px) {
  .banner-content h1 {
    font-size: 45px;
    font-weight: 500;
    line-height: unset;
  }
}
@media only screen and (max-width: 991px) {
  .banner-content h1 {
    font-size: 38px;
  }
}
@media only screen and (max-width: 768px) {
  .banner-content h1 {
    font-size: 30px;
  }
}
.banner-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
  max-width: 84.71%;
  width: 100%;
}
@media only screen and (max-width: 1199px) {
  .banner-info {
    padding-top: 90px;
  }
}
@media only screen and (max-width: 991px) {
  .banner-info {
    padding-top: 40px;
    max-width: 100%;
  }
}
.banner-info-line {
  width: 100%;
  height: 140px;
}
@media only screen and (max-width: 991px) {
  .banner-info-line {
    height: 110px;
  }
}
.banner-info-line svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--color-red1);
}
.banner-info .row {
  width: 100%;
  margin: 0 -12px;
}
.banner-info .row > div {
  padding: 0 12px;
}
.banner-info .row > div:nth-child(2), .banner-info .row > div:nth-child(3) {
  margin-top: 80px;
}
@media only screen and (max-width: 1199px) {
  .banner-info .row > div:nth-child(2), .banner-info .row > div:nth-child(3) {
    margin: 0;
  }
}
@media only screen and (max-width: 575px) {
  .banner-info .row {
    margin: -12px;
  }
  .banner-info .row > div {
    padding: 12px;
  }
}
.banner-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.banner-info-item-count,
.banner-info-item-count strong {
  color: var(--color-black4);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1472px) {
  .banner-info-item-count,
  .banner-info-item-count strong {
    font-size: 34px;
  }
}
@media only screen and (max-width: 991px) {
  .banner-info-item-count,
  .banner-info-item-count strong {
    font-size: 30px;
    font-weight: 600;
  }
}
.banner-info-item-logo {
  display: flex;
  margin-bottom: 12px;
}
.banner-info-item-logo i {
  font-size: 40px;
  color: var(--color-red1);
}
@media only screen and (max-width: 1472px) {
  .banner-info-item-logo i {
    font-size: 35px;
  }
}
.banner-info-item-content {
  display: flex;
  flex-direction: column;
}
.banner-info-item-content span {
  color: var(--color-black5);
  font-size: 18px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
}
.banner-video {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: flex-end;
  max-width: 200px;
  width: 100%;
  height: 260px;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  z-index: 33;
  overflow: hidden;
}
@media only screen and (max-width: 1199px) {
  .banner-video {
    bottom: 20px;
    left: 20px;
    max-width: 180px;
    height: 230px;
  }
}
@media only screen and (max-width: 768px) {
  .banner-video {
    display: none;
  }
}
.banner-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.banner-video button {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 20px;
  max-width: 28px;
  width: 100%;
  border-radius: 8px;
  background: var(--color-white1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 3px 0;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.banner-video button:hover {
  top: 6px;
  right: 6px;
  max-width: 32px;
  padding: 5px 0;
}
.banner-video.hover video {
  width: 100%;
  height: 100%;
}

.banner-pictures {
  display: flex;
  align-items: center;
  position: relative;
  height: 320px;
  margin-left: auto;
}
@media only screen and (max-width: 1199px) {
  .banner-pictures {
    margin-left: unset;
  }
}
@media only screen and (max-width: 768px) {
  .banner-pictures {
    height: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .banner-pictures {
    flex-direction: column;
    gap: 20px;
    height: 100%;
    width: 100%;
  }
}
.banner-pictures-img {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  max-width: 320px;
  min-width: 320px;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 1472px) {
  .banner-pictures-img {
    max-width: 270px;
    min-width: 270px;
  }
}
@media only screen and (max-width: 768px) {
  .banner-pictures-img {
    max-width: 220px;
    min-width: 220px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-pictures-img {
    display: none;
  }
}
.banner-pictures-img:nth-child(1) {
  position: absolute;
  top: 0;
  left: -20%;
  z-index: 5;
  max-width: 193.8px;
  min-width: 193.8px;
  width: 100%;
  height: 139.3px;
}
@media only screen and (max-width: 1472px) {
  .banner-pictures-img:nth-child(1) {
    max-width: 170px;
    min-width: 170px;
    height: 125px;
  }
}
@media only screen and (max-width: 991px) {
  .banner-pictures-img:nth-child(1) {
    top: -25%;
    left: 50%;
    transform: translate(-50%, 25%);
  }
}
@media only screen and (max-width: 768px) {
  .banner-pictures-img:nth-child(1) {
    max-width: 130px;
    min-width: 130px;
    height: 100px;
    top: -50%;
    transform: translate(-50%, 50%);
  }
}
.banner-pictures-img:nth-child(1) img {
  object-fit: contain;
}
.banner-pictures-img:nth-child(2) {
  position: relative;
  top: 30px;
  margin-right: -96px;
  z-index: 4;
}
@media only screen and (max-width: 991px) {
  .banner-pictures-img:nth-child(2) {
    top: 0;
    margin-right: 25px;
  }
}
.banner-pictures-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.banner-pictures-video {
  display: none !important;
}
@media only screen and (max-width: 575px) {
  .banner-pictures-video {
    display: flex !important;
    position: unset !important;
    max-width: 100% !important;
  }
}

.cources {
  padding: 210px 0 100px 0;
}
@media only screen and (max-width: 1199px) {
  .cources {
    padding: 140px 0 100px 0;
  }
}
@media only screen and (max-width: 991px) {
  .cources {
    padding: 80px 0;
  }
}
.cources .owl-stage-outer {
  padding: 10px 0;
  margin: -10px 0;
}
.cources-item {
  position: relative;
  display: flex;
  align-items: center;
  background-color: rgb(48, 153, 117);
  border-radius: 12px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.cources-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  margin-top: 12px;
  padding: 20px;
  background: var(--color-white1);
  height: 100%;
  transition: all 0.2s ease-in-out;
  width: 100%;
}
@media only screen and (max-width: 575px) {
  .cources-card {
    padding: 16px;
  }
}
.cources-card:hover {
  transform: translateY(10px);
}
.cources-card-content {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  z-index: 5;
}
@media only screen and (max-width: 1472px) {
  .cources-card-content {
    margin-bottom: 24px;
  }
}
.cources-card-content h3 {
  color: var(--color-black6);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 8px;
}
@media only screen and (max-width: 768px) {
  .cources-card-content h3 {
    font-size: 21px;
  }
}
.cources-card-content p {
  color: var(--color-black1);
  font-size: 18px;
  font-style: normal;
  font-weight: 350;
  margin: 0;
}
@media only screen and (max-width: 575px) {
  .cources-card-content p {
    font-size: 16px;
  }
}
.cources-card ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  z-index: 5;
  gap: 24px;
  padding: 0 0 20px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-grey2);
}
@media only screen and (max-width: 768px) {
  .cources-card ul {
    padding: 0 0 16px 0;
    margin-bottom: 16px;
  }
}
.cources-card ul li span {
  display: flex;
  align-items: center;
  color: var(--color-grey1);
  font-size: 18px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
}
.cources-card ul li span i {
  font-size: 24px;
  color: var(--color-red1);
  margin-right: 6px;
}
@media only screen and (max-width: 768px) {
  .cources-card ul li span i {
    font-size: 21px;
  }
}
.cources-card-price {
  display: flex;
  flex-direction: column;
  z-index: 5;
  margin-bottom: 20px;
}
.cources-card-price span {
  color: var(--color-black1);
  font-size: 18px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
  margin-bottom: 2px;
}
.cources-card-price h4 {
  color: var(--color-black6);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
}
.cources-card-links {
  display: flex;
  align-items: center;
  z-index: 5;
  gap: 16px;
}
.cources-card-links button {
  color: var(--color-white1);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  border: 1px solid var(--color-red1);
  outline: none;
  border-radius: 12px;
  background: linear-gradient(180deg, #D62626 0%, #AE0909 100%);
  height: 55px;
  padding: 0 16px;
}
@media only screen and (max-width: 768px) {
  .cources-card-links button {
    height: 45px;
    padding: 0 13px;
  }
}
.cources-card-links a:nth-child(2) button {
  color: var(--color-red1);
  background: var(--color-white1);
}

.info {
  background-color: var(--color-white1);
  padding: 100px 0;
  --height-item: 824px;
  --space-item: 48px;
  --space-inner-item: 24px;
}
@media only screen and (max-width: 1712px) {
  .info {
    --space-item: 40px;
    --space-inner-item: 20px;
    --height-item: 720px;
  }
}
@media only screen and (max-width: 1472px) {
  .info {
    --space-inner-item: 16px;
    --space-item: 32px;
  }
}
@media only screen and (max-width: 1199px) {
  .info {
    padding: 80px 0;
    --space-item: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .info {
    --height-item: 620px;
  }
}
.info .row._1 {
  margin: 0 calc(0px - var(--space-item) / 2);
  row-gap: var(--space-item);
}
.info .row._1 > div {
  padding: 0 calc(var(--space-item) / 2);
}
.info .row._2 {
  row-gap: var(--space-item);
  margin: 0;
}
.info .row._2 > div {
  padding: 0;
}
.info-item {
  position: relative;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
.info-item-content {
  margin-bottom: auto;
}
.info-item._1 {
  height: var(--height-item);
  background-image: url("../images/1_back.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.info-item._1 .info-item-content {
  padding: var(--space-inner-item);
  margin-bottom: var(--space-inner-item);
}
.info-item._1 .info-item-content h3 {
  color: var(--color-white1);
}
.info-item._1 .info-item-content p {
  color: var(--color-white08);
  font-size: 20px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
}
.info-item._1 .info-item-banner {
  width: calc(100% - 160px);
  height: auto;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  margin-top: 20px;
  transition: all 0.5s ease-in-out;
  margin: 0 auto;
}
@media only screen and (max-width: 1712px) {
  .info-item._1 .info-item-banner {
    width: calc(100% - 120px);
  }
}
@media only screen and (max-width: 1472px) {
  .info-item._1 .info-item-banner {
    width: calc(100% - 100px);
  }
}
@media only screen and (max-width: 1199px) {
  .info-item._1 .info-item-banner {
    width: calc(100% - 80px);
  }
}
.info-item._1 .info-item-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.info-item._1:hover .info-item-banner {
  transform: translateY(-20px);
}
.info-item._2 {
  background: #F6F7F9;
  overflow: hidden;
  height: calc(var(--height-item) / 10 * 5.6 - var(--space-item) / 2);
}
@media only screen and (max-width: 575px) {
  .info-item._2 {
    height: auto;
  }
}
.info-item._2::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  aspect-ratio: 1/1;
  transform: translateY(50%);
  background-image: url("../images/info-item-shadow.png");
  background-position: center;
  background-size: contain;
}
.info-item._2 .info-item-content {
  position: relative;
  width: 100%;
}
.info-item._2 .info-item-banner {
  width: 50%;
  margin: 0 auto -8px auto;
  transition: all 0.3s ease-in-out;
}
.info-item._2 .info-item-banner img {
  object-fit: contain;
  width: 100%;
  object-position: center;
  height: 100%;
}
.info-item._2:hover .info-item-banner {
  transform: translateY(-36px);
}
.info-item._3 {
  height: calc(var(--height-item) / 10 * 4.4 - var(--space-item) / 2);
  background-color: #EAF2F0;
}
@media only screen and (max-width: 575px) {
  .info-item._3 {
    height: auto;
    padding-bottom: 24px;
  }
}
.info-item._3 .info-item-content {
  margin-bottom: var(--space-inner-item);
}
.info-item._3 .info-item-banner {
  transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  padding-bottom: var(--space-inner-item);
  width: 100%;
}
.info-item._3 .info-item-banner-img {
  width: 150px;
  position: relative;
  --space-items: 5%;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 1712px) {
  .info-item._3 .info-item-banner-img {
    width: 120px;
  }
}
@media only screen and (max-width: 1472px) {
  .info-item._3 .info-item-banner-img {
    width: 100px;
  }
}
.info-item._3 .info-item-banner-img:nth-child(1) {
  margin-right: var(--space-items);
}
.info-item._3 .info-item-banner-img:nth-child(2) {
  margin-left: var(--space-items);
  transform: translateY(var(--space-inner-item));
}
.info-item._3 .info-item-banner-img img {
  width: 100%;
  height: auto;
}
.info-item._3 .info-item-banner-img i {
  position: absolute;
  font-size: 40px;
  transform: translateY(-32px);
  left: 0;
}
.info-item._3:hover .info-item-banner-img {
  --space-items: 0%;
}
.info-item._4 {
  background: #161828;
  height: calc(var(--height-item) / 10 * 4.4 - var(--space-item) / 2);
}
@media only screen and (max-width: 575px) {
  .info-item._4 {
    height: auto;
  }
}
.info-item._4:hover .info-item-elems i {
  opacity: 1;
}
.info-item._4:hover .info-item-elems i._2 {
  background: linear-gradient(135deg, #505AA4 0%, #262F78 100%);
  filter: drop-shadow(0px 4px 40px rgba(80, 90, 164, 0.5));
}
.info-item._4 .info-item-content h3 {
  color: var(--color-white1);
}
.info-item._4 .info-item-content p {
  color: var(--color-white08);
}
.info-item._4 .info-item-elems {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 var(--space-inner-item) var(--space-inner-item);
}
.info-item._4 .info-item-elems-line {
  flex: 1;
  height: 0px;
  border-bottom: 1px solid #505AA4;
}
.info-item._4 .info-item-elems i {
  transition: all 0.3s ease-in-out;
  opacity: 0.4;
}
.info-item._4 .info-item-elems i._1, .info-item._4 .info-item-elems i._2 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-item._4 .info-item-elems i._1 {
  width: 80px;
  aspect-ratio: 1/1;
  color: rgb(80, 90, 164);
  font-size: 40px;
  border-radius: 20px;
  border: 1px solid #48519B;
}
@media only screen and (max-width: 1712px) {
  .info-item._4 .info-item-elems i._1 {
    width: 60px;
    font-size: 32px;
  }
}
@media only screen and (max-width: 1472px) {
  .info-item._4 .info-item-elems i._1 {
    width: 48px;
    font-size: 24px;
  }
}
.info-item._4 .info-item-elems i._2 {
  width: 150px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: linear-gradient(135deg, #505AA4 0%, #262F78 100%);
  filter: drop-shadow(0px 4px 40px rgba(80, 90, 164, 0.5));
  font-size: 80px;
  color: var(--color-white1);
}
@media only screen and (max-width: 1712px) {
  .info-item._4 .info-item-elems i._2 {
    width: 120px;
    font-size: 64px;
  }
}
@media only screen and (max-width: 1472px) {
  .info-item._4 .info-item-elems i._2 {
    width: 100px;
    font-size: 48px;
  }
}
.info-item._5 {
  border-radius: 8px;
  background: #F6F7F9;
  overflow: hidden;
  height: calc(var(--height-item) / 10 * 5.6 - var(--space-item) / 2);
}
.info-item._5 .info-item-elems {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
  margin-bottom: calc(0 - var(--space-inner-item));
}
.info-item._5 .info-item-elems-col {
  width: 200px;
  flex: 0 0 auto;
}
@media only screen and (max-width: 1712px) {
  .info-item._5 .info-item-elems-col {
    width: 180px;
  }
}
@media only screen and (max-width: 1472px) {
  .info-item._5 .info-item-elems-col {
    width: 160px;
  }
}
.info-item._5 .info-item-elems-row {
  transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.info-item._5 .info-item-elems-logo {
  padding: 10px;
  border-radius: 12px;
  background-color: var(--color-white1);
  aspect-ratio: 1.5;
}
.info-item._5 .info-item-elems-logo.active {
  background-color: var(--color-red1);
}
.info-item._5 .info-item-elems-logo.active i {
  color: var(--color-white1);
  border: 1px solid var(--color-white02);
}
.info-item._5 .info-item-elems-logo i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  border-radius: 8px;
  color: rgb(142, 144, 148);
  border: 1px solid #EBEEF3;
  background: rgba(255, 255, 255, 0.05);
  height: 100%;
}
@media only screen and (max-width: 1472px) {
  .info-item._5 .info-item-elems-logo i {
    font-size: 45px;
  }
}
.info-item._5:hover .info-item-elems {
  opacity: 1;
}
.info-item._5:hover .info-item-elems-row:nth-child(1) {
  transform: translateX(42px);
}
.info-item._5:hover .info-item-elems-row:nth-child(2) {
  transform: translateX(-42px);
}
.info-item-content {
  display: flex;
  flex-direction: column;
  padding: var(--space-inner-item);
}
.info-item-content h3 {
  color: var(--color-black3);
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1472px) {
  .info-item-content h3 {
    font-size: 28px;
    line-height: 115%;
  }
}
@media only screen and (max-width: 1199px) {
  .info-item-content h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 991px) {
  .info-item-content h3 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 768px) {
  .info-item-content h3 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 575px) {
  .info-item-content h3 {
    font-size: 21px;
  }
}
.info-item-content p {
  color: var(--color-black5);
  font-size: 18px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .info-item-content p {
    font-size: 17px;
  }
}
.info-item-elems {
  transition: all 0.3s ease-in-out;
}
.info-item-elems img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.news {
  padding: 100px 0;
  background-color: var(--color-white1);
  --space-item: 24px;
}
@media only screen and (max-width: 1472px) {
  .news {
    --space-item: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .news {
    --space-item: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .news {
    padding: 80px 0;
  }
}
.news .row {
  margin: calc(0px - var(--space-item) / 2);
}
.news .row > div {
  padding: calc(var(--space-item) / 2);
}
.news .section-footer {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.news .section-footer button {
  max-width: 260px;
  width: 100%;
  color: var(--color-red1);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid #BC1111;
  outline: none;
  background-color: transparent;
  height: 55px;
}
@media only screen and (max-width: 1199px) {
  .news .section-footer button {
    max-width: 200px;
    height: 40px;
  }
}
.news-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-item);
}
.news-item {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(38, 50, 56, 0.1);
  padding: 20px;
  height: 100%;
  min-height: 252.19px;
}
@media only screen and (max-width: 1472px) {
  .news-item {
    min-height: 215.19px;
  }
}
@media only screen and (max-width: 768px) {
  .news-item {
    min-height: unset;
  }
}
@media only screen and (max-width: 1199px) {
  .news-item {
    padding: 16px;
  }
}
.news-item-img {
  margin-bottom: 20px;
  max-width: 100%;
  width: 100%;
  height: 450px;
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1472px) {
  .news-item-img {
    height: 380px;
  }
}
@media only screen and (max-width: 1199px) {
  .news-item-img {
    height: 340px;
  }
}
@media only screen and (max-width: 768px) {
  .news-item-img {
    height: 280px;
  }
}
.news-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.news-item h3,
.news-item h4 {
  color: var(--color-black6);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1712px) {
  .news-item h3,
  .news-item h4 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1472px) {
  .news-item h3,
  .news-item h4 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .news-item h3,
  .news-item h4 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1472px) {
  .news-item h3,
  .news-item h4 {
    font-size: 20px;
  }
}
.news-item h3 {
  font-size: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media only screen and (max-width: 1712px) {
  .news-item h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 1472px) {
  .news-item h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1199px) {
  .news-item h3 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 991px) {
  .news-item h3 {
    font-size: 20px;
  }
}
.news-item h4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news-item p {
  color: var(--color-black1);
  font-size: 20px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1712px) {
  .news-item p {
    font-size: 18px;
    line-height: 135%;
  }
}
@media only screen and (max-width: 1472px) {
  .news-item p {
    font-size: 16px;
    line-height: 135%;
  }
}
.news-item span {
  display: flex;
  align-items: center;
  color: var(--color-black1);
  font-size: 18px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
  margin-top: auto;
}
.news-item span i {
  font-size: 24px;
  color: var(--color-red1);
  margin-right: 6px;
}
@media only screen and (max-width: 1199px) {
  .news-item span {
    font-size: 16px;
    line-height: 130%;
  }
  .news-item span i {
    font-size: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .results {
    background: #EAECF2;
    border-radius: 12px;
  }
}
.results .section-wrapper {
  padding: 60px 0;
  border-radius: 12px;
  background: #EAECF2;
}
.results .section-body {
  padding: 0 40px;
}
@media only screen and (max-width: 991px) {
  .results .section-body {
    padding: 0;
  }
}
.results .section-footer {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.results .section-footer button {
  max-width: 260px;
  width: 100%;
  color: var(--color-red1);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid #BC1111;
  outline: none;
  background-color: transparent;
  height: 55px;
}
@media only screen and (max-width: 1199px) {
  .results .section-footer button {
    max-width: 200px;
    height: 40px;
  }
}
.results-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  row-gap: 8px;
  border-radius: 12px;
  background: #DBDEE6;
  padding: 4px;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 24px auto;
}
.results-nav button {
  border-radius: 10px;
  background-color: transparent;
  border: 1px solid transparent;
  outline: none;
  color: var(--color-black5);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  height: 51px;
  padding: 0 16px;
}
@media only screen and (max-width: 991px) {
  .results-nav button {
    height: 42px;
    padding: 0 12px;
  }
}
.results-nav button.active {
  border-radius: 10px;
  background: var(--color-white1);
  box-shadow: 0px 2px 20px 0px rgba(17, 16, 16, 0.05);
  color: var(--color-black6);
}
.results-item {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 12px;
  background: var(--color-white1);
}
@media only screen and (max-width: 991px) {
  .results-item {
    padding: 16px;
  }
}
.results-item h3 {
  color: var(--color-black6);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1472px) {
  .results-item h3 {
    font-size: 22px;
    line-height: 130%;
  }
}
@media only screen and (max-width: 991px) {
  .results-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
.results-item small {
  color: var(--color-black1);
  font-size: 18px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
  margin-bottom: 12px;
}
@media only screen and (max-width: 991px) {
  .results-item small {
    margin-bottom: 8px;
  }
}
.results-item span {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
  color: var(--color-black1);
  margin-bottom: 20px;
}
.results-item span i {
  font-size: 24px;
  color: var(--color-red1);
  margin-right: 6px;
}
@media only screen and (max-width: 991px) {
  .results-item span {
    margin-bottom: 14px;
  }
  .results-item span i {
    font-size: 21px;
  }
}
.results-item button {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 110px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid #BC1111;
  color: var(--color-red1);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  height: 55px;
  padding: 0 16px;
  background-color: transparent;
}
@media only screen and (max-width: 1472px) {
  .results-item button {
    height: 45px;
  }
}
@media only screen and (max-width: 991px) {
  .results-item button {
    max-width: 100px;
    font-size: 16px;
    padding: 0 13px;
    height: 40px;
  }
}

.banner {
  position: relative;
  min-height: calc(100vh - var(--height-header));
}
.banner-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner-title {
  display: flex;
  align-items: center;
  padding-top: 50px;
  height: 100%;
}
@media only screen and (max-width: 1199px) {
  .banner-title {
    flex-direction: column;
    gap: 50px;
    padding-top: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .banner-title {
    padding-top: 45px;
  }
}
.banner-content {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  height: 100%;
  max-width: 55%;
}
@media only screen and (max-width: 768px) {
  .banner-content {
    max-width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .banner-content {
    text-align: center;
  }
}
.banner-content div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 1472px) {
  .banner-content div {
    gap: 6px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-content div {
    justify-content: center;
    text-align: center;
  }
}
@media only screen and (max-width: 1472px) {
  .banner-content {
    gap: 6px;
    justify-content: center;
  }
}
@media only screen and (max-width: 1199px) {
  .banner-content {
    max-width: 100%;
  }
}
.banner-content span {
  color: var(--color-white1);
  padding: 6px 8px;
  background-color: var(--color-red1);
  border-radius: 10px;
  font-size: 65px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media only screen and (max-width: 1199px) {
  .banner-content span {
    font-size: 45px;
    font-weight: 500;
    line-height: unset;
  }
}
@media only screen and (max-width: 991px) {
  .banner-content span {
    font-size: 38px;
  }
}
@media only screen and (max-width: 768px) {
  .banner-content span {
    font-size: 30px;
  }
}
.banner-content h1 {
  color: var(--color-black3);
  font-size: 65px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
@media only screen and (max-width: 1199px) {
  .banner-content h1 {
    font-size: 45px;
    font-weight: 500;
    line-height: unset;
  }
}
@media only screen and (max-width: 991px) {
  .banner-content h1 {
    font-size: 38px;
  }
}
@media only screen and (max-width: 768px) {
  .banner-content h1 {
    font-size: 30px;
  }
}
.banner-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
  max-width: 84.71%;
  width: 100%;
}
@media only screen and (max-width: 1199px) {
  .banner-info {
    padding-top: 90px;
  }
}
@media only screen and (max-width: 991px) {
  .banner-info {
    padding-top: 40px;
    max-width: 100%;
  }
}
.banner-info-line {
  width: 100%;
  height: 140px;
}
@media only screen and (max-width: 991px) {
  .banner-info-line {
    height: 110px;
  }
}
.banner-info-line svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--color-red1);
}
.banner-info .row {
  width: 100%;
  margin: 0 -12px;
}
.banner-info .row > div {
  padding: 0 12px;
}
.banner-info .row > div:nth-child(2), .banner-info .row > div:nth-child(3) {
  margin-top: 80px;
}
@media only screen and (max-width: 1199px) {
  .banner-info .row > div:nth-child(2), .banner-info .row > div:nth-child(3) {
    margin: 0;
  }
}
@media only screen and (max-width: 575px) {
  .banner-info .row {
    margin: -12px;
  }
  .banner-info .row > div {
    padding: 12px;
  }
}
.banner-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.banner-info-item-count,
.banner-info-item-count strong {
  color: var(--color-black4);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1472px) {
  .banner-info-item-count,
  .banner-info-item-count strong {
    font-size: 34px;
  }
}
@media only screen and (max-width: 991px) {
  .banner-info-item-count,
  .banner-info-item-count strong {
    font-size: 30px;
    font-weight: 600;
  }
}
.banner-info-item-logo {
  display: flex;
  margin-bottom: 12px;
}
.banner-info-item-logo i {
  font-size: 40px;
  color: var(--color-red1);
}
@media only screen and (max-width: 1472px) {
  .banner-info-item-logo i {
    font-size: 35px;
  }
}
.banner-info-item-content {
  display: flex;
  flex-direction: column;
}
.banner-info-item-content span {
  color: var(--color-black5);
  font-size: 18px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
}
.banner-video {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: flex-end;
  max-width: 200px;
  width: 100%;
  height: 260px;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  z-index: 33;
  overflow: hidden;
}
@media only screen and (max-width: 1199px) {
  .banner-video {
    bottom: 20px;
    left: 20px;
    max-width: 180px;
    height: 230px;
  }
}
@media only screen and (max-width: 768px) {
  .banner-video {
    display: none;
  }
}
.banner-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.banner-video button {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 20px;
  max-width: 28px;
  width: 100%;
  border-radius: 8px;
  background: var(--color-white1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 3px 0;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.banner-video button:hover {
  top: 6px;
  right: 6px;
  max-width: 32px;
  padding: 5px 0;
}
.banner-video.hover video {
  width: 100%;
  height: 100%;
}

.banner-pictures {
  display: flex;
  align-items: center;
  position: relative;
  height: 320px;
  margin-left: auto;
}
@media only screen and (max-width: 1199px) {
  .banner-pictures {
    margin-left: unset;
  }
}
@media only screen and (max-width: 768px) {
  .banner-pictures {
    height: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .banner-pictures {
    flex-direction: column;
    gap: 20px;
    height: 100%;
    width: 100%;
  }
}
.banner-pictures-img {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  max-width: 320px;
  min-width: 320px;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 1472px) {
  .banner-pictures-img {
    max-width: 270px;
    min-width: 270px;
  }
}
@media only screen and (max-width: 768px) {
  .banner-pictures-img {
    max-width: 220px;
    min-width: 220px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-pictures-img {
    display: none;
  }
}
.banner-pictures-img:nth-child(1) {
  position: absolute;
  top: 0;
  left: -20%;
  z-index: 5;
  max-width: 193.8px;
  min-width: 193.8px;
  width: 100%;
  height: 139.3px;
}
@media only screen and (max-width: 1472px) {
  .banner-pictures-img:nth-child(1) {
    max-width: 170px;
    min-width: 170px;
    height: 125px;
  }
}
@media only screen and (max-width: 991px) {
  .banner-pictures-img:nth-child(1) {
    top: -25%;
    left: 50%;
    transform: translate(-50%, 25%);
  }
}
@media only screen and (max-width: 768px) {
  .banner-pictures-img:nth-child(1) {
    max-width: 130px;
    min-width: 130px;
    height: 100px;
    top: -50%;
    transform: translate(-50%, 50%);
  }
}
.banner-pictures-img:nth-child(1) img {
  object-fit: contain;
}
.banner-pictures-img:nth-child(2) {
  position: relative;
  top: 30px;
  margin-right: -96px;
  z-index: 4;
}
@media only screen and (max-width: 991px) {
  .banner-pictures-img:nth-child(2) {
    top: 0;
    margin-right: 25px;
  }
}
.banner-pictures-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.banner-pictures-video {
  display: none !important;
}
@media only screen and (max-width: 575px) {
  .banner-pictures-video {
    display: flex !important;
    position: unset !important;
    max-width: 100% !important;
  }
}

.reviews {
  padding: 100px 0;
}
@media only screen and (max-width: 991px) {
  .reviews {
    padding: 80px 0;
  }
}
.reviews .section-body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.reviews .section-footer {
  display: none;
}
.reviews-carousel:first-child .reviews-item-top {
  flex-direction: row-reverse;
}
.reviews-carousel:last-child .reviews-item-top {
  flex-direction: row;
}
.reviews-item {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: var(--color-white1);
  border-radius: 12px;
}
@media only screen and (max-width: 991px) {
  .reviews-item {
    padding: 16px;
  }
}
.reviews-item-top {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
@media only screen and (max-width: 991px) {
  .reviews-item-top {
    margin-bottom: 12px;
  }
}
.reviews-item-top-img {
  max-width: 67px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #E1E3E8;
}
@media only screen and (max-width: 991px) {
  .reviews-item-top-img {
    max-width: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .reviews-item-top-img {
    max-width: 50px;
  }
}
.reviews-item-top-img img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.reviews-item-top-info {
  display: flex;
  flex-direction: column;
  margin-left: 16px;
}
@media only screen and (max-width: 991px) {
  .reviews-item-top-info {
    margin-left: 12px;
  }
}
.reviews-item-top-info h3 {
  color: var(--color-black6);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 4px;
}
@media only screen and (max-width: 991px) {
  .reviews-item-top-info h3 {
    font-size: 22px;
    line-height: 130%;
  }
}
@media only screen and (max-width: 768px) {
  .reviews-item-top-info h3 {
    font-size: 20px;
  }
}
.reviews-item-top-info span {
  color: #686B71;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media only screen and (max-width: 991px) {
  .reviews-item-top-info span {
    line-height: 130%;
  }
}
.reviews-item p {
  margin: 0;
  color: var(--color-black6);
  font-size: 20px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
}
@media only screen and (max-width: 991px) {
  .reviews-item p {
    line-height: 130%;
  }
}
@media only screen and (max-width: 768px) {
  .reviews-item p {
    font-size: 17px;
  }
}
.reviews-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  border-radius: 12px;
  border: 1px solid rgba(17, 16, 16, 0.1);
  background: rgba(17, 16, 16, 0.05);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  padding: 30px;
  max-width: 440px;
  width: 100%;
  height: 150px;
}
@media only screen and (max-width: 1199px) {
  .reviews-logo {
    padding: 25px;
    max-width: 380px;
    height: 130px;
  }
}
@media only screen and (max-width: 991px) {
  .reviews-logo {
    max-width: 300px;
    height: 110px;
    padding: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .reviews-logo {
    max-width: 240px;
    height: 100px;
    padding: 16px;
  }
}
.reviews-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-fit: contain;
}
.reviews .owl-dots {
  display: none !important;
}

.teachers {
  padding: 100px 0;
  --space-item: 24px;
  max-width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 1712px) {
  .teachers {
    --space-item: 20px;
  }
}
@media only screen and (max-width: 1472px) {
  .teachers {
    --space-item: 16px;
  }
}
.teachers .row {
  margin: 0 calc(0px - var(--space-item) / 2);
  row-gap: var(--space-item);
}
.teachers .row > div {
  padding: 0 calc(var(--space-item) / 2);
}
@media only screen and (max-width: 991px) {
  .teachers {
    padding: 80px 0;
  }
}
.teachers-item {
  position: relative;
  border-radius: 12px;
  background: #FFF;
}
.teachers-item-img {
  position: relative;
  z-index: 1;
  width: 100%;
}
.teachers-item-img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(38, 50, 56, 0) 36.9%, #263238 100%);
  width: 100%;
  height: 100%;
  z-index: 0;
}
.teachers-item-img-wrapper {
  aspect-ratio: 0.93;
  width: 100%;
}
.teachers-item-img svg {
  position: absolute;
  width: 100px;
  height: 100px;
}
@media only screen and (max-width: 1712px) {
  .teachers-item-img svg {
    width: 80px;
    height: 80px;
  }
}
@media only screen and (max-width: 1472px) {
  .teachers-item-img svg {
    width: 60px;
    height: 60px;
  }
}
.teachers-item-img svg:first-child {
  top: 0;
  left: 0;
  transform: translate(-45%, -45%);
}
.teachers-item-img svg:last-child {
  top: 0;
  right: 0;
  transform: translate(45%, -45%);
}
.teachers-item-img img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.teachers-item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}
@media only screen and (max-width: 575px) {
  .teachers-item-content {
    height: auto;
  }
}
.teachers-item-content h3 {
  margin-bottom: 8px;
  color: var(--color-black3);
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}
@media only screen and (max-width: 1712px) {
  .teachers-item-content h3 {
    font-size: 28px;
  }
}
.teachers-item-content small {
  color: var(--color-black5);
  font-size: 18px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1712px) {
  .teachers-item-content small {
    font-size: 16px;
  }
}
.teachers-item-content span {
  display: inline-flex;
  align-items: center;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #E1E3E8;
  background: #F6F7F9;
  color: var(--color-black5);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1712px) {
  .teachers-item-content span {
    font-size: 16px;
  }
}
.teachers-item-content span i {
  font-size: 24px;
  color: var(--color-red1);
  margin-right: 6px;
}
.teachers-item-content p {
  color: var(--color-black5);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1472px) {
  .teachers-item-content p {
    font-size: 16px;
  }
}
.teachers-item-content button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  height: 55px;
  padding: 0 15.08px;
  border: 1px solid var(--color-red1);
  background-color: transparent;
  color: var(--color-red1);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-top: auto;
}
@media only screen and (max-width: 1472px) {
  .teachers-item-content button {
    height: 40px;
  }
}
@media only screen and (max-width: 1199px) {
  .teachers-item-content button {
    font-size: 16px;
  }
}
.teachers-item-info {
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 4;
  left: var(--space-item);
  bottom: var(--space-item);
  right: var(--space-item);
}
.teachers-item-info h4 {
  color: var(--color-white1);
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 6px;
}
@media only screen and (max-width: 1712px) {
  .teachers-item-info h4 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1472px) {
  .teachers-item-info h4 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1199px) {
  .teachers-item-info h4 {
    font-size: 20px;
  }
}
.teachers-item-info span {
  color: var(--color-white08);
  font-size: 18px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
}
@media only screen and (max-width: 1712px) {
  .teachers-item-info span {
    font-size: 16px;
  }
}
.teachers-item-active {
  padding: 44px 24px 44px 44px;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  --width-image: 267px;
}
@media only screen and (max-width: 1712px) {
  .teachers-item-active {
    padding: var(--space-item);
  }
}
@media only screen and (max-width: 1712px) {
  .teachers-item-active {
    --width-image: 240px;
  }
}
@media only screen and (max-width: 1472px) {
  .teachers-item-active {
    --width-image: 200px;
  }
}
@media only screen and (max-width: 1199px) {
  .teachers-item-active {
    --width-image: 180px;
  }
}
@media only screen and (max-width: 575px) {
  .teachers-item-active {
    --width-image: 100%;
  }
}
.teachers-item-active .teachers-item-img {
  max-width: var(--width-image);
}
.teachers-item-active .teachers-item-img::after {
  display: none;
}
.teachers-item-active .teachers-item-img-wrapper {
  aspect-ratio: 0.8;
}
.teachers-item-active .teachers-item-content {
  width: calc(100% - var(--width-image) - 48px);
  margin-left: auto;
}
@media only screen and (max-width: 1712px) {
  .teachers-item-active .teachers-item-content {
    width: calc(100% - var(--width-image) - 40px);
  }
}
@media only screen and (max-width: 1472px) {
  .teachers-item-active .teachers-item-content {
    width: calc(100% - var(--width-image) - 32px);
  }
}
@media only screen and (max-width: 1199px) {
  .teachers-item-active .teachers-item-content {
    width: calc(100% - var(--width-image) - 24px);
  }
}
@media only screen and (max-width: 991px) {
  .teachers-item-active .teachers-item-content {
    width: calc(100% - var(--width-image) - 16px);
  }
}
@media only screen and (max-width: 575px) {
  .teachers-item-active .teachers-item-content {
    width: 100%;
    margin-top: 24px;
  }
}

.page {
  background: #F6F7F9;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1199px) {
  .page {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 575px) {
  .page {
    padding-bottom: 60px;
  }
}
.page .section-header h2 {
  color: var(--color-black3);
  font-size: 80px;
  font-weight: 400;
}
@media only screen and (max-width: 1472px) {
  .page .section-header h2 {
    font-size: 65px;
  }
}
@media only screen and (max-width: 1199px) {
  .page .section-header h2 {
    font-size: 55px;
  }
}
@media only screen and (max-width: 991px) {
  .page .section-header h2 {
    font-size: 48px;
  }
}
@media only screen and (max-width: 768px) {
  .page .section-header h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .page .section-header h2 {
    font-size: 30px;
  }
}
.page-header {
  display: flex;
  flex-direction: column;
  padding-top: 40px;
}
.page-wrapper .footer {
  background-color: #F6F7F9;
}
.page-back {
  max-width: 200px;
  width: 100%;
  height: 200px;
}
@media only screen and (max-width: 1472px) {
  .page-back {
    max-width: 180px;
    height: 180px;
  }
}
@media only screen and (max-width: 1199px) {
  .page-back {
    max-width: 150px;
    height: 150px;
  }
}
@media only screen and (max-width: 991px) {
  .page-back {
    max-width: 120px;
    height: 120px;
  }
}
@media only screen and (max-width: 768px) {
  .page-back {
    max-width: 110px;
    height: 110px;
  }
}
@media only screen and (max-width: 575px) {
  .page-back {
    max-width: 80px;
    height: 80px;
  }
}
.page-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-fit: contain;
}

.teacher {
  --space-item: 24px;
}
@media only screen and (max-width: 1712px) {
  .teacher {
    --space-item: 20px;
  }
}
@media only screen and (max-width: 1472px) {
  .teacher {
    --space-item: 16px;
  }
}
.teacher .row {
  margin: calc(0px - var(--space-item) / 2);
}
.teacher .row > div {
  padding: calc(var(--space-item) / 2);
}
@media only screen and (max-width: 1472px) {
  .teacher .teachers-item-content h3 {
    font-size: 25px;
  }
  .teacher .teachers-item-content p {
    font-size: 17px;
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 1199px) {
  .teacher .teachers-item-content button {
    height: 48px;
    padding: 0 14px;
  }
}
@media only screen and (max-width: 991px) {
  .teacher .teachers-item-content h3 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 768px) {
  .teacher .teachers-item-content h3 {
    font-size: 21px;
  }
  .teacher .teachers-item-content small {
    font-size: 16px;
  }
  .teacher .teachers-item-content button {
    height: 45px;
  }
}

.price .results-langs {
  margin-bottom: 28px;
}
.price .row {
  margin: -12px;
}
.price .row > div {
  padding: 12px;
}

.about-us {
  padding-bottom: 110px;
}
@media only screen and (max-width: 1199px) {
  .about-us {
    padding-bottom: 90px;
  }
}
@media only screen and (max-width: 768px) {
  .about-us {
    padding-bottom: 70px;
  }
}
.about-us .section-header {
  margin-bottom: 24px;
}
.about-us .section-body {
  display: flex;
  flex-direction: column;
}
.about-us .section-body .row {
  margin: -12px;
}
.about-us .section-body .row > div {
  padding: 12px;
}
.about-us .section-body .row > div:nth-child(4) > div, .about-us .section-body .row > div:nth-child(5) > div {
  height: 100%;
}
.about-suptitle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  gap: 12px;
}
.about-suptitle span {
  color: var(--color-white1);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 6px 8px;
  background-color: var(--color-red1);
  border-radius: 10px;
}
@media only screen and (max-width: 1199px) {
  .about-suptitle span {
    font-size: 34px;
  }
}
@media only screen and (max-width: 991px) {
  .about-suptitle span {
    font-size: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .about-suptitle span {
    font-size: 27px;
  }
}
@media only screen and (max-width: 575px) {
  .about-suptitle span {
    font-size: 25px;
  }
}
.about-suptitle p {
  color: var(--color-black3);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
@media only screen and (max-width: 1199px) {
  .about-suptitle p {
    font-size: 34px;
  }
}
@media only screen and (max-width: 991px) {
  .about-suptitle p {
    font-size: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .about-suptitle p {
    font-size: 27px;
  }
}
@media only screen and (max-width: 575px) {
  .about-suptitle p {
    font-size: 25px;
  }
}
.about-item {
  width: 100%;
  height: 500px;
  background-size: cover;
}
@media only screen and (max-width: 1472px) {
  .about-item {
    height: 360px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-item {
    height: 300px;
  }
}
@media only screen and (max-width: 575px) {
  .about-item {
    height: auto;
  }
}
.about-item img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-item p {
  color: var(--color-black6);
  font-size: 20px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
  margin: 0;
}
.about-target {
  padding: 120px 0;
  background-color: var(--color-white1);
}
@media only screen and (max-width: 1199px) {
  .about-target {
    padding: 90px 0;
  }
}
@media only screen and (max-width: 768px) {
  .about-target {
    padding: 70px 0;
  }
}
.about-target .section-header {
  display: none;
}
.about-target .section-body {
  display: flex;
  align-items: center;
  gap: 24px;
}
.about-target .row {
  margin: 0 -12px;
}
.about-target .row > div {
  padding: 0 12px;
}
.about-target .row > div:first-child > div > div {
  background: #F8E8E8;
}
.about-target-item {
  padding: 12px;
  border-radius: 12px;
  background-color: var(--color-white1);
  height: 100%;
}
.about-target-item-card {
  display: flex;
  align-items: center;
  padding: 24px 20px 24px 40px;
  border-radius: 8px;
  background-color: rgb(234, 242, 240);
  gap: 40px;
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 1472px) {
  .about-target-item-card {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1199px) {
  .about-target-item-card {
    gap: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .about-target-item-card {
    padding: 24px;
  }
}
.about-target-item-card-content {
  display: flex;
  flex-direction: column;
}
.about-target-item-card-content h3 {
  color: var(--color-black3);
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1472px) {
  .about-target-item-card-content h3 {
    font-size: 37px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-target-item-card-content h3 {
    font-size: 33px;
    margin-bottom: 4px;
  }
}
@media only screen and (max-width: 991px) {
  .about-target-item-card-content h3 {
    font-size: 27px;
  }
}
@media only screen and (max-width: 768px) {
  .about-target-item-card-content h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 575px) {
  .about-target-item-card-content h3 {
    font-size: 21px;
  }
}
.about-target-item-card-content p {
  color: var(--color-black5);
  font-size: 18px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .about-target-item-card-content p {
    font-size: 16px;
  }
}
.about-target-item-card-logo {
  display: block;
  max-width: 200px;
  width: 100%;
  height: 200px;
  transition: all 0.2s ease-in-out;
}
@media only screen and (max-width: 1472px) {
  .about-target-item-card-logo {
    max-width: 160px;
    height: 160px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-target-item-card-logo {
    max-width: 140px;
    height: 140px;
  }
}
@media only screen and (max-width: 991px) {
  .about-target-item-card-logo {
    max-width: 120px;
    height: 120px;
  }
}
@media only screen and (max-width: 575px) {
  .about-target-item-card-logo {
    max-width: 90px;
    height: 90px;
  }
}
.about-target-item-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-fit: contain;
}
.about-target-item-card:hover .about-target-item-card-logo {
  transform: translateX(-10px);
}
.about-why {
  position: relative;
}
.about-why::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 142px;
  background-color: var(--color-white1);
  z-index: 1;
}
.about-why .section-wrapper {
  position: relative;
  z-index: 5;
}
.about-why .section-header {
  margin-bottom: 44px;
}
.about-why .section-header h2,
.about-why .section-header span {
  color: var(--color-black3);
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media only screen and (max-width: 1199px) {
  .about-why .section-header h2,
  .about-why .section-header span {
    font-size: 44px;
  }
}
@media only screen and (max-width: 991px) {
  .about-why .section-header h2,
  .about-why .section-header span {
    font-size: 34px;
  }
}
@media only screen and (max-width: 768px) {
  .about-why .section-header h2,
  .about-why .section-header span {
    font-size: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .about-why .section-header h2,
  .about-why .section-header span {
    font-size: 25px;
  }
}
.about-why .section-header span {
  color: var(--color-white1);
}
.about-why .section-body .row {
  margin: -12px;
}
.about-why .section-body .row > div {
  padding: 12px;
}
.about-why .section-body .row > div:nth-child(2) .about-card::after {
  background-color: rgb(149, 173, 190);
}
.about-why .section-body .row > div:nth-child(3) .about-card::after {
  background-color: rgb(42, 111, 219);
}
@media only screen and (max-width: 991px) {
  .about-why .section-body .row {
    margin: -18px -12px;
  }
  .about-why .section-body .row > div {
    padding: 18px 12px;
  }
}
.about-card {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 12px;
  height: 100%;
}
.about-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background-color: rgb(48, 153, 117);
  z-index: -1;
  border-radius: 12px;
  margin-top: -12px;
}
.about-info {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background-color: var(--color-white1);
  border-radius: 12px;
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .about-info {
    padding: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .about-info {
    padding: 16px;
  }
}
.about-info-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-info-logo strong {
  color: var(--color-red1);
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
@media only screen and (max-width: 1472px) {
  .about-info-logo strong {
    font-size: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-info-logo strong {
    font-size: 44px;
  }
}
@media only screen and (max-width: 991px) {
  .about-info-logo strong {
    font-size: 35px;
  }
}
@media only screen and (max-width: 768px) {
  .about-info-logo strong {
    font-size: 29px;
  }
}
@media only screen and (max-width: 575px) {
  .about-info-logo strong {
    font-size: 24px;
  }
}
.about-info-logo svg {
  width: 60px;
  height: 60px;
  font-size: 32px;
  fill: var(--color-red1);
  padding: 14px;
  border-radius: 8px;
  background: #F8E8E8;
}
@media only screen and (max-width: 1472px) {
  .about-info-logo svg {
    width: 50px;
    height: 50px;
    padding: 12px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-info-logo svg {
    height: 44px;
    width: 44px;
  }
}
@media only screen and (max-width: 768px) {
  .about-info-logo svg {
    height: 36px;
    width: 36px;
    padding: 8px;
  }
}
.about-info-content {
  display: flex;
  flex-direction: column;
}
.about-info-content h4 {
  color: var(--color-black6);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1199px) {
  .about-info-content h4 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 768px) {
  .about-info-content h4 {
    font-size: 20px;
  }
}
.about-info-content p {
  margin: 0;
  color: var(--color-black1);
  font-size: 18px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
}
@media only screen and (max-width: 768px) {
  .about-info-content p {
    font-size: 16px;
  }
}

.history .section-header {
  margin-bottom: 32px;
}
.history ul {
  display: flex;
  flex-direction: column;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 40px;
}
.history ul::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 10%;
  bottom: 60px;
  width: 2px;
  background-color: rgb(215, 215, 215);
  z-index: 1;
}
@media only screen and (max-width: 1472px) {
  .history ul::after {
    left: 14.9%;
    bottom: 120px;
  }
}
@media only screen and (max-width: 1199px) {
  .history ul::after {
    left: 17.2%;
    bottom: 140px;
  }
}
@media only screen and (max-width: 991px) {
  .history ul::after {
    left: 165px;
  }
}
@media only screen and (max-width: 768px) {
  .history ul::after {
    top: 45px;
    left: 21.5px;
    bottom: 184px;
  }
}
.history ul li {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .history ul li {
    position: relative;
    flex-direction: column;
  }
}
.history ul li:nth-child(1) .history-logo i, .history ul li:nth-child(7) .history-logo i {
  color: rgb(48, 153, 117);
}
.history ul li:nth-child(6) .history-logo i {
  color: rgb(42, 111, 219);
}
.history ul li:nth-child(8) .history-logo i {
  color: rgb(222, 150, 11);
}
.history-data {
  display: flex;
  flex-direction: column;
  text-align: end;
  min-width: 116px;
}
@media only screen and (max-width: 768px) {
  .history-data {
    text-align: unset;
    flex-direction: row;
    align-items: center;
    margin-left: 80px;
    margin-bottom: 14px;
  }
}
@media only screen and (max-width: 575px) {
  .history-data {
    margin-left: 60px;
  }
}
.history-data span {
  color: var(--color-red1);
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1472px) {
  .history-data span {
    font-size: 28px;
  }
}
@media only screen and (max-width: 1199px) {
  .history-data span {
    font-size: 25px;
  }
}
@media only screen and (max-width: 991px) {
  .history-data span {
    font-size: 23px;
  }
}
@media only screen and (max-width: 768px) {
  .history-data span {
    margin: 0;
    font-size: 20px;
  }
}
.history-data small {
  color: rgba(0, 0, 0, 0.4);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media only screen and (max-width: 1472px) {
  .history-data small {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1199px) {
  .history-data small {
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .history-data small {
    margin-left: 12px;
  }
}
.history-logo {
  display: block;
  margin-left: 20px;
  z-index: 5;
}
@media only screen and (max-width: 768px) {
  .history-logo {
    position: absolute;
    margin: 0;
    left: 0;
    top: 0;
  }
}
.history-logo i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: rgb(136, 136, 136);
  height: 60px;
  padding: 0 16px;
  border-radius: 50%;
  background: var(--color-white1);
  box-shadow: 0px 0px 20px 0px rgba(38, 50, 56, 0.1);
}
@media only screen and (max-width: 768px) {
  .history-logo i {
    height: 45px;
    padding: 0 12px;
    font-size: 21px;
  }
}
.history-content {
  display: flex;
  flex-direction: column;
  margin-left: 32px;
}
@media only screen and (max-width: 991px) {
  .history-content {
    margin-left: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .history-content {
    margin-left: 80px;
  }
}
@media only screen and (max-width: 575px) {
  .history-content {
    margin-left: 60px;
  }
}
.history-content h4 {
  color: var(--color-black2);
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1472px) {
  .history-content h4 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 1199px) {
  .history-content h4 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 991px) {
  .history-content h4 {
    font-size: 23px;
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 768px) {
  .history-content h4 {
    font-size: 20px;
    margin-bottom: 4px;
  }
}
.history-content p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
  margin: 0;
}
@media only screen and (max-width: 1472px) {
  .history-content p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1199px) {
  .history-content p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 575px) {
  .history-content p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
  }
}

.level .section-header {
  display: none;
}
.level .section-body {
  display: flex;
  flex-direction: column;
  padding-top: 40px;
}
.level-info {
  display: flex;
  align-items: flex-start;
  position: relative;
  --width-card: 382px;
  --padding-wrapper: 40px;
}
@media only screen and (max-width: 1472px) {
  .level-info {
    --width-card: 320px;
    --padding-wrapper: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .level-info {
    --padding-wrapper: 24px;
  }
}
@media only screen and (max-width: 575px) {
  .level-info {
    --width-card: 300px;
  }
}
.level-info-left {
  flex: 1;
}
.level-info-header {
  display: flex;
  flex-direction: column;
  padding: var(--padding-wrapper);
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .level-info-header {
    border-radius: 12px;
    background: #DBDEE6;
    margin: 0;
  }
}
.level-info-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: calc(100% + var(--width-card) + var(--padding-wrapper));
  border-radius: 12px;
  background: #DBDEE6;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .level-info-header::before {
    display: none;
  }
}
.level-info-header h2 {
  color: var(--color-black3);
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 32px;
}
@media only screen and (max-width: 1472px) {
  .level-info-header h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .level-info-header h2 {
    font-size: 42px;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 991px) {
  .level-info-header h2 {
    font-size: 32px;
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .level-info-header h2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 575px) {
  .level-info-header h2 {
    font-size: 28px;
    font-weight: 500;
  }
}
.level-info-header ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 190px;
}
@media only screen and (max-width: 1472px) {
  .level-info-header ul {
    gap: 64px;
  }
}
@media only screen and (max-width: 1199px) {
  .level-info-header ul {
    gap: 42px;
  }
}
@media only screen and (max-width: 991px) {
  .level-info-header ul {
    gap: 0;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 768px) {
  .level-info-header ul {
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
  }
}
.level-info-header ul li {
  display: flex;
  flex-direction: column;
}
.level-info-header ul li span {
  display: flex;
  align-items: center;
  color: rgba(20, 36, 68, 0.7);
  font-size: 20px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
  margin-bottom: 2px;
}
.level-info-header ul li span i {
  margin-right: 6px;
  font-size: 24px;
  color: var(--color-red1);
}
@media only screen and (max-width: 1472px) {
  .level-info-header ul li span {
    font-size: 18px;
  }
  .level-info-header ul li span i {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1199px) {
  .level-info-header ul li span {
    font-size: 16px;
  }
  .level-info-header ul li span i {
    font-size: 20px;
  }
}
.level-info-header ul li p {
  margin: 0;
  color: var(--color-black3);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media only screen and (max-width: 1472px) {
  .level-info-header ul li p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .level-info-header ul li p {
    font-size: 17px;
  }
}
.level-info-content {
  display: flex;
  flex-direction: column;
  padding-right: 40px;
}
@media only screen and (max-width: 1472px) {
  .level-info-content {
    padding-right: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .level-info-content {
    margin-top: 450px;
  }
}
@media only screen and (max-width: 575px) {
  .level-info-content {
    margin-top: 500px;
  }
}
.level-info-content h4 {
  color: var(--color-black6);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1199px) {
  .level-info-content h4 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 991px) {
  .level-info-content h4 {
    font-size: 20px;
  }
}
.level-info-content p {
  margin: 0;
  color: var(--color-black1);
  font-size: 18px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
}
@media only screen and (max-width: 1199px) {
  .level-info-content p {
    font-size: 17px;
  }
}
.level-info-card {
  display: flex;
  flex-direction: column;
  max-width: var(--width-card);
  width: 100%;
  background-color: var(--color-white1);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0px 0px 20px 0px rgba(38, 50, 56, 0.1);
  position: relative;
  z-index: 2;
  margin-right: var(--padding-wrapper);
  margin-top: var(--padding-wrapper);
}
@media only screen and (max-width: 991px) {
  .level-info-card {
    position: absolute;
    top: 17.5%;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }
}
@media only screen and (max-width: 768px) {
  .level-info-card {
    top: 17%;
  }
}
@media only screen and (max-width: 575px) {
  .level-info-card {
    top: 24%;
  }
}
.level-info-card h3 {
  color: var(--color-black3);
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1472px) {
  .level-info-card h3 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 1199px) {
  .level-info-card h3 {
    font-size: 28px;
    margin-bottom: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .level-info-card h3 {
    font-size: 24px;
  }
}
.level-info-card button {
  border-radius: 12px;
  background: #235347;
  border: 1px solid transparent;
  outline: none;
  color: var(--color-white1);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  height: 55px;
  padding: 14px 0;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1199px) {
  .level-info-card button {
    height: 48px;
    padding: 10px 0;
    margin-bottom: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .level-info-card button {
    height: 45px;
    padding: 8px 0;
  }
}
.level-info-card ul {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  gap: 16px;
}
.level-info-card ul li {
  display: flex;
  align-items: center;
}
.level-info-card ul li span {
  display: flex;
  align-items: center;
  color: var(--color-black3);
  font-size: 20px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
}
@media only screen and (max-width: 1472px) {
  .level-info-card ul li span {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1199px) {
  .level-info-card ul li span {
    font-size: 16px;
  }
}
.level-info-card ul li span i {
  font-size: 24px;
  color: rgba(20, 36, 68, 0.6);
  margin-right: 6px;
}
@media only screen and (max-width: 1472px) {
  .level-info-card ul li span i {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1199px) {
  .level-info-card ul li span i {
    font-size: 20px;
  }
}
.level-info-card ul li > i {
  flex: 1;
  height: 1px;
  border: 1px dashed rgba(20, 36, 68, 0.4);
  margin: 0 10px;
}
.level-info-card ul li small {
  display: flex;
  align-items: center;
  color: var(--color-black3);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media only screen and (max-width: 1472px) {
  .level-info-card ul li small {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1199px) {
  .level-info-card ul li small {
    font-size: 16px;
  }
}

.teachers-info .section-wrapper {
  padding-top: 168px;
}
@media only screen and (max-width: 991px) {
  .teachers-info .section-wrapper {
    padding-top: 135px;
  }
}
@media only screen and (max-width: 575px) {
  .teachers-info .section-wrapper {
    padding-top: 100px;
  }
}
.teachers-info .section-header {
  display: none;
}
.teachers-info .section-body .row {
  margin: -12px;
}
.teachers-info .section-body .row > div {
  padding: 12px;
}
.teachers-info-card {
  background-color: var(--color-white1);
  padding: 40px;
  border-radius: 12px;
}
@media only screen and (max-width: 1712px) {
  .teachers-info-card {
    padding: 32px;
  }
}
@media only screen and (max-width: 1472px) {
  .teachers-info-card {
    padding: 24px;
  }
}
@media only screen and (max-width: 1199px) {
  .teachers-info-card {
    padding: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .teachers-info-card {
    padding: 16px;
  }
}
@media only screen and (max-width: 1199px) {
  .teachers-info-card {
    height: 100%;
  }
}
.teachers-info-logo {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 991px) {
  .teachers-info-logo {
    position: relative;
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 575px) {
  .teachers-info-logo {
    padding-bottom: 80px;
  }
}
.teachers-info-logo-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
@media only screen and (max-width: 991px) {
  .teachers-info-logo-top {
    flex-direction: column;
    justify-content: unset;
    align-items: center;
  }
}
.teachers-info-logo-top-img:nth-child(1) {
  margin-top: -160px;
  border-radius: 50%;
  overflow: hidden;
  max-width: 240px;
  width: 100%;
  height: 240px;
}
@media only screen and (max-width: 1472px) {
  .teachers-info-logo-top-img:nth-child(1) {
    height: 190px;
    max-width: 190px;
    margin-top: -95px;
  }
}
@media only screen and (max-width: 1199px) {
  .teachers-info-logo-top-img:nth-child(1) {
    height: 165px;
    max-width: 165px;
    margin-top: -82.5px;
  }
}
@media only screen and (max-width: 575px) {
  .teachers-info-logo-top-img:nth-child(1) {
    height: 130px;
    max-width: 130px;
    margin-top: -65px;
  }
}
.teachers-info-logo-top-img:nth-child(2) {
  max-width: 345px;
  width: 100%;
  height: 80px;
}
@media only screen and (max-width: 1472px) {
  .teachers-info-logo-top-img:nth-child(2) {
    max-width: 200px;
  }
}
@media only screen and (max-width: 1199px) {
  .teachers-info-logo-top-img:nth-child(2) {
    max-width: 180px;
  }
}
@media only screen and (max-width: 991px) {
  .teachers-info-logo-top-img:nth-child(2) {
    position: absolute;
    bottom: 25px;
  }
}
@media only screen and (max-width: 575px) {
  .teachers-info-logo-top-img:nth-child(2) {
    max-width: 150px;
    height: 60px;
  }
}
.teachers-info-logo-top-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-position: center top;
}
.teachers-info-logo-content {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 991px) {
  .teachers-info-logo-content {
    align-items: center;
    padding-bottom: 20px;
  }
}
.teachers-info-logo-content h3 {
  color: var(--color-black3);
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1472px) {
  .teachers-info-logo-content h3 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 1199px) {
  .teachers-info-logo-content h3 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .teachers-info-logo-content h3 {
    font-size: 26px;
  }
}
.teachers-info-logo-content span {
  color: var(--color-black5);
  font-size: 20px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
}
@media only screen and (max-width: 1199px) {
  .teachers-info-logo-content span {
    font-size: 18px;
  }
}
.teachers-info-contact {
  height: 100%;
}
.teachers-info-contact-top {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1199px) {
  .teachers-info-contact-top {
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 575px) {
  .teachers-info-contact-top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 10px;
  }
}
.teachers-info-contact-top-item {
  display: flex;
  flex-direction: column;
}
.teachers-info-contact-top-item:last-child {
  margin: 0 auto;
}
@media only screen and (max-width: 575px) {
  .teachers-info-contact-top-item:last-child {
    margin: 0;
  }
}
.teachers-info-contact-top-item span {
  color: rgba(17, 16, 16, 0.6);
  font-size: 20px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
  margin-bottom: 4px;
}
@media only screen and (max-width: 1199px) {
  .teachers-info-contact-top-item span {
    font-size: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .teachers-info-contact-top-item span {
    font-size: 16px;
  }
}
.teachers-info-contact-top-item h5 {
  color: var(--color-black6);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin: 0;
}
.teachers-info-contact-networks {
  display: flex;
  flex-direction: column;
}
.teachers-info-contact-networks span {
  color: rgba(17, 16, 16, 0.6);
  font-size: 20px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1199px) {
  .teachers-info-contact-networks span {
    font-size: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .teachers-info-contact-networks span {
    line-height: 120%;
  }
}
.teachers-info-contact-networks ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 8px;
}
@media only screen and (max-width: 1199px) {
  .teachers-info-contact-networks ul {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 768px) {
  .teachers-info-contact-networks ul {
    gap: 20px;
  }
}
.teachers-info-contact-networks ul li {
  position: relative;
  padding-right: 8px;
}
@media only screen and (max-width: 768px) {
  .teachers-info-contact-networks ul li {
    padding: 0;
  }
}
.teachers-info-contact-networks ul li:last-child {
  padding: 0;
}
.teachers-info-contact-networks ul li:last-child::after {
  display: none;
}
.teachers-info-contact-networks ul li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 6px;
  bottom: 4px;
  width: 2px;
  background-color: rgb(225, 227, 232);
}
@media only screen and (max-width: 768px) {
  .teachers-info-contact-networks ul li::after {
    display: none;
  }
}
.teachers-info-contact-networks ul li a {
  display: flex;
  align-items: center;
  color: var(--color-black6);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.teachers-info-contact-networks ul li a i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--color-red1);
}
.teachers-info-content p {
  color: var(--color-black6);
  font-size: 20px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
}
@media only screen and (max-width: 575px) {
  .teachers-info-content p {
    font-size: 18px;
  }
}
.teachers-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media only screen and (max-width: 1199px) {
  .teachers-info-wrapper {
    height: unset;
  }
}
.teachers-info-item {
  display: flex;
  flex-direction: column;
}
.teachers-info-item span {
  color: var(--color-black6);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 12px;
}
.teachers-info-item-inner {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}
.teachers-info-item-inner::before, .teachers-info-item-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  width: 16px;
  height: 16px;
  background-color: var(--color-red1);
  border-radius: 50%;
}
.teachers-info-item-inner::after {
  right: 0;
  left: unset;
  background-color: rgb(225, 227, 232);
}
.teachers-info-item-inner-active {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 1;
  height: 2px;
  background-color: rgb(225, 227, 232);
}
.teachers-info-item-inner-active::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 2;
  height: 4px;
  background-color: var(--color-red1);
  width: var(--loader-percentage);
}
.teachers-info-item-inner-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 48px;
  height: 48px;
  padding: 0 9px;
  z-index: 4;
  color: var(--color-white1);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  border-radius: 12px;
  background: #235347;
  transform: translateX(-50%);
  left: var(--loader-percentage);
}

.contact-title .section-header {
  margin-bottom: 24px;
}
.contact-location {
  width: 100%;
  height: 500px;
}
@media only screen and (max-width: 1472px) {
  .contact-location {
    height: 450px;
  }
}
@media only screen and (max-width: 991px) {
  .contact-location {
    height: 400px;
  }
}
@media only screen and (max-width: 768px) {
  .contact-location {
    height: 370px;
  }
}
@media only screen and (max-width: 575px) {
  .contact-location {
    height: 330px;
  }
}
.contact-location iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.contact-inner {
  margin-top: -120px;
}
@media only screen and (max-width: 991px) {
  .contact-inner {
    margin: 0;
    padding-top: 70px;
  }
}
.contact-inner .section-header {
  display: none;
}
.contact-inner .section-body .row {
  margin: -12px;
}
.contact-inner .section-body .row > div {
  padding: 12px;
}
.contact-inner-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  height: 100%;
  border-radius: 12px;
  background: var(--color-white1);
  box-shadow: 0px 2px 30px 0px rgba(17, 16, 16, 0.05);
}
.contact-inner-card h3 {
  color: var(--color-black3);
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1199px) {
  .contact-inner-card h3 {
    font-size: 29px;
  }
}
@media only screen and (max-width: 991px) {
  .contact-inner-card h3 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 575px) {
  .contact-inner-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 1199px) {
  .contact-inner-info .row {
    padding-bottom: 25px;
  }
}
.contact-inner-info-item {
  display: flex;
  flex-direction: column;
}
.contact-inner-info-item label {
  color: var(--color-black3);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 4px;
}
@media only screen and (max-width: 991px) {
  .contact-inner-info-item label {
    font-size: 16px;
    line-height: 130%;
  }
}
.contact-inner-info-item a {
  color: var(--color-red1);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media only screen and (max-width: 1199px) {
  .contact-inner-info-item a {
    font-size: 19px;
  }
}
.contact-inner-info-networks {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}
.contact-inner-info-networks label {
  color: var(--color-black3);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media only screen and (max-width: 991px) {
  .contact-inner-info-networks label {
    font-size: 16px;
    line-height: 130%;
  }
}
.contact-inner-info-networks ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-inner-info-networks ul li a {
  display: block;
  color: var(--color-red1);
  font-size: 24px;
}
@media only screen and (max-width: 991px) {
  .contact-inner-info-networks ul li a {
    font-size: 22px;
  }
}
@media only screen and (max-width: 575px) {
  .contact-inner-info-networks ul li a {
    font-size: 20px;
  }
}
.contact-inner-message .row {
  margin: -8px !important;
}
.contact-inner-message .row > div {
  padding: 8px !important;
}
.contact-inner-message-item {
  display: flex;
  flex-direction: column;
}
.contact-inner-message-item label {
  color: var(--color-black3);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 4px;
}
@media only screen and (max-width: 991px) {
  .contact-inner-message-item label {
    font-size: 16px;
    line-height: 130%;
  }
}
.contact-inner-message-item input {
  border-radius: 12px;
  background: #EAEDF2;
  height: 55px;
  padding: 14px 16px;
  outline: none;
  color: var(--color-black3);
  border: 1px solid transparent;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media only screen and (max-width: 991px) {
  .contact-inner-message-item input {
    height: 48px;
  }
}
@media only screen and (max-width: 575px) {
  .contact-inner-message-item input {
    height: 45px;
  }
}
.contact-inner-message-item input::placeholder {
  color: var(--color-black3);
  border: 1px solid transparent;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.6;
}
.contact-inner-message-item textarea {
  border-radius: 12px;
  background: #EAEDF2;
  padding: 14px 16px;
  height: 120px;
  border: 1px solid transparent;
  outline: none;
  color: var(--color-black3);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media only screen and (max-width: 991px) {
  .contact-inner-message-item textarea {
    height: 100px;
  }
}
.contact-inner-message-item textarea::placeholder {
  color: var(--color-black3);
  border: 1px solid transparent;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.4;
}
.contact-inner-message-send {
  margin-top: 24px;
}
@media only screen and (max-width: 768px) {
  .contact-inner-message-send {
    margin-top: 18px;
  }
}
.contact-inner-message-send button {
  display: inline-flex;
  border-radius: 12px;
  background: linear-gradient(180deg, #D62626 0%, #AE0909 100%);
  padding: 14px 32px;
  color: var(--color-white1);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  border: none;
  outline: none;
  height: 55px;
}
@media only screen and (max-width: 991px) {
  .contact-inner-message-send button {
    height: 48px;
    padding: 10px 26px;
  }
}
@media only screen and (max-width: 575px) {
  .contact-inner-message-send button {
    height: 45px;
    padding: 10px 20px;
    font-size: 16px;
  }
}

.page-tidings,
.tidings {
  --space-item: 24px;
}
@media only screen and (max-width: 1712px) {
  .page-tidings,
  .tidings {
    --space-item: 20px;
  }
}
@media only screen and (max-width: 1472px) {
  .page-tidings,
  .tidings {
    --space-item: 16px;
  }
}
.page-tidings .row,
.tidings .row {
  row-gap: var(--space-item);
  margin: 0 calc(0px - var(--space-item) / 2);
}
.page-tidings .row > div,
.tidings .row > div {
  padding: 0 calc(var(--space-item) / 2);
}

.tidings .section-header {
  margin-bottom: 24px;
}
.tidings .section-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  gap: 8px;
}
.tidings .section-footer button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0px 2px 20px 0px rgba(17, 16, 16, 0.05);
  font-size: 20px;
  color: var(--color-red1);
  height: 51px;
  padding: 0 14.5px;
  background-color: transparent !important;
  border: 1px solid transparent;
}
.tidings-item {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  background: var(--color-white1);
  box-shadow: 0px 0px 20px 0px rgba(38, 50, 56, 0.1);
  padding: 20px;
  height: 100%;
}
@media only screen and (max-width: 1199px) {
  .tidings-item {
    padding: 16px;
  }
}
.tidings-item-img {
  max-width: 100%;
  width: 100%;
  margin-bottom: 16px;
}
.tidings-item-img-wrapper {
  aspect-ratio: 1.44;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  border-radius: 8px;
}
.tidings-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.tidings-item-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tidings-item-content h4 {
  color: var(--color-black6);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media only screen and (max-width: 1712px) {
  .tidings-item-content h4 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1472px) {
  .tidings-item-content h4 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .tidings-item-content h4 {
    font-size: 18px;
  }
}
.tidings-item-content p {
  color: var(--color-black1);
  font-size: 20px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media only screen and (max-width: 1712px) {
  .tidings-item-content p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1472px) {
  .tidings-item-content p {
    font-size: 16px;
  }
}
.tidings-item-content span {
  display: flex;
  align-items: center;
  color: var(--color-black1);
  font-size: 18px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
  margin-top: auto;
}
@media only screen and (max-width: 1472px) {
  .tidings-item-content span {
    font-size: 16px;
  }
}
.tidings-item-content span i {
  font-size: 24px;
  color: var(--color-red1);
  margin-right: 6px;
}
@media only screen and (max-width: 1472px) {
  .tidings-item-content span i {
    font-size: 20px;
  }
}
.tidings .owl-dots {
  display: none !important;
}
.tidings-inner-news .row {
  margin: -12px;
}
.tidings-inner-news .row > div {
  padding: 12px;
}
.tidings-inner-news .tidings-item {
  height: 100%;
}
.tidings-inner-news .tidings-item-content {
  flex: 1;
}
.tidings-inner-news .tidings-item-content span {
  margin-top: auto;
}
@media only screen and (max-width: 1472px) {
  .tidings-inner-news .tidings-item-content h4 {
    font-size: 22px;
  }
  .tidings-inner-news .tidings-item-content p {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .tidings-inner-news .tidings-item-content span i {
    font-size: 22px;
  }
}
@media only screen and (max-width: 991px) {
  .tidings-inner-news .tidings-item-content h4 {
    font-size: 20px;
  }
  .tidings-inner-news .tidings-item-content p {
    font-size: 17px;
    margin-bottom: 12px;
  }
  .tidings-inner-news .tidings-item-content span {
    font-size: 16px;
  }
  .tidings-inner-news .tidings-item-content span i {
    font-size: 20px;
  }
}
.tidings-inner-content {
  display: flex;
  flex-direction: column;
  padding-bottom: 120px;
}
@media only screen and (max-width: 1199px) {
  .tidings-inner-content {
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .tidings-inner-content {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 575px) {
  .tidings-inner-content {
    padding-bottom: 60px;
  }
}
.tidings-inner-content .container {
  --width-container: 1352px;
}
@media only screen and (max-width: 1472px) {
  .tidings-inner-content .container {
    --width-container: 1140px !important;
  }
}
@media only screen and (max-width: 1199px) {
  .tidings-inner-content .container {
    --width-container: 992px !important;
  }
}
@media only screen and (max-width: 991px) {
  .tidings-inner-content .container {
    --width-container: 100% !important;
  }
}
@media only screen and (max-width: 768px) {
  .tidings-inner-content .container {
    --width-container: 100% !important;
  }
}
@media only screen and (max-width: 575px) {
  .tidings-inner-content .container {
    --width-container: 100% !important;
  }
}
.tidings-inner-content ul {
  list-style: none;
  margin-bottom: 16px;
  padding: 0;
  display: flex;
  align-items: center;
}
.tidings-inner-content ul li {
  margin-left: 24px;
}
.tidings-inner-content ul li:first-child {
  margin: 0;
}
.tidings-inner-content ul li:last-child {
  margin-left: auto;
}
.tidings-inner-content ul li span {
  display: flex;
  align-items: center;
  color: var(--color-black1);
  font-size: 18px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
}
@media only screen and (max-width: 991px) {
  .tidings-inner-content ul li span {
    font-size: 17px;
  }
}
.tidings-inner-content ul li span i {
  font-size: 24px;
  color: var(--color-red1);
  margin-right: 6px;
}
@media only screen and (max-width: 991px) {
  .tidings-inner-content ul li span i {
    font-size: 21px;
  }
}
.tidings-inner-content h3 {
  color: var(--color-black6);
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1472px) {
  .tidings-inner-content h3 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 1199px) {
  .tidings-inner-content h3 {
    font-size: 38px;
  }
}
@media only screen and (max-width: 991px) {
  .tidings-inner-content h3 {
    font-size: 32px;
    margin-bottom: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .tidings-inner-content h3 {
    font-size: 25px;
  }
}
.tidings-inner-content-img {
  height: 600px;
  max-width: 100%;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 1472px) {
  .tidings-inner-content-img {
    height: 530px;
  }
}
@media only screen and (max-width: 1199px) {
  .tidings-inner-content-img {
    height: 480px;
  }
}
@media only screen and (max-width: 991px) {
  .tidings-inner-content-img {
    height: 420px;
    margin-bottom: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .tidings-inner-content-img {
    height: 360px;
  }
}
@media only screen and (max-width: 575px) {
  .tidings-inner-content-img {
    height: 300px;
  }
}
.tidings-inner-content-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.tidings-inner-content p {
  color: var(--color-black6);
  font-size: 20px;
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
  margin: 0;
}
@media only screen and (max-width: 1199px) {
  .tidings-inner-content p {
    font-size: 18px;
  }
}

/***************************************************
 * Generated by SVG Artista on 5/10/2024, 4:28:46 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/
@-webkit-keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 1436.6317138672px;
    stroke-dasharray: 1436.6317138672px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1436.6317138672px;
  }
}
@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 1436.6317138672px;
    stroke-dasharray: 1436.6317138672px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1436.6317138672px;
  }
}
.svg-elem-1 {
  -webkit-animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both;
  animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both;
}