/*======================
   01. Google fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
/*======================
   02. Basic css
========================*/
*{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
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;
}
body {
	line-height: 140%;
	font-family: 'Inter', sans-serif;
	background-color: #fff;
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.005em;
	color: #666A6A;
}
ol,
ul {
	list-style: none;
}
a{
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
button:focus,
a:focus,
input:focus,
textarea:focus{
	outline: none;
}

.menu_wrapper .subscribe_header{
	display: none;
}

/* page loader  */
#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.loader3 {
	width: 50px;
	height: 50px;
	display: inline-block;
	padding: 0px;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background: #F3734E;
	-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% {
		-webkit-transform: scale(0, 0);
		transform: scale(0, 0);
		opacity: 0.8;
	}
	100% {
		-webkit-transform: scale(1, 1);
		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;
	}
}
.container{
	padding-left: 15px;
	padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
}
.row{
	margin-left: -15px;
	margin-right: -15px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.row>div{
	padding-left: 15px;
	padding-right: 15px;
	width: 100%;
}
.col-4{
	max-width: 33.33%;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 33.33%;
	flex: 0 0 33.33%;
}
.text-center{
	text-align: center;
}
img{
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
.logo2{
	display: none;
	width: 100%;
}
.article_details_wrapper .related_wrap .row>div{
	margin-top: 0;
}
/*Hamburger-menu START CSS*/
.hamburger-menu {
	cursor: pointer;
	display: none;
	z-index: 1;
	margin-left: 18px;
}
.hamburger-menu span {
	background: #080E0F;
	width: 30px;
	height: 3px;
	display: block;
	margin: 5px 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.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);
}
.mobile_trigger .search_btn{
	display: none;
}
/*ofcanvas-menu*/
.ofcavas-menu {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: -1;
	top: 0;
	display: none;
	left: -100%;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	text-align: center;
}

.ofcavas-menu.current {
	left: 0;
}

.ofcavas-menu a {
	color: #5f490c;
	margin-top: 10px;
}

.ofcavas-menu ul {
	margin-top: 70px;
	line-height: 22px;
}

.header_top{
	padding: 40px 0;
}
header {
	position: fixed;
	top: 0;
	z-index: 1024;
	width: 100%;
	padding: 24px 0;
	transition: 0.3s;
}
header.sticky{
	padding: 15px 0;
	-webkit-box-shadow: 0px 10px 32px rgba(8, 14, 15, 0.05);
	box-shadow: 0px 10px 32px rgba(8, 14, 15, 0.05);
	background-color: #fff;
}
.logo{
	overflow: hidden;
	width: 130px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}
.menu_wrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: space-between;
}
.menu_wrap .menu_wrapper{
	width: 100%;
}
.menu_wrap .menu_wrapper>ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
}
.menu_wrap .menu_wrapper>ul>li {
	padding: 2px 16px 0;
}
.menu_wrap .menu_wrapper>ul>li>a {
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.005em;
	color: #080E0F;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.menu_wrap ul li a.deals {
	background: #FF805C;
	border-radius: 4px;
	color: #fff !important;
	padding: 4px;
	font-size: 14px;
}

.menu_wrap .menu_wrapper>ul>li>a.deals:hover{
	box-shadow: 0 0 50px rgba(0, 0, 0, 0.3) inset;
}

.menu_wrap .menu_wrapper>ul>li>a>img{
	margin-right: 6px;
}
.menu_wrap .menu_wrapper ul>li>a.active,
.menu_wrap .menu_wrapper ul>li>a:hover {
	color: #F3734E;
}
.dropdown_wrap img{
	margin-left: 6px;
}
.dropdown_wrap{
	position: relative;
}
.dropdown_menu {
	background: #FFFFFF;
	border: 2px solid #080E0F;
	border-radius: 4px;
	position: absolute;
	top: 170%;
	left: 16px;
	min-width: 140px;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
.dropdown_wrap:hover .dropdown_menu{
	opacity: 1;
	visibility: visible;
	top: 124%;
}
.dropdown_menu ul{
	padding: 16px 16px 0px;
}
.dropdown_menu ul li{
	padding-bottom: 16px;
}
.dropdown_menu ul li a{
	font-weight: 500;
	font-size: 16px;
	line-height: 1.15;
	letter-spacing: 0.005em;
	color: #080E0F;
	white-space: nowrap;
	transition: 0.3s;
}
.dropdown_menu>a{
	background-color: #080E0F;
	border-top: 2px solid #080E0F;
	border-radius: 0px 0px 4px 4px;
	display: block;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.15;
	letter-spacing: 0.005em;
	color: #FFFFFF;
	padding: 10px 10px;
	text-align: center;
	transition: 0.3s;
	margin-top: 8px;
}
.dropdown_menu>a:hover{
	background-color: #FFD133;
	color: #080E0F;
}




.desktop_form{
	display: flex;
	align-items: center;
}
header form input {
	height: 48px;
	background: #FFFFFF;
	border: 2px solid #080E0F;
	border-radius: 4px;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.005em;
	color: #666A6A;
	padding-left: 46px;
	padding-right: 10px;
	line-height: 1.1;
	background-image: url(../img/search.svg);
	background-repeat: no-repeat;
	background-position: 14px center;
	width: 221px;
	background-size: 18px;
}
header form input::-webkit-input-placeholder{
	color: #666A6A;
	opacity: 1;
}
header form input::-moz-placeholder{
	color: #666A6A;
	opacity: 1;
}
header form input:-ms-input-placeholder{
	color: #666A6A;
	opacity: 1;
}
header form input::-ms-input-placeholder{
	color: #666A6A;
	opacity: 1;
}
header form input::placeholder{
	color: #666A6A;
	opacity: 1;
}
.subscribe_header{
	height: 48px;
	width: 48px;
	border-radius: 4px;
	border: 2px solid #080E0F;
	background-color: #080E0F;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: 0.3s;
	flex-shrink: 0;
	margin-left: 8px;
}
.subscribe_header:hover{
	background-color: #FFD133;
	box-shadow: 2px 2px 0px #080E0F;
}
.subscribe_header:hover img {
	filter: invert(81%) sepia(12%) saturate(1068%) hue-rotate(141deg) brightness(97%) contrast(100%);
}

/*subscribe modal*/
.modal_wrap{
	position: fixed;
	height: 100vh;
	width: 100%;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 24px;
	left: 0;
	top: 0;
	transition: 0.3s;
	opacity: 0;
	visibility: hidden;
	overflow: auto;
}
.modal_wrap.open{
	opacity: 1;
	visibility: visible;
}
.popup_overlay{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: #080E0F;
	opacity: 0.4;
	z-index: -1;
}
.modal_content{
	width: 100%;
	max-width: 506px;
	text-align: center;
	background: #FFFFFF;
	border: 2px solid #080E0F;
	border-radius: 4px;
	padding: 40px;
	transition: 0.3s;
	transform: translateY(-30px);
}
.modal_wrap.open .modal_content{
	transform: translateY(0px);
}
.modal_content h3{
	font-weight: 700;
	font-size: 40px;
	line-height: 1.2;
	text-align: center;
	letter-spacing: 0.005em;
	color: #000000;
	margin-bottom: 16px;
}
.modal_content p{
	font-weight: 500;
	font-size: 16px;
	line-height: 140%;
	letter-spacing: 0.005em;
	color: #797D7D;
	margin-bottom: 32px;
}
.modal_content input{
	height: 60px;
	border: 2px solid #080E0F;
	border-radius: 4px;
	width: 100%;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	letter-spacing: 0.005em;
	padding-left: 54px;
	padding-right: 10px;
	background-image: url(../img/message2.svg);
	background-repeat: no-repeat;
	background-position: 18px center;
	background-size: 23px;
	margin-bottom: 40px;
}
.modal_content button{
	border: 2px solid #080E0F;
	font-weight: 700;
	font-size: 16px;
	line-height: 140%;
	letter-spacing: 0.005em;
	color: #FFFFFF;
	text-align: center;
	border-radius: 4px;
	background-color: #080E0F;
	padding: 18px 10px;
	width: 100%;
	cursor: pointer;
	transition: 0.3s;
	margin-bottom: 8px;
}
.modal_content button:hover{
	color: #080E0F;
	background-color: #FFD133;
	box-shadow: 4px 4px 0px #080E0F;
}
.modal_content .close_modal{
	border: 2px solid #080E0F;
	font-weight: 700;
	font-size: 16px;
	line-height: 140%;
	letter-spacing: 0.005em;
	color: #080E0F;
	text-align: center;
	border-radius: 4px;
	padding: 18px 10px;
	width: 100%;
	cursor: pointer;
	transition: 0.3s;
	display: block;
}
.modal_content .close_modal:hover{
	color: #fff;
	background-color: #080E0F;
}

.blog_overlay_card{
	display: block;
	border: 2px solid #080E0F;
	border-radius: 4px;
	overflow: hidden;
	position: relative;
	z-index: 1;
	transition: 0.3s;
	background-color: #080E0F;
	margin-top: 24px;
}
.blog_overlay_card:hover{
	box-shadow: 4px 4px 0 #080e0f;
}
.blog_overlay_card>img{
	width: 100%;
	height: 408px;
	object-fit: cover;
	position: relative;
	z-index: -2;
	display: block;
}
.blog_overlay_card::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(360deg, #080E0F 0%, rgba(8, 14, 15, 0) 100%);
	z-index: -1;
}
.blog_overlay_card .blog_content{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	border: none;
	color: #FFFFFF;
	padding: 24px;
}
.blog_overlay_card .blog_content h2{
	font-weight: 700;
	font-size: 32px;
	line-height: 140%;
	color: #FFFFFF;
	margin-bottom: 0;
}
.blog_overlay_card .blog_content .category p{
	color: #FFFFFF;
}



.title_wrap h4{
	font-weight: 700;
	font-size: 48px;
	line-height: 121%;
	letter-spacing: 0.005em;
	color: #080E0F;
	position: relative;
}
.title_wrap h4::before{
	position: absolute;
	content: attr(data-text);
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	-webkit-text-stroke: 1px #080E0F;
	text-stroke: 1px #080E0F;
	left: 3px;
	bottom: -3px;
}
.col-8{
	max-width: 66.67%;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 66.67%;
	flex: 0 0 66.67%;
}
.blog_box{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	background-color: #fff;
	border-radius: 4px;
	overflow: hidden;
	color: inherit;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	margin-top: 30px;
}
.blog_box:hover{
	-webkit-box-shadow: 6px 6px 0 #080E0F;
	box-shadow: 6px 6px 0 #080E0F;
}
.blog_img{
	width: 259px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	border: 2px solid #080E0F;
	border-radius: 4px 0 0 4px;	
}
.blog_img img{
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.blog_content{
	border: 2px solid #080E0F;
	border-radius: 0px 4px 4px 0px;
	border-left: none;
	padding: 30px 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.category{
	font-size: 16px;
	color: #080E0F;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 8px;
}
.category .post-name{
	color: #FF805C;
	font-weight: 600;
}
.blog_content h2 {
	font-weight: 700;
	font-size: 24px;
	line-height: 140%;
	color: #080E0F;
	margin-bottom: 12px;
}
.author{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 500;
	font-size: 16px;
	line-height: 140%;
	color: #666A6A;
}
.author h5{
	font-weight: 500;
}
.author img{
	height: 32px;
	width: 32px;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
	margin-right: 8px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.blog_content>p{
	margin-top: 16px;
}
.blog_area{
	position: relative;
	padding-top: 150px;
	padding-bottom: 64px;
	background: #FFD133;
}
.blog_area .title_wrap{
	padding-bottom: 8px;
}
.blog_area .blog_box.sm{
	margin-top: 24px;
}
.blog_box.sm .blog_img{
	width: 120px;
}
.blog_box.sm:hover{
	box-shadow: 4px 4px 0px #080E0F;
}
.blog_box.sm .blog_content{
	padding: 17.5px 12px;	
}
.blog_box.sm .blog_content h2{
	font-size: 18px;
	margin-bottom: 8px;
	font-weight: 700;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
}
.blog_box.sm .author{
	font-size: 12px;
}
.blog_box.sm .author img{
	height: 24px;
	width: 24px;
}

/*quick tips area*/
.quick_tips{
	padding: 120px 0;
}

/*best product area*/
.best_product{
	padding: 0 0 116px;
	text-align: center;
}
.best_product .title_wrap{
	margin-bottom: 104px;
}
.product_slider h4{
	font-weight: 700;
	font-size: 24px;
	line-height: 140%;
	color: #080E0F;
	margin-bottom: 14px;
}
.product_slider a{
	border: 2px solid #080E0F;
	border-radius: 4px;
	padding: 24px;
	display: block;
	width: 230px;
	transition: 0.3s;
	margin-bottom: 4px;
}
.product_slider a:hover{
	box-shadow: 4px 4px 0px #080E0F;
}
.product_slider .owl-nav{
	position: absolute;
	top: -82px;
	left: 50%;
	transform: translateX(-50%);
}
.owl-nav button{
	width: 56px;
	height: 56px;
	border: 2px solid #080E0F !important;
	padding: 0 12px;
	border-radius: 50%;
	background-color: transparent;
	transition: 0.3s;
}
.owl-nav button:hover{
	background-color: #FFD133;
	box-shadow: 0px 4px 0px #080E0F;
}
.owl-nav button.owl-next{
	margin-left: 16px;
}

/*tos area*/
.tos_area{
	padding: 0px 0 120px;
}
.tos_title .button{
	padding: 15px 24px;
	background-color: #080E0F;
	color: #fff !important;
}
.tos_title .button:hover{
	background-color: #FFD133;
	color: #080E0F !important;
}
.blog_box.md{
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.blog_box.md .blog_img {
	border-radius: 4px 4px 0 0;
	width: 100%;
}
.blog_box.md .blog_content {
	border-radius: 0 0 4px 4px;
	border-left: 2px solid #080E0F;
	padding: 16px 16px 24px;
	border-top: none;
}
.more{
	font-weight: 500;
	font-size: 16px;
	color: #080E0F !important;
	margin-top: 24px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.more img{
	margin-left: 10px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.more:hover img{
	margin-left: 15px;
}
.tos_title{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-bottom: 10px;
}
.tos_title h2{
	font-weight: 600;
	font-size: 72px;
	line-height: 140%;
	color: #080E0F;
	position: relative;
}
.tos_title h2::before{
	position: absolute;
	content: attr(data-text);
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	-webkit-text-stroke: 1px #080E0F;
	text-stroke: 1px #080E0F;
	left: 4px;
	bottom: -4px;
	white-space: nowrap;
}
.button{
	display: inline-block;
	border: 2px solid #080E0F;
	border-radius: 4px;
	padding: 15px 24px;
	font-weight: 700;
	font-size: 16px;
	line-height: 140%;
	color: #fff !important;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	background-color: #080E0F;
	text-align: center;
}
.button:hover{
	color: #080E0F !important;
	background-color: #FFD133;
	-webkit-box-shadow: 6px 6px 0 #080E0F;
	box-shadow: 6px 6px 0 #080E0F;
	-webkit-transform: translate(-6px, -6px);
	-ms-transform: translate(-6px, -6px);
	transform: translate(-6px, -6px);
}
.marquee_box.v2 ul li a{
	font-size: 24px;
}
.marquee_box.v2 ul li:not(:first-child)::before{
	background-image: url(../img/icon2.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-color: transparent;
	background-size: contain;
	height: 24px;
	width: 24px;
}
.marquee_box.v2 ul li {
	padding-left: 36px;
	margin-left: 12px;
	position: relative;
}


/*apple deals area*/
.apple_deals{
	padding-bottom: 120px;
}
.marquee_box.v2.deals ul li:not(:first-child)::before{
	background-image: url(../img/icon3.svg);
}
.col-3{
	max-width: 25%;
	flex: 0 0 25%;
}
.apple_deals .blog_box.md .blog_content {
	padding: 16px 16px 16px;
}
.apple_deals .blog_box.md p{
	margin-top: 0;
	font-weight: 500;
	margin-bottom: 10px;
}
.apple_deals .blog_box.md h2{
	font-size: 20px;
	margin-bottom: 4px;
}
.apple_deals .blog_box.md del{
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	color: #666A6A;
	margin-bottom: 20px;
}
.apple_deals .button {
	padding: 10px 24px;
	font-weight: 600;
	font-size: 12px;
}
.apple_deals .button:hover {
	box-shadow: 4px 4px 0px #080E0F;
	transform: translate(0,0);
}

/*apple product area*/
.apple_product{
	padding-bottom: 120px;
}
.marquee_box {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	padding: 20px 0;
	background-color: #080E0F;
}
.marquee_box ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-animation: marquee 10s linear infinite forwards;
	animation: marquee 10s linear infinite forwards;
}
.marquee_box ul:hover {
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
}
@-webkit-keyframes marquee {
	0% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}
	100% {
		-webkit-transform: translateX(-66%);
		transform: translateX(-66%);
	}
}
@keyframes marquee {
	0% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}
	100% {
		-webkit-transform: translateX(-66%);
		transform: translateX(-66%);
	}
}
.marquee_box ul li{
	padding-left: 26px;
	margin-left: 16px;
	position: relative;
}
.marquee_box ul li:not(:first-child)::before{
	position: absolute;
	content: '';
	left: 0;
	top: 50%;
	width: 10px;
	height: 10px;
	background: #fff;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.marquee_box ul li a{
	font-weight: 600;
	font-size: 40px;
	line-height: 140%;
	color: #fff;
	text-transform: uppercase;
}

.tab_menu{
	background-color: #FFD133;
	border-bottom: 3px solid #080E0F;
	padding: 10px 0;
	overflow: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.tab_menu::-webkit-scrollbar {
	background: transparent;
	width: 0;
	height: 0;
}
.tab_menu ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
.tab_menu ul li a{
	font-weight: 600;
	font-size: 24px;
	color: #080E0F;
	line-height: 1.1;
	display: inline-block;
	padding: 16px 24px;
	border: 2px solid transparent;
	white-space: nowrap;
	border-radius: 100px;
}
.tab_menu ul li a.active{
	background-color: #fff;
	border-color: #080E0F;
	margin: 0 12px;
}
.more_btn_wrap{
	text-align: center;
	margin-top: 48px;
}
/*footer area*/
footer{
	background-color: #080E0F;
	padding-bottom: 40px;
}
footer p{
	color: #fff;
	margin-top: 24px;
}
footer ul{
	width: 50%;
	float: left;
}
footer ul li a{
	color: #F8F8F8;
	margin-top: 24px;
	display: inline-block;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
footer ul li a:hover{
	color: #FFD133;
}
footer h4{
	font-weight: 700;
	font-size: 18px;
	line-height: 150%;
	color: #fff;
}
footer .container>.row>div{
	margin-top: 40px;
}
.col-6{
	max-width: 50%;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
}
.copy_right{
	border-top: 1px solid #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 40px;
}
.copy_right p{
	font-size: 16px;
	font-weight: 500;
}
.copy_right .social_icons{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.copy_right .social_icons a{
	width: 32px;
	height: 32px;
	background-color: #fff;
	border-radius: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 4px;
	margin-top: 24px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.copy_right .social_icons a:not(:last-child){
	margin-right: 20px;
}
.copy_right .social_icons a:hover{
	background-color: #FFD133;
}
footer form{
	margin-top: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
footer form input{
	background: #FFFFFF;
	border: 1px solid #080E0F;
	border-radius: 4px 0px 0px 4px;
	border-right: none;
	width: 100%;
	font-size: 12px;
	color: #080E0F;
	padding: 20px;
}
footer form input::-webkit-input-placeholder{
	color: #080E0F;
	opacity: 1;
}
footer form input::-moz-placeholder{
	color: #080E0F;
	opacity: 1;
}
footer form input:-ms-input-placeholder{
	color: #080E0F;
	opacity: 1;
}
footer form input::-ms-input-placeholder{
	color: #080E0F;
	opacity: 1;
}
footer form input::placeholder{
	color: #080E0F;
	opacity: 1;
}
footer form button{
	background-color: #FFD133;
	border: 1px solid #080E0F;
	border-radius: 0px 4px 4px 0px;
	padding: 0 24px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	cursor: pointer;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
footer form button:hover{
	background-color: #c19e2a;
}
footer form button img{
	width: 13px;
}
.subscribe p{
	color: #F8F8F8;
}
.marquee_box.apple_news{
	background-color: #FFD133;
}
.shape2{
	display: none;
}
.breadcrumb {
	padding: 30px 0 0;
}
.breadcrumb ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.breadcrumb ul li{
	margin: 2px 0;
}
.breadcrumb ul li a{
	font-weight: 500;
	font-size: 16px;
	line-height: 1.15;
	color: #080E0F;
	position: relative;
}
.breadcrumb ul li:not(:last-child){
	padding-right: 32px;
	position: relative;
}
.breadcrumb ul li:not(:last-child)::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 10px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 15px;
	height: 10px;
	background-image: url(../img/angle_right.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	opacity: inherit;
}
.breadcrumb ul li + li a.active{
	font-weight: 400;
	opacity: 0.8;
	pointer-events: none;
}
.category_header{
	/*background-color: #FFD133;*/
	/*border-bottom: 2px solid #080E0F;*/
	padding: 20px 0;
}
.category_header .container{
	position: relative;
	text-align: center;
}
.category_header .container img{
	width: 100%;
}
.category_header .container h1{
	position: absolute;
	top: 50%;
	left: 50%;
	font-weight: 600;
	font-size: 40px;
	line-height: 140%;
	color: #080E0F;
	width: 100%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
/*.category_header .container h2::before{*/
/*	position: absolute;*/
/*	content: attr(data-text);*/
/*	color: inherit;*/
/*	font-size: inherit;*/
/*	font-weight: inherit;*/
/*	-webkit-text-fill-color: transparent;*/
/*	text-fill-color: transparent;*/
/*	-webkit-text-stroke: 1px #080E0F;*/
/*	text-stroke: 1px #080E0F;*/
/*	left: 3px;*/
/*	bottom: -3px;*/
/*	white-space: nowrap;*/
/*	width: 100%;*/
/*	text-align: center;*/
/*}*/
.tos_area.v2{
	padding-top: 10px;
}

/*latest area*/
.latest_post{
	background-color: #080E0F;
	padding: 64px 0;
	overflow: hidden;
}
.latest_post .blog_box {
	border-radius: 0px;
}
.latest_post .blog_box:hover {
	-webkit-box-shadow: 6px 6px 0 #FFD133;
	box-shadow: 6px 6px 0 #FFD133;
}
.latest_post .blog_box .blog_img {
	width: 180px;
	border-radius: 0;
}
.latest_post .blog_content {
	border-radius: 0px;
	padding: 19px 16px;
}
.latest_container>h2{
	font-weight: 600;
	font-size: 40px;
	line-height: 140%;
	position: relative;
	color: #fff;
	margin-bottom: 10px;
}
.latest_container>h2::before{
	position: absolute;
	content: attr(data-text);
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	-webkit-text-stroke: 1px #fff;
	text-stroke: 1px #fff;
	left: 3px;
	bottom: -3px;
	white-space: nowrap;
}
.slider2 .owl-nav{
	position: absolute;
	right: 2px;
	top: -57px;
}
.slider2 .owl-nav button{
	width: 40px;
	height: 40px;
	background: #FFFFFF;
	border-radius: 4px;
	border: none;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	padding: 0 8px;
}
.slider2 .owl-nav button:hover{
	-webkit-box-shadow: 3px 3px 0 #FFD133;
	box-shadow: 3px 3px 0 #FFD133;
}
.slider2 .owl-nav button.owl-next{
	margin-left: 24px;
}
.slider2.owl-carousel .owl-stage-outer{
	overflow: visible;
}
.slider2.owl-carousel::before{
	content: '';
	position: absolute;
	content: '';
	right: 100%;
	width: 200px;
	top: 0;
	height: 100%;
	background-color: #080E0F;
	z-index: 2;
}

/*more article*/
.marquee_box.more_article{
	padding: 20px 0;
}
.marquee_box.more_article li a{
	font-size: 20px;
}
.details_wrap{
	color: #080E0F;
}
.details_wrap h1{
	font-weight: 700;
	font-size: 40px;
	line-height: 140%;
	margin-bottom: 24px;
}
.author_panel{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.author_box{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.author_box img{
	height: 48px;
	width: 48px;
	border-radius: 50%;
	margin-right: 10px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.author_box p.author_name{
	font-weight: 600;
	font-size: 14px;
	line-height: 140%;
	text-transform: uppercase;
}
.author_box p.author_name span{
	color: #1FA95B;
}
.author_box .author_details .date_box{
display: flex;
  gap: 10px;
}
.details_wrap .author_box p{
	color: #797D7D;
	margin-top: 0;
	font-size: 11px;
}
.social_panel{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.social_panel a{
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 3px;
	background-color: #3B5998;
	margin-left: 8px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.social_panel a:hover{
	-webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.3) inset;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.3) inset;
}
.social_panel a:nth-child(2){
	background-color: #00ACED;
}
.social_panel a:nth-child(3){
	background-color: #A9A8A8;
}
.banner{
	border: 2px solid #080E0F;
	margin-top: 32px;
}
.banner img{
	width: 100%;
}
.details_wrap p{
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #080E0F;
	margin-top: 32px;
}
.details_wrap h4{
	font-weight: 700;
	font-size: 24px;
	line-height: 150%;
	margin-top: 32px;
}

.related_box {
	border: 2px solid #080E0F;
	padding: 24px 24px 24px 35px;
	position: relative;
	margin-top: 32px;
	border-radius: 4px;
}
.related_box::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 14px;
	background: #FFD133;
	border-right: 2px solid #080E0F;
}
.related_box p{
	margin-top: 0;
	font-weight: 500;
}
.related_box p span{
	font-size: 18px;
	font-weight: 700;
	color: #080E0F;
	margin-right: 16px;
	text-transform: uppercase;
}
.subscribe_panel{
	background: #FFD133;
	border: 2px solid #080E0F;
	padding: 24px;
	margin-top: 32px;
	border-radius: 4px;
}
.subscribe_panel h4{
	margin-top: 0;
}
.subscribe_panel p{
	margin-top: 16px;
	max-width: 460px;
}
.subscribe_panel form{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 24px;
}
.subscribe_panel form input{
	background: #FFFFFF;
	border: 2px solid #080E0F;
	font-size: 14px;
	line-height: 1.15;
	width: 100%;
	padding: 18px;
	border-radius: 4px;
	padding-left: 52px;
	background-image: url(../img/message2.svg);
	background-position: 16px center;
	background-repeat: no-repeat;
	background-size: 20px;
}
.subscribe_panel form button{
	background-color: #080E0F;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	line-height: 140%;
	padding: 16px 40px;
	margin-left: 16px;
	border: none;
	cursor: pointer;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	border-radius: 4px;
}
.subscribe_panel form button:hover{
	background-color: #FFD133;
	color: #080E0F;
}

.like_panel{
	border: 2px solid #080E0F;
	margin-top: 32px;
	border-radius: 4px;
}
.like_panel h4{
	font-weight: 600;
	margin-top: 0;
	padding: 24px 24px 16px;
}
.like_panel ul li{
	border-top: 2px solid #080E0F;
}
.like_panel ul li a{
	font-weight: 500;
	font-size: 16px;
	line-height: 140%;
	color: #080E0F;
	padding: 16px 24px;
	display: block;
	transition: 0.3s;
}
.like_panel ul li a:hover{
	background-color: #FF9070;
}
.article_details_wrapper{
	padding-bottom: 80px;
}
.article_details_wrapper .row>div{
	margin-top: 40px;
}
.related_wrap .blog_box.sm{
	margin-top: 24px;
}
.related_wrap .blog_box.sm .blog_img {
	width: 100px;
}
.related_wrap .blog_box.sm .blog_content h2 {
	font-size: 16px;
	line-height: 140%;
}
.related_wrap .blog_box.sm .blog_content {
	padding: 12px 12px;
}
.related_wrap h4{
	font-weight: 700;
	font-size: 24px;
	line-height: 150%;
	color: #080E0F;
}
/*return-to-top START CSS*/
.back-to-top {
	font-size: 24px;
	width: 45px;
	height: 45px;
	line-height: 43px;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 30px;
	right: 20px;
	border-radius: 50%;
	background: #FFD133;
	z-index: 1000;
}
.back-to-top img {
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.mobile_form{
	display: none;
}

.main_wrap{
	padding-top: 96px;
}

.category_hero_blog{
	padding: 10px 0 120px;
}

.category_hero_blog .post{
	position: relative;
	border-radius: 4px;
	border: 2px solid #080E0F;
	transition: .3s;
	margin-top: 30px;
}

.category_hero_blog .post:hover{
	box-shadow: 4px 4px 0 #080e0f;
}

.category_hero_blog .post::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(360deg, #080E0F 0%, rgba(8, 14, 15, 0) 100%);
	border-radius: 4px;
}

.category_hero_blog .post .bg_img{
	width: 100%;
	height: 300px;
	display: block;
}

.round_review_list .post .bg_img{
	object-fit: contain;
}

.category_hero_blog .overlay_content{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 24px;
	display: flex;
	align-items: flex-end;
}

.category_hero_blog .overlay_content h3{
	font-weight: 700;
	font-size: 24px;
	line-height: 140%;
	letter-spacing: 0.005em;
	color: #FFFFFF;
	margin-bottom: 8px;
}

.category_hero_blog .author h5{
	color: #fff;
}

.iphone_about .title h4{
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	letter-spacing: 0.005em;
	color: #F99138;
}

.iphone_about .list_box{
	padding: 24px 0;
	border-bottom: 2px solid #E1E2E2;
}

.iphone_about .list_box h2{
	font-weight: 700;
	font-size: 24px;
	line-height: 140%;
	letter-spacing: 0.005em;
	color: #080E0F;
	margin-bottom: 12px;
}

.category_body .apple_deals{
	padding-top: 120px;
}

.iphone_deals{
	padding: 120px 0;
}

.iphone_deals_title{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.category_body .apple_deals .more_btn_wrap{
	display: none;
}

.iphone_blogs .marquee_box.v2 ul li:not(:first-child)::before {
	background-image: url(../img/square-box.png);
	height: 8px;
	width: 8px;
}

.iphone_blogs .marquee_box.v2 ul li {
	padding-left: 32px;
	margin-left: 16px;
}

.iphone_blogs{
	padding-bottom: 150px;
}

.best_deals{
	position: relative;
	overflow: hidden;
	padding: 40px 0 120px;
}

.best_deals_title{
	padding-bottom: 30px;
}

.best_deals .container.custom{
	position: relative;
}

.best_deals .container.custom::before{
	content: '';
	position: absolute;
	right: 100%;
	top: 0;
	height: 100%;
	width: 4000px;
	background: #fff;
	z-index: 11;
}

.best_deals .owl-carousel .owl-stage-outer{
	overflow: visible !important;
}

.best_deals_slider .item a{
	border: 2px solid #080E0F;
	border-radius: 4px;
	padding: 16px;
	display: flex;
	align-items: center;
	width: 600px;
	transition: 0.3s;
	margin-bottom: 4px;
}

.best_deals_slider .item a:hover {
	box-shadow: 4px 4px 0px #080E0F;
}

.best_deals_slider .item img{
	width: 140px;
	flex-shrink: 0;
}

.best_deals_slider .item .content{
	padding-left: 16px;
}

.best_deals_slider .item p{
	font-weight: 500;
	font-size: 20px;
	line-height: 1.5;
	letter-spacing: 0.005em;
	color: #666A6A;
}

.best_deals_slider .item h2{
	font-weight: 700;
	font-size: 20px;
	line-height: 1.5;
	letter-spacing: 0.005em;
	color: #080E0F;
}

.best_deals_slider .item .card_bottom{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 8px;
}

.best_deals_slider .item del{
	font-weight: 400;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: 0.005em;
	color: #666A6A;
}

.best_deals_slider .item .time{
	display: inline-block;
	padding: 10px;
	font-weight: 700;
	font-size: 14px;
	line-height: 1;
	text-align: center;
	letter-spacing: 0.005em;
	color: #080E0F;
	background: #F99138;
	border-radius: 4px;
}

.best_deals_slider .owl-nav {
	position: absolute;
	top: -80px;
	right:0;
}

.categories{
	position: relative;
	padding-bottom: 120px;
}

.categories_title{
	padding-bottom: 30px;
}

.categories_slider h4 {
	font-weight: 700;
	font-size: 24px;
	line-height: 140%;
	color: #080E0F;
	margin-bottom: 14px;
}

.categories_slider a {
	border: 2px solid #080E0F;
	border-radius: 4px;
	padding: 24px;
	display: block;
	width: 230px;
	transition: 0.3s;
	text-align: center;
	margin-bottom: 4px;
}

.categories_slider a:hover {
	box-shadow: 4px 4px 0px #080E0F;
}

.categories_slider .owl-nav {
	position: absolute;
	top: -80px;
	right: 0;
}

.deals_body .blog_box.md p {
	margin-top: 0;
	font-weight: 500;
	margin-bottom: 10px;
}

.deals_body .blog_box.md h2 {
	font-size: 20px;
	margin-bottom: 4px;
}

.deals_body .blog_box.md del {
	display: inline-block;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	color: #666A6A;
	margin-bottom: 20px;
}

.deals_body .blog_box.md .button {
	padding: 10px 24px;
	font-weight: 600;
	font-size: 12px;
}

.deals_body .best_logo{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.blogB_area{
	padding: 120px 0;
}

.blogB_area .marquee_box ul li a{
	text-transform: full-size-kana;
}

.blogC_area{
	padding-bottom: 150px;
}

.blogC_area .marquee_box ul li a {
	text-transform: capitalize;
}

.apps_list h2{
	font-weight: 700;
	font-size: 24px;
	line-height: 150%;
	letter-spacing: 0.005em;
	color: #080E0F;
	margin-top: 32px;
	margin-bottom: 8px;
}

.apps_list .list_box{
	display: flex;
	align-items: center;
	height: 96px;
	background: #FFFFFF;
	border: 2px solid #080E0F;
	border-radius: 5px;
	transition: .3s;
	margin-top: 24px;
}

.apps_list .list_box:hover{
	box-shadow: 4px 4px 0px #080E0F;
}

.apps_list .list_box img{
	width: 96px;
	height: 100%;
	flex-shrink: 0;
	border-right: 2px solid #080E0F;
}

.apps_list .list_box .content{
	padding-left: 16px;
}

.apps_list .list_box h3{
	font-weight: 700;
	font-size: 20px;
	line-height: 140%;
	letter-spacing: 0.005em;
	color: #252B37;
}

.apps_list .list_box p{
	margin-top: 8px;
	color: #464A4B;
}

.apps_list .list_box .btn{
	width: 136px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-left: auto;
	font-weight: 700;
	font-size: 14px;
	line-height: 140%;
	letter-spacing: 0.005em;
	color: #FFFFFF;
	background: #080E0F;
	border-left: 2px solid #080E0F;
	transition: .3s;
}

.apps_list .list_box:hover .btn{
	background: #FFD133;
	color: #080E0F;
}

.app_details_wrap{
	background: #FFFFFF;
	border: 2px solid #080E0F;
	border-radius: 4px;
	transition: .3s;
}

.app_details_wrap:hover{
	box-shadow: 4px 4px 0px #080E0F;
}

.app_details_wrap p {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #080E0F;
	margin-top: 32px;
}

.app_details_wrap .header{
	display: flex;
	padding: 24px;
	border-bottom: 2px solid #080E0F;
}

.app_details_wrap .header img{
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	border: 2px solid #080E0F;
	border-radius: 5px;
}

.app_details_wrap .header .content{
	padding-left: 16px;
}

.app_details_wrap .header p{
	font-weight: 400;
	font-size: 16px;
	line-height: 140%;
	letter-spacing: 0.005em;
	color: #464A4B;
	margin-top: 4px;
}

.app_details_wrap .banner_img img{
	width: 100%;
	border-bottom: 2px solid #080E0F;
}

.app_details_wrap .wrap_body{
	padding: 0 24px 32px 24px;
}

.app_details_wrap .wrap_body p{
	margin-top: 32px;
}

.app_details_wrap h3 {
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2;
	letter-spacing: 0.005em;
	color: #252B37;
}

.app_details_wrap .features h3{
	padding: 32px 0 10px;
}

.app_details_wrap .features ul{
	margin-left: 16px;
}

.app_details_wrap .features li{
	padding-top: 5px;
	list-style: disc;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #080E0F;
}

.app_details_wrap .video_wrap h3{
	padding: 32px 0;
}

.app_details_wrap .video {
	position: relative;
}

.app_details_wrap .video::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(8, 14, 15, 0.32);
}

.app_details_wrap .video .play{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.app_details_wrap .video{
	width: 100%;
}

.app_details_sidebar{
	display: block;
	width: 100%;
	padding: 24px;
	background: #FFFFFF;
	border: 2px solid #080E0F;
	border-radius: 4px;
	transition: 0.3s;
}

.app_details_sidebar:hover{
	box-shadow: 4px 4px 0px #080E0F;
}

.app_details_sidebar .header{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.app_details_sidebar h4{
	font-weight: 700;
	font-size: 20px;
	line-height: 1.5;
	letter-spacing: 0.005em;
	color: #252B37;
}

.app_details_sidebar p{
	font-weight: 400;
	font-size: 16px;
	line-height: 1.18;
	letter-spacing: 0.005em;
	color: #666A6A;
}

.app_details_sidebar .header img{
	flex-shrink: 0;
	width: 51px;
	height: 51px;
	border: 2px solid #080E0F;
	border-radius: 4px;
}

.app_details_sidebar ul{
	padding: 12px 0 32px;
}

.app_details_sidebar li{
	display: flex;
	align-items: center;
	margin-top: 16px;
}

.app_details_sidebar li p{
	margin-left: 12px;
}

.app_details_sidebar .button{
	width: 100%;
}

.app_details_sidebar .learnMore{
	margin-top: 16px;
	text-align: center;
	transition: .3s;
}

.app_details_sidebar .learnMore:hover{
	color: #F99138;
	text-decoration: underline;
}

.best_body .app_details{
	margin-top: 0 !important;
}

.best_body .panels {
	margin-top: 0 !important;
}

.best_body .panels>div {
	margin-top: 0 !important;
}

.best_body .article_details_wrapper {
	padding-bottom: 120px;
}

.blogD_area{
	padding-bottom: 150px;
}

.blogD_area .marquee_box.v2 ul li:not(:first-child)::before {
	background-image: url(../img/square-box.png);
	height: 8px;
	width: 8px;
}

.blogD_area .marquee_box.v2 ul li{
	padding-left: 32px;
	margin-left: 16px;
}

.related_wrap .blog_box.sm .blog_content .sidebar_post_title{
	font-size: 16px;
	line-height: 140%;
	margin-bottom: 8px;
	font-weight: 700;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	margin-top: 0;
	color: #000;
}

.sidebar-author-name{
	font-weight: 500;
}