@charset "UTF-8";
@import url("../fonts/fonts.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: "Raleway", sans-serif;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-thumb {
  background: #186d65;
}

*::-webkit-scrollbar-thumb:hover {
  background: #13544e;
}

*::-webkit-scrollbar-track {
  background: #fff;
}

html {
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 16px;
}

[data-mark=sm] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

[data-mark=lg] {
  display: none;
}

.menu {
  padding: 25px 0;
  background: #fff;
  z-index: 10;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
  position: relative;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.menu .logo {
  text-decoration: none;
  color: #13544e;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 10px;
  order: 0;
}

.menu .logo img {
  max-width: 200px;
}

.menu-container {
  display: none;
  width: 100%;
  order: 2;
  overflow-y: auto;
}

.menu-list {
  padding: 20px 0;
  margin: 0;
  overflow-y: auto;
}

.menu-item {
  margin-bottom: 2px;
}

.menu-item-type-1,
.menu-item-dropdown {
  transition: all 0.3s ease;
}

.menu-item-dropdown {
  position: relative;
}

.menu-link {
  display: block;
  padding: 10px;
  font-size: 1.1rem;
  background-color: #eff0f2;
  text-decoration: none;
  color: #86909c;
  position: relative;
  transition: color 0.3s;
  font-weight: 500;
}

.menu-link:hover {
  color: #186d65;
}

.menu-item-type-1>.menu-link::after,
.menu-item-dropdown>.menu-link::after {
  font-family: "Font Awesome 5 Pro";
  content: "\f078";
  position: absolute;
  right: 10px;
  top: 50%;
  font-size: 1.15rem;
  transform: translate(0, -50%);
  transition: transform 0.3s ease-in;
}

.menu-item-type-1>.menu-link.rotate::after,
.menu-item-dropdown>.menu-link.rotate::after {
  transform: translate(0, -15px) rotate(180deg);
}

.menu-list-2 {
  padding: 7px 0;
  padding-inline-start: 10px;
  display: none;
}

.menu-list-2.subjects-sm-menu-list {
  height: calc(100vh - 141px);
  overflow: hidden auto;
}

.menu-item-type-2 {
  transition: height 0.3s ease-in;
  border-bottom: 1px solid #eee;
}

.menu-link-2 {
  padding: 7px;
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
  position: relative;
  text-decoration: none;
  color: #86909c;
  position: relative;
  transition: color 0.3s;
  font-weight: 600;
}

.menu-list-dropdown {
  display: none;
}

.menu-list-dropdown>.menu-item:not(:first-child)>.menu-link-2 {
  border-top: 1px solid #eee;
}

.menu-link-2:hover {
  background-color: #eff0f2;
  color: #13544e;
  /* font-weight: 700; */
}

.menu-item-type-2>.menu-link-2::after {
  font-family: "Font Awesome 5 Pro";
  content: "\f054";
  position: absolute;
  right: 10px;
  top: 50%;
  font-size: 0.9rem;
  transform: translate(0, -50%);
  transition: transform 0.3s ease-in;
}

.menu-item-type-2>.menu-link-2.rotate::after {
  transform: translate(0, -15px) rotate(180deg);
}

.menu-list-3 {
  display: none;
  padding-inline-start: 0;
  background-color: rgba(19, 84, 77, 0.1);
}

.menu-item-3 {
  border-bottom: 1px solid #eee;
}

.menu-link-3 {
  display: block;
  padding: 7px 0 7px 10px;
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
  font-weight: 500;
  color: #374453;
}

.menu-link-3:hover {
  color: #13544e;
  font-weight: 700;
  background-color: rgba(19, 84, 77, 0.2);
}

.menu-rightElems {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.75rem;
  column-gap: 0.75rem;
  padding-right: 10px;
  order: 1;
}

.menu-rightElems .main-btn {
  padding: 4px 1rem;
  border-radius: 0.3rem;
}

.menu-toggle-button {
  --menu-size: 26px;
  --menu-unit: calc(var(--menu-size) / 10);
  height: var(--menu-size);
  width: var(--menu-size);
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
  overflow: visible;
  position: relative;
  transition: 0.4s;
}

.menu-toggle-button-bar {
  width: var(--menu-size);
  height: var(--menu-unit);
  background-color: #13544e;
  display: block;
  text-align: center;
  transition: 0.4s;
  position: absolute;
  border-radius: 10px;
}

.menu-toggle-button-bar#bar1 {
  top: calc(2 * var(--menu-unit));
}

.menu-toggle-button-bar#bar2 {
  top: calc(50% - var(--menu-unit) / 2);
  left: 0;
}

.menu-toggle-button-bar#bar3 {
  bottom: calc(2 * var(--menu-unit));
}

.menu.fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 20px 0;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.menu-lg-list {
  display: none;
}

.search {
  background-color: #ededee;
  padding: 30px 15px;
  display: none;
}

.search-form {
  width: 100%;
  flex: 1;
  position: relative;
}

.search-results {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 11;
  background-color: #fff;
  padding: 1.25rem;
  border: 1px solid rgb(174, 174, 174);
  max-height: 250px;
  overflow-y: auto;
  display: none;
}

.search-result-link {
  color: rgb(108, 117, 125);
  display: block;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.search-result-link:hover {
  color: #13544e;
}

.search-form-closeBtn {
  background: transparent;
  border: none;
  color: #13544e;
  font-size: 1.5rem;
}

.search-toggleBtn {
  background: transparent;
  border: none;
  color: #13544e;
  font-size: 1.5rem;
}

#toTopBtn {
  display: none;
  width: 50px;
  height: 50px;
  text-align: center;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #13544e;
  color: white;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  font-size: 18px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

#toTopBtn.active {
  display: block;
}

.top-courses {
  width: 100%;
}

.top-courses-box {
  display: block;
  padding: 7px;
  background-color: #eff0f2;
  text-decoration: none;
  color: #374453;
}

.top-courses-box:hover {
  background-color: #d7d8dc;
}

.top-courses-image {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
  object-fit: cover;
}

.top-courses-name {
  font-size: 0.9rem;
  margin: 0;
}

.top-courses-title {
  font-size: 1.1rem;
  font-weight: 500;
}

.menu.menu-visible .menu-toggle-button-bar {
  transition: 0.4s;
}

.menu.menu-visible .menu-toggle-button-bar#bar1 {
  top: calc(50% - var(--menu-unit) / 2);
  transform: rotate(45deg);
}

.menu.menu-visible .menu-toggle-button-bar#bar2 {
  width: 0;
  left: calc(var(--menu-size) / 2);
}

.menu.menu-visible .menu-toggle-button-bar#bar3 {
  bottom: calc(50% - var(--menu-unit) / 2);
  transform: rotate(-45deg);
}

.main-title {
  font-family: 'PT Serif', serif;
  font-size: 1.5rem;
  line-height: 1.75rem;
  opacity: 1;
  color: #13544e;
  font-weight: 700;
}

.main-title i {
  font-family: 'PT Serif italic', serif;
}

.header {
  height: auto;
  min-height: 500px;
  margin-top: 30px;
}

.header-subtitle {
  font-family: 'PT Serif regular', serif;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.75rem;
  color: #13544e;
  text-align: right;
  margin: 30px 0;
  padding-right: 10px;
}

.header-description {
  font-size: 1rem;
  line-height: 1.25rem;
  margin: 1rem 0;
}

.header-videobox {
  width: 100%;
  max-height: 380px;
}

.header-videobox video {
  width: 100%;
  border-radius: 13rem 0.25rem 0.25rem 13rem;
  -o-object-fit: cover;
  object-fit: cover;
  border: 5px solid #13544e;
  -webkit-border-radius: 13rem 0.25rem 0.25rem 13rem;
  -moz-border-radius: 13rem 0.25rem 0.25rem 13rem;
  -ms-border-radius: 13rem 0.25rem 0.25rem 13rem;
  -o-border-radius: 13rem 0.25rem 0.25rem 13rem;
}

.carousel-item .main-title {
  opacity: 0;
}

.carousel-item .header-subtitle {
  opacity: 0;
}

.carousel-item .header-description {
  opacity: 0;
}

.carousel-item .main-btn {
  opacity: 0;
}

.carousel-item.active .main-title {
  animation: fadeInUp 1s both 0.6s;
}

.carousel-item.active .header-subtitle {
  animation: fadeInUp 1s both 1s;
}

.carousel-item.active .header-description {
  animation: fadeInUp 1s both 1.2s;
}

.carousel-item.active .main-btn {
  animation: fadeInDown 1s both 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.main-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.4rem;
  border: 1px solid #13544e;
  background-color: #13544e;
  color: #fff;
  font-weight: 500;
  transition: all 0.2s linear;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}

.main-btn:hover {
  background-color: transparent;
  color: #13544e;
}

.main-outline-btn {
  background-color: #fff;
  color: #13544e;
}

.main-outline-btn::after {
  content: "»";
  font-size: 1.25rem;
  transition: all 0.2s linear;
  opacity: 0;
}

.main-outline-btn:hover {
  background-color: #13544e;
  color: #fff;
}

.main-outline-btn:hover::after {
  opacity: 1;
  margin-left: 0.75rem;
}

.statistic {
  margin: 20px auto;
}

.statistic-box-value {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.75rem;
}

.statistic-box-value .counter-value {
  font-family: "Poppins", sans-serif;
}

.statistic-box-name {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1rem;
  font-weight: 600;
  color: #fd612a;
}

.courses {
  padding-top: 50px;
  margin-bottom: 70px;
}

.courses .slick-prev,
.courses .slick-next {
  width: 45px;
  height: 45px;
  top: -50px;
  left: unset;
  right: 0;
  background: #cfd4d6;
  border-radius: 50%;
  text-align: center;
  transition: all 0.2s ease-in-out;
  opacity: 0.7;
}

.courses .slick-prev:hover,
.courses .slick-next:hover {
  opacity: 1;
}

.courses .slick-prev::before,
.courses .slick-next::before {
  content: "›";
  font-size: 1.75rem;
  font-weight: 900;
}

.courses .slick-prev {
  right: 60px;
}

.courses .slick-prev::before {
  content: "‹";
}

.courses-row {
  width: 100%;
}

.courses-box {
  max-width: 600px;
  margin: 0 10px;
  border-radius: 10px;
  position: relative;
}

.courses-box:hover .courses-arrowBtn {
  background-color: #13544e;
}

.courses-box:hover .courses-arrowBtn::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.courses-box:hover .courses-arrowBtn::after {
  top: 0;
  left: 100%;
  transform: translate(200px, -200px) rotate(-45deg);
}

.courses-box:hover .courses-name {
  padding: 0 7px;
  color: #13544e;
}

.courses-box:hover .courses-image {
  transform: scale(1.1);
}

.courses-imagebox {
  width: 100%;
  max-height: 300px;
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  margin-bottom: 15px;
  clip-path: polygon(4.606% 0.587%, 4.606% 0.587%, 3.957% 0.956%, 3.345% 1.416%, 2.774% 1.96%, 2.247% 2.582%, 1.768% 3.277%, 1.342% 4.038%, 0.971% 4.86%, 0.659% 5.737%, 0.409% 6.662%, 0.227% 7.631%, 0.227% 7.631%, 0.176% 8.335%, 0.134% 9.763%, 0.099% 11.946%, 0.072% 14.917%, 0.051% 18.706%, 0.037% 23.346%, 0.03% 28.867%, 0.029% 35.301%, 0.035% 42.68%, 0.045% 51.035%, 0.113% 92.777%, 0.749% 94.636%, 0.749% 94.636%, 0.972% 95.238%, 1.222% 95.814%, 1.498% 96.362%, 1.799% 96.88%, 2.124% 97.366%, 2.471% 97.819%, 2.84% 98.238%, 3.229% 98.619%, 3.636% 98.963%, 4.061% 99.266%, 5.105% 99.951%, 40.273% 100.049%, 40.273% 100.049%, 47.134% 100.064%, 53.253% 100.069%, 58.643% 100.064%, 63.317% 100.051%, 67.287% 100.029%, 70.567% 99.997%, 73.168% 99.957%, 75.104% 99.909%, 76.387% 99.853%, 77.03% 99.788%, 77.03% 99.788%, 77.672% 99.619%, 78.291% 99.406%, 78.885% 99.149%, 79.453% 98.849%, 79.993% 98.508%, 80.504% 98.126%, 80.984% 97.703%, 81.432% 97.241%, 81.846% 96.74%, 82.225% 96.201%, 82.225% 96.201%, 82.57% 95.659%, 82.865% 95.163%, 83.121% 94.679%, 83.351% 94.17%, 83.567% 93.6%, 83.781% 92.935%, 84.004% 92.138%, 84.25% 91.174%, 84.531% 90.008%, 84.857% 88.603%, 84.857% 88.603%, 85.333% 86.669%, 85.798% 85.032%, 86.279% 83.655%, 86.799% 82.501%, 87.387% 81.534%, 88.067% 80.718%, 88.866% 80.016%, 89.809% 79.392%, 90.922% 78.81%, 92.231% 78.233%, 92.231% 78.233%, 93.686% 77.583%, 94.945% 76.913%, 96.023% 76.202%, 96.936% 75.429%, 97.699% 74.572%, 98.33% 73.612%, 98.842% 72.527%, 99.253% 71.297%, 99.578% 69.901%, 99.832% 68.319%, 99.832% 68.319%, 99.883% 67.664%, 99.925% 66.524%, 99.96% 64.872%, 99.987% 62.684%, 100.008% 59.934%, 100.022% 56.596%, 100.029% 52.644%, 100.03% 48.052%, 100.024% 42.796%, 100.014% 36.85%, 99.946% 7.337%, 99.31% 5.479%, 99.31% 5.479%, 99.087% 4.876%, 98.837% 4.3%, 98.561% 3.752%, 98.26% 3.234%, 97.935% 2.748%, 97.588% 2.295%, 97.219% 1.877%, 96.83% 1.495%, 96.423% 1.151%, 95.998% 0.848%, 94.954% 0.163%, 50.37% 0.098%, 50.37% 0.098%, 38.83% 0.081%, 29.459% 0.07%, 22.024% 0.07%, 16.291% 0.082%, 12.028% 0.11%, 9.002% 0.157%, 6.979% 0.225%, 5.728% 0.317%, 5.014% 0.437%, 4.606% 0.587%);
}

.courses-image {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease-in;
  border-radius: 10px;
}

.courses-arrowBtn {
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  right: 0;
  top: 250px;
  border-radius: 50%;
  background-color: rgba(19, 84, 78, 0.8);
}

.courses-arrowBtn::before {
  width: 50%;
  height: 30%;
  content: "";
  background-image: url("../images/arrow_btn.png");
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-200px, 200px) rotate(-45deg);
  transition: all 0.4s;
  filter: drop-shadow(0 0 #fff);
}

.courses-arrowBtn::after {
  width: 50%;
  height: 30%;
  content: "";
  background-image: url("../images/arrow_btn.png");
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: all 0.4s;
  filter: drop-shadow(0 0 #fff);
}

.courses-name {
  display: block;
  height: 48px;
  color: #09302c;
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.5rem;
  text-decoration: none;
  transition: all 0.2s linear;
  margin-bottom: 10px;
  position: relative;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.courses-author {
  font-size: 1rem;
  line-height: 1;
  text-decoration: underline;
  margin-bottom: 10px;
}

.courses-result {
  display: flex;
  align-items: center;
  -moz-column-gap: 7px;
  column-gap: 7px;
  margin-bottom: 20px;
}

.courses-rating {
  font-family: "Poppins", sans-serif;
  color: #13544e;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
  margin: 0;
}

.courses-stars {
  display: flex;
  align-items: center;
  -moz-column-gap: 2px;
  column-gap: 2px;
  font-family: "Poppins", sans-serif;
  color: #fd612a;
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
}

.courses-views {
  display: flex;
  align-items: center;
  -moz-column-gap: 1px;
  column-gap: 1px;
  font-family: "Poppins", sans-serif;
  color: #13544e;
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
}

.courses-rate {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.courses-price {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin: 0;
}

.courses-old-price {
  font-family: "Poppins", sans-serif;
  text-decoration: line-through;
  margin: 0;
}

.services {
  min-height: 90vh;
  margin-bottom: 50px;
  background: linear-gradient(360deg, #fff, rgba(19, 84, 78, 0.4));
  padding: 50px 0;
}

.services-box {
  width: 100%;
  height: 450px;
  --border-width: 1px;
  --radius: 24px;
  border-radius: var(--radius);
  border: var(--border-width) solid transparent;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 30px 20px;
  position: relative;
  z-index: 1;
  isolation: isolate;
  -webkit-border-radius: var(--radius);
  -moz-border-radius: var(--radius);
  -ms-border-radius: var(--radius);
  -o-border-radius: var(--radius);
}

.services-box-scroll {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 7px;
}

.services-box::before {
  content: " ";
  position: absolute;
  inset: calc(var(--border-width) * -1);
  z-index: -1;
  border: inherit;
  border-radius: inherit;
  background-image: conic-gradient(from var(--angle), #fff 80%, #13544e 88%, #13544e 92%, #13544e 100%);
  background-origin: border-box;
  -webkit-mask:
    linear-gradient(black, black) content-box,
    linear-gradient(black, black);
  mask: linear-gradient(black, black),
    linear-gradient(black, black);
  -webkit-mask-clip: content-box, border-box;
  mask-clip: content-box, border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: spin 3s linear infinite;
}

@supports not (background: paint(something)) {
  .services-box::before {
    background-image: conic-gradient(#fff 80%, #13544e 88%, #13544e 92%, #13544e 100%);
  }
}

@property --angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0turn;
}

@keyframes spin {
  to {
    --angle: 1turn;
  }
}

.services-image {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 50px;
  text-align: right;
}

.services-image > * {
  height: 100%;
  font-size: 25px;
}

.teachers-imagebox {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
  background-color: #eef2f3;
}

.teachers-image {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.teachers-name {
  font-size: 1.75rem;
  line-height: 1.1;
}

.teachers-description {
  font-size: 1.1rem;
  line-height: 1.25rem;
  height: 60px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.teachers-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.teachers-courses {
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
  column-gap: 5px;
}

.teachers-courses>* {
  color: #13544e;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
}

.teachers-social {
  display: flex;
  align-items: center;
  -moz-column-gap: 7px;
  column-gap: 7px;
}

.teachers-messenger {
  font-size: 1.5rem;
  color: #13544e;
  transition: all 0.3s ease-in-out;
}

.teachers-messenger:hover {
  transform: translateY(-5px);
}

.section-title {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 30px;
  font-weight: 600;
}

.topsubjects {
  margin: 150px 0;
}

.topsubjects1 {
  margin: 20px 0;
}

.topsubjects-box {
  background-color: #13544e;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
}
.topsubjects-box1 {
  background-color: #788280;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
}

.topsubjects .section-title {
  position: relative;
  padding-bottom: 15px;
}

.topsubjects .section-title::after {
  content: "";
  width: 10%;
  height: 4px;
  border-radius: 5px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}

.topsubjects-nav {
  width: auto;
  flex-wrap: nowrap;
  -moz-column-gap: 30px;
  column-gap: 30px;
  justify-content: center;
  overflow-x: auto;
  margin: 60px 0;
}

.topsubjects-nav::-webkit-scrollbar {
  width: auto;
  height: auto;
}

.topsubjects-nav::-webkit-scrollbar-thumb {
  background: transparent;
}

.topsubjects-nav::-webkit-scrollbar-thumb:hover {
  background: transparent;
}

.topsubjects-nav::-webkit-scrollbar-track {
  background: transparent;
}

.topsubjects-item {
  width: auto;
}

.topsubjects-link {
  display: flex;
  align-items: center;
  -moz-column-gap: 7px;
  column-gap: 7px;
  position: relative;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}

.topsubjects-link.active {
  color: #fff !important;
  background: none !important;
}

.topsubjects-link::after {
  content: "";
  width: 0;
  height: 3px;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  transition: all 0.4s ease-in-out;
}

.topsubjects-link.active::after {
  width: 60%;
  background-color: #fff;
}

.topsubjects-link:hover::after {
  width: 60%;
}

.topsubjects-link:hover,
.topsubjects-link:active,
.topsubjects-link:focus {
  color: #fff !important;
}

.topsubjects-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 900;
  font-family: "Poppins", sans-serif;
  margin-bottom: clamp(1.5rem, 1.5rem + 1vw, 1.5rem);
}

.topsubjects-description {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}

.topsubjects-comment {
  border-left: 2px solid #fd612a;
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin-bottom: 25px;
}

.topsubjects-commentText {
  color: #fff;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.2rem;
  font-style: italic;
}

.topsubjects-commentText .fa-quote-left {
  font-size: 1rem;
  transform: translateY(-10px);
}

.topsubjects-commentText .fa-quote-right {
  font-size: 1rem;
  transform: translateY(10px);
}

.topsubjects-commentAuthor {
  color: #fff;
  font-size: 0.9rem;
  margin: 10px 0 0;
}

.topsubjects-btn {
  background-color: #fd612a;
  border: 1px solid transparent;
}

.topsubjects-btn:hover {
  border-color: #fff;
  color: #fff;
}

.topsubjects-coursesBox {
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  position: relative;
}

.topsubjects-coursesDesc {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.1rem;
  font-weight: 300;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  margin-bottom: 0.5rem;
}

.topsubjects-coursesTitle {
  color: #fff;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 2rem;
  margin-bottom: 1.5rem;
}

.topsubjects-shortLink {
  display: block;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 4.5rem;
  color: #fff;
}

.topsubjects-shortLink::after {
  content: "→";
  transition: all 0.3s ease-in-out;
}

.topsubjects-shortLink:hover {
  text-decoration: underline;
  color: #fff;
}

.topsubjects-shortLink:hover::after {
  transform: translateX(10px);
  margin-left: 10px;
}

.topsubjects-coursesImage {
  border-radius: 50%;
  max-width: 200px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.partners {
  padding: 50px 0 80px;
}

.partners-row {
  position: relative;
}

.partners-row::before,
.partners-row::after {
  content: "";
  width: 20%;
  height: 100%;
  background: linear-gradient(to right, #fff, transparent);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.partners-row::after {
  background: linear-gradient(to left, #fff, transparent);
  left: unset;
  right: 0;
}

.partners-box {
  max-width: 350px;
  width: 100%;
  height: 90px;
  background-color: rgb(19, 84, 78);
  text-decoration: none;
  border-radius: 10px;
  opacity: 0.4;
  transform: scale(0.8);
  transition: all 0.5s;
}

.partners-box:hover {
  opacity: 1;
}

.partners-boxContent {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  border-radius: 10px;
  padding-left: 8px;
}

.partners .slick-center {
  transition: all 0.4s;
  opacity: 1;
  transform: scale(1);
}

.partners-imageBox {
  width: 30%;
  height: 100%;
  border-radius: 10px;
  background-color: transparent;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-image {
  max-height: 100%;
  max-width: 100%;
  border-radius: 50%;
}

.partners-nameBox {
  width: 70%;
  border-radius: 0 10px 10px 0;
  background-color: #eff4fa;
  padding: 7px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-name {
  font-size: 0.85rem;
  line-height: 1.1rem;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  margin: 0;
  text-align: left;
}

.about-course .breadcrumb {
  margin-bottom: 50px;
}

.about-course .breadcrumb-item a {
  text-decoration: none;
}

.about-course .breadcrumb-item a i {
  font-size: 1.1rem;
}

.about-course-title {
  font: 700 1.75rem/2.25rem "Raleway", sans-serif;
  margin-bottom: 1rem;
}

.about-course-text {
  font: 500 1.1rem/1.5rem "Raleway", sans-serif;
  margin-bottom: 1.1rem;
}

.about-course-image {
  margin-bottom: 1rem;
}

.about-course-information {
  margin-bottom: 1.75rem;
}

.about-course-informationBox {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.about-course-icon {
  display: block;
  font-size: 1.3rem;
  opacity: 0.6;
}

.about-course-informationFlex {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.about-course-informationTitle,
.about-course-informationText {
  margin: 0;
  font: 500 0.95rem/1.1rem "Roboto", sans-serif;
}

.about-course-informationTitle span,
.about-course-informationText span {
  text-decoration: line-through;
  color: red;
  font-family: "Poppins", sans-serif;
}

.about-course-informationLink {
  text-decoration: none;
  margin: 0;
  font: 500 0.95rem/1.1rem "Roboto", sans-serif;
}

.about-course-informationTitle {
  opacity: 0.7;
}

.about-course-informationTitle::after {
  content: ":";
}

.about-course-spyList {
  padding: 20px 10px;
  background-color: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
  overflow-x: auto;
  margin-bottom: 50px;
}

.about-course-spyList a {
  color: #000;
  font: 700 1.1rem/1.1rem "Raleway", sans-serif;
}

.about-course-spyList a:hover {
  color: #0d6efd;
}

.about-course-syllabus {
  background-color: #fafafa;
  margin: 1.25rem 0 3.5rem;
  padding: 20px 15px 50px;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.about-course-syllabus-prev {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  padding: 5px 7px;
  font-size: 1.25rem;
  border: none;
  background: transparent;
  color: #13544e;
}

.about-course-syllabus-next {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(50%, 0);
  padding: 5px 7px;
  font-size: 1.25rem;
  border: none;
  background: transparent;
  color: #13544e;
}

.about-course-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #86909c;
  border-bottom: 1px solid #86909c;
  border-left: 0.45rem solid #13544e;
  padding: 1rem 0 1rem 1rem;
  margin-bottom: 2rem;
}

.about-course-noteText {
  font-size: 1.15rem;
  margin: 0;
}

.about-course-noteText i {
  font-size: 1.5rem;
}

.about-course-itemElem {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  list-style-type: "✓";
  padding: 0.5rem;
}

.about-course-itemElem::marker {
  font-size: 1.35rem;
  color: #13544e;
  font-weight: 700;
}

.about-course-ourMessengers {
  background: #ededee;
  padding: 4rem 0.6rem;
  margin-bottom: 3rem;
}

.about-course-ourMessengerBox {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.75rem;
  column-gap: 0.75rem;
}

.about-course-ourMessengerLink {
  font-size: 1.5rem;
  color: #86909c;
  transition: all 0.3s ease-in-out;
}

.about-course-ourMessengerLink:hover {
  color: #13544e;
  transform: translateY(-3px);
}

.about-course-stickyBox {
  max-width: 400px;
  width: 95%;
  border: 1px solid #ededee;
  box-shadow: 0 4px 10px 5px #ededee;
  padding: 1.5rem;
  margin: 0 auto;
}

.about-course-smallTitle {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.75rem;
  margin-bottom: 1rem;
}

.about-course-enrollText {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.3rem;
  column-gap: 0.3rem;
  line-height: 1.25rem;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.about-course-enrollText strong {
  font-family: "Roboto", sans-serif;
}

.about-course-smallInfo {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  font-size: 1.125rem;
  margin-bottom: 1.1rem;
}

.about-course-smallInfo p {
  font-family: "Roboto", sans-serif;
  margin: 0;
}

.about-course-btn {
  width: 100%;
  border-radius: 0;
  margin-top: 0.5rem;
}

#syllabus {
  width: 100%;
  min-height: 350px;
  height: 100vh;
  max-height: 500px;
  transform-style: preserve-3d;
}

#syllabus .turn-page-wrapper {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#syllabus .turn-page:nth-child(odd) {
  background-image: -ms-linear-gradient(left, #fff 95%, #ddd 100%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#syllabus .turn-page:nth-child(even) {
  background-image: -ms-linear-gradient(right, #fff 95%, #ddd 100%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.white-logo {
  display: block;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 2rem;
}

.white-logo img {
  max-width: 100px;
}

.sign-form {
  background: #f6f5f7;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  margin-top: -30px;
  padding: 2rem 1rem;
}

.sign-form-title {
  font-weight: bold;
  margin: 0;
}

.sign-form-text {
  font-size: 14px;
  font-weight: 100;
  line-height: 20px;
  letter-spacing: 0.5px;
  margin: 20px 0 30px;
}

.sign-form-smallText {
  font-size: 12px;
}

.sign-form-link {
  color: #333;
  font-size: 14px;
  text-decoration: none;
  margin: 15px 0;
}

.sign-form-link:hover {
  text-decoration: underline;
  color: #13544e;
}

.sign-form-btn {
  border-radius: 20px;
  border: 1px solid #13544e;
  background-color: #13544e;
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  padding: 12px 45px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 80ms ease-in;
}

.sign-form-btn:active {
  transform: scale(0.95);
}

.sign-form-btn:focus {
  outline: none;
}

.sign-form-btn.ghost {
  background-color: transparent;
  border-color: #ffffff;
}

.sign-form-form {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 1rem;
  height: 100%;
  text-align: center;
}

.sign-form-input {
  background-color: #eee;
  border: none;
  padding: 12px 15px;
  margin: 8px 0;
  width: 100%;
}

.sign-form-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
  max-width: 768px;
  width: 100%;
  height: 1000px;
  overflow: hidden;
}

.sign-form-inUpContainer {
  position: absolute;
  top: 0;
  height: 50%;
  transition: all 0.6s ease-in-out;
}

.sign-form-inContainer {
  left: 0;
  width: 100%;
  z-index: 2;
}

.sign-form-container.right-panel-active .sign-form-inContainer {
  transform: translateY(100%);
}

.sign-form-upContainer {
  left: 0;
  width: 100%;
  opacity: 0;
  z-index: 1;
}

.sign-form-container.right-panel-active .sign-form-upContainer {
  transform: translateY(100%);
  opacity: 1;
  z-index: 5;
  animation: show 0.6s;
}

@keyframes show {

  0%,
  49.99% {
    opacity: 0;
    z-index: 1;
  }

  50%,
  100% {
    opacity: 1;
    z-index: 5;
  }
}

.sign-form .overlay-container {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 50%;
  overflow: hidden;
  transition: transform 0.6s ease-in-out;
  z-index: 8;
}

.sign-form-container.right-panel-active .overlay-container {
  transform: translateY(-100%);
}

.sign-form .overlay {
  background: #13544e;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  color: #ffffff;
  position: relative;
  left: -100%;
  height: 100%;
  width: 200%;
  transform: translateY(0);
  transition: transform 0.6s ease-in-out;
}

.sign-form-container.right-panel-active .overlay {
  transform: translateX(50%);
}

.sign-form .overlay-panel {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 1rem;
  text-align: center;
  top: 0;
  height: 100%;
  width: 50%;
  transform: translateX(0);
  transition: transform 0.6s ease-in-out;
}

.sign-form .overlay-left {
  transform: translateX(-20%);
}

.sign-form-container.right-panel-active .overlay-left {
  transform: translateX(0);
}

.sign-form .overlay-right {
  right: 0;
  transform: translateX(0);
}

.sign-form-container.right-panel-active .overlay-right {
  transform: translateX(20%);
}

.sign-form-social-container {
  margin: 20px 0;
}

.sign-form-social {
  border: 1px solid #dddddd;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  height: 40px;
  width: 40px;
  text-decoration: none;
  color: #333;
  transition: transform 0.3s;
}

.sign-form-social:hover {
  color: #13544e;
  transform: translateY(-3px);
}

.footer {
  background-color: #022622;
}

.footer-top {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid #86909c;
}

.footer-phone {
  display: inline-block;
  color: #fff;
  font-size: 2.25rem;
  line-height: 2.5rem;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  margin-bottom: 0.6rem;
}

.footer-address {
  max-width: 250px;
  display: block;
  color: #fff;
  text-decoration: none;
  opacity: 0.7;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

.footer-address:hover {
  opacity: 1;
}

.footer-subtitle {
  display: inline-block;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  padding-bottom: 0.25rem;
  margin-bottom: 1rem;
  position: relative;
}

.footer-subtitle::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.5;
}

.footer-subtitle::after {
  content: "";
  width: 35%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}

.footer-menuList {
  padding-inline-start: 0;
}

.footer-listItem {
  margin-bottom: 0.4rem;
}

.footer-listLink {
  color: #fff;
  font-weight: 300;
  text-decoration: none;
}

.footer-listLink:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 0.75rem;
  padding: 1rem 0;
}

.footer-messengers {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.75rem;
  column-gap: 0.75rem;
}

.footer-messengerLink {
  font-size: 1.25rem;
  color: #86909c;
  transition: all 0.3s ease-in-out;
}

.footer-messengerLink:hover {
  color: #fff;
  transform: translateY(-3px);
}

.footer-copyrightText {
  margin: 0;
  width: 100%;
  text-align: center;
  color: #fff;
}

@media (min-width: 576px) {
  .main-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .section-title {
    font-size: 2.1rem;
    line-height: 1;
  }
}

@media (min-width: 768px) {
  .main-title {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }

  .header {
    height: calc(100vh - 140px);
  }

  .header-subtitle {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .header-description {
    font-size: 1.1rem;
    line-height: 1.5rem;
  }

  .sign-form-container {
    height: 480px;
  }

  .sign-form-inUpContainer {
    top: 0;
    height: 100%;
  }

  .sign-form-inContainer {
    left: 0;
    width: 50%;
  }

  .sign-form-container.right-panel-active .sign-form-inContainer {
    transform: translateX(100%);
  }

  .sign-form-upContainer {
    width: 50%;
  }

  .sign-form-container.right-panel-active .sign-form-upContainer {
    transform: translateX(100%);
  }

  .sign-form .overlay-container {
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
  }

  .sign-form-container.right-panel-active .overlay-container {
    transform: translateX(-100%);
  }

  .sign-form .overlay {
    transform: translateX(0);
  }

  .sign-form-form {
    padding: 0 3rem;
  }

  .sign-form .overlay-panel {
    padding: 0 2.5rem;
  }

  .footer-bottom {
    justify-content: space-between;
    row-gap: 0;
  }

  .footer-messengers {
    width: 50%;
    justify-content: right;
  }

  .footer-messengerLink {
    font-size: 1.5rem;
  }

  .footer-copyrightText {
    text-align: left;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .main-title {
    font-size: 2.15rem;
    line-height: 2.5rem;
  }

  .header-subtitle {
    font-size: 1.75rem;
    line-height: 2rem;
    margin: 30px 0;
  }

  .header-description {
    font-size: 1.15rem;
    line-height: 1.5rem;
  }

  .statistic .col-6:not(:last-child) {
    border-right: 1px solid #caccd6;
  }

  .statistic-box-value {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .statistic-box-name {
    font-size: 1.35rem;
    line-height: 1.75rem;
  }

  .section-title {
    font-size: 2.3rem;
    line-height: 1;
  }
}

@media (min-width: 1200px) {
  [data-mark=sm] {
    display: none;
  }

  [data-mark=lg] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .menu {
    margin-bottom: 0;
  }

  .menu .logo {
    order: 1;
  }

  .menu-toggle-button {
    display: none;
  }

  .menu-container {
    display: block;
    width: auto;
    order: 1;
    margin: 0 auto 0 25px;
  }

  .menu-list {
    display: flex;
    align-items: start;
    -moz-column-gap: 10px;
    column-gap: 10px;
    padding: 0;
  }

  .menu-list-3 {
    width: 50%;
    height: auto;
    position: absolute;
    top: 0;
    right: 0;
    padding-inline-start: 0;
    background-color: transparent;
    display: none;
  }

  .menu-link {
    background-color: transparent;
  }

  .menu-item-type-1>.menu-link,
  .menu-item-dropdown>.menu-link {
    padding-right: 25px;
  }

  .menu-item-type-1>.menu-link::after,
  .menu-item-dropdown>.menu-link::after {
    right: 0;
  }

  .menu-rightElems {
    order: 2;
  }

  nav .menu-list-2 {
    width: 0;
    height: 0;
    overflow: hidden;
    display: none;
    padding: 0;
  }

  [data-point] {
    display: none;
  }

  [data-point] .menu-list-2 {
    display: block;
  }

  .menu-lg-list {
    background-color: #fafafa;
    padding-top: 30px;
    margin-bottom: 30px;
  }

  .menu-lg-list.active {
    display: block;
    width: 100%;
    z-index: 999;
    position: fixed;
    top: 88.4px;
    left: 0;
  }

  .menu-lg-list .menu-item {
    display: flex;
  }

  .menu-lg-list .menu-item-2 {
    border-bottom: 0;
  }

  .menu-lg-list .menu-link-2 {
    width: 100%;
    border-bottom: 0;
  }

  .menu-lg-list .menu-list-2 {
    width: 33.3333333333%;
    min-height: 400px;
    height: calc(100vh - 148.4px);
    overflow-y: auto;
  }

  .menu-lg-list .top-courses {
    width: 66.6666666667%;
  }

  .menu-item-dropdown>.menu-list-dropdown.active {
    display: block;
  }

  .menu-list-dropdown {
    width: 100%;
    max-width: 280px;
    padding: 10px;
    background-color: #fafafa;
    position: fixed;
    top: 67px;
    /* display: none; */
    z-index: 999;
  }

  .show-all-links .menu-list-2 {
    width: 66.6666666667%;
    position: relative;
  }

  .show-all-links .menu-link-2 {
    width: 50%;
  }

  .show-all-links .menu-list-3 {
    width: 50%;
    height: auto;
    position: absolute;
    top: 7px;
    right: 0;
    padding-inline-start: 0;
    background-color: transparent;
    z-index: 11;
    display: block;
  }

  .show-all-links .menu-list-3.active {
    display: none;
  }

  .show-all-links .menu-link-3 {
    position: relative;
    transition: all 0.5s;
    color: #86909c;
  }

  .show-all-links .menu-link-3::after {
    content: "";
    width: 0;
    height: 1px;
    background-color: #13544e;
    position: absolute;
    left: 0;
    bottom: 0;
  }

  .show-all-links .menu-link-3:hover {
    background-color: #eff0f2;
    color: #374453;
  }

  .show-all-links .menu-item-3 {
    border-bottom: 0;
  }

  .show-all-links .top-courses {
    width: 33.3333333333%;
  }

  .header {
    background: url("../images/header_background_full.png") no-repeat;
    background-position: left bottom;
    background-size: contain;
  }

  .statistic {
    margin: 30px auto;
  }

  .section-title {
    font-size: 2.5rem;
    line-height: 1;
  }

  .about-course-image {
    margin-bottom: 1.5rem;
  }

  .about-course-information {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .about-course-informationBox {
    display: flex;
    align-items: center;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
    margin-bottom: 0.8rem;
    padding-right: 20px;
  }

  .about-course-informationBox:not(:last-child) {
    border-right: 1px solid #ccc;
  }

  .about-course-icon {
    font-size: 1.5rem;
  }

  .about-course-informationFlex {
    display: flex;
    flex-direction: column;
    align-items: start;
    row-gap: 5px;
  }

  .about-course-informationTitle,
  .about-course-informationText {
    font: 500 1rem/1.15rem "Roboto", sans-serif;
  }

  .about-course-informationLink {
    font: 500 1rem/1.15rem "Roboto", sans-serif;
  }

  .about-course-informationTitle {
    border-bottom: 1px solid #eee;
  }

  .about-course-informationTitle::after {
    display: none;
  }

  .about-course-stickyBox {
    position: sticky;
    top: 1.5rem;
  }
}

/* team-slider style */
.team {
  padding: 0 0 30px;
}

.team-slider {
  display: flex;
  position: relative;
  margin-bottom: 70px;
  height: 360px;
  box-shadow: inset 0 -10px 30px #fff;
  position: relative;
}

.team-slider::before,
.team-slider::after {
  content: "";
  width: 20%;
  height: 100%;
  background: linear-gradient(to right, #fff, transparent);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.team-slider::after {
  background: linear-gradient(to left, #fff, transparent);
  left: unset;
  right: 0;
}

.team-slider-box {
  width: 145px;
  height: 360px;
  background-color: rgba(19, 84, 77, 0.5);
  /* background-image: url(../images/team1.webp); */
  background-size: cover;
  border-radius: 20px;
  overflow: hidden;
  margin-right: 20px;
  transition: 0.4s;
  text-decoration: none;
}

.team-slider .slick-prev {
  display: block !important;
  opacity: 0.6;
  border: 1px solid #212633;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  top: -65px;
  left: 100%;
  transform: translateX(-210%);
}

.team-slider .slick-next {
  display: block !important;
  opacity: 0.6;
  border: 1px solid #212633;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  top: -65px;
  left: 100%;
  transform: translateX(-100%);
  right: unset;
}

.team-slider .slick-next::before,
.team-slider .slick-prev::before {
  content: "›";
  font-size: 24px;
  line-height: 1;
  color: #13544e;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -60%);
}

.team-slider .slick-prev::before {
  content: "‹";
}

.team-slider .slick-prev:hover .team-slider .slick-next:hover {
  background: #13544e;
  opacity: 0.7;
}

.team-slider .slick-prev:hover::before,
.team-slider .slick-next:hover::before {
  color: #fff;
}

.team-slider-box .shadow {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.team-slider-box.active,
.team-slider .slick-center {
  width: 300px !important;
}

.team-info {
  min-width: 200px;
  margin-bottom: 12px;
}

.teacher-text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 19px;
  color: #fff;
  opacity: 0.7;
  margin-bottom: 0;
}

.team-teacher {
  height: 21px;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 21px;
  color: #fff;
  margin-top: 12px;
  width: 100px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.team-slider .slick-center .team-teacher,
.team-slider-box.active .team-teacher {
  width: 100%;
  text-overflow: unset;
  white-space: normal;
}

.short_news {
  height: 210px;
  background: radial-gradient(ellipse at top, rgba(187, 198, 224, 0.4), #fff);
  border-radius: 20px;
  padding: 50px 10px 30px 40px;
  position: relative;
  overflow: hidden;
}

.short_news-content {
  width: 60%;
  z-index: 2;
  position: absolute;
  top: 50px;
  left: 40px;
}

.short_news-content .course__box-title {
  margin-bottom: 24px;
  padding: 0;
}

.short_news-content .messengers-parent {
  margin: 0;
}

.short_news-content .messenger-box {
  background: #f5f5f5;
  border-radius: 12px;
  color: #121212;
}

.short_news-content .messenger-box:hover {
  background: var(--gray-color);
  color: #fff;
}

.short_news-img {
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: 1;
}

.short_news-img-second {
  right: 35px;
  bottom: -15px;
}

.short_news-testBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  color: #13544e;
  font-size: 12px;
  text-decoration: none;
}

.short_news-testBtn:hover {
  background: #13544e;
  color: #fff;
}

.messengers-parent {
  display: flex;
  align-items: center;
  margin-bottom: 75px;
}

.messanger-linkBox {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 12px;
  margin-right: 10px;
  color: #13544e;
  transition: 0.2s;
  text-decoration: none;
}

.messanger-linkBox:hover {
  color: #13544e;
  transform: translateY(-3px);
}

.messanger-linkBox:active {
  color: #13544e;
}

/* footer style */
.ffooter {
  padding: 0;
}

.footer-content {
  background: linear-gradient(-45deg, #13544e, #1f9085);
  padding: 90px 45px 30px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.footer-all-content {
  position: relative;
  z-index: 1;
}

.footer-title {
  font-weight: 700;
  font-size: 34px;
  line-height: 40px;
  color: #fff;
  margin-bottom: 24px;
}

footer .enroll-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 59px;
  margin-bottom: 55px;
  transition: all 0.3s;
  position: relative;
}

.enroll-button {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #ffffff;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 125px;
  padding: 20px 60px;
  font-weight: 500;
  font-size: 1rem;
  line-height: 19px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  z-index: 1;
}

.enroll-button:hover {
  background: rgba(71, 95, 143, 0.2);
}

.enroll-button:active {
  background: rgba(71, 95, 143, 0.2);
  opacity: 0.4;
}

.enroll-button:focus {
  background: rgba(71, 95, 143, 0.2);
}

.arrow-img {
  height: auto;
  max-height: 100%;
  display: none;
  position: absolute;
  opacity: 0;
  transition: all 0.3s;
}

footer .enroll-button:hover {
  width: 270px;
  opacity: 1;
}

footer .enroll-button:hover .arrow-img {
  display: inline-block;
  left: 70%;
  opacity: 1;
}

footer .enroll-button:active {
  opacity: 1;
  background: radial-gradient(ellipse at top, #0d8d7e, rgba(255, 255, 255, 0.2)), radial-gradient(ellipse at bottom, #0d8d7e, rgba(255, 255, 255, 0.2));
}

footer .italic-text {
  color: #fff;
  margin-bottom: 8px;
}

footer .primary-text {
  font-size: 1.25rem;
  font-family: "Poppins", sans-serif;
  color: #fff;
  text-decoration: none;
}

footer .primary-text:hover {
  text-decoration: underline;
}

.location-btn {
  margin-right: 23px;
  color: #fff;
  z-index: 1;
}

.location-btn .primary-text {
  text-decoration: underline;
}

.location-btn i {
  font-size: 1rem;
  margin-right: 2px;
}

.messengers-parent {
  display: flex;
  align-items: center;
  margin-bottom: 75px;
}

.messenger-box {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 12px;
  margin-right: 10px;
  color: var(--blue-color);
  transition: 0.2s;
}

.messenger-box:hover {
  color: var(--gray-color);
  transform: translateY(-3px);
}

.messenger-box:active {
  color: var(--gray-color);
}

.footer-end {
  padding: 12px 12px 0 12px;
  border-top: 1px solid rgba(217, 217, 217, 0.2666666667);
}

.logo__brand {
  display: block;
  width: 60px;
  height: 60px;
  margin-right: 15px;
}

.logo__brand img {
  width: 100%;
}

.secondary-logo {
  width: 70px;
  height: 40px;
}

.secondary-logo img {
  max-width: 100%;
  max-height: 100%;
}

.secondary-text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 19px;
  color: #fff;
  opacity: 0.6;
}

.admin {
  color: #fff;
}

.bg-big-logo {
  width: 269px;
  max-height: 262px;
  opacity: 0.1;
  position: absolute;
  top: 40%;
  left: 110%;
  transform: translate(0, -50%);
  z-index: 0;
}

.fast__buttons {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  z-index: 1;
}

.fast__button {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 90px;
  padding: 8px 16px;
  background-color: transparent;
  line-height: 19px;
  color: #fff;
  margin: 0 8px 8px 0;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

.fast__button:hover {
  box-shadow: inset 0 0 1px 1px #fff;
}

@media (max-width: 1199.99px) {
  .bg-big-logo {
    left: 70%;
  }
}

@media (max-width: 991.99px) {
  .ffooter {
    padding: 20px;
  }

  .footer-content {
    padding: 50px 40px 40px;
  }

  .footer-title {
    font-size: 32px;
    line-height: 35px;
  }

  .messengers-parent {
    margin-bottom: 40px;
  }
}

@media (max-width: 767.99px) {
  .team {
    padding: 0 20px;
  }

  .bg-big-logo {
    width: 250px;
    top: 20%;
    left: 20%;
  }

  .team-slider .slick-prev {
    width: 30px;
    height: 30px;
    left: unset;
    right: 0;
    top: -65px;
  }

  .team-slider .slick-next {
    width: 30px;
    height: 30px;
    left: unset;
    right: 0;
    top: -65px;
  }
}

@media (max-width: 575.99px) {
  .team {
    padding: 0;
  }

  .fast__button {
    padding: 5px 12px;
  }

  header .enroll-button {
    width: 100%;
    display: block;
    text-align: center;
  }

  .enroll-button {
    padding: 15px 45px;
  }

  .team-slider .slick-prev {
    width: 30px;
    height: 30px;
    left: unset;
    right: 0;
    top: -65px;
  }

  .team-slider .slick-next {
    width: 30px;
    height: 30px;
    left: unset;
    right: 0;
    top: -65px;
  }

  .short_news-content {
    width: calc(100% - 50px);
    top: 29px;
    left: 23px;
  }

  .short_news-img {
    right: 0;
    bottom: -5%;
  }

  .course__box-title {
    font-size: 32px;
    line-height: 35px;
  }

  .short_news-content .course__box-title {
    font-size: 20px;
    line-height: 21px;
  }

  .ffooter {
    padding: 10px 0;
  }

  .footer-content {
    padding: 50px 15px 45px 20px;
  }

  .footer-title {
    font-size: 28px;
    line-height: 28px;
  }

  footer .enroll-button {
    margin-bottom: 35px;
  }

  .messengers-parent {
    margin-bottom: 30px;
  }

  .bg-big-logo {
    width: 230px;
    left: 15%;
  }
}

@media (max-width: 450px) {
  .short_news-img {
    width: 80%;
  }

  .short_news-img-second {
    width: 70%;
    bottom: -30px;
  }
}

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