@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700&family=Play&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&display=swap");

/* other css file imports */
@import url("section/header.css");
@import url("section/imageSlider.css");
@import url("section/hero.css");
@import url("section/program.css");
@import url("section/gallery.css");
@import url("section/about.css");
@import url("section/contact.css");
@import url("section/footer.css");

/* CSS variables for reusablity across all files (including above imported) */
:root {
  --play: "play", serif;
  --montserrat: "montserrat", sans-serif;

  --primary-color: #333333;
  --secondary-color: #eaa945;
  --black-bg: #000000;
  --top-bg: #150102;

  --black-200: #020202;
  --black-300: #333333;
  --black-400: #1f1e31;
  --black-500: #555555;
  --gray-100: #888888;

  --color-white: #fff;
  --color-creamson: rgb(255, 251, 246);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
html {
  scroll-behavior: smooth;
}

body {
  height: 100%;
  /* max-width: 1280px;
  margin: 0 auto; */
  /* background-color: var(--color-creamson); */
  background-color: var(--black-300);
}

.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url(http://smallenvelop.com/demo/simple-pre-loader/images/loader-64x/Preloader_2.gif)
    center no-repeat #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* START: header media querie */
@media screen and (max-width: 1070px) {
  .header__nav {
    padding: 10px 0px;
  }

  .header__menu {
    display: none;
  }

  .header__menu-mobile {
    display: flex;
  }
}

@media screen and (max-width: 550px) {
  header {
    padding: 5px 15px;
  }
  .header__logo {
    padding-left: 0;
  }
  .footer {
    /* align-items: center; */
    justify-content: center;
  }
}
/* END: header media queries */

/* START: hero media queries */
@media screen and (max-width: 450px) {
  .gallery__video__container {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
@media screen and (max-width: 450px) {
  .gallery__video__container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}
/* END: hero media queries */

/* START: popular media queries */
@media screen and (max-width: 725px) {
  .contact__form,
  .about__founder,
  .gallery__container,
  .programs__container {
    margin-bottom: 40px;
  }
  .scroll {
    bottom: 20px;
  }
  .gallery_page_h4 {
    margin-bottom: 10px !important;
  }
  .contact_des-address {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 500px) {
  .contact__des,
  .contact__form {
    padding: 0px 10px;
  }
  .contact__form div {
    flex-direction: column;
  }
}
@media screen and (max-width: 390px) {
  .contact__des,
  .contact__form {
    padding: 0px;
  }
}
/* END: popular media queries */

/* START: subscribe media queries */
@media screen and (max-width: 920px) {
  .about__bottom {
    /* position: absolute; */
    bottom: -20px;
    right: 10px;
  }
}
@media screen and (max-width: 750px) {
  .about__top,
  .contact__main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about__bottom {
    /* position: absolute; */
    bottom: -40px;
    right: 10px;
  }
  .about__misson-founder-con {
    margin-top: 40px;
    gap: 40px;
    grid-template-columns: 1fr;
  }
  .about__mission h4 {
    margin-bottom: 20px;
  }
  .contact {
    background-size: 50%;
  }
}
/* END: subscribe media queries */

/* START: trending media queries */
@media screen and (max-width: 800px) {
  .coache {
    /* grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); */
    margin-top: 20px;
  }
}
@media screen and (max-width: 400px) {
  .coache {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    margin-top: 0px;
  }
}
/* END: trending media queries */

/* START: header media querie */
@media screen and (max-width: 1070px) {
  .programs,
  .coaches,
  .about,
  .gallery,
  .contact {
    padding: 30px 40px;
  }
  .programs__header-line,
  .about__header-line,
  .contact__header-line {
    width: 35%;
  }
  .top__image-con {
    margin-top: 20px;
  }
}

@media screen and (max-width: 721px) {
  .programs,
  .coaches,
  .about,
  .gallery,
  .contact,
  .footer {
    padding: 10px 30px;
  }
  .programs__header-line,
  .about__header-line,
  .contact__header-line {
    width: 30%;
  }
  .programs__container {
    grid-template-columns: auto auto;
  }
  .header__top-p {
    /* margin-top: 40px; */
    /* display: none; */
    margin: 0px 50px;
  }
  .top-text {
    bottom: -40px;
    left: -60px;
  }
  .header__top {
    align-items: flex-start;
  }
}
@media screen and (max-width: 550px) {
  .programs__header-line,
  .about__header-line,
  .contact__header-line {
    width: 20%;
  }
  .programs__container {
    grid-template-columns: auto;
  }
}
@media screen and (max-width: 388px) {
  .programs__header-line,
  .about__header-line,
  .contact__header-line {
    width: 10%;
  }
}
/* END: header media queries */
