:root {
    --white: #fff;
    --black: #222;
    --grey: #444;
    --grey2: #959595;
    --grey-alt: #d1e2e9;
    --yellow: #ffd800;
  }

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--black);
  background-color: var(--white);
  z-index: -1;
}

/* <!-- Nav -->  */

li,
ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.container {
  max-width: 114rem;
  margin: 0 auto;
}
@media only screen and (max-width: 1200px) {
  .container {
    padding: 0 3rem;
  }
}
@media only screen and (max-width: 1200px) {
  .container {
    padding: 0 5rem;
  }
}


.adverts {
    line-height: 3rem;
    height: 3rem;
    background-color: var(--yellow);
    text-align: center;
    color: var(--white);
    font-weight: 500;
  }
  
  .navigation {
    padding: 1.6rem 0;
  }
  
  .nav-center {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .nav-top {
    display: none;
  }
  
  .logo {
    color: var(--black);
  }
  
  .logo span {
    color: var(--yellow);
  }
  
  .nav-list {
    display: flex;
    align-items: center;
  }
  
  .fix-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1200;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-item:not(:last-child) {
    margin-right: 0.5rem;
  }
  
  .nav-item {
    padding: 0 1rem;
  }
  
  .nav-link {
    position: relative;
    display: inline-block;
    padding: 0.5rem 0 0.2rem;
    font-size: 1.5rem;
    color: var(--black);
    text-transform: uppercase;
    transition: all 500ms ease-in-out;
  }
  
  .nav-link::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    top: 100%;
    left: 0;
    background: var(--yellow);
    transition: transform 0.5s;
    transform: scaleX(0);
    transform-origin: right;
  }
  .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  .nav-icons span:not(:last-child) {
    margin-right: 0.5rem;
  }
  
  .nav-icons span {
    font-size: 2rem;
    border-radius: 50%;
    padding: 0rem 1rem;
    cursor: pointer;
    transition: all 300ms ease-in-out;
  }

  @media (max-width:770px) {
    .nav-icons {
      display: none;
    }
  }
  
  .nav-icons .fas {
    transition: all 300ms ease-in-out;
  }
  
  .nav-icons span:hover .fas {
    color: var(--white);
  }
  
  .hamburger {
    display: none;
  }
  
  @media only screen and (max-width: 996px) {
    .nav-item:not(:last-child) {
      margin-right: 0.3rem;
    }
  
    .nav-item {
      padding: 0 0.5rem;
    }
  
    .nav-link {
      font-size: 1.4rem;
    }
  
    .nav-icons span {
      font-size: 1.2rem;
      padding: 0.3rem 0.7rem;
    }
  }
  
  @media only screen and (max-width: 768px) {
    .navigation.show {
      background-color: rgba(0, 0, 0, 0.6);
    }
    .nav-menu {
      position: fixed;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100vh;
      z-index: 9990;
      background-color: var(--white);
      transition: all 500ms linear;
    }
  
    .nav-menu.show {
      left: 0;
    }
  
    .nav-list {
      flex-direction: column;
      align-items: start;
      padding: 2rem 0;
    }
  
    .nav-menu .logo h1 {
      font-size: 1.8rem;
      font-weight: 500;
      color: var(--white);
    }
  
    .nav-menu .logo h1 span {
      color: var(--white);
    }
  
    .nav-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: var(--yellow);
      padding: 1.6rem 2rem;
    }
  
    .hamburger {
      display: block;
      font-size: 2.5rem;
      cursor: pointer;
    }
  
    .close {
      font-size: 2rem;
      color: var(--white);
      cursor: pointer;
    }
  
    .nav-item {
      width: 100%;
      padding: 0;
    }
  
    .nav-item:not(:last-child) {
      margin-bottom: 1rem;
    }
  
    .nav-link {
      font-size: 1.8rem;
      width: 100%;
      padding: 1rem 2rem;
    }
  
    .nav-icons span {
      display: none;
      border: none;
      font-size: 1.6rem;
    }
  
    .nav-icons span:last-child {
      display: block;
    }
  
    body.show::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 999;
    }
  }

/* <!-- Nav -->  */
/* <!-- banner -->  */

  .hero,
.glide__hero,
.banner {
  position: relative;
  height: 100vh;
  width: 100%;
  background-color: var(--grey-alt);
}

.banner img {
  position: absolute;
  bottom: 0;
}

.banner img.special_01 {
    width: 100%;
}
.banner img.special_02 {
    width: 100%;
}
.banner img.special_03 {
    width: 100%;
}

.banner-content {
  position: absolute;
  top: 50%;
  transform: translate(25%, -50%);
  z-index: 1;
  left: 10%;
}

.banner-content span {
  display: inline-block;
  font-size: 1.4rem;
  color: var(--grey);
  margin-bottom: 1rem;
  z-index: 1;
}

.banner-content h1 {
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.banner-content h3 {
  font-weight: 400;
  color: var(--grey);
  margin-bottom: 2rem;
}

.buttons-group a {
  display: inline-block;
  background-color: transparent;
  border: 1px solid var(--black);
  outline: none;
  padding: 1.2rem 3rem;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.buttons-group a:first-child {
  background-color: var(--black);
  color: var(--white);
}

.buttons-group a:first-child:hover {
  background-color: transparent;
  color: var(--black);
}

.buttons-group a:last-child:hover {
  background-color: var(--black);
  color: var(--white);
}

.glide__arrows {
  top: 50%;
}

.glide__arrow {
  position: absolute;
  top: 50%;
  background-color: #555;
  border: 1px solid var(--black);
  outline: none;
  padding: 1.3rem 1.5rem;
  border-radius: 50%;
  font-size: 1.6rem;
  color: var(--white);
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.glide:hover .glide__arrow {
  visibility: visible;
  opacity: 1;
}

.glide__arrow:hover {
  color: var(--black);
  background-color: transparent;
}

.glide__arrow--left {
  left: 5%;
}

.glide__arrow--right {
  right: 5%;
}

@media only screen and (max-width: 1260px) {
  .hero,
  .glide__hero,
  .banner {
    height: 90vh;
  }

  .banner img.special_01 {
    width: 60rem;
  }
  .banner img.special_02 {
    width: 70rem;
  }
  .banner img.special_03 {
    width: 70rem;
  }
}

@media only screen and (max-width: 996px) {
  .banner-content {
    width: 60%;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .banner img.special_01 {
    left: 50%;
    transform: translateX(-50%);
    width: 50rem;
  }

  .banner img.special_02 {
    left: 50%;
    transform: translateX(-50%);
    width: 50rem;
  }
  .banner img.special_03 {
    left: 55%;
    transform: translateX(-50%);
    width: 50rem;
  }
}

@media only screen and (max-width: 768px) {
  .banner-content {
    width: 90%;
  }
}

@media only screen and (max-width: 568px) {
  .banner-content h1 {
    font-size: 3rem;
  }

  .banner-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .buttons-group a {
    padding: 0.8rem 2rem;
    font-size: 1.4rem;
  }
}
/* <!-- banner -->  */
 /* <!-- Category -->  */
.section {
  padding: 5rem 0;
}

.category .title {
  margin-bottom: 3rem;
  text-align: center;
}

.category-center {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.category-box {
  position: relative;
  border-radius: 0.5rem;
  height: 25rem;
  overflow: hidden;
  z-index: 1;
}

.category-box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.4) 30%,
    transparent
  );
  z-index: 2;
}

.category-box img {
  height: 27rem;
  width: 100%;
  /* transform: scale(1); */
  transition: all 500ms linear;
}

.category-box:hover img {
  transform: scale(1.1);
}

.category-box .content {
  position: absolute;
  top: 30%;
  left: 5%;
  color: var(--white);
  z-index: 4;
}

.category-box .content h2 {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.category-box .content span {
  display: block;
  margin-bottom: 1rem;
}

.category-box .content a {
  display: inline-block;
  color: var(--white);
  text-transform: uppercase;
  padding: 0.7rem 1.3rem;
  border: 1px solid var(--white);
  transition: all 300ms linear;
}

.category-box:hover a {
  border: 1px solid var(--black);
  background-color: var(--black);
}

@media only screen and (max-width: 1200px) {
  .category-box .content h2 {
    font-size: 2rem;
  }

  .category-box .content span {
    font-size: 1.5rem;
  }

  .category-box .content a {
    font-size: 1.5rem;
    padding: 0.5rem 1.1rem;
  }
}

@media only screen and (max-width: 996px) {
  .category-center {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .category-box {
    height: 20rem;
  }
}

@media only screen and (max-width: 567px) {
  .category-center {
    grid-template-columns: 1fr;
  }

  .category-box {
    height: 20rem;
    max-width: 35rem;
    
  }

  .category-box .content {
    top: 20%;
  }
}


.title {
    text-align: center;
    margin-bottom: 3rem;
}

.icon-bar { 
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  min-height: 10vh;
 
}

.icon-bar a {
  float: left;
  width: 10%;
  text-align: center;
  padding: 12px 0;
  transition: all 0.3s ease;
  font-size: 20px;
  color: var(--black);
  margin-left: 40px;
}

.about { 
  width: 100%;
  text-align: center;
  padding: 30px 0;
}
.about h2 { 
 margin-bottom: 25px;
 margin-top: 20px;

}

.row {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}

.course {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 50px;
}

.course p {
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
}
/* <!-- Category -->  */

/* <!-- footer -->  */

.footer {
  background-color: var(--black);
  padding: 6rem 1rem;
  line-height: 3rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
}

.footer-center a:link,
.footer-center a:visited {
  display: block;
  color: var(--grey2);
  font-size: 1.4rem;
  transition: 0.6s;
}

.footer-center a:hover {
  color: var(--pink);
}

.footer-center div {
  color: var(--grey2);
  font-size: 1.4rem;
}

.footer-center h3 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

@media only screen and (max-width: 998px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
  }
}

@media only screen and (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }
}

#footer-logo {
  text-align: right;
}
/* <!--- footer --> */
/* <!--- feedback --> */
.facility {
  background-color: var(--yellow);
  padding: 2rem 0;
}

#facility h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.facility-contianer {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
}

.facility-icon {
  text-align: center;
}

.facility-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.facility-icon {
  position: relative;
  display: inline-block;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  border: 1.5px solid var(--white);
  z-index: 1;
  margin-bottom: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.facility-icon::before {
  content: "";
  position: absolute;
  display: inline-block;
  border-radius: 50%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0.7rem;
  background-color: var(--white);
  z-index: -1;
}

.facility-icon i {
  font-size: 2rem;
  transition: all 500ms ease-in-out;
}

.facility-box:hover i {
  transform: rotateY(180deg);
}

/* <!--- Why --> */


/* <!--- feedback --> */

#blog h1 {
  text-align: center;
    margin-bottom: 20px;
}

.blog-card {
  background-color: var(--white);
  width: 95%;
  margin: 0 auto;
}

.blog-card:not(:last-child) {
  margin-right: 1rem;
}

.card-footer {
  padding: 1rem;
}

.card-footer h3 {
  font-size: 2rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 1rem;
}

.card-footer span {
  font-size: 1.4rem;
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--black2);
}

.card-footer p {
  font-size: 1.4rem;
  color: var(--black2);
  margin-bottom: 1.6rem;
  line-height: 2.7rem;
}

@media only screen and (max-width: 567px) {
  .blog-card {
    width: 100%;
  }
  .card-footer h3 {
    font-size: 1.8rem;
  }

  .card-footer span {
    font-size: 1.2rem;
  }

  .card-footer p {
    font-size: 1.2rem;
  }

  .card-footer a button,
  .card-footer a button {
    padding: 1rem 3rem;
  }
}


.contact-section { 
    width: 100%;
    text-align: center;
    padding: 30px 0;

}

.contact-section , h2 { 
  margin-bottom: 25px;
  margin-top: 20px;
 }

 .contact-section  a {
   color: var(--yellow);
 }

 .map {
   margin-top: 30px;
 }

 .nav-icons a {
  color: #000 !important;
  text-decoration: none;
 }

/* <!--- feedback--> */

/* <!-- map response --> */
 @media (max-width: 800px) {
   .map iframe {
     width: 600px;
     height: 400px;
   }
 }

 @media (max-width: 600px) {
   .map iframe {
     width: 400px;
     height: 300px;
   }
 }
 @media (max-width: 600px) {
   .map iframe {
     width: 300px;
     height: 200px;
   }
 }
/* <!-- map response --> */

/* <!-- kite servise section --> */

 .about-title {
   width: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
 }

 .about-title h2 {
   position: relative;
 }

 .content-box {
   position: relative;
   margin-top: 40px;
   display: grid;
   grid-template-columns: 1fr 1fr;
   grid-gap: 40px;
 }

 .content-kite p {
   text-align: justify;
   margin-left: 2vw;
 }

 .content-kite {
   position: relative;
 }

 .imgbx {
   margin-right: 2vw;
 }

 .ender {
  width: 100%;
  text-align: center;
  padding: 30px 0;
 }

 .content-box1 {
  position: relative;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
}

.content-kite1 p {
  text-align: justify;
  margin-right: 2vw;
}

.content-kite1 {
  position: relative;
}

.imgbx1 {
  margin-left: 2vw;
}

.about-title1 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.about-title1 h2 {
  position: relative;
}


/* <!-- kite servise section --> */

/* <!-- price --> */

.pricingdiv{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}

.pricingdiv ul.theplan{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  color: var(--black);
  background: #ffd800;
  position: relative;
  width: 250px; 
  margin-right: 10px; 
  margin-bottom: 1em;
  transition: all .5s;
}

.pricingdiv ul.theplan:hover{ 
  transform: scale(1.05);
  transition: all .5s;
  z-index: 100;
  box-shadow: 0 0 10px gray;
}

.pricingdiv ul.theplan li{
  margin: 10px 10px;
  position: relative;
}

.pricingdiv ul.theplan li.title{
  font-size: 150%;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  text-transform: uppercase;
  border-bottom: 5px solid white;
}


.pricingdiv ul.theplan:last-of-type{ 
  margin-right: 0;
}


.pricingdiv a.pricebutton{
  background: white;
  text-decoration: none;
  padding: 10px;
  display: inline-block;
  margin: 10px auto;
  border-radius: 5px;
  color: navy;
  text-transform: uppercase;
}

@media only screen and (max-width: 500px) {
  .pricingdiv ul.theplan{
    border-radius: 0;
    width: 100%;
    margin-right: 0;
  }
  
  .pricingdiv ul.theplan:hover{
    transform: none;
    box-shadow: none;
  }
  
  .pricingdiv a.pricebutton{
    display: block;
  }
}



@media (max-width:340px) {
  #facility {
    display: none;
  }
}

/* <!-- price --> */