@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;500;700;900&display=swap');
html,body {
  margin: 0;
  padding: 0;
  font-family: "Roboto";
  overflow-x: hidden;
  background: black;background-color: #004d40;
  background-image: url("../img/sback.webp");
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;  /* Firefox */
}
hero,html::-webkit-scrollbar {
  display: none;  /* Safari an>d Chrome */
}
header {
  background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,48,32,0.6) 50%, rgba(0,77,64,0.1) 100%);
  color: #fff;
  padding: 1px;
  text-align: center;
  height: 66px;
  top : 0;
  position: fixed;
  width: 100%;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
li {
  display: inline-block;
}
.menu {
  width: 100%;
  height: 66px;
  line-height: 66px;
}
.m_left {
  float: left;
  height: 66px;
  width: 150px;
}
.m_right {
  float: right;
}
.inner {
  width: 85%;
  margin: auto;
}
.m_link {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 17px;
  padding: 0 20px;
  padding-bottom: 5px;
  padding-top: 5px;
  transition: all 0.3s ease-in-out;
  border-bottom: 2px solid transparent;
  height: 55px;
}
.rej {
  color: #fff;
}
.m_link .fa {
  margin-right: 5px;
}
.m_link:hover {
  color: greenyellow;
  border-color: #ffffff;
}
.m_nav_toggle {
  width: 40px;
  height: 66px;
  display: none;
  align-items: center;
  float: right;
  cursor: pointer;
}
.m_toggle_icons, .m_toggle_icons:before, .m_toggle_icons:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.m_toggle_icons:before {
  top: 12px;
}
.m_toggle_icons:after {
  top: -14px;
}
.m_right.is_open {
  transform: translateX(0);
}
.m_nav_toggle.is_open .m_toggle_icons {
  background: transparent;
  transition: all 0.3s ease-in-out;
}
.m_nav_toggle.is_open .m_toggle_icons:before, .m_nav_toggle.is_open .m_toggle.m_toggle_icons:after {
  transform-origin: center;
  transform: rotate(45deg);
  transition: all 0.3s ease-in-out;
  top: 1px;
}
.m_nav_toggle.is_open .m_toggle_icons:after {
  transform-origin: center;
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
  top: -1px;
}
.glow-on-hover {
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
}

.glow-on-hover:before {
  content: '';
  background: linear-gradient(45deg, #04cb5c, #004D40, #6cc21c, #a8d282, #04cb5c, #004D40, #6cc21c, #a8d282, #04cb5c);
  position: absolute;
  top: -2px;
  left:-2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity .3s ease-in-out;
  border-radius: 10px;
}

.glow-on-hover:active:after {
  background: transparent;
}

.glow-on-hover:hover:before {
  opacity: 1;
}

.glow-on-hover:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 30px;
  background: #004D40;
  left: 0;
  top: 0;
  border-radius: 10px;
}


iframe {
  margin-top: 66px;
}
.ilogo {
  height: 50px;
  margin-top: 9px;
  transition: all 0.1s ease-in-out;
}
.ilogo:hover {
  height: 56px;
  margin-top: 6px;
  transition: all 0.3s ease-in-out;
}
@keyframes glowing {
  0% { background-position: 0 0; }
  50% { background-position: 400% 0; }
  100% { background-position: 0 0; }
}
@media only screen and (max-width: 1170px) {
  .m_right {
    position: absolute;
    top: 68px;
    right: 0;
    width: 250px;
    background: rgba(00,52,40,0.3);
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
  }
  .m_nav_toggle {
    display:flex;
  }
  .m_link {
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
  }
  .glow-on-hover:before {
    display: none;
  }
  .glow-on-hover:after {
    display: none;
  }
  .rej:hover {
    border-bottom: 1px solid white;
    transition: all 0.3s ease-in-out;
  }
  .rejj {
    padding: 5px;
  }
}
