* {
  padding: 0%;
  margin: 0%;
  box-sizing: border-box;
  font-family: Georgia, 'Times New Roman', Times, serif;
  text-decoration: none;
}

:root {
  --dark: #000000;
  --basic: #ffffff;
  --hover: #E50914;
  --transparent: rgba(0, 0, 0, 0.2);

}

li {
  list-style: none;

}

a {
  /* text-decoration: none; */
  /* color: var(--basic); */
  color: var(--dark);


}

/* body {
  
} */

/* header style start */



header {
  background-color: var(--dark);
  /* background: rgba(0, 0, 0, 0.2); */

  color: var(--basic);
  padding: 4px;

}

.header-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 0px 30px;
}

.location,
.phone,
.opening-hours {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.phone a {
  color: var(--basic);
}

.location i,
.phone i,
.opening-hours i {
  /* margin-right: 1px; */
}

.location span,
.phone span,
.opening-hours span {
  margin-left: 5px;

}

/* header media query style  */
@media screen and (max-width: 730px) {
  header {
    /* padding: 8px; */
    font-size: 10px;
  }

}

@media screen and (max-width: 492px) {
  header {
    /* padding: 8px; */
    font-size: 7px;
  }
  

}
@media screen and (max-width: 372px) {
  header {
    /* padding: 8px; */
    font-size: 6px;
  }
  

}

/* header style end */




/* navbar style start */
nav {
  position: relative;
  position: sticky;
  padding: 0 2rem;
  /* background: #ffffff; */
  /* background: var(--transparent); */
  background: var(--basic);
  top: 0rem;
  z-index: 100;



}

.navbar {
  width: 100%;
  height: 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;



}

nav .links li a {
  padding: 6px 15px;
  border-radius: 20px;


}

nav .links li a:hover,
nav .links li a.active 
  {
  background: var(--dark);
  color: var(--basic);
}


.navbar .logo img {
  height: 3rem;
  cursor: pointer;
  /* width: 100%; */
}


/* .navbar .logo a {
    font-size: 1.5rem;
    font-weight: bold;
} */

.navbar .links {
  display: flex;
  gap: 2rem;

}

.navbar .links a {
  font-size: 1.5rem;
}

.navbar .toggle_btn {
  /* color: var(--basic); */
  color: var(--dark);
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

.action-btn {
  background-color: var(--hover);
  color: var(--basic);
  padding: 0.5rem 1.5rem;
  border: none;
  outline: none;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: scale .2s ease;
}

.action-btn:hover {
  scale: 1.05;
  color: var(--basic);
}

.action-btn:active {
  scale: 0.95;
}

.dropdown_menu {
  display: none;
  position: absolute;
  right: 2rem;
  top: 70px;
  height: 0;
  width: 300px;
  /* background-color: rgba(225, 225, 225, 0.1); */
  background-color: var(--basic);
  backdrop-filter: blur(15px);
  border-radius: 10px;
  overflow: hidden;
  transition: height .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

}

.dropdown_menu.open {
  height: 270px;
}

.dropdown_menu li {
  padding: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown_menu .action-btn {
  width: 100%;
  display: flex;
  justify-content: center;
}




/* navbar media query  style */
@media screen and (max-width:992px) {

  .navbar .links,
  .navbar .action-btn {
    display: none;
  }

  .navbar .toggle_btn {
    display: block;
  }

  .dropdown_menu {
    display: block;

  }
  .action-btn:hover {
    scale:none;
  }
  
  

}

@media screen and (max-width:576px) {
  .dropdown_menu {
    left: 2rem;
    width: unset;
  }
}

@media screen and (max-width:440px) {

  .navbar .logo img {
    width: 90%;
  }
}

/* navbar style end */

/* div style start  */


.image-container {

  background-image: url(../image/background.jpg);
  height: 120vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
 
}
.image-container h1{
  color: #E50914;
}

@media screen and (max-width:990px) {
  .image-container {
    background-position: 90%;

  }
}

@media screen and (max-width:700px) {
  .image-container {
    background-position: 70%;
  }
}

@media screen and (max-width:500px) {
  .image-container {
    background-position: right;
  }

}



/* classed and traiing  */
.training{
  background-image: url(../image/xd.jpeg);
  background-position: top center;
  background-size: cover;
  /* opacity: 0.7; */
  height: 40vh;
}



/* footer style start */
.container {
  max-width: 1170px;
  margin: auto;
}

.row {

  flex-wrap: wrap;
  display: inline-flex;
}


.footer {
  background-color: black;
  padding: 15px 0;
  line-height: 1.5;
}

.footer-col {
  width: 25%;
  padding: 0 35px;
}

.footer-col h4 {
  font-size: 18px;
  color: var(--basic);
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: var(--hover);
  height: 2px;
  /* box-sizing: border-box; */
  width: 50px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  color: var(--basic);
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--basic);
  /* color: var(--hover); */
  padding-left: 15px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: var(--basic);
  transition: all 0.5s ease;
}

#facebook:hover {
  color: var(--basic);
  background: #3b5998;

}

#linkedin:hover {
  color: var(--basic);
  background: #0A66C2;
}

#instagram:hover {
  color: var(--basic);

  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5, #0dcaf0);

}

#github:hover {
  color: var(--basic);
  background: #171515;
}

.footer .footer-text {
  height: auto;
  width: 45%;
  display: block;
  margin: auto;
  text-align: center;
  padding-top: 1.2rem;
  color: var(--basic);
  /* color: #E50914; */
}

.footer .footer-text a {
  /* color: var(--btn); */
  color:var(--hover);
  /* text-decoration: none; */
}

.footer .footer-text a:hover {

  color: var(--basic);
}

/* footer media query  style */

@media screen and (max-width:767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}

@media screen and (max-width:574px) {
  .footer-col {
    width: 100%;
  }


}

/* footer  style end */

.gallery img:hover {
  transform: scale(1.1);
  transition-property: all;
  transition-timing-function: ease-in-out;
  transition-duration: 250ms;
  filter: grayscale(0%);
}