@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;

}

body {
    font-family: "Montserrat", sans-serif;
    background-color: #f2f4f7;

}

.forms_all{
    padding: 0 25%;
    padding-block: 50px;
}

.forms{
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.forms input{
    height: 44px;
    width: 100%;
    border: 2px solid #ddd;
    background-color: #fff;
}

.forms button{
    height: 44px;
    background-color: #B60000;
    border: none;
    color: #fff;
}


table {
    width: 100%;
    border-collapse: collapse;
 
  }
  th, td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
  }
  
  th{
    background-color: #B60000;
    color: #fff;
  }
  

  .all{
    padding: 0 10%;
    padding-block: 50px;
  }

  .all table{
    margin-top: 40px;
  }

  .all table img{
    width: 100%;
height: 100px; 
object-fit: contain; 
display: flex;
justify-content: center;
align-items: center;
}
.navbar_all {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 0 7%;
  position: sticky;
  top: 0;
  z-index: 454;
  padding-block: 5px;
  width: 100%;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.logo {
  height: 95px;
  width: 100px;
  background-image: url(../images/logo.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  color: #B60000;
}

.nav_links a {
  padding: 15px;
  color: #000;

}

.nav_links a:hover {
  color: #B60000;
}

.mobile a {
  color: #000;
}

.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
background-color: #B60000;
  min-width: 200px;
  z-index: 701;
}

.dropdown-content a {
  color: #fff;
  padding: 12px 16px;
  display: block;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #fff;
}

.dropdown:hover .dropdown-content {
  display: block;

}
#toggleButton {
  display: none;
background-color: #B60000;
}

.mobile {
  display: none;
}

@media only screen and (max-width: 1110px) {
    .forms_all, .all{
        padding: 0 5%;
        padding-block: 50px;
    }
    #toggleButton {
      display: block;
    background-color: #B60000;
      background-color: transparent;
      border: none;
      padding: 15px;
      color: #fff;

  }

  #toggleButton i {
      font-weight: 900;
      font-size: 20px;
      color: #B60000;
  }

  .nav_links {
      display: none;
  }

  .mobile {
      position: absolute;
      top: 100px;
      z-index: 4554;
      left: 0;
      width: 100%;
      background-color: #fff;
      display: flex;
      flex-direction: column;
      display: none;
  }

  .mobile a {
      border-top: 2px solid #534f4f2a;
      width: 100%;
      padding: 0 10%;
      padding-block: 20px;
  }


  .dropdown {
      border-top: 2px solid #534f4f2a;
      width: 100%;
      padding-block: 20px;
  }

  .dropdown-content {
      margin-left: 10%;
  }

  .dropdown-content a:hover {
      color: #B60000;
  }

}