  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "roboto";
  }

  /* tools */
  :root {
    --p-primary: 30px;
    --max-width: 1920px;
    --title-font-size: 40px;
    --text-font-size: 15px;

    --primary-color: #2ab9ce;
  }

  .btn {
    padding: 8px 50px;
    border: 1px solid;
    border-radius: 50px;
  }

  body {
    background: #000;
    scroll-behavior: smooth;
  }

  header {
    display: flex;
    justify-content: center;
    background: #fff;
    box-shadow: 5px 5px solid green;
    position: sticky;
    top: 0;
    z-index: 999;
  }

  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: var(--p-primary);
    gap: 150px;
    width: 100%;
    max-width: var(--max-width);
  }

  header .container .logo img {
    width: 150px;
  }

  header .container .navbar {
    width: 100%;
    height: 100%;
  }

  header .container .navbar .topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    padding-block: 10px;
    font-size: var(--text-font-size);
  }

  header .container .navbar .topbar span {
    margin: auto;
    font-size: 15px;
  }

  header .container .navbar .topbar i {}

  header .container .navbar .bottomBar {
    border-top: 1px solid #00000045;
  }

  header .container .navbar .bottomBar .navigation {
    display: flex;
    justify-content: space-between;
    font-size: var(--text-font-size);
    padding-block: 10px;
  }

  .bottomBar .navigation ul {
    display: flex;
    align-items: center;
    width: 100%;
    list-style: none;
    gap: 80px;
  }

  .bottomBar .navigation ul li {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }

  .bottomBar .navigation ul li a {
    text-decoration: none;
    color: black;
  }

  .bottomBar .navigation ul li.active a {
    color: var(--primary-color);
  }

  .bottomBar .navigation .donation {
    border-color: var(--primary-color);
    border-width: 1.5px;
  }

  .bar_icon {
    display: none;
  }

  .mySwiper {
    width: 100%;
    height: 83.85vh;
  }

  .swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 8%;
  }

  .slide-1 {
    background-image: url("Assets/slide\ 1.png");
    background-position: top;

  }

  .slide-2 {
    background-image: url("Assets/slide2.png");
    background-position: top;
  }

  .slide-3 {
    background-image: url("Assets/slide3.png");
    background-position: top;
  }

  .slide-4 {
    background-image: url("Assets/slide4.png");
    background-position: top;
  }

  .slide-5 {
    background-image: url("Assets/slide5.png");
    background-position: top;
  }

  .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
  }

  .content {
    position: relative;
    max-width: 650px;
    color: white;
    z-index: 2;
  }

  .content span {
    display: inline-block;
    margin-bottom: 15px;
    color: #ffd166;
    font-size: 18px;
    font-weight: 600;
  }

  .content h1 {
    font-size: 55px;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
  }

  a.btn {
    text-decoration: none;
    color: #2ab9ce;
  }

  .btn:hover {
    background: #2ab9ce;
    color: white;
    transition: 0.5s;
    border: none;
  }

  .swiper-button-next,
  .swiper-button-prev {
    color: white;
  }

  .swiper-pagination-bullet {
    background: white;
    opacity: 0.6;
  }

  .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
  }

  main {
    position: relative;

  }

  main section {
    height: 83.58vh;

  }

  main section .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.61);

  }

  main section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }

  main section .comming-soon {
    position: absolute;
    top: 50%;
    left: 15%;
    color: white;
    width: 70%;
    text-align: center;
    font-size: 20px;
  }


  @media (max-width: 768px) {}

  /* Large Desktops */
  @media (max-width: 1400px) {}

  /* Desktops */
  @media (max-width: 1250px) {
    header .container {
      gap: 50px;
    }

    .bottomBar .navigation ul {
      gap: 50px;
    }
  }

  @media (max-width: 1100px) {
    .btn.donation {
      padding: 8px 30px;
    }
  }

  /* Laptops */
  @media (max-width: 992px) {
    header {
      flex-direction: column;
    }

    header .container {
      gap: 30px;
    }

    header .container .navbar {
      display: none;
      position: absolute;
      width: 100vw;
      height: 100vh;
      top: 0;
      left: 0;
      background: white;
    }

    header .container .navbar.active {
      display: block;
    }

    header .navbar .topbar {
      padding: 30px;
      display: none;
    }


    .navbar .topbar .search_icon {
      display: none;
    }


    .navbar .bottomBar {
      width: 100%;
      height: 100%;
    }

    .navbar .bottomBar .navigation {
      flex-direction: column;
      width: 100%;
      height: 95%;
    }

    .bar_icon {
      display: block;
      font-size: 30px;
      z-index: 111111;
    }

    .bottomBar .navigation ul {
      flex-direction: column;
      width: 100%;
      height: 100%;
      gap: 10px;
    }

    .bottomBar .navigation ul li {
      width: 100%;
      padding: 0 30px;
      align-items: center;
    }

    .bottomBar .navigation ul li a {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
    }

    .btn.donation {
      display: none;
    }
  }

  /* Tablets */
  @media (max-width: 768px) {
    .content h1 {
      font-size: 36px;
    }

    .content p {
      font-size: 16px;
    }

    .swiper-slide {
      padding: 0 5%;
    }
  }

  /* Large Phones */
  @media (max-width: 576px) {}

  /* Small Phones */
  @media (max-width: 400px) {}