/*====================== Google fonts ========================*/

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700&display=swap');


/*====================== Basic css ========================*/
html{
	font-size: 62.5%;
}

:root {
	scroll-behavior: unset;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

ol,
ul {
	list-style: none;
}

a,
a:hover {
	text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
	outline: none;
}

/* body */
body {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.3;
	font-family: 'Open Sans';
	background-color: #F2F4F8;
	color: #333b55;
}

/*====================== scrollbar area start ========================*/
::-webkit-scrollbar {
	display: none;
  }
/*====================== scrollbar area start ========================*/


/*====================== Header area start ========================*/

header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1024;
	width: 100%;
	padding: 1rem 0;
	-webkit-transition: background 0.3s;
	-o-transition: background 0.3s;
	transition: background 0.3s;
	background-color: #081621;
	/* background: -webkit-gradient(linear, left bottom, left top, color-stop(24%, #faffa9), to(#fff));
	background: -o-linear-gradient(bottom, #faffa9 24%, #fff 100%);
	background: linear-gradient(360deg, #faffa9 24%, #fff 100%); */

}

/*sticky*/
header.sticky {
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    box-shadow: 0 .8rem 2rem 0 rgba(0, 0, 0, .1);
}

/* menu */
#menu {
	text-align: left;
}

#menu li {
    display: inline-block;
    color: #fff;
    margin-left: 2rem;
    text-align: left;
}

#menu li:last-child{
	margin-right: 0;
}

#menu li a {
	color: #fff;
	transition: 0.3s;
}

#menu>li>a.active,
#menu>li>a:hover {
	color: #fff;
}

/*Hamburger menu*/
.hamburger-menu {
	cursor: pointer;
	position: relative;
	display: none;
	z-index: 999;
}

.hamburger-menu span {
	background: #fff;
	width: 3rem;
	height: .3rem;
	display: block;
	margin: .5rem 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.hamburger-menu:hover .line-top {
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}

.hamburger-menu:hover .line-bottom {
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
}

.hamburger-menu .line-top.current {
	-webkit-transform: translateY(200%) rotate(135deg);
	-ms-transform: translateY(200%) rotate(135deg);
	transform: translateY(200%) rotate(135deg);
}

.hamburger-menu .line-center.current {
	opacity: 0;
}

.hamburger-menu .line-bottom.current {
	-webkit-transform: translateY(-325%) rotate(-135deg);
	-ms-transform: translateY(-325%) rotate(-135deg);
	transform: translateY(-325%) rotate(-135deg);
}

/*ofcanvas menu*/
.ofcavas-menu {
    position: fixed;
    width: 70%;
    height: 100%;
    background: #fff;
    z-index: -1;
    top: 0;
    margin-top: 60px;
    display: none;
    left: -100%;
    transition: .3s;
}

.ofcavas-menu.current {
	left: 0;
}

.ofcavas-menu ul {
	margin-top: 10rem;
}

.ofcavas-menu li{
	padding: .8rem 0;
}

.ofcavas-menu a {
	color: #5f490c;
}

.offcanvas{
	width: 99%!important;
}
.offcanvas-header{
	background-color: #01132D;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 14px;
}
.offcanvas_upper{
	color: #000;
	font-size: 12px;
}

.offcanvas-header button{
	color: #fff!important;
	z-index: 1024;
}
.promo_code_main{
	background-color: #EBECF8;
	padding: 20px 0;
	margin-top: 80%;
}
.promo_code_main input{
	border: none;
	width: 100%;
	padding: 10px 0;
	background-color: #fff;
	border-radius: 4px;
}
.promo_btn {
    background-color: #3749BB;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
}
.total_p{
	color: #444;
}
/*========== Page loader CSS ==========*/

#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loader3 {
	width: 5rem;
	height: 5rem;
	display: inline-block;
	padding: 0;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 5rem;
	height: 5rem;
	border-radius: 100%;
	background: #f33737;
	-webkit-animation: loader3 1.5s linear infinite;
	animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
	0% {
		transform: scale(0, 0);
		opacity: 0.8;
	}

	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}

@-webkit-keyframes loader3 {
	0% {
		-webkit-transform: scale(0, 0);
		opacity: 0.8;
	}

	100% {
		-webkit-transform: scale(1, 1);
		opacity: 0;
	}
}


/*========== return-to-top ==========*/

.back-to-top {
	width: 6rem;
	height: 6rem;
	line-height: 6rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3rem;
	right: 2rem;
	border: 0.5px solid #fff;
	color: #fff;
	border-radius: 4px;
	background: #081621;
}
.back-to-top-two{
	width: 6rem;
	height: 6rem;
	line-height: 6rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 10rem;
	right: 2rem;
	border: 0.5px solid #fff;
	color: #fff;
	border-radius: 4px;
	background: #081621;
}


/*========== header part start ==========*/



/*========== header input part start ==========*/
.header_input{
	display: flex;
	justify-content: space-between;
	width: 100%;
	background-color: #fff;
	border-radius: 4px;
	overflow: hidden;
}
.header_input input{
	width: 80%;
	padding: 10px 2%;
	border: none;
}
.header_input i{
	padding: 14px 2%;
}

/*========== header input part end ==========*/
.header_menu_icon{
	display: flex;
	justify-content: center;

}
.header_menu_icon i {
    color: #EF4A23;
    font-size: 23px;
    padding: 10px;
}
.header_menu_main {
    font-size: 14px;
    padding: 6px 0px 6px 10px;
}
.header_menu_main span{
    font-size: 10px;
    color: #808181;
}
.pc_builder_btn{
	padding: 10px 20px;
	border-radius: 4px;
	border: none;
	font-weight: 700;
	color: #fff;
	background-image: linear-gradient(to right, #3749BB 0%, #26a0da  51%, #3749BB  100%);
	transition: 0.5s;
	background-size: 200% auto;
}
.pc_builder_btn:hover {
	background-position: right center; /* change the direction of the change here */
	text-decoration: none;
  }
.ofcanvas_search_menu ul {
	display: inline-flex;
} 
.ofcanvas_search_menu ul li a {
    font-size: 18px;
    padding: 8px;
}
.ofcanvas_logo, .ofcanvas_search_menu{
	display: none;
}
.dropdown-menu-custom{
    display: none;
    background-color: #fff;
    border-top: 3px solid #EF4A23!important;
    position: absolute;
	top: 100%;
	padding: 10% 0;
    box-shadow: 0px 5px 20px -15px #000;
	min-width: 200px;
}
.dropdown-menu-custom li {
    padding: 0px 10px!important;
}
.dropdown-menu-custom li:hover{
	background-color: #EF4A23;
}
.dropdown-menu-custom li a:hover{
	color: #fff!important;
}
.dropdown-submenu-custom {
    display: none;
    background-color: #fff;
    padding: 5% 0;
    position: absolute;
    left: 100%;
    box-shadow: 0px 5px 20px -10px #000;
    top: -35%;
	min-width: 200px;
}
.dropdown-submenu-custom li {
    padding: 0px 10px!important;
}
.dropdown-menu-custom .nav-link{
	display: flex;
	justify-content: space-between;
}
.dropdown-item{
	padding: 5px 0 5px 5px;
}
.dropdown-menu-custom .nav-item .nav-link i{
	color: #EF4A23;
	opacity: 0.5;
}

.dropdown-menu-custom .nav-item:hover .dropdown-submenu-custom{
	display: block;
}
.dropdown:hover .dropdown-menu-custom{
	display: block;
}
.custom-dropdown-right{
	position: absolute;
	right: 0;
}
.navbar-nav {
    font-size: 14px;
    font-weight: bold;
}
.navbar-nav .nav-item{
	padding: 10px 0;
}
.navbar-nav .nav-item .nav-link{
	color: #000;
}
.navbar-nav .nav-item .nav-link:hover{
	color: #EF4A23;
}

/*========== header part end ==========*/
.hero_area{
	margin-top: 50px;
}

/*========== second nav part start ==========*/
.second_menu {
    background-color: #fff!important;
    box-shadow: 0px 0px 10px -5px #000;
	position: fixed;
	z-index: 2;
}
.second_nav_link {
    font-size: 14px;
    color: #000!important;
    font-weight: 700;
	padding: 12px 0;
}
.second_menu ul{
	margin: 0 auto;
}
/*========== second nav part end ==========*/



/*========== Accordion nav part start ==========*/
.accordion {
	background-color: #fff;
	color: #000;
	cursor: pointer;
	padding: 10px 10px;
	width: 100%;
	border: none;
	border-bottom: 0.5px solid #eee;
	text-align: left;
	outline: none;
	font-size: 15px;
	transition: 0.4s;
	display: flex;
	justify-content: space-between;
  }
  .accordion i{
	color: #999;
  }
  .accordion:hover,:focus{
	color: #EF4A23;
  }
  
.panel {
	padding: 0 18px;
	display: none;
	background-color: white;
	overflow: hidden;
	text-align: left;
	color: #000;
  }
.ofcavas-menu{
	overflow-y: scroll;
}

/*========== Accordion nav part end ==========*/




/*==========slider part  part start ==========*/

.ads_slider{
	box-shadow: 5px 5px 1px #EAECF0;
}
/*========== slider part  part end ==========*/
/*========== compare products  part start ==========*/

.compare_products {
    background-color: #FFE8A1;
    padding: 30px 0;
}
.compare_title{
	font-size: 14px;
	color: #000;
	font-weight: 700;
}
.choose_to_compare{
	font-size: 12px;
	color: #7F7450;
	margin-top: 10px;
}
.product_input{
	background-color: #fff;
	width: 80%;
	margin: 15px auto;
	border-radius: 4px;
	box-shadow: 1px 1px 1px #EAECF0;
}
.product_input input{
	width: 80%;
	padding: 10px 0;
	border: none;
}
.product_input i{
	color: #868686;
}
         
.compare_products button {
	margin: 0 auto;
	width: 80%;
	padding: 10px 30px;
	text-align: center;
	transition: 0.5s;
	background-color: transparent;
	background-size: 200% auto;
	color: #3749BB;
	font-weight: 700;            
	border-radius: 4px;
	border: 2px solid #3749BB;
	display: block;
	transition: all linear 0.3s;
  }

  .compare_products button:hover {
	background-image: linear-gradient(to right, #3749BB 0%, #3a6073  51%, #3749BB  100%);
	background-position: top center; /* change the direction of the change here */
	color: #fff;
	text-decoration: none;
	transition: all linear 0.3s;
  }
 .mini_ads{
	margin-top: 25px;
	box-shadow: 5px 5px 1px #EAECF0;
 }

/*========== compare products  part end ==========*/



/*========== marquee part  part end ==========*/
.marquee_part{
	width: 100%;
	margin: 0 auto;
	background-color: #fff;
	border-radius: 30px;
	padding: 10px 2%;
}
.marquee_part marquee{
	font-size: 14px;
	color: #000;
}
/*========== marquee part  part end ==========*/


/*========== featured heading part  part end ==========*/
.common_heading_tite{
	font-size: 18px;
	font-weight: 700;
	color: #000;
	margin-top: 50px;
}
.common_heading_txt{
	font-size: 14px;
	margin-top: 10px;
	font-weight: 600;
}
/*========== featured heading part  part end ==========*/


/*========== featured  part  part start ==========*/
.featured_caregory_item {
    padding: 15% 0 10% 0px;
    font-size: 16px;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0px 0px 24px -18px gray;
	font-weight: 500;
}
.featured_caregory_item p {
    padding: 15px 0!important;
}
.featured_caregory_item:hover{
	color: #EF4A23;
	cursor: pointer;
	box-shadow: 0px 0px 24px -14px gray;
}
/*========== featured  part  part end ==========*/


/*========== featured  product  part end ==========*/
.featured_product {
    background-color: #fff;
    position: relative;
    border-radius: 4px;
    padding: 10px 0;
	transition: all linear 0.3s;
	margin-top: 20px;
	width: 250px;
}
.featured_product:hover{
	box-shadow: 2px 4px 5px -4px #666;
	transition: all linear 0.3s;
}
.savings{
	position: absolute;
	left: 0;
	top: 20px;
	color: #fff;
	font-size: 12px;
	padding: 5px 10px;
	border-radius: 0 30px 30px 0;
	background-color: #6E2594;

}
.product_details{
	padding: 20px;
}
.product_name{
	min-height: 60px;
}
.product_name p{
	text-align: left;
	font-size: 14px;
	font-weight: 600;
}
.product_name a{
	color: #000;
}
.prices{
	font-size: 16px;
	color: #EF4A23;
	margin-top: 20px;
	text-align: left;
	font-weight: 700;
}
.prices span{
	font-size: 12px;
	margin-left: 10px;
	color: #666;
	text-decoration: line-through;
}
.featured_product:hover .featured_overlay{
	height: 58%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fff;
	opacity: 0.1;
	visibility: none;
}
/*========== featured  product  part end ==========*/


/*==========   paragraph  part start ==========*/
.p_title{
	font-size: 18px;
	font-weight: 700;
}
.p_txt{
	font-size: 14px;
	margin: 20px 0;
	line-height: 3rem;
	font-weight: 500;
	color: #000;
}
.p_txt a{
	color: #EF4A23;
}
.p_txt a:hover{
	text-decoration: underline;
}

/*==========   paragraph  part end ==========*/


/*==========   footer  part start ==========*/
footer{
	background-color: #081621;
}
.footer_first{
	text-align: left;
}
.footer_second{
	text-align: left;
	padding-left: 10px;
}
.footer_third{
	text-align: left;
}
.footer_fourth{
	text-align: left;
}
.footer_fifth{
	text-align: left;
}
.footer_title{
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 2px;
	margin: 50px 0 20px 0;
}
.footer_call {
    padding: 12px 19px;
    border: 1px solid #212E38;
    border-radius: 50px;
}

.footer_call:hover{
	border: 1px solid #EF4A23;
	background-color: #06121A;
	cursor: pointer;
}
.call_number{
	font-size: 16px;
	font-weight: 700;
	color: #EF4A23;
}
.call_time{
	font-size: 12px;
	color: #83897A;
}
.footer_call i{
	color: #fff;
}
.footer_icon{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer_icon::before{
	position: absolute;
	right: 0;
	content: "";
	background-color: #808181;
	height: 80%;
	width: 1px;
	opacity: 0.5;
}
.footer_list li {
	margin: 20px 0;
}
.footer_list li a{
	text-decoration: none;
	color: #808181;
	font-size: 14px;
}
.footer_list li a:hover{
	text-decoration: underline;
	color: #EF4A23;
}
.footer_list .active a{
	color: #EF4A23;
}
.fl_two{
	margin-top: 90px;
}
.footer_contact_info{
	color: #fff;
	font-weight: 500;
}
.footer_contact_info_txt {
    font-size: 13px;
    color: #808181;
    margin-top: 10px;
    line-height: 25px;
}
.footer_email{
	font-size: 14px;
	color: #808181;
}
.app{
	font-size: 12px;
	color: #808181;
	line-height: 40px;
}
.exp_img{
	padding: 5px 5px;
	border: 1px solid #808181;
	border-radius: 4px;
}
.exp_img:hover{
	border: 1px solid #fff;
}
.footer_second i{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
	width: 40px;
	color: #fff;
	border-radius: 50%;
	background-color: #808181;
}
.footer_second i:hover{
	background-color: #3749bb;
	cursor: pointer;
}
.copyright{
	font-size: 12px;
	color: #808181;
	line-height: 40px;
}
.Powered_by{
	font-size: 12px;
	color: #808181;
	line-height: 40px;
}
/*==========   footer  part end ==========*/
