@import url(fonts/stylesheet.css);

/* VARIABLES */
:root {
  --c-white: #ffffff;
  --c-light-blue: #bef4fe;
  --c-black: black;
  --font-base: "Playfair Display", sans-serif;
  --box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.08);
  --transition: all 0.5s ease;
}

/* HELPERS & RESETS */
* {
  font-family: var(--font-base);
  line-height: 1.7;
  color: var(--c-black);
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
*::selection {
  background-color: black;
  color: #ffffff;
}
body {
  color: var(--c-white);
  /* background-color: var(--c-light-blue); */
  overflow-x: hidden;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3.h4.h5.h6 {
  font-weight: 800;
  color: var(--c-black);
}
p, span {
  color: var(--c-black);
  font-family: 'Poppins';
}

a {
  text-decoration: none;
  color: var(--c-black);
  transition: var(--transition);
  font-size: 18px;
}

.section-padding {
  min-height: 40vh;
  background-color: #f6f5f4;
}
img {
  max-width: 100%;
  height: auto;
}


header a {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  
}
header .btn {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: 0px;
  padding: 10px 60px;
  background-color: #C80406;
}
header a:hover {
  color: red;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-skip-ink: none;
  text-underline-offset: 2px;
  text-decoration-color: red;
  text-align: center;
}

/* nav */
.form__group {
    position: relative;
    padding: 20px 0 0;
    width: 100%;
    max-width: 180px;
  }
  
  .form__field {
    font-family: inherit;
    width: 100%;
    border: none;
    border-bottom: 2px solid #6b6b6b;
    outline: 0;
    font-size: 17px;
    color: #fff;
    padding: 7px 0;
    background: transparent;
    transition: border-color 0.2s;
  }
  
  .form__field::placeholder {
    color: transparent;
  }
  
  .form__field:placeholder-shown ~ .form__label {
    font-size: 17px;
    cursor: text;
    top: 20px;
  }
  
  .form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 17px;
    color: #ffe699;
    pointer-events: none;
  }
  
  .form__field:focus {
    padding-bottom: 6px;
    font-weight: 700;
    border-width: 3px;
    border-image: linear-gradient(to right, #ffe699, #5d3294);
    border-image-slice: 1;
  }
  
  .form__field:focus ~ .form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 17px;
    color: #ffe699;
    font-weight: 700;
  }
  
  /* reset input */
  .form__field:required,
  .form__field:invalid {
    box-shadow: none;
  }


  /* hero
   */
   #hero{
    background-image: url(./image/academy/Academy-header-Image.jpg);
    min-height: 70vh;
   }


   /* me */
   #experience{
    background-image: url(./image/academy/TKP8222-1024x1006.jpg);
    min-height: 50vh;
   }

   /* contact */
   /* contact */
.wave-group {
  position: relative;
  margin-bottom: 2vh;
}

.wave-group .input {
  font-size: 16px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 350px;
  border: none;
  border-bottom: 1px solid #515151;
  background: transparent;
}

.wave-group .input:focus {
  outline: none;
}

.wave-group .label {
  color: #999;
  font-size: 18px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  display: flex;
}

.wave-group .label-char {
  transition: 0.2s ease all;
  transition-delay: calc(var(--index) * .05s);
}

.wave-group .input:focus ~ label .label-char,
.wave-group .input:valid ~ label .label-char {
  transform: translateY(-20px);
  font-size: 14px;
  color: #5264AE;
}

.wave-group .bar {
  position: relative;
  display: block;
  width: 350px;
}

.wave-group .bar:before,.wave-group .bar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #5264AE;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

.wave-group .bar:before {
  left: 50%;
}

.wave-group .bar:after {
  right: 50%;
}

.wave-group .input:focus ~ .bar:before,
.wave-group .input:focus ~ .bar:after {
  width: 50%;
}






   /* footer */
   footer {
    background-color: black ;
    color: white;
  }
  footer * {
    color: white;
    font-family: 'Poppins';
    font-weight: 400;
  }
  footer p {
    opacity: 0.5;
  }
  footer li {
    opacity: 0.5;
    list-style: none;
  }
  footer img {
    width:400px;
    padding: 40px 0px;
  }
  footer .services img {
    width: 200px;
    padding: 10px 30px;
  }
  footer .social li {
    padding: 10px 20px;
  }
  footer .form-control {
    border-radius: 0px;
    padding: 10px 20px;
    margin: 20px 0px;
  }
  footer .btn {
    border-radius: 0px;
    color: white;
    padding: 10px 20px;
    margin: 10px 0px;
  }
  footer .service-box {
    background-color: #c80406;
    width: 40px;
  }
  footer a {
    font-size: 14px;
    color: #2a519d;
  }
  footer p {
    font-size: 13px;
  }
  footer li {
    font-size: 16px;
    padding:5px 0px;
    font-weight: lighter;
  }
  footer i {
    font-size: 40px;
  }









  /* faqs */
/* FAQs-QUESTIONS */
#questions {
  background-color: white;
  min-height: 115vh;
  display: flex;
  
}
#questions .container {
  /* padding:10vh 0 10vh 20vw; */
}
#questions h3 {
  font-size: 30px;
  font-weight: 700;
  margin: 15px 75px;
  
}
#questions h5 {
  font-size: 22px;
  font-weight: 700;
  margin: 15px;
}

#questions span {
  font-size: 22px;
  font-weight: bolder;
  margin: 15px;
  padding: 7px;
  /* background-color: #91dfb9; */
  /* border-radius: 50%; */
  color: red;
  border-bottom: 1px solid black;
}











/* benefits */
#benfits{

}
.b{
  
}
.b1{
  width: 36vh;
  margin-top: 15vh;
  margin-left: -10vh;
  background: red;
  padding: 2px;
  z-index: 999;
}
.b3{
  width: 50vh;
  
  margin-left: -10vh;
  background: red;
  padding: 2px;
  z-index: 999;
  margin-top: 25vh;
  margin-left: -8vh;
}
.b4{
  width: 36vh;
  
  margin-left: -10vh;
  background: red;
  padding: 2px;
  z-index: 999;
  margin-top: 25vh;
  margin-left: -8vh;
}
.b5{
  width: 36vh;
  
  margin-left: -10vh;
  background: red;
  padding: 2px;
  z-index: 999;
  margin-top: 26vh;
  margin-left: -8vh;
}
.b2{
  width: 36vh;
  
  margin-left: -10vh;
  background: red;
  padding: 2px;
  z-index: 999;
  margin-top: 25vh;
  margin-left: -8vh;
}



.q9{
  background-image: url( ./image/academy/TKP8244-min-scaled.jpg  );
}


