* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }
  
  body {
    font-family: montserrat;
  }
  
  nav {
    background-color: #2C599D;
    height: 80px;
    width: 100%;
  }
  
  .logo {
    color: white;
    font-size: 25px;
    font-weight: bold;
    margin-left: 15px;
  
  }
  
  .logo-text {
    display: inline-block;
    vertical-align: middle;
    margin-top: 20px;
  }
  
  
  .enter {
    border: none;
    background-color: #1b9bff;
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 25px;
    margin-left: 80px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .enter:hover {
    background-color: #1b9bff;
  }
  
  nav ul {
    float: right;
    margin-right: 20px;
  }
  
  nav ul li {
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
  }
  
  nav ul li a {
    color: white;
    font-size: 17px;
    padding: 8px 10px;
    border-radius: 25px;
    text-transform: uppercase;
  }
  
  a:hover {
    background: #1b9bff;
    border-radius: 25px;
    transition: .5s;
  }
  
  .checkbtn {
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
  }
  
  #check {
    display: none;
  }

  .h1-hero {
    padding-top: 5%;
  color:#ffffff;
  font: 700 normal 3em 'tahoma';
  }

  .p-hero {
    margin-top: 2%;
    font-size: 20px;
  color: #ffffff;
  line-height: 1.5;
  }

  .hero {
    display:flex;
    border-bottom: 6px solid black;
    background-image: url(/IMAGES/Free-vector-realistic-3d-podium-background-Wallpaper.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .text-heading {
    margin: 2%;
  }

  .hero-image {
    width: 38%;
    border-radius: 25px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin: 5%;
  }

  @media (max-width: 858px) {

    .h1-hero {
      font-size: 30px;
    }
  
    label.logo {
      font-size: 25px;
      padding-left: 10px;
    }
  
    nav ul li a {
      font-size: 16px;
    }
  
  
    .p1-hero {
  
      font-size: 20px;
    }
  }
  
  @media (max-width: 906px) {
  
    .hero-image {
        width: 60%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .h1-hero {
      font-size: 40px;
      text-align: center;
    }
  
    .p-hero {
text-align: center;
    }
    .checkbtn {
      display: block;
    }
  
    ul {
      position: fixed;
      width: 100%;
      height: 100vh;
      background: #2c3e50;
      top: 0px;
      left: -100%;
      text-align: center;
      transition: all .5s;
    }
  
    nav ul li {
      display: block;
      margin: 50px 0;
      line-height: 30px;
    }
  
    nav ul li a {
      font-size: 20px;
    }
  
    a:hover,
    a.active {
      background: none;
      color: #0082e6;
    }
  
    #check:checked~ul {
      left: 0;
    }
  
    .enter {
      padding: 20px 45px;
      margin: 0px;
      font-size: 20px;
    }

    .hero {
        display: block;
    }
}

.text-mission {
    padding: 5% 25% 5% 25%;
    text-align: center;
}

.h1-mission {
    font-size: 40px;
    color:#000000;
    text-align: center;
}

.p-mission {
    margin-top: 2%;
    font-size: 20px;
  color: #000000;
  line-height: 1.5;
  text-align: center;
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    text-align: center;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .social-media {
    margin-bottom: 20px;
  }
  
  .social-media h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
  }
  
  .social-icons li {
    margin: 0 10px;
  }
  
  .social-icons li a {
    color: #fff;
    font-size: 24px;
  }
  
  .bottom-text {
    margin-top: 20px;
  }
  
  .bottom-text p {
    margin: 0;
    font-size: 14px;
  }
