@charset "UTF-8";
/* CSS Document */

/* Navbar & Navmenu color */
:root {
  --background-navbar: rgba(255,255,255,0.98);
}

.header {
  background: var(--background-navbar);
  position: fixed;
  width: 100%;
  height: 60px;
	z-index: 10;
	top:0;
	border-bottom: 1px solid #00acf4;
}
.menublock{
	overflow-y: scroll;
}
/* Nav items */
.menu {
  list-style: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  margin-top: 60px;
  padding: 0 0 10px 0;
  clear: both;
  background: var(--background-navbar);
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
}
@media screen and (min-width: 768px) {
	.menu {
		left: 50%;
  width: 50%;
  height: auto;
}
}
@media screen and (min-width: 1024px) {
	.menu {
		left: 70%;
  width: 30%;
  height: auto;
}
}

/* Hamburger menu button */
.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menbu text */
.menu a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 14px;
  text-transform: capitalize;
  color: #00acf4;
  opacity: 0;
  transition: 0.5s;
}

.menu li {
  border-top: 1px solid rgba(192,192,192,1.00);
  padding: 1rem 0 1rem 0;
  margin: 0 1rem;
  opacity: 0;
  transition: 0.5s;
}
.menu li:first-of-type{
	border-top: 1px solid #00acf4;
}
.menu li:last-of-type{
	border-bottom: 1px solid rgba(192,192,192,1.00);
}

.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}
.menu-btn:checked ~ .menu li:last-of-type {
  padding-bottom: 1rem;
	margin-bottom: 2rem;
}
.menu-btn {
  display: none;
}

.menu-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 28px 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	float: right;
}

.navicon {
  background: #00acf4;
  display: block;
  height: 3px;
  width: 26px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #00acf4;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* Hamburger Menu Animation Start */
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger Menu Animation End */

/* Navbar Container */
.navtext-container {
  width: 100%;
  height: 60px;
}

/* Navbar Text */
.navtext {
  /*position: absolute;
  text-transform: uppercase;*/
	display: inline-block;
  color: #00acf4;
  /*letter-spacing: 4px;*/
  font-size: 20px;
	padding: .3rem 0 0 1rem;
}
/* iconbox */
.iconblok{
	display: inline-block;
	width: 154px!important;
}
.iconbox{
	display: inline-block;
	padding: 0 3rem 0 0;
}
.iconbox img{
	width: 30px;
}
.iconbox2{
	display: inline-block;
	padding: 0 0 0 0;
}
.iconbox2 img{
	width: 22px;
	margin: 4px;
}

.gnavi__wrap{
	display: none;
}
ul.sub-menu{
		margin-top: .7rem!important;
	}

