html,
body {
  max-width: 100%;
    overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  margin:0;
  text-align: center;
  

}

#myTopnav{ 
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 5px;
  border-width: 0 0 5px 0;
  border-style: solid;
  border-image: linear-gradient(to right,rgba(225, 140, 48, 1) 0%,
    rgba(137, 64, 139, 1) 73%,
    rgba(225, 140, 48, 1) 100%) 1;
}

a {
  text-decoration: none;
  margin: 0 20px;
}

img {
  width: 100%;
}

#OMNI {
  width: 100%;
  margin: 0;
}

.buy {
  background: #e18c30;
  background: linear-gradient(
    90deg,
    rgba(225, 140, 48, 1) 0%,
    rgba(137, 64, 139, 1) 73%,
    rgba(225, 140, 48, 1) 100%
  );
  color: white;
  padding: 10px 18px;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 50px;
  transition: 0.6s;
}

.buy:hover,
.buy2:hover {
  padding: 14px 30px;
  transition: 0.6s;
}

h2 {
  font-size: 44pt;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

h3 {
  font-size: 26pt;
  text-transform: uppercase;
  margin: 50px;
  text-align: center;
}

h4 {
  margin: 50px;
  text-align: center;
}

#multicards {
  max-width: 1300px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: auto;
  gap: 20px;
}

#multicards p{
  background: #e18c30;
  background: linear-gradient(
    90deg,
    rgba(225, 140, 48, 1) 0%,
    rgba(137, 64, 139, 1) 73%,
    rgba(225, 140, 48, 1) 100%
  );
  color: white;
  height: 50px;
  align-items: center;
  padding: 10px;
  margin: auto;
  text-align: center;
  font-size: 12pt;
}

.card{
  max-width: 400px;
}

.card img{
  width: 100%;
}

.card2{
  max-width: 200px;
}

.card2 img{
  width: 100%;
}

.card2{
  border-width: 0 3px 3px 3px;
  border-style: solid;
  border-image: linear-gradient(to right,rgba(225, 140, 48, 1) 0%,
    rgba(137, 64, 139, 1) 73%,
    rgba(225, 140, 48, 1) 100%) 1;
}

#multicards2 {
  max-width: 1400px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px auto;
  gap: 30px;  
}

#multicards2 p{
  background: #e18c30;
  background: linear-gradient(
    90deg,
    rgba(225, 140, 48, 1) 0%,
    rgba(137, 64, 139, 1) 73%,
    rgba(225, 140, 48, 1) 100%
  );
  color: white;
  height: 20px;
  align-items: center;
  padding: 10px;
  margin: auto;
  text-align: center;
  font-size: 12pt;
}

.buy2 {
  background: #e18c30;
  background: linear-gradient(
    90deg,
    rgba(225, 140, 48, 1) 0%,
    rgba(137, 64, 139, 1) 73%,
    rgba(225, 140, 48, 1) 100%
  );
  color: white;
  margin: 30px;
  justify-content: center;
  align-items: center;
  padding: 10px 18px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 50px;
  transition: 0.6s;
}

iframe {
  width: 100%;
}

#req{
  max-width: 1300px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: auto;
}

#req img {
  width: 500px;
}

#req p{
  width: 500px;
}

footer{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  background-color: #222222;  
}

footer p{
  color: #fff;
}

.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
 border-width: 0 0px 3px 0px;
  border-style: solid;
  border-image: linear-gradient(to right,rgba(225, 140, 48, 1) 0%,
    rgba(137, 64, 139, 1) 73%,
    rgba(225, 140, 48, 1) 100%) 1;  
  height: 50px;
  padding: 1em;
}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu > li {
  margin: 0 1rem;
  overflow: hidden;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #000;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

@media (max-width: 815px) {
  .menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 85px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    border: 1px solid #333;
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: #000;
    background-color: #222;
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
  h2 {
  font-size: 28pt;
  }
}