@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #00345c;
  --secondary-color: #335c7c;
  --third-color: #f0f0f0;
  --section-bg-color: #ededed;
  --border-radius: 1.5rem;
  --p-color: #3f3636;
  --text-color: #fff;
  --main-transition: 0.3s;
  --shadow: 0 2px 15px rgb(0 0 0 / 10%);
}

html {
  scroll-behavior: smooth;
  font-size: 65.5%;
}
a,
a:visited {
  color: var(--primary-color);
}
body {
  font-family: "Cairo", sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.main-title {
  font-size: 3rem;
  text-align: center;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}
.faq-title p,
.main-p {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--p-color);
}
/* Breakpoints */

/* mobile */
@media (min-width: 576px) {
  .container {
    width: 558px;
  }
}

/* Small */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

/* Medium */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

/* Large */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

/* Start Animation */
@keyframes up-and-down {
  0%,
  100% {
    top: 0;
  }

  50% {
    top: -50px;
  }
}

@keyframes bouncing {
  0%,
  10%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40%,
  60% {
    transform: translateY(-15px);
  }
}

@keyframes left-move {
  50% {
    left: 0;
    width: 12px;
    height: 12px;
  }

  100% {
    left: 0;
    border-radius: 0;
    width: 50%;
    height: 100%;
  }
}

@keyframes right-move {
  50% {
    right: 0;
    width: 12px;
    height: 12px;
  }

  100% {
    right: 0;
    border-radius: 0;
    width: 50%;
    height: 100%;
  }
}

@keyframes moving-arrow {
  100% {
    transform: translateX(10px);
  }
}

@keyframes flashing {
  0%,
  40% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    width: 200%;
    height: 200%;
  }
}

@keyframes change-background {
  0%,
  100% {
    background-image: url("../imgs/discount-background1.jpg");
  }

  50% {
    background-image: url("../imgs/discount-background2.jpg");
  }
}
/* start header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 0 10px #ddd;
  background-color: #fff;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-content: center;
  margin: auto;
  padding: 0 4rem;
}
.header .container .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .container .logo img {
  width: 10rem;
  height: 7rem;
}
.header .container .nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--primary-color);
  transition: all 0.5s;
  /* padding: 1rem; */
  height: 100%;
}
.header .container .nav-bar .close-sidebar-button {
  align-self: flex-end;
}
.header .nav-bar > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5rem;
  position: relative;
  overflow: hidden;
  transition: var(--main-transition);
  padding: 0 1rem;
}
.header .nav-bar > li > a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: var(--primary-color);
  top: 0;
  left: -100%;
  transition: var(--main-transition);
}

.header .nav-bar > li > a:hover {
  color: var(--primary-color);
  background-color: #fafafa;
}

.header .nav-bar > li > a:hover::before {
  left: 0;
}
.nav i {
  font-size: 3.2rem;
}
.close-sidebar-button {
  color: whitesmoke;
}
.open-sidebar-button {
  color: var(--primary-color);
}

#sidebar-active {
  display: none;
}
.open-sidebar-button,
.close-sidebar-button {
  display: none;
}
/* mobile */

@media (max-width: 450px) {
  .header .container {
    display: flex;
    flex-direction: row-reverse;
  }
  .header .container .logo img {
    width: 70%;
  }
  .nav-bar {
    padding: 0;
    flex-direction: column;
    align-items: start;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 10;
    width: 20rem;
    background-color: var(--primary-color);
    box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);
    transition: 0.75s ease-out;
  }
  .nav-bar li:last-child {
    margin-bottom: 5rem;
  }
  .nav-bar a {
    box-sizing: border-box;
    height: auto;
    width: 100%;
    padding: 2rem 3rem;
    justify-content: center;
    color: whitesmoke;
  }
  .open-sidebar-button,
  .close-sidebar-button {
    padding: 1rem;
    display: block;
  }
  #sidebar-active:checked ~ .nav-bar {
    right: 0;
  }
  #sidebar-active:checked ~ #overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
  }
  .header .nav-bar > li {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .header .container {
    display: flex;
    flex-direction: row-reverse;
  }
  .header .container .logo img {
    width: 70%;
  }
  .nav-bar {
    padding: 0;
    flex-direction: column;
    align-items: start;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 10;
    width: 30rem;
    background-color: var(--primary-color);
    box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);
    transition: 0.75s ease-out;
  }
  .header .nav-bar > li {
    width: 100%;
  }
  .nav-bar li:last-child {
    margin-bottom: 5rem;
  }
  .nav-bar a {
    box-sizing: border-box;
    height: auto;
    width: 100%;
    padding: 2rem 3rem;
    justify-content: center;
    color: whitesmoke;
  }
  .open-sidebar-button,
  .close-sidebar-button {
    padding: 2rem;
    display: block;
  }
  #sidebar-active:checked ~ .nav-bar {
    right: 0;
  }
  #sidebar-active:checked ~ #overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
  }
}
/* end header */

/* start hero  */
.hero {
  padding: 6rem 2rem;
  background-color: var(--section-bg-color);
}
.hero .container {
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.hero .container .hero-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .container .hero-text h1 {
  font-size: 6rem;
  color: var(--primary-color);
}
.hero .container .hero-text .hero-text-p {
  width: 100%;
  font-size: 2rem;
  font-weight: 500;
  color: var(--p-color);
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 2rem;
  line-height: 1.6;
}
.hero .container .hero-img {
  display: flex;
  justify-content: center;
}
.hero .container .hero-img img {
  position: relative;
  width: 80%;
  height: 100%;
  animation: up-and-down 5s linear infinite;
}
.book-now {
  display: flex;
  justify-content: center;
  align-content: center;
  gap: 2rem;
  width: 100%;
}
.book-now .form a {
  background-color: var(--primary-color);
  color: var(--text-color);
  border: 2px solid var(--primary-color);
  padding: 1rem 2rem;
}
.book-now .cta a {
  background-color: #3f3636;
  color: var(--text-color);
  padding: 1rem 2rem;
}
.book-now .form a,
.book-now .cta a {
  border-radius: var(--border-radius);
  transition: 0.5s all ease-in-out;
}

.form:hover a {
  background-color: hsl(206, 100%, 10%);
}
.cta:hover a {
  background-color: hsl(0, 8%, 15%);
} /* mobile */

@media (max-width: 450px) {
  .hero {
    padding: 1rem;
  }
  .hero .container {
    grid-template-columns: 1fr;
    gap: 6rem;
    padding: 0 1rem;
  }
  .hero-text,
  .hero-text-p {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 6rem;
    padding: 0 1rem;
  }
  .hero-text,
  .hero-text-p {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero .container .hero-img img {
    position: relative;
    width: 70%;
  }
}

/* end hero  */
/* start services  */
.services {
  padding: 3rem;
}
.services .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
  gap: 2rem;
}
.services .container .box {
  border-radius: var(--border-radius);
  overflow: hidden;
  font-size: 2rem;
  font-weight: 500;
  box-shadow: var(--shadow);
  transition: 1s ease;
}
.services .container .box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}
.services .container .box .box-img img {
  width: 100%;
  height: 25rem;
}
.services .container .box .box-text {
  padding: 1rem;
  text-align: center;
  color: var(--primary-color);
}
.services .container .box .box-text h3 {
  width: 100%;
  border: 1px solid var(--primary-color);
  padding: 1rem;
  border-radius: var(--border-radius);
  transition: var(--main-transition);
}
.services .container .box:hover h3 {
  background-color: var(--primary-color);
  color: whitesmoke;
}
/* end services  */
/* about us start */
.about-us {
  padding: 3rem 1rem;
}
.about-us .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-content: center;
  gap: 3rem;
}
.about-us .container .img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-us .container .img img {
  width: 60%;
}
.about-us .container .about {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about-us .container .about .about-box {
  display: flex;
  justify-content: start;
  align-content: center;
  gap: 1rem;
  color: var(--primary-color);
}
.about-us .container .about .about-box i {
  font-size: 2.2rem;
  font-weight: 700;
}
.about-us .container .about .about-box p {
  font-size: 2.3rem;
  font-weight: 600;
}

/* mobile */

@media (max-width: 450px) {
  .about-us {
    padding: 1rem;
  }
  .about-us .container {
    grid-template-columns: 1fr;
    gap: 6rem;
    padding: 0 1rem;
  }
  .about-us .container .about .about-box {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .about-us .container {
    grid-template-columns: 1fr;
    gap: 6rem;
    padding: 0 1rem;
  }
  .about-us .container .about .about-box {
    display: flex;
    justify-content: start;
  }
  .about-us .container .hero-img img {
    position: relative;
    width: 50%;
  }
}
/* about us end */
/* Star[t Gallery */
.gallery {
  padding-top: 3rem;
}
.gallery.carosel {
  display: flex;
  justify-content: center;
  align-items: center;
}
.carosel {
  width: 1300px;
  max-width: 100vw;
  height: 550px;
  margin: auto;
  position: relative;
  overflow: hidden;
  border-radius: 25px;
}
.list {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  width: max-content;
  transition: 1s;
}
.list img {
  width: 1300px;
  max-width: 100vw;
  height: 100%;
  object-fit: cover;
}
.buttons {
  position: absolute;
  top: 45%;
  left: 5%;
  width: 90%;
  display: flex;
  justify-content: space-between;
}
.buttons button {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius);
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  font-family: monospace;
  font-weight: bold;
}
.dots {
  position: absolute;
  bottom: 10px;
  color: #fff;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  transition: 1s;
}
.dots li {
  list-style: none;
  width: 10px;
  height: 10px;
  background-color: #fff;
  margin: 20px;
  border-radius: 20px;
}
.dots li.active {
  width: 30px;
}
@media screen and (max-width: 768px) {
  .carosel {
    height: 400px;
    margin: auto;
  }
}
@media screen and (max-width: 450px) {
  .gallery {
    padding: 0;
    margin: auto;
  }
}

/* End Gallery */

/* start footer */
.footer {
  background-color: var(--primary-color);
  color: var(--text-color);
  font-size: 2rem;
  margin-top: 2rem;
}
.footer .container {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 2rem;
}
.footer .container .social-a7med {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer .container .social-a7med i {
  color: var(--text-color);
  font-size: 2rem;
}
/* end footer */
/* mobile */

@media (max-width: 450px) {
  .footer .container {
    flex-direction: column;
  }
}
/* end index page */

/* start football-page  */

.football img {
  width: 100%;
}
.football .container {
  display: flex;
  position: relative;
  bottom: 5rem;
  right: -5rem;
}
.football .container .football-text {
  margin: auto;
  height: fit-content;
  text-align: center;
  border-radius: var(--border-radius);
  line-height: 1.7;
  position: absolute;
  bottom: 10rem;
  right: 5rem;
  width: 70%;
}
.football .container .football-text h1 {
  width: fit-content;
  color: var(--text-color);
  background-color: #0d3a6bb3;
  font-size: 4rem;
  border-radius: var(--border-radius);
  padding: 1rem;
}
/* mobile */

@media (max-width: 450px) {
  .football img {
    width: 100%;
  }
  .football .container .football-text {
    font-size: 1rem;
    line-height: 1.5;
    position: absolute;
    bottom: -5rem;
    right: 5rem;
  }
}
@media (max-width: 768px) {
  .football img {
    width: 100%;
  }
  .football .container .football-text {
    font-size: 1rem;
    line-height: 1.5;
    width: 100%;
    position: absolute;
    top: -2rem;
    left: 3rem;
  }
  .football .container .football-text h1 {
    font-size: 2rem;
  }
}

/* stat faq */
.faq {
  padding-top: 3rem;
}
.working-process .accordion-item {
  border: 1px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  /* padding: 20px; */
  background-color: var(--body-color);
  font-size: 2rem;
}

.working-process .accordion-item .accordion-button {
  background-color: var(--body-color);
  padding: 2rem 4rem;
  border-bottom: 1px solid var(--primary-color);
  font-size: 2rem;
}

.working-process .accordion-item .accordion-collapse.collapse.show,
.working-process .accordion-item .accordion-collapse.collapse.show {
  background-color: var(--primary-color);
  transition: all 0.2s ease-in-out;
  color: var(--text-color);
}

.working-process .accordion-item .accordion-button:not(.collapsed) {
  color: var(--text-color);
  transition: all 0.2s ease-in-out;
  background-color: var(--primary-color) !important;
  box-shadow: none;
  color: var(--text-color);
}

.working-process .accordion-item .accordion-button:focus {
  box-shadow: none;
}

.working-process .accordion-item .accordion-collapse .accordion-body {
  padding: 2rem 4rem;
}

.working-process .accordion-item .accordian-numbers {
  font-size: 2.4rem;
  padding-left: 2rem;
}
/* .accordion-button {
  position: relative;
} */
.accordion-button::after {
  background-image: none;
  font-family: "Font Awesome 6 Free";
  content: "\f068";
  height: 35px;
  width: 35px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid var(--secondary-color);
  background-color: var(--body-color);
  color: var(--primary-color);
  position: absolute;
  left: 2rem;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  content: "\f067";
  color: var(--text-color);
}

.working-process .accordion-item .collapsing {
  transition: all 0.3s ease-in-out;
}
/* end faq */
/* contact-us start */
.contact-us {
  padding: 3rem;
  background-color: var(--primary-color);
  color: var(--text-color);
}

/* contact-us end */

/* start specifications */
.specifications {
  background-color: #f4f6f8;
}
.specifications .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.specifications .container .box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.specifications .container .box:nth-child(2) .img {
  order: 2;
}
.specifications .container .box:nth-child(4) .img {
  order: 2;
}
.specifications .container .box .last {
  order: 2;
}
.specifications .container .box .img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.specifications .container .box img {
  width: 70%;
  border-radius: var(--border-radius);
}
.specifications .container .box .box-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
}
.specifications .container .box .box-text h3 {
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 2rem;
}
.specifications .container .box .box-text p {
  font-size: 2rem;
  font-weight: 400;
  color: var(--p-color);
  width: 70%;
  line-height: 1.8;
}

@media (max-width: 450px) {
  .specifications .container .box {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .specifications .container .box:nth-child(2) .img {
    order: 0;
  }
  .specifications .container .box .last {
    order: 0;
  }
}
@media (max-width: 575px) {
  .specifications .container .box {
    grid-template-columns: 1fr;
  }
  .specifications .container .box:nth-child(2) .img {
    order: 0;
  }
  .specifications .container .box:nth-child(4) .img {
    order: 0;
  }
  .specifications .container .box .last {
    order: 0;
  }
}
/* end specifications */
/* start training */
.training {
  padding: 3rem;
  background-color: #fff;
}
.training .container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.training .container .training-box,
.training .container .training-box .training-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}
.training .container .training-box h3 {
  font-size: 2rem;
  color: var(--primary-color);
}
.training .container .training-box p,
.training .container .training-box .training-list {
  font-size: 1.5rem;
  color: var(--p-color);
}

/* end training */
