/* Start Global Rules */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  body {
    font-family: "Cairo", sans-serif;
  }
  a {
    text-decoration: none;
    color: #fff;
  }
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  /* Small */
  @media (min-width: 768px) {
    .container {
      width: 750px;
    }
  }
  /* Medium */
  @media (min-width: 992px) {
    .container {
      width: 970px;
    }
  }
  /* Large */
  @media (min-width: 1200px) {
    .container {
      width: 1170px;
    }
  }
  /* End Global Rules */
  /* Start Nav */
  .nav {
    background-color: #1a1b20;
    color: #fff;
     height: 100px;
  }
  .nav .container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     height: 100%;
  }
  .nav .logo h2 {
   font-size: 25px;
   font-weight: normal;
  }
  .nav ul {
      display: flex;
      flex-direction: row;
      gap: 25px;
  }
  .nav ul li {
    font-size: 20px;
    opacity: 0.4;
  }
  .nav ul li:hover {
    opacity: 0.8;
  }
  nav button i {
    color: black;
  }
  .nav ul li a {
    line-height: 2;
  }
  .nav button {
    background-color: #ffc107;
    width: 110px;
    height: 50px;
    border-radius: 20px;
  }
  .nav button:hover {
    opacity: 0.8;
  }
  /* End Nav */