body {
	margin: 0;
	padding-top: 0;
	font-family: 'Roboto';
	font-size: 16px;
	overflow-x: hidden;
}
* {
	box-sizing: border-box;
}
ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
a {
	color: #333;
	text-decoration: none;
    transition: .35s;
}
a:hover {
    color: #16f4ff;
}
button {
    padding: 0;
    border: 0;
    background: transparent;
}
img, input, textarea, select {
	width: 100%;
	max-width: 100%;
}
input:focus, textarea:focus, select:focus {
	outline: none;
}
p {
	color: #333;
	font-size: 16px;
	margin: 0 0 10px;
	line-height: 1.5;
	letter-spacing: .15px;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 10px;
}
.container {
	padding: 0 20px;
}



/* _______ Start CSS For Header ________ */
.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header {
    background: #fff;
    padding: 12px 0;
    box-shadow: 0px 3px 25px rgb(0 0 0 / 15%);
}
.logo {
    width: 100%;
    max-width: 120px;
}
.menubar {
    display: flex;
    justify-content: center;
}
.menubar li a {
    padding: 10px 15px;
    margin: 0 3px;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    position: relative;
    letter-spacing: .5px;
}
.menubar li a span {
    position: absolute;
    content: "";
    width: 0;
    height: 3px;
    background: #16f4ff;
    left: 50%;
    top: calc(100% - 3px);
    transform: translateX(-50%);
    transition: .35s;
}
.menubar li a:hover span {
	width: calc(100% - 30px);
}
.header-icon a i {
    font-size: 16px;
}
.humburger {
    display: none;
    flex-direction: column;
    grid-gap: 3px;
}
.humburger-lg {
    display: inline-block;
    width: 25px;
    height: 2px;
    background: #16f4ff;
    transition: .5s;
}
.humburger-sm {
    display: inline-block;
    width: 18px;
    height: 2px;
    background: #16f4ff;
}
.header-cart a:hover i {
    color: #43f2fb;
}
ul.dropdown {
    padding: 0;
    box-shadow: 0 0 15px rgb(0 0 0 / 25%);
    border-radius: 5px;
    position: absolute;
    z-index: 99;
    background: #fff;
    min-width: 155px;
    top: 100%;
    left: 0;
    display: none;
	transition: .25s;
	overflow: hidden;
}
ul.menubar>li {
    position: relative;
    z-index: 999;
}
ul.menubar>li:hover ul.dropdown {
    display: block;
}
 ul.dropdown>li:hover {
    background: #ccc;
}


@media (max-width: 1023px) {
	.menubar li a {
	    padding: 10px 15px;
	}
	.menubar li a:hover span {
		width: calc(100% - 30px);
	}
}

@media (max-width: 767px) {
	header {
		 padding: 15px 0;
	}
	.menubar li {
	    border-bottom: 1px solid rgb(255 255 255 / 75%);
	}
	header {
	    position: fixed;
	    width: 100%;
	    top: 0;
		z-index: 999;
	}
	.humburger {
	    display: flex;
	}
	.menubar li a {
	    font-size: 21px;
	    font-weight: 400;
	    padding: 20px 35px;
	}
	.menubar {
	    position: fixed;
	    background: #16f4ff;
	    top: 105px;
	    left: 100%;
	    width: 100%;
	    display: block;
	    height: 100vh;
	    text-align: center;
	    padding: 35px 0 0 !important;
	    transition: .5s;
	}
	.menubar li a:hover span {
	    width: calc(100% - 70px);
	}
	.mob_nav .menubar {
		left: 0;
	}
	.mob_nav .humburger-sm {
	    opacity: 0
	}
	.mob_nav .humburger-lg:nth-child(01) {
	    transform: rotate(45deg);
	    transform-origin: 7px 1px;
	}
	.mob_nav .humburger-lg:nth-child(03) {
	    transform: rotate(-45deg);
	    transform-origin: 4px 0px;
	}
}


/* _______ End CSS For Header ________ */


/* ____________ Start  CSS For Footer _________*/
footer a, footer p, footer span, footer i {
    color: #fff;
}
footer {
    background: #333;
    padding: 50px 0 20px;
}
.footer-items>h4 {
    margin-bottom: 25px;
}
.footer-items>h4 span {
    font-size: 20px;
    color: #16f4ff;
    border-bottom: 2px solid #16f4ff;
    display: inline-block;
    padding-bottom: 10px;
}
.btm_footer {
    border-top: 1px solid #fff;
    padding-top: 20px;
    margin-top: 35px;
}
.footer-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 25px;
}
.footer-icons i {
    font-size: 24px;
    color: #16f4ff;
}
.footer-items ul li {
    padding: 10px 0;
}
.footer-items ul li a {
    transition: .35s;
}
.footer-items ul li a:hover {
    color: #16f4ff;
}
.footer-items ul li a i {
    display: inline-block;
    padding-right: 15px;
}
.footer-items ul {
	padding-left:  0 !important;
}

@media (max-width: 767px) {
	.footer-items>h4 {
		margin-bottom: 10px;
		margin-top: 20px;
	}
}

/* ____________ End CSS For Footer _________*/

.tt {
    margin: 0 0 25px;
    text-align: center;
}
.container-pp {
    padding: 35px 15px;
}