@font-face { 
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/OpenSans-Regular.woff) format("woff");
}
@font-face { 
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 600;
  src: url(../fonts/OpenSans-Semibold.woff) format("woff");
}
@font-face { 
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 800;
  src: url(../fonts/OpenSans-Bold.woff) format("woff");
}
@font-face { 
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 1000;
  src: url(../fonts/OpenSans-ExtraBold.woff) format("woff");
}
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
	font-family: OpenSans,helvetica,arial,geneva,tahoma,verdana,sans-serif;
  text-decoration: none;
  color: #fff;
}
html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	line-height: 1.5;
	font-size:100%;
	font-weight:600;
	color:#fff;
	background-color:#000;
	vertical-align: baseline;
	outline:0;
}
body {
	font-size:18px;
	overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, p {
	margin:0 0 12px 0
}
#header{
	width:100%;
	text-align:center;
	margin:0 auto;
	line-height:0;
}
#header img.resize{
	width:100%; /* you can use % */
	min-width:960px;
	height: auto;
}
.wrapper{
  display: flex;
  align-items: center;
  padding: 0px 40px;
  height: 80px;
  background-color: rgb(23,21,21);
}
#content {
  position: relative;
  height:100vh;
  padding-top:24px;
}
#content-wrap {
  position: relative;
  padding:0 15%;
}
.btext {font-weight:bold;}
ul.main_navbar_ul li a {display:inline-block;width:100%;height:100%;}
ul.main_navbar_ul li a:link {color:#fff;font-weight:bold;text-decoration:none;}
ul.main_navbar_ul li a:visited {color:#fff;font-weight:bold;text-decoration:none;}
ul.main_navbar_ul li a:hover {color:#000;font-weight:bold;text-decoration:none;}
ul.main_navbar_ul li a:active {color:#fff;font-weight:bold;text-decoration:none;}

.btn_sign{
  padding: 9px 25px;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0px 7px;
  color: #e5e5e5;
  font-weight: 300;
  align-items: flex-end;


}


.btn_sign:hover{

  border: 2px solid rgb(72,224,164);
}


.search_icon{

  color: white;
  font-size: 18px;
  cursor: pointer;
  line-height: 70px;
  width: 70px;
  text-align: center;
}

.search_icon .fas{
  color: white;
}

.wrapper .search_class{

  max-width: calc(100% - 50%);
  width: 100%;
  opacity: 0;
  transform: all 0.3s ease;
}

.wrapper #show_search:checked ~.search_icon i::before{
  content: "\f00d";
}

.wrapper #show_search:checked ~.search_class{
  opacity: 1;
}

.search_box input{
  width: 100%;
  border: none;
  outline: none;
  font-size: 17px;
  color: white;
}

.search_bar{

  color:#435978;
  text-align: left;
  font-weight: 300;
  border: 0px;
  padding: 9px 1px 9px 19px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;

}

.search_box{
  position: relative;
}

.search_box .go_icon{

  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-55%) translateX(-50%);
  width: 25px;
  border: none;
  outline: none;
  font-size: 30px;
  cursor: pointer;
 
}


.go_icon{
  background-color: rgba(0, 0, 0,0);
}

.search-icon{
  width: 20px;
}

.wrapper input[type = "checkbox"]{
  display: none;
}


/* ============================ DROP-DOWN-MENU STARTS ======================== */


.navbar_container{
  position: relative;
  transition: all 0.5s ease;
  z-index: 99;
  background-color:#5d5d5d;
  display: inline-flex;
}

.main_navbar_ul{

  display: flex;
  position: relative;
  align-items: center;
  line-height: 50px;
  background-color: #333;
}


ul.main_navbar_ul li{
  transition: all 0.3s ease;
  background-color: #ffffff;
  border-bottom: 1px solid transparent;

}
ul.main_navbar_ul li a {
	padding:0 20px;
}

ul.main_navbar_ul li, .navbar_level_2_li{

  list-style: none;
  background-color: #333;
}


.navbar_level_2_li{
  transition: all 0.3s ease;
  padding-left: 10px;

}

/* HOVER ITEMS STARTS */

.navbar_level_2_li:hover{

  padding-left: 20px;

}

.dropdown_level_1:last-child{
  border-bottom: none;
}

ul.main_navbar_ul li:hover > .dropdown_level_1{

  display: block;

}



ul.main_navbar_ul li:hover > .mega_dropdown_container{

  display: grid;
  
}

ul.main_navbar_ul li:hover{

  background-color: #93f621;
}


/* HOVER ITEMS ENDS */


.navbar_level_1_link,.navbar_level_2_link{
  text-decoration: none;
}

.navbar_level_2_link{
  font-size: .9rem;
  font-weight: 500;
}

.navbar_level_1_link{
  display: block;
  height: 100%;
  border-bottom: 1px solid transparent;
}

.dropdown_level_1{
  width: 250px;
  left: 158px;
  background-color: white;
  top: 52px;
  line-height: 45px;
  position: absolute;
  z-index: 2;
  box-shadow: 3px 3px 30px 8px rgb(0 0 0 /10%);
  display: none;

}

.dropdown_level_1:last-child{
  border-radius: 0 0 15px 15px;
}

.li_border{
  border-left: 1px solid rgba(0, 0, 0, 0.315);
}


.dropdown_logo_bar_li{

  display: none;
  list-style: none;
}

.dropdown_logo_bar{
  cursor: pointer;
}


/* ================ MEDIA QUERIES ===============  */

@media only screen and (max-width:768px){

  .navbar_container{
    left: -110%;
	 display: flex;
  }


  .dropdown_logo_bar_li{
    display: block;
    padding-top: 6px;
    background-color: 5d5d5d;
    padding-bottom: 2px;
  }

  .show{
    left: 0%;
  }
	.hamburger {
		cursor:pointer;
		color:#fff;
	}
	.hamburger:before {
		content: '';
		background-image:url("/images/burger-menu-icon-white.svg");
		background-size: 40px 40px;
		display:inline-block;
		width:40px;
		height:40px;
	}
  .fa-bars:before{
	}

  .fa-bars:before{
    content: "\f00d";
  }

  i.fas.fa-bars.dropdown_logo_bar.bar.bar2::before{
    content: "\f00d";
  }

  .dropdown_logo_bar{

    font-size: 25px;
    margin-left: 20px;
  }

  .mega_dropdown_container{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 0.30fr 0.30fr 0.30fr;
    grid-template-areas: 
    
    "row1"
    "row2"
    "row3";
    border-radius: 0px;
    box-shadow: none;
    width: 100%;
    left: 0;
    padding-bottom: 15px;
    position: static;
    z-index: 2;
  }

  .li_border{
    border: none;
  }

  .mega_li:hover{
    padding-left: 15px;
    margin-left: 40px;
    margin-bottom: 0px;
    background-color: rgba(0,0,0,0.2);
  }

  .mega_li{
    margin-bottom: 0px;
    border-top: 1px solid rgba(0,0,0,0.2);
    transition: none;
    padding-left: 15px;
  }

  .row1{

    grid-area: row1;
  }


  .row2{

    grid-area: row2;
  }

  .row3{

    grid-area: row3;
  }

  .main_navbar_ul{
    margin-left: 0px;
    float: none;
    width: 80%;
  }

  .main_navbar_ul{
    display: block;
    position: absolute;
    background-color: #333;
    box-shadow: 0px 30px 30px 8px rgba(0,0,0,0.1);
  }


  .dropdown_level_1{
    width: 100%;
    position: static;
    box-shadow: none;
    left: 0px;
  }

  ul.main_navbar_ul li:hover{
    border-left: 3px solid #003399;
    border-bottom: none;
    background-color: rbga(0,0,0,0.3);

  }

  ul.main_navbar_ul li{
    padding-right: 0px;
    background: none;
    transition: none;
  }
  ul.main_navbar_ul li a {
	  display:block;
  }
  .navbar_level_2_li:hover{
    border-bottom: none;
    background-color: #00000018;
  }

  .dropdown_level_1:last-child{
    border-radius: 0px;
    border: none;
    
  }

  .mega_dropdown_container{
    display: none;
  }

}

.logo_2{
  display: none;
  font-family:tahoma,arial,verdana,sans-serif;
  color: white;
}

@media only screen and (max-width:992px){

  .btn_2{
    display: none;

  }
  .menu-icon{
    display: none;
  }
}


@media only screen and (max-width:768px){

  .login_btn{
    display: none;

  }

  .logo{
    display: none;
  }

  .logo_2{
    display: block;
    margin-right: 2%;
    letter-spacing: 2px;

  }

  .wrapper .search_class{

    max-width: 100%;
    width: 100%;
    opacity: 1;
    transition: all 0.3s ease;
  }

  .wrapper{
    padding: 0px 30px;
  }

  .wrapper #show_search:checked ~.search_class{

    opacity: 0;
  }

  .search_icon{
    display: none;
  }

  .menu-icon{
    display: initial;
  }



}
/* ============================ DROP-DOWN-MENU ENDS ======================== */
@media (max-width: 600px) {
	#header img {
		width:90%;
		height:auto;
	}
}
@media (min-width: 601px) and (max-width: 1200px) {
	#header img {
		width:60%;
		height:auto;
	}
}
@media (min-width: 1201px) and (max-width: 2000px) {
	#header img {
		width:40%;
		height:auto;
	}
}
@media (min-width: 2001px) {
	#header img {
		width:100%;
		height:auto;
	}
}
