@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600;700&display=swap');

::selection {
  background-color: #777777db;
  color: #fff;
}

::-moz-selection {
  background-color: #777777db;
  color: #fff;
}

:root {
  --theme-color: #ff6600;
}

@keyframes nudge {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(30px, 0)
  }

  80% {
    transform: translate(-30px, 0)
  }
}

@keyframes spinAround {
  from {
    transform: translate(-50%, -50%) rotate(0)
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg)
  }
}

@keyframes bounce {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-30px)
  }

  100% {
    transform: translateY(0)
  }
}

.bg-light {
  background-color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden !important;
}

.header-contain {
  padding: 0.7rem 0;
}

.header-container {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-container-logo {
  display: flex;
  width: 210px;
  position: relative;
}

.header-container-logo>a {
  display: flex;
  width: 100%;
}

.header-container-logo>a>img {
  width: 100%;
}

.logo-bottom {
  position: absolute;
  bottom: -30px;
  z-index: 999;
  width: 100%;
}

.logo-bottom>img {
  width: 100%;
}

.header-container-menu #cssmenu>ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 1rem;
}

.header-container-menu #cssmenu>ul>li>a {
  padding: 0 1rem;
  display: flex;
  cursor: pointer;
  position: relative;
}

.header-container-menu #cssmenu>ul>li>a>span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.header-container-menu #cssmenu>ul>li>a>span>span {
  font-size: 20px;
  font-weight: 500;
  padding: 0;
  display: flex;
  margin-top: 0.2rem;
  font-family: 'Crimson Text', serif;
}

.header-container-menu #cssmenu>ul>li>a>span>img {
  width: 25px;
  height: auto !important;
}

.header-container-menu #cssmenu>ul>li:nth-child(1)>a>span>span,
.header-container-menu #cssmenu>ul>li:nth-child(5)>a>span>span {
  color: #2aaae2;
}

.header-container-menu #cssmenu>ul>li:nth-child(2)>a>span>span {
  color: #f86a9a;
}

.header-container-menu #cssmenu>ul>li:nth-child(3)>a>span>span,
.header-container-menu #cssmenu>ul>li:nth-child(6)>a>span>span {
  color: #43cd66;
}

.header-container-menu #cssmenu>ul>li:nth-child(4)>a>span>span {
  color: #f9b001;
}

.header-container-menu #cssmenu>ul>li>a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  z-index: 9;
  width: 10%;
  opacity: 0;
  visibility: hidden;
  transition: .25s ease-in-out;
}

.header-container-menu #cssmenu>ul>li.current-menu-item>a::before {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.header-container-menu #cssmenu>ul>li:nth-child(1)>a::before,
.header-container-menu #cssmenu>ul>li:nth-child(5)>a::before {
  background-color: #2aaae2;
}

.header-container-menu #cssmenu>ul>li:nth-child(2)>a::before {
  background-color: #f86a9a;
}

.header-container-menu #cssmenu>ul>li:nth-child(3)>a::before,
.header-container-menu #cssmenu>ul>li:nth-child(6)>a::before {
  background-color: #43cd66;
}

.header-container-menu #cssmenu>ul>li:nth-child(4)>a::before {
  background-color: #f9b001;
}

.header-container-menu #cssmenu>ul>li:hover>a::before {
  opacity: 1;
  visibility: visible;
  width: 100%;
}

.swiper-image>img {
  width: 100%;
}

.slider-bottom-image {
  position: absolute;
  bottom: -1px;
  z-index: 99;
  width: 100%;
}

.home-slider-wrapper {
  position: relative;
}

.slider-bottom-image>img {
  width: 100%;
}

.home-about-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.home-about-container>div {
  width: 50%;
}

.home-about-container-image>img {
  width: 100%;
}

.home-about-top-title>span {
  font-size: 50px;
  font-weight: bold;
  color: #271344;
  line-height: 1.2;
  margin-bottom: 2rem;
  display: flex;
}

.home-about-bottom-title>span {
  font-size: 25px;
  font-weight: bold;
  color: #271344;
  margin-bottom: 1rem;
  display: flex;
}


.home-about-bottom-content>span,
.home-about-text-top>span {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  color: #888;
}

.home-about-text-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  flex-direction: column;
}

.home-about-wrapper {
  background-color: #FCF9F4;
  margin: 2rem 0;
  padding: 2rem 0;
}

.home-about-container-image {
  animation-name: nudge;
  animation: nudge 7s linear infinite alternate;
}

.slogan-wrapper {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  font-family: schoolbell, cursive;
  font-size: 31px;
  font-weight: 700;
  color: #412f59;
}

.teacher-title>p {
  font-family: schoolbell, cursive;
  font-size: 17px;
  font-weight: 600;
  color: #ff4880;
  letter-spacing: 3px;
}

.teacher-title>span {
  font-size: 45px;
  font-weight: 600;
  color: #271344;
}

.teacher-text>p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.8;
  color: #888;
  width: 70%;
}

.teacher-container-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.teacher-text {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.teacher-title-image>img {
  width: 100px;
}

.teacher-container-bottom {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.teacher-content {
  display: flex;
  flex-direction: column;
  width: calc(33.33% - (2rem * 2) / 3);
  padding: 1.5rem;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
  border-radius: 20px;
  transition: all 300ms linear 0ms;
}

.teacher-content-image {
  display: flex;
  width: 100%;
}

.teacher-content-image>img {
  width: 100%;
}

.teacher-content-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.teacher-name {
  font-size: 25px;
  font-weight: 600;
  color: #271344;
}

.teacher-job {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  color: #888;
}

.teacher-content-social>ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1rem;
}

.teacher-content-social>ul>li>a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.teacher-content-social>ul>li:nth-child(1)>a {
  background-color: #1ab9ff;
}

.teacher-content-social>ul>li:nth-child(2)>a {
  background-color: #ffc000;
}

.teacher-content-social>ul>li:nth-child(3)>a {
  background-color: #f66;
}

.teacher-content-social>ul>li:nth-child(4)>a {
  background-color: #abcd52;
}

.teacher-content-social>ul>li>a>i {
  font-size: 16px;
  color: #fff;
}

.teacher-content-bottom {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1.5rem 0;
}

.teacher-wrapper {
  background-attachment: fixed;
  background-position: center right;
  background-repeat: no-repeat;
  padding: 3rem 0;
}

.teacher-content:hover {
  transform: translate(0, -26px);
}

.activites-wrapper {
  padding: 3rem 0;
  position: relative;
}

.activites-title>p {
  font-family: schoolbell, cursive;
  font-size: 17px;
  font-weight: 600;
  color: #ff4880;
  letter-spacing: 3px;
}

.activites-title>span {
  font-size: 45px;
  font-weight: 600;
  color: #271344;
}

.activites-text>p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.8;
  color: #888;
  width: 70%;
}

.activites-text {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.activites-container-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.activites-container-bottom {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.activites-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: calc(33.33% - (1rem * 2) / 3);
  justify-content: center;
}

.activites-list-ikon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: relative;
}

.activites-content:nth-child(1) .activites-list:nth-child(1) .activites-list-ikon {
  background-color: #ABCD52;
}

.activites-content:nth-child(1) .activites-list:nth-child(2) .activites-list-ikon {
  background-color: #FF6666;
}

.activites-content:nth-child(3) .activites-list:nth-child(1) .activites-list-ikon {
  background-color: #1AB9FF;
}

.activites-content:nth-child(3) .activites-list:nth-child(2) .activites-list-ikon {
  background-color: #FFC000;
}

.activites-list-ikon::before {
  display: block;
  content: "";
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-clip: content-box;
  border: 1px dashed;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.activites-content:nth-child(1) .activites-list:nth-child(1) .activites-list-ikon::before {
  border-color: #ABCD52;
}

.activites-content:nth-child(1) .activites-list:nth-child(2) .activites-list-ikon::before {
  border-color: #FF6666;
}

.activites-content:nth-child(3) .activites-list:nth-child(1) .activites-list-ikon::before {
  border-color: #1AB9FF;
}

.activites-content:nth-child(3) .activites-list:nth-child(2) .activites-list-ikon::before {
  border-color: #FFC000;
}

.activites-list:hover .activites-list-ikon::before {
  animation: spinAround 9s linear infinite;
}


.activites-list-name {
  font-size: 25px;
  font-weight: bold;
  color: #271344;
}

.activites-list-desc {
  font-size: 15px;
  font-weight: 500;
  color: #888;
}

.activites-content:nth-child(3) .activites-list {
  flex-direction: row-reverse;
}

.activites-list {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.activites-list-text {
  width: calc(100% - 90px);
  display: flex;
  flex-direction: column;
}

.activites-content:nth-child(1) .activites-list .activites-list-text {
  justify-content: flex-end;
  text-align: end;
}

.activites-nudge-image {
  position: absolute;
  top: 20px;
  left: 100px;
  animation: nudge 7s linear infinite alternate;
}

.activites-bounce-image-bottom {
  position: absolute;
  bottom: 20px;
  left: 50px;
  animation: bounce 2s linear infinite alternate;
}

.activites-bounce-image-top {
  position: absolute;
  top: 20px;
  right: 50px;
  animation: bounce 2s linear infinite alternate;
}

.activites-center-image {
  display: flex;
  justify-content: center;
}

.programs-wrapper {
  display: flex;
  background-color: #FCF9F4;
}

.programs-wrapper-left {
  display: flex;
  width: 35%;
}

.programs-wrapper-right {
  width: 65%;
  padding: 5rem 3rem;
}

.programs-wrapper-left>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.programs-wrapper-title>span {
  font-family: schoolbell, cursive;
  font-size: 35px;
  font-weight: 600;
  color: #ff4880;
  letter-spacing: 3px;
}

.programs-wrapper-contain {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.programs-list {
  display: flex;
  align-items: flex-start;
  width: calc(50% - (2rem) / 2);
  gap: 1rem;
  padding: 1rem 0;
}

.program-list-ikon {
  display: flex;
  width: 65px;
  transition: all 300ms linear 0ms;
}

.programs-list:hover .program-list-ikon {
  transform: translate(0, -10px);
}

.program-list-ikon>img {
  width: 100%;
}

.program-list-text {
  display: flex;
  flex-direction: column;
  width: calc(100% - (65px + 1rem));
}

.program-list-name>a {
  font-size: 17px;
  font-weight: 600;
  color: #56509f;
}

.program-list-desc {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #888;
}

.footer-wrapper {
  background-color: #e2eaf1;
  position: relative;
  margin-top: 5rem;
  padding-top: 2rem;
  background-position: center 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.footer-container {
  display: flex;
  gap: 2rem;
  padding: 5rem 0;
}

.footer-container .widget_text {
  width: calc(33.33% - (2rem * 2) / 3);
}

.home-slider-wrapper img {
  width: 100%;
}

.footer-container-list {
  width: 100%;
}

.footer-logo {
  display: flex;
  width: 180px;
}

.footer-logo>a {
  display: flex;
  width: 100%;
}

.footer-logo>a>img {
  width: 100%;
}

.footer-container-list-title>span {
  font-family: schoolbell, cursive;
  font-size: 20px;
  font-weight: 600;
  color: #ff4880;
  letter-spacing: 3px;
}

.footer-container-list>ul>li>a>span,
.footer-container-list>ul>li>a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #888;
}

.footer-container-list>ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-desc {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #ff4880;
  font-family: schoolbell, cursive;
}

.footer-social>ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  gap: 1rem;
}

.footer-social>ul>li>a>i {
  font-size: 20px;
  color: #ff4880;
}

.footer-social {
  margin-top: 1rem;
}

.footer-bottom-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  border-top: 1px solid #fff;
}

.footer-bottom-text>span {
  color: #ff4880;
  font-size: 17px;
}

.footer-top-image {
  position: absolute;
  top: -80px;
}

.footer-top-image>img {
  display: flex;
  height: 130px;
  width: 100%;
  object-fit: cover;
}

.footer-container-list>ul>li>a>i {
  font-size: 18px;
  margin-right: .5rem;
  color: #ff4880;
}

.all-teacher-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
}

.all-teacher-btn>a {
  background-color: #ff4880;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  transition: .2s ease-in-out;
}

.all-teacher-btn>a:hover {
  background-color: #271344;
}

.about-page-wrapper .home-about-wrapper {
  padding: 0;
  margin: 0;
  width: 100%;
}

.about-page-wrapper {
  display: flex;
  width: 100%;
  margin-bottom: 7rem;
}

.gallery-wrapper {
  background-attachment: fixed;
  background-position: center right;
  background-repeat: no-repeat;
  padding: 3rem 0;
  margin: 2rem 0;
}

.gallery-container {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.gallery-content {
  display: flex;
  width: calc(33.33% - (1.5rem * 2) / 3);
  border-radius: 5px;
  overflow: hidden;
}

.gallery-content-image,
.gallery-content-image>a {
  display: flex;
  width: 100%;
}

.gallery-content-image>a>img {
  display: flex;
  width: 100%;
  height: auto;
}

.blog-wrapper {
  background-attachment: fixed;
  background-position: center right;
  background-repeat: no-repeat;
  padding: 3rem 0;
  margin: 2rem 0;
}

.blog-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.blog-content {
  display: flex;
  flex-direction: column;
  width: calc(33.33% - (2rem * 2) / 3);
  padding: 1.5rem;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
  border-radius: 20px;
  transition: all 300ms linear 0ms;
}

.blog-content-image {
  display: flex;
  width: 100%;
}

.blog-content-image>a {
  display: flex;
  width: 100%;
}

.blog-content-image>a>img {
  width: 100%;
  display: flex;
  height: 100%;
}

.blog-contant-text {
  display: flex;
  flex-direction: column;
  margin: 1.5rem 0;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.blog-name>a>span {
  font-size: 25px;
  font-weight: 600;
  color: #271344;
}

.blog-desc>span {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  color: #888;
}

.blog-content:hover {
  transform: translate(0, -26px);
}

.contact-wrapper {
  margin: 3rem 0;
}

.contact-top {
  display: flex;
  gap: 2rem;
}

.contact-top-form {
  width: 50%;
}

.contact-top-info {
  width: 50%;
}

.form-wrapper-group input {
  display: flex;
  border: 1px solid rgba(0, 0, 0, .1) !important;
  border-radius: 25px;
  padding: 1rem !important;
  height: 50px !important;
  font-size: 15px;
  font-weight: 400;
  color: #999;
  outline: 0 !important;
  box-shadow: none !important;
}

.form-wrapper-group textarea {
  display: flex;
  border: 1px solid rgba(0, 0, 0, .1) !important;
  border-radius: 25px;
  padding: 1rem !important;
  font-size: 15px;
  font-weight: 400;
  color: #999;
  outline: 0 !important;
  box-shadow: none !important;
}

.form-wrapper-group input::placeholder,
.form-wrapper-group textarea::placeholder {
  color: #999;
}

.form-wrapper-group input:focus,
.form-wrapper-group textarea:focus {
  border: 1px solid #ff4880 !important;
}

.form-wrapper-top {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-wrapper-top .form-wrapper-group {
  width: calc(50% - (1rem) / 2);
}

.contact-top-info-title>span {
  font-family: schoolbell, cursive;
  font-size: 35px;
  font-weight: 600;
  color: #ff4880;
  letter-spacing: 3px;
}

.contact-top-info-desc>span {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: #888;
}

.contact-top-info-title {
  display: flex;
  margin-bottom: 1rem;
}

.contact-top-info-desc {
  margin-bottom: 1rem;
}

.contact-top-info>ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-top-info>ul>li>a>span {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #888;
}

.contact-top-info>ul>li>a>i {
  font-size: 18px;
  margin-right: 0.5rem;
  color: #ff4880;
}

.form-wrapper-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.form-wrapper-btn>input {
  width: 180px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 25px;
  font-size: 17px;
  background-color: #ff4880 !important;
  border: none !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.contact-top-form-title>span {
  font-family: schoolbell, cursive;
  font-size: 35px;
  font-weight: 600;
  color: #ff4880;
  letter-spacing: 3px;
}

.contact-top-form-title {
  margin-bottom: 1rem;
}

.contact-bottom {
  margin: 2rem 0;
  padding: 2rem;
}

.mobile-menu-remove,
.header-mobile-menu-btn {
  display: none;
}

.post-container {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.post-container-left {
  width: 65%;
}

.post-container-right {
  width: 45%;
}

.post-image {
  display: flex;
  width: 100%;
}

.post-image>img {
  display: flex;
  width: 100%;
  border-radius: 25px;
}

.post-wrapper {
  padding: 3rem 0;
  background-color: #FCF9F4;
}

.post-name>span {
  font-family: schoolbell, cursive;
  font-size: 25px;
  font-weight: 600;
  color: #ff4880;
  letter-spacing: 3px;
}

.post-name {
  margin-bottom: 1rem;
}

.post-desc {
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  color: #888;
}

.footer-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 15px;
  z-index: 99;
}

.footer-application {
  position: fixed;
  bottom: 100px;
  right: 15px;
  z-index: 99;
}

.footer-whatsapp>a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #25d366;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.footer-application>a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.footer-whatsapp>a>i {
  font-size: 35px;
  color: #fff;
}

.footer-application>a>img {
  width: 100%;
}

#to_top_scrollup {
  display: none !important;
}

.home-video-wrapper {
  display: flex;
  background-color: #f0f0f0;
  margin-bottom: 2rem;
  flex-direction: column;
  padding: 1rem 0;
}

.home-video-wrapper>video {
  height: 450px;
}

.programs-wrapper-title>p {
  font-family: schoolbell, cursive;
  font-size: 15px;
  font-weight: 600;
  color: #ff4880;
  letter-spacing: 3px;
  margin: 0;
  margin-top: 1rem;
}

.home-video-title>span {
  font-family: schoolbell, cursive;
  font-size: 35px;
  font-weight: 600;
  color: #ff4880;
  letter-spacing: 3px;
  text-align: center;
}

.home-video-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.teacher-wrapper .gallery-container {
  margin-top: 2rem;
}

@media screen and (max-width:993px) {
  .container {
    max-width: 100% !important;
  }

  .blog-content {
    width: calc(50% - (2rem) / 2);
  }

  .footer-container {
    padding: 2rem;
  }

  .footer-container-list {
    width: 100%;
  }

  .footer-bottom-text>span {
    text-align: center;
  }

  .home-about-container {
    flex-direction: column;
  }

  .home-about-container>div {
    width: 100%;
  }

  .home-about-top-title>span {
    font-size: 30px;
  }

  .home-about-bottom-content>span,
  .home-about-text-top>span {
    font-size: 13px;
  }

  .activites-container-bottom {
    flex-direction: column;
  }

  .activites-content {
    width: 100%;
  }

  .activites-content .activites-list {
    flex-direction: row-reverse;
  }

  .activites-content:nth-child(1) .activites-list .activites-list-text {
    text-align: start;
  }

  .activites-list-name {
    font-size: 19px;
  }

  .activites-container-bottom {
    gap: 3rem;
  }

  .activites-center-image {
    display: flex;
    width: 100%;
  }

  .activites-center-image>img {
    width: 100%;
  }

  .activites-bounce-image-top {
    right: 10px;
  }

  .activites-bounce-image-top>img {
    width: 80px;
  }

  .activites-nudge-image {
    left: 10px;
  }

  .activites-nudge-image>img {
    width: 80px;
  }

  .activites-title>span {
    font-size: 30px;
  }

  .activites-title>p {
    font-size: 14px;
  }

  .activites-bounce-image-bottom {
    left: 10px;
    bottom: 10px;
  }

  .activites-bounce-image-bottom>img {
    width: 80px;
  }

  .activites-text>p {
    width: 100%;
    font-size: 15px;
  }

  .programs-wrapper {
    flex-direction: column;
  }

  .programs-wrapper-left {
    width: 100%;
  }

  .programs-wrapper-right {
    width: 100%;
    padding: 2rem;
  }

  .teacher-title>span {
    font-size: 25px;
  }

  .teacher-title>p {
    font-size: 13px;
  }

  .teacher-text>p {
    width: 100%;
    font-size: 15px;
  }

  .teacher-container-bottom {
    flex-wrap: wrap;
  }

  .teacher-content {
    width: calc(50% - (2rem) / 2);
  }

  .gallery-content {
    width: calc(50% - (1.5rem) / 2);
  }

  .contact-top {
    flex-direction: column;
  }

  .contact-top-form {
    width: 100%;
  }

  .contact-top-info {
    width: 100%;
  }

  .contact-bottom {
    padding: 1rem;
  }

  .header-container-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 45%;
    background-color: #fff;
    bottom: 0;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out 0s;
  }

  .header-container-menu.active {
    left: 0;
    opacity: 1;
    visibility: visible;
  }

  .header-container-menu #cssmenu>ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .header-container-menu #cssmenu>ul>li {
    width: 100%;
  }

  .header-container-menu #cssmenu>ul>li>a::before {
    display: none;
  }

  .header-container-menu #cssmenu>ul>li>a>span {
    flex-direction: unset;
    gap: 1rem;
  }

  .header-container-menu #cssmenu>ul>li>a {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
  }

  .mobile-menu-remove {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
  }

  .mobile-menu-remove-btn>i {
    font-size: 20px;
  }

  .mobile-menu-overlay {
    position: absolute;
    background: rgba(0, 0, 0, 80%);
    inset: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .header-contain {
    padding: 1rem;
  }

  .header-mobile-menu-btn {
    display: flex;
  }

  .header-mobile-menu-btn>i {
    font-size: 41px;
  }

  .post-container {
    flex-direction: column;
  }

  .post-container-left,
  .post-container-right {
    width: 100%;
  }

  .footer-whatsapp>a {
    width: 70px;
    height: 70px;
  }

  .footer-application>a {
    width: 70px;
    height: 70px;
  }

  .footer-whatsapp>a>i {
    font-size: 45px;
  }
}

@media screen and (max-width:680px) {
  .footer-container {
    flex-direction: column;
  }
}

@media screen and (max-width:553px) {
  .blog-content {
    width: 100%;
  }

  .home-about-text-bottom {
    flex-direction: column;
  }

  .programs-list {
    width: 100%;
  }

  .teacher-content {
    width: 100%;
  }

  .gallery-content {
    width: 100%;
  }

  .form-wrapper-top .form-wrapper-group {
    width: 100%;
  }

  .contact-top-info-title>span,
  .contact-top-form-title>span {
    text-align: center;
    font-size: 25px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .form-wrapper-btn>input {
    width: 100% !important;
  }

  .form-wrapper-btn span {
    display: none !important;
  }

  .header-container-menu {
    width: 90%;
  }

  .gallery-wrapper {
    margin-top: 0;
    padding-top: 0;
  }

  .teacher-wrapper {
    padding-top: 1rem;
  }

  .blog-wrapper {
    margin-top: 0;
    padding-top: 1.5rem;
  }

  .contact-wrapper {
    margin-top: .5rem;
  }

  .programs-wrapper-title>span {
    display: flex;
    text-align: center;
  }

  .home-video-wrapper>video {
    height: 100%;
  }

  .footer-container .widget_text {
    width: 100%;
  }
}