*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
header{
    width: 100%;
    height: 90px;
    background-color: whitesmoke;
    position: fixed;
    font-family:'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    z-index: 999999;    
    border-bottom: 2px solid #0E0D0E;
}
/*Top Navbar Address*/
.navbar_one{
    display: flex;
    width: 100%;
    height: 35px;
    background-color: #0E0D0E;
    transform: skewX(50deg);
    margin-left: 150px;
}
.mobile_slogan{
    display: none;
}
.navbar_one div{
    height: auto;
    transform: skewX(-50deg);
    /* border: 1px solid black; */
}
.my_account{   
    width: 15%;
}
.address{
    width:35% ;
}
.slogan{
    width: 35%;
    overflow: hidden;

}
.address{
    display: flex;
    align-items: center;
    color: #fff;
}
.address p{
    padding-left: 20px;
    font-size: 15px;

}
.address p i{
    padding-right: 5px;   
}
.news_contaner{
    position: absolute;
}
.news_contaner ul{
    display: flex;
    list-style: none;
    animation: textscroll 25s infinite linear;
}
.news_contaner ul li{
    white-space: nowrap;
    padding: 5px 25px;
    position: relative;
    color: #fff;
}
@keyframes textscroll {
    from{
        transform: translateY(-10%);
    }
    to{
        transform: translateY(10%);
    }	
}
.slogan p{
	align-items: center;
	color: #fff;
	font-weight: bold;
	font-size: 20px;
    text-align: center;
    animation: 60s autoscroll infinite linear;
}
@keyframes pulse {
	0% {
	  transform: scale3d(1, 1, 1);
	}
	50%{
	  transform: scale3d(1.1, 1.1, 1.1);
	}
	100% {
	  transform: scale3d(1, 1, 1);
	}
  }
.my_account_top p i{
    padding: 0px 10px 0px 10px;
}
.login_bar{
    position: absolute;
    background-color: #E1B93A;
    width: 180px;
    display: none;
}

.login_bar a{
    text-decoration: none;
    color: #fff;
    list-style: none;
}
.login_bar li:hover{
    background-color: #0E0D0E;
}
.login_bar li{
    padding: 5px 0px 5px 0px;
    border-bottom: 0.5px solid #666;
}
.login_bar li i{
    padding: 0px 10px 0px 10px;
    color: #fff;
    
}
.my_account{
    margin-top: 5px;
    color: #fff;
    cursor: pointer;
    position: absolute;
    right: 170px;
}
.top2{
    display: none;
}

/*main Navigation Bar*/
.main_navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;   
}
.header_logo a{
    text-decoration: none;

}
.header_logo{
    display: flex;
    align-items: center;
    margin: -22px 0px 0px 60px;
    
}
.header_logo img{
    width: 80px;
    margin-top: -10px;
}
.header_logo h1{
    font-size: 35px;
    color: #0E0D0E;
    padding: 20px 0px 0px 20px;
}
.main_manu{
    display: flex;
    list-style: none;
    padding: 10px 75px 10px 10px;
    right: 0;   
}
.main_manu li{
    padding: 5px 10px 5px 10px;
}
.main_manu li a{
    text-decoration: none;
    color: #0E0D0E;
    font-size: 16px;
}
.main_manu li i{
    color: #fff;
    font-size: 12px;
    padding: 2px;
}
.main_manu li a:hover{
    text-decoration: none;
    color: #E1B93A;
    
} 
.main_manu li i:hover{
    text-decoration: none;
    color: #E1B93A;
    
} 

.Dropdown{
    background-color: #E1B93A;
    position: absolute;
    list-style: none;
    display: none;
    padding: 0px 0px 0px 0px;
    margin-top: 5px;
    
}
.Dropdown a li{
    border-bottom: 1px solid #666;
    padding: 5px 20px 5px 5px;
    color: #fff;
}
.Dropdown a li:hover{
    background-color:#0E0D0E;
    color: #fff;
}
.main_manu li:hover .Dropdown{
    display: block;
}
.toggole{
    display: none;
}
.navbar button{
    width: 140px;
    height: 40px;
    background-color: #E1B93A;
    color: #222;
    border: none;
    cursor: pointer;
    font-size: 15px;
    margin-top: -4px;
    transition: all 0.2s ease-in-out;
    padding: 10px;

}
.navbar button:hover{
    background-color: #a3841c;
    color: #fff;

}


/*--Start Foother Section---*/

footer{
    background-color: #E1B93A;
    color: #0E0D0E;
    font-family: "Teachers", sans-serif;
}
.footer_class{
    display: flex;
    justify-content: center;
}
.footer_div{
    width: 23%;
    height: auto;
}
.footer_div h1{
    text-align: left;
    padding: 10px;
    color: #0E0D0E;
    font-size: 18px;
    font-family: "Teachers", sans-serif;

}
.footer_div p{
    text-align: justify;
    padding: 10px;
    color: #0E0D0E;
    font-size: 15px;
}
.about_us a{
    color: #0E0D0E;
    text-decoration: none;
}
.quick_link{
    padding: 0px 0px 0px 80px;
}

.quick_link li{
    list-style: none;
    padding: 5px 0px 0px 0px;
}
.quick_link li a{
    text-decoration: none;
    color: #0E0D0E;
    cursor: pointer;
    padding: 10px;
    font-size: 15px;
}
.quick_link li a:hover{
 color: #0E0D0E;
 font-weight: bold;
}
.quick_link li a i{
    color: #0E0D0E;
    padding: 0px 5px 0px 0px;
}
.address_location{
    display: flex;
}
.address_location p{
    color: #0E0D0E;

}
.address_location p i{
    color: #0E0D0E;
    font-size: 25px;
}
.input{
    padding: 10px;
    text-align: center;
}
.input input{
    width: 100%;
    background-color: #fff;
    color: #222;
    height: 40px;
    border: none;
    font-size: 18px;
    padding: 10px;
}
.input button{
    width: 100%;
    background-color: #fff;
    color: #222;
    height: 40px;
    border: 1px solid #0E0D0E;
    font-size: 18px;
    padding: 5px;
    cursor: pointer;
    transition: all 0.5s;
    margin: 15px 0px 10px 0px;

}
.input button:hover{
    background-color: #0E0D0E;
    color: #fff;
}
.social_icon{
    padding: 10px 5px 20px 5px;
    text-align: center;
}
.social_icon a{
    text-decoration: none;
    padding-left: 5px;
    
}
.social_icon a i{
    color: #0E0D0E;
    background-color: #fff;
    text-align: center;
    font-size: 30px;
    padding: 10px 10px 10px 10px;
    border: 1px solid #0E0D0E;
    border-radius: 3px;
    transition: all 0.5s;

}
.social_icon a i:hover{
    background-color: #0E0D0E;
    color: #fff;
}


.power_footer{
    background-color: #0E0D0E;
    text-align: center;
    font-size: 15px;
    color: #fff;
    padding: 10px;
}
.power_footer a{
    color: #00953B;
}
