@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
}
a {
  text-decoration: none;
  display: inline-block;
}
img {
  width: 100%;
  display: block;
}
ul {
  padding: 0;
  margin: 0;
}
p {
  padding: 0;
  margin: 0;
  line-height: 1.8;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}
:root {
  --c1: rgb(28 54 69);
  --c2: rgb(255 255 255);
  --c3: rgb(169 22 29);
  --c4: rgb(206 161 55);
  --c5: rgb(0 0 0);
  --bg: rgb(0 0 0 / 5%);
}
::selection {
  background: var(--c1);
  color: var(--c2);
}

/* HEADER */

.head-logo a {
  display: block;
  width: 140px;
}
.nav-bar nav ul,
.foot-nav ul {
  display: flex;
  gap: 35px;
  justify-content: center;
}
.header-btn {
  text-align: end;
}
.web-btn,
.contact-btn input {
  background-color: var(--c1);
  padding: 12px 30px;
  border-radius: 6px;
  color: var(--c2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.web-btn::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background-color: var(--c3);
  z-index: -1;
  transition: all 0.5s;
  border-radius: 6px;
}
.web-btn:hover::before {
  left: 0;
  right: unset;
  width: 100%;
}
.web-btn:hover {
  color: var(--c2);
}
.nav-bar nav ul li a,
.foot-nav ul li a {
  color: var(--c1);
  font-weight: 500;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}
.nav-bar nav ul li a:hover,
.foot-nav ul li a:hover {
  color: var(--c3);
}
.nav-bar nav ul li a::before,
.foot-nav ul li a:before {
  position: absolute;
  content: "";
  bottom: 0px;
  right: -2px;
  width: 0%;
  transition: all 0.5s;
  border: 1px solid var(--c3);
}
.nav-bar nav ul li a:hover::before,
.foot-nav ul li a:hover::before {
  left: 0;
  width: 100%;
  right: unset;
}
.header {
  padding: 6px 0px;
}

/* SECTION MAIN BANNER */

.banner-title h1 {
  font-weight: 700;
  color: var(--c5);
  margin-bottom: 20px;
  font-size: 48px;
}
.banner-title p {
  margin-bottom: 20px;
}
.banner-imgs-main {
  margin-left: 120px;
  position: relative;
}
.banner-img-one img {
  height: 600px;
  object-fit: cover;
}
.banner-imgs-main img {
  transition: all 0.7s;
}
.banner-imgs-main div:hover img {
  transform: scale(1.1);
}
.banner-imgs-main .banner-img {
  border-radius: 15px;
  overflow: hidden;
}
.banner-img-two {
  position: absolute;
  bottom: 13px;
  width: 200px;
  transform: rotate(9deg);
  right: -20px;
  border: 8px solid var(--c4);
}
.banner-img-two img {
  height: 240px;
  object-fit: cover;
}
.main-banner {
  padding: 70px 0px;
  position: relative;
  z-index: 1;
  overflow-x: clip;
}
.banner-overlay {
  position: absolute;
  width: 200px;
  height: 300px;
  background-color: var(--c4);
  border-radius: 15px;
  top: 50%;
  z-index: -1;
  left: 0px;
  transform: rotate(-16deg) translateY(-50%);
}
.main-banner .circle-1 {
  width: 300px;
  height: 300px;
  left: -60px;
  top: -90px;
  animation: 20s linear infinite alternate nudge1;
}
.main-banner .circle-2 {
  width: 250px;
  height: 250px;
  top: 166px;
  left: -130px;
  animation: 20s linear infinite alternate nudge2;
}
.main-banner .circle-4 {
  right: 600px;
  top: 500px;
  width: 120px;
  height: 120px;
  animation: 20s linear infinite alternate nudge2;
}
.main-banner .circle-3 {
  right: 0;
  top: -28px;
  width: 400px;
  height: 400px;
  animation: 20s linear infinite alternate nudge3;
}
.main-banner .circle {
  opacity: 0.1;
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    circle 800px at 75% -25%,
    var(--c4) 0,
    var(--c4) 100%
  );
}
@keyframes nudge1 {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(100px, 0);
  }

  80% {
    transform: translate(-1px, 0);
  }
}
@keyframes nudge2 {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, 150px);
  }

  80% {
    transform: translate(-150px, 0);
  }
}
@keyframes nudge3 {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-100px, 0);
  }

  80% {
    transform: translate(-1px, 0);
  }
}

/* SECTION JOURNEY */

.spacing {
  padding: 80px 0px;
}
.web-title h2 {
  color: var(--c5);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 40px;
}
.web-title p {
  margin-top: 15px;
}
.journey-img {
  padding: 20px;
  border: 2px solid var(--c4);
  border-radius: 10px;
  margin: 0px 10px;
}
.journey-img-inner {
  border-radius: 10px;
  overflow: hidden;
}
.journey-img-inner img {
  height: 540px;
  object-fit: cover;
  transition: all 0.7s;
}
.journey-img-inner:hover img {
  transform: scale(1.1);
}
.journey-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
}
.journey-content p {
  margin-bottom: 30px;
}
.journey-content h3::before {
  position: absolute;
  content: "";
  top: 50%;
  width: 8px;
  height: 8px;
  background-color: var(--c3);
  border-radius: 50%;
  transform: translateY(-50%);
  left: -20px;
}
.journey-content {
  padding-left: 20px;
}
span.web-sub {
  background-color: var(--c3);
  display: inline-block;
  padding: 5px 20px;
  border-radius: 50px;
  color: var(--c2);
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 500;
}
.journey-content p:last-child {
  margin-bottom: 0px;
}

/* SECTION MISSION VISION */

.cust-bg {
  background-color: var(--bg);
}
.mission-content ul li {
  background-color: var(--c2);
  margin-bottom: 15px;
  padding: 10px 20px;
  border-radius: 6px;
  color: var(--c5);
  font-weight: 500;
  transition: all 0.5s;
  border: 1px solid var(--c2);
}
.mission-content ul li i {
  color: var(--c3);
  font-weight: 500;
  margin-right: 10px;
}
.mission-img img {
  height: 600px;
  object-fit: cover;
  transition: all 0.7s;
}
.mission-img:hover img {
  transform: scale(1.1);
}
.mission-img {
  overflow: hidden;
  border-radius: 20px;
}
.mission-content ul {
  margin-top: 15px;
}
.mission-vision .row:nth-child(even) {
  flex-direction: row-reverse;
  margin-top: 50px;
}
.mission-content ul li:last-child {
  margin-bottom: 0px;
}
.mission-content ul li:hover {
  border-color: var(--c3);
}
.mission-content {
  padding-left: 20px;
}
.mission-vision .row:nth-child(even) .mission-content {
  padding-left: 0px;
  padding-right: 20px;
}

/* SECTION COURSES */

.title-gap {
  margin-bottom: 50px;
}
.course-img img {
  height: 350px;
  object-fit: cover;
  transition: all 0.7s;
}
.course-img:hover img {
  transform: scale(1.1);
}
.course-img {
  overflow: hidden;
  border-radius: 20px;
}
.course-item {
  background-color: var(--bg);
  padding: 30px;
  border-radius: 20px;
  height: 100%;
  border: 1px solid transparent;
  transition: all 0.5s;
}
.course-content h3 {
  font-weight: 600;
  color: var(--c5);
  margin-top: 20px;
  font-size: 26px;
}
.course-content p {
  margin-top: 15px;
}
.course-content a.read-btn {
  margin-top: 20px;
  color: var(--c3);
  font-weight: 500;
  position: relative;
  padding-left: 16px;
  transition: all 0.5s;
}
.course-content a.read-btn::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--c3);
  border-radius: 50%;
  left: 0;
  transition: all 0.5s;
}
.course-content a.read-btn:hover,
.course-content h3 a:hover {
  color: var(--c4);
}
.course-content a.read-btn:hover::before {
  background-color: var(--c4);
}
.course-item:hover {
  border-color: var(--c3);
}
.course-img a {
  display: block;
}
.course-content h3 a {
  color: var(--c5);
  transition: all 0.5s;
}

/* SECTION CONTACT US */

.contact-input-item input,
.contact-input-item textarea {
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 12px;
  border: 1px solid #0000001c;
  outline: 0;
  transition: all 0.5s;
}
.contact-form-main .wpcf7-response-output {
  font-size: 14px;
  text-align: center;
}
.contact-input-item span.wpcf7-not-valid-tip {
  font-size: 14px;
  padding-top: 8px;
}
.contact-input-item input::placeholder,
.contact-input-item textarea::placeholder {
  color: #0000008a;
}
.contact-input-item input:focus,
.contact-input-item textarea:focus {
  border-color: var(--c3);
}
.contact-input-item textarea {
  height: 200px;
}
.contact-form-main form .row {
  row-gap: 20px;
}
.contact-form-main form {
  margin-top: 30px;
}
.contact-form-main {
  padding-left: 20px;
}
.contact-info-item {
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: var(--bg);
}
.contact-info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--c2);
  border-radius: 5px;
  margin: 0 auto 15px auto;
  background: var(--c3);
}
.contact-info-content {
  text-align: center;
}
.contact-info-content h5 {
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: var(--c5);
}
.contact-info-content a,
.contact-info-content span {
  color: inherit;
  transition: all 0.5s;
}
.contact-info-content a:hover {
  color: var(--c4);
}
.contact-input-item span {
  display: block;
}
.contact-btn input {
  border: 0;
  transition: all 0.5s;
}
.contact-btn input:hover {
  background-color: var(--c3);
}
.contact-btn p,
.contact-input-item p {
  margin: 0px;
}

/* SINGLE PAGE CSS */

.inner-header {
  background-color: var(--c1);
  padding: 100px 0px;
  text-align: center;
}
.inner-header-title h1 {
  color: var(--c2);
  font-weight: 700;
}
.course-detail-main img {
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
}
.course-detail-main h2 {
  color: var(--c5);
  font-weight: 600;
  margin-bottom: 20px;
}
.course-detail-main p {
  margin-bottom: 20px;
}
.course-detail-main h3 {
  color: var(--c5);
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 20px;
}
.course-detail-main ul {
  margin-bottom: 20px;
  padding-left: 20px;
}
.course-detail-main ul li {
  list-style: disc;
  margin-bottom: 8px;
}
.related-courses ul li a {
  display: block;
  background-color: var(--c2);
  padding: 14px 20px;
  color: var(--c5);
  transition: all 0.5s;
  border-radius: 6px;
}
.related-courses ul li {
  margin-bottom: 15px;
}
.related-courses ul li a:hover {
  background-color: var(--c3);
  color: var(--c2);
}
.related-courses h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--c3);
  margin-bottom: 20px;
}
.related-courses {
  position: sticky;
  top: 20px;
  background-color: var(--bg);
  padding: 30px;
  border-radius: 10px;
}
body.single-courses > .overflow-hidden {
  overflow: unset !important;
}

/* SECTION PROGRAM */

.prog-bottom-cont {
  margin-top: 50px;
}
.program-img {
  position: relative;
}
.program-img::before {
  position: absolute;
  content: "";
  width: 200px;
  height: 400px;
  top: 50%;
  background-color: var(--c4);
  border-radius: 15px;
  z-index: -1;
}
.kids-program .row .col-lg-6:nth-child(1) .program-img::before {
  transform: rotate(-15deg) translateY(-50%);
  left: 0;
}
.kids-program .row .col-lg-6:nth-child(2) .program-img::before {
  transform: rotate(15deg) translateY(-50%);
  right: 0;
}

/* SECTION GALLERY */

.gallery-img a {
  display: block;
}
.gallery-img img {
  height: 350px;
  object-fit: cover;
}
.cust-gap {
  row-gap: 24px;
}

/* FOOTER */

.footer-top {
  background-color: var(--bg);
  padding: 50px 0px;
}
.foot-logo a {
  width: 220px;
  margin-bottom: 25px;
}
.foot-logo {
  text-align: center;
}
.footer-bottom {
  background-color: var(--c4);
  padding: 10px 0px;
  text-align: center;
  color: var(--c2);
  font-weight: 500;
}
.footer-bottom {
  background-color: var(--c4);
  padding: 10px 0px;
  text-align: center;
  color: var(--c2);
  font-weight: 500;
}
.foot-socials ul {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 25px;
}
.foot-socials ul li a {
  width: 50px;
  height: 50px;
  border: 1px solid var(--c3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c3);
  transition: all 0.5s;
  font-size: 18px;
}
.foot-socials ul li a:hover {
  background-color: var(--c3);
  color: var(--c2);
}
.foot-nav ul li a {
  font-size: 18px;
}

/* PRE LOADER */

/* loader-css */

div#preloader {
  position: fixed;
  z-index: 999999999;
  background: var(--c2);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.custom-loader {
  width: 50px;
  height: 50px;
  display: grid;
  border: 4px solid #0000;
  border-radius: 50%;
  border-color: var(--c1) #0000;
  animation: s6 1s infinite linear;
}
.custom-loader::before,
.custom-loader::after {
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
}
.custom-loader::before {
  border-color: var(--c3) #0000;
  animation: inherit;
  animation-duration: 0.5s;
  animation-direction: reverse;
}
.custom-loader::after {
  margin: 8px;
}
@keyframes s6 {
  100% {
    transform: rotate(1turn);
  }
}
#preloader.remove {
  opacity: 0 !important;
  visibility: hidden !important;
}

/* RESPONSIVE MENU CSS */

.responsive-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 70%);
  z-index: 99999;
  transition: all 0.5s;
}
.responsive-menu-inner {
  height: 100%;
  padding: 30px;
  position: relative;
  width: 80%;
  background-color: var(--c2);
  left: -100%;
}
.responsive-logo-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.respon-cross a,
.respon-cross a i {
  display: block;
}
.respon-cross a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--c4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--c4);
  transition: all 0.5s;
}
.respon-cross a:hover {
  transform: rotate(90deg);
  color: var(--c3);
  border-color: var(--c3);
}
.respon-logo a {
  display: block;
}
.respon-logo {
  width: 140px;
}
.responsive-links ul li a {
  color: var(--c5);
  transition: all 0.5s;
  font-size: 20px;
  font-weight: 600;
  display: block;
  border-bottom: 1px solid #80808047;
  padding: 10px 0px;
}
.responsive-links {
  margin-top: 50px;
  overflow-y: auto;
  height: calc(100vh - 232px);
}
.responsive-links ul li a:hover {
  color: var(--c4);
}
.responsive-links ul li {
  position: relative;
}
.responsive-links ul li.active::before {
  content: "\f068";
  color: var(--c1);
}
.responsive-socials {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--c4);
  padding: 12px 0px;
}
.responsive-socials ul {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.responsive-socials ul li a {
  color: var(--c2);
  font-size: 18px;
}
.responsive-menu.active {
  left: 0;
}
.responsive-menu.active .responsive-menu-inner {
  left: 0;
  transition-delay: 0.3s !important;
  transition: all 0.7s;
}
body.stop-scroll {
  overflow-y: hidden;
}
.header-btn {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 14px;
}
.ham-menu-btn a {
  color: var(--c5);
  font-size: 22px;
}

/* INSTAGRAM ACCOUNT */

.insta-box {
    padding: 30px;
    border-radius: 20px;
    position: relative;
    background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
}
.insta-icon {
    width: 70px;
    margin: 0 auto;
}
.insta-btn {
    text-align: center;
}
.insta-box::before {
    position: absolute;
    content: '';
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
	z-index: -1;
}
.insta-content h3 a {
    color: var(--c2);
}
.insta-icon a {
    display: block;
}
.insta-content h3 {
    text-align: center;
    margin: 20px 0px;
    font-size: 24px;
}

/* SECTION REVIEWS */

.review-video video {
    width: 100%;
    display: block;
    height: 600px;
    object-fit: cover;
    padding: 0px 20px;
    border-radius: 60px;
}
.review-item {
    position: relative;
	cursor: pointer;
}
.review-frame {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 630px;
}
.review-frame img {
    height: 100%;
}
.review-video-icon {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}
.review-video-icon button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 0;
    background-color: var(--c3);
    color: var(--c2);
    transition: all .5s;
    font-size: 20px;
}
.review-video-icon button:hover {
    background-color: var(--c4);
}