@font-face {
  font-family: redhatmono;
  src: url("../fonts/redhatmono.ttf");
}
html {
  scroll-behavior: smooth;
}
html.no-scroll {
  overflow: hidden;
}

body {
  font-family: redhatmono !important;
  scroll-behavior: smooth;
}
body a {
  text-decoration: none;
}
body button:focus {
  outline: none;
}
body input:focus {
  outline: none;
}
body select:focus {
  outline: none;
}
body textarea:focus {
  outline: none;
}
body input::-webkit-outer-spin-button,
body input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body input[type=number] {
  -moz-appearance: textfield;
}

#scroll-btn {
  opacity: 0;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 5;
  font-size: 16px;
  outline: none;
  background-color: #fcab17;
  color: #fff;
  cursor: pointer;
  width: 35px;
  height: 35px;
  text-align: center;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 5px;
}

.tabcontent {
  display: none;
}

.hover-blue-btn {
  display: block;
  color: #000;
  border: 2px solid #fff;
  padding: 5px 15px;
  border-radius: 3px;
  transition: 0.3s;
}
.hover-blue-btn:hover {
  color: #fff;
  background-color: #41c0c8;
}

.blue-btn {
  display: block;
  color: #000;
  border: 2px solid #848484 !important;
  padding: 5px 15px;
  border-radius: 3px;
  transition: 0.3s;
  background-color: #41c0c8;
}
.blue-btn:hover {
  color: #fff;
  background-color: #41c0c8;
}

@media only screen and (max-width: 600px) {
  #scroll-btn {
    left: unset;
    right: 10px;
    bottom: 10px;
    transform: unset;
  }
}
#header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}
#header.sticky {
  position: sticky;
}
#header.sticky .header-wrapper {
  background-color: #fff;
  border-bottom: 2px solid #1fa6af;
}
#header.active .header-wrapper {
  background-color: #fff;
  border-bottom: 2px solid #1fa6af;
}
#header.active .header-wrapper .header-logo img {
  height: 50px;
}
#header.active .header-wrapper .header-menu .header-menu-link {
  font-size: 14px;
}

.header-holder {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: transparent;
  transition: 0.3s;
}

.header-logo img {
  height: 65px;
  transition: 0.3s;
}

.header-logo-m {
  display: none;
}
.header-logo-m img {
  transition: 0.3s;
}

.header-menu-wrapper {
  display: flex;
}

.header-menu {
  position: relative;
}
.header-menu:hover .header-menu-dropdown {
  max-height: 500px;
  opacity: 1;
  z-index: 10;
  top: 110%;
}
.header-menu:hover .header-menu-link i {
  transform: rotate(180deg);
}
.header-menu .header-menu-link {
  display: flex;
  align-items: center;
  color: #000;
  padding: 0 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
}
.header-menu .header-menu-link i {
  margin-left: 10px;
  transition: 0.3s;
}

.header-menu-dropdown {
  opacity: 0;
  display: flex;
  flex-direction: column;
  background-color: #41c0c8;
  position: absolute;
  top: 80%;
  max-width: 300px;
  width: 200px;
  max-height: 0;
  overflow: hidden;
  border-radius: 3px;
  z-index: -1;
  transition: 0.3s;
}
.header-menu-dropdown a {
  display: block;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  white-space: nowrap;
  transition: 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.header-menu-dropdown a:last-child {
  border-bottom: none;
}
.header-menu-dropdown a:hover {
  background-color: #56dbe4;
  color: #000;
}

.header-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
}
.header-burger div {
  width: 100%;
  height: 4px;
  background-color: #000;
  border-radius: 50px;
}

.header-sidebar-layer {
  position: fixed;
  top: 0;
  right: -100%;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  z-index: 12;
  transition: 0.3s;
}
.header-sidebar-layer.show {
  right: 0;
  z-index: 12;
}

.header-sidebar-wrapper {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 13;
  transition: 0.3s;
  background-color: #56dbe4;
  height: 100vh;
  max-width: 300px;
  width: 100%;
  overflow: auto;
}
.header-sidebar-wrapper.show {
  right: 0;
  z-index: 13;
}

.header-sidebar-holder {
  overflow: auto;
}

.close-sidebar {
  cursor: pointer;
  position: sticky;
  padding: 5px 10px;
  top: 0;
  background-color: #56dbe4;
  z-index: 1;
  font-size: 23px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.header-sidebar-item {
  cursor: pointer;
}
.header-sidebar-item .header-sidebar-link {
  display: block;
  color: #000;
  padding: 10px;
  width: 100%;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.header-sidebar-collapse {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}
.header-sidebar-collapse .header-sidebar-link {
  border-bottom: none;
}
.header-sidebar-collapse .header-sidebar-arrow {
  background-color: rgba(0, 0, 0, 0.7);
  width: 50px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-sidebar-collapse-holder {
  display: flex;
  flex-direction: column;
  background-color: #6aafb4;
}
.header-sidebar-collapse-holder a {
  display: block;
  color: #000;
  padding: 5px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
.header-sidebar-collapse-holder a:hover {
  color: #000;
}

@media only screen and (max-width: 991px) {
  .header-menu-wrapper {
    display: none;
  }
  .header-wrapper.active .header-logo img {
    height: 70px;
  }
  .header-burger {
    display: flex;
  }
}
@media only screen and (max-width: 600px) {
  #header {
    position: sticky;
    top: 0;
    background-color: #fff;
  }
  .header-wrapper.active .header-logo-m img {
    height: 50px;
  }
  .header-holder {
    padding: 5px 10px;
  }
  .header-logo {
    display: none;
  }
  .header-logo img {
    height: 55px;
  }
  .header-logo-m {
    display: block;
  }
  .header-logo-m img {
    height: 55px;
  }
}/*# sourceMappingURL=header.css.map */