@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*{
	margin:0;
	padding:0;
	outline:0 none;
	font-family: inherit;
	box-sizing: border-box;
}

:root{
	--c-red:#ec1d24;
	--c-red-light:rgb(244 17 39 / 0.20);
	--c-blue:#3e75c5;
	--c-blue-light:rgb(62 117 197 / 0.20);
	--c-green:#17a00e;
	--c-green-light:rgb(23 160 14 / 0.20);
	--c-yellow:#ffc107;
	--c-yellow-light:rgb(255 193 7 / 0.20);
	--c-pink:#d63384;
	--c-pink-light:rgb(214 51 132 / 0.20);
	--c-orange:#fd7e14;
	--c-orange-light:rgb(253 126 20 / 0.20);
	--c-teal:#20c997;
	--c-teal-light:rgb(32 201 151 / 0.20);
	--c-purple:#6f42c1;
	--c-purple-light:rgb(111 66 193 / 0.20);
	--c-cyan:#0dcaf0;
	--c-cyan-light:rgb(13 202 240 / 0.20);
	--content-color:#656565;
	--light-bg:#ffffff;
	--dark-bg:#f9f9f9;
	--title-font:"Inter", serif;;
	--content-font:"Inter", serif;
}

body{
	display: flex;
	flex-direction: column;
	min-height:100vh;
	height: 100%;
	max-width:100%;
	width:100%;
	font-size:16px;
    font-family:var(--content-font);
	font-weight:400;
	overflow-x: hidden;
	background: #f4f5f6;
}

a{
	text-decoration:none!important;
	outline:0 none!important
}

img{
	outline:0 none!important
}

.wrap {
	width:100%;
	flex:1;
}

.wrapper{
	width:100%;
	display:flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap:wrap
}

.container{
	width:1400px;
	padding:0 15px;
	display:flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap:wrap
}

.default-pointer{
    cursor: default!important;
}

/*-----
HEADER
------*/

.header-wrapper{
	padding:30px 0;
	background: #fff;
}

.header{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo img{
	width: 200px;
	max-width: 100%!important;
}

.nav-wrapper{
	background: #fff;
}

.nav{
	width: 100%;
	border-top:1px solid #f1f1f1;
	border-bottom:1px solid #f1f1f1;
	padding:15px 0
}

.menu{
	display: flex;
	align-items: center;
	justify-content: center;
	list-style-type: none;
	gap:0 50px
}

.menu li{
	display: block;
}

.menu li a{
	font-size:16px;
	font-weight: 400;
	color:#000;
	padding:5px 8px;
	display: inline-flex;
	border-radius: 4px;
}

.menu li a:hover,.menu li a.active{
	background: var(--c-purple-light);
	color:var(--c-purple)
}


/*-------------
BOXES
--------------*/

.box{
	display: flex;
	background: #fff;
	position: relative;
}

.box-vertical{
	flex-direction: column;
}

.box-content{
	display: flex;
	width: 100%;
	flex-direction: column;
}

.box-title-link::before{
	content:"";
	position: absolute;
	width: 100%;
	height: 100%;
	inset:0;
	border-radius: 16px;
}

.box-summary{
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.box-image{
	position: relative;
	overflow: hidden;
}

.box-1 .box-image{
	width: 100%;
	display: flex;
}

.box-1 .box-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.box-1 .box-content{
	padding:30px;
	gap:15px 0
}

.box-1 .box-title{
	display: inline-block;
	font-size:clamp(1rem, 1.875rem + 0.208333vw, 2.125em);
	line-height: 1.35;
}

.box-1 .box-summary{
	font-size:clamp(0.875rem, 0.875rem + 0.104166vw, 1rem);
	line-height: 1.5;
	-webkit-line-clamp: 6
}

.box-2{
	width: 100%;
	padding:0 15px;
	display: flex;
	font-size:16px;
}

.box-2 .box{
	width: 100%;
	display: flex;
	background: #fff;
}

.box-2 .box-image{
	width: 100%;
	display: flex;
	height: 225px;
}

.box-2 .box-content{
	padding:15px;
	display: flex;
	flex-direction: column;
	gap:10px 0;
	flex:1;
}

.box-2 .box-title{
	font-size:clamp(0.875em, 0.875rem + 0.104166vw, 1em);
	line-height: 1.5;
	color:#000
}

.box-2 .box-summary{
	font-size:clamp(0.875rem, 0.875rem + 0.104166vw, 1rem);
	line-height: 1.5;
}

.box-3{
	width: 100%;
	display: flex;
	padding:0 15px;
	flex:1;
}

.box-3 .box{
	width: 100%;
	display: flex;
	background: #fff;
	align-items: center
}

.box-3 .box-image{
	width: 30%;
	height: 100%;
	display: flex;
	flex-shrink: 0;
}

.box-3 .box-content{
	padding:15px;
	gap:10px 0
}

.box-3 .box-title{
	font-size:clamp(0.875rem, 0.875rem + 0.104166vw, 1rem);
	line-height: 1.5;
	color:#000
}

.box-title-link{
	display: inline-block;
	color:#000
}

.box-4{
	display: flex;
	padding:0 15px;
}

.box-4 .box{
	display: flex;
	background: #fff;
	align-items: stretch;
}

.box-4 .box-image{
	width: 50%;
	flex-shrink: 0;
}

.box-4 .box-content{
	padding:30px;
	gap:15px 0;
}

.box-4 .box-title{
	font-size:clamp(0.875em, 0.875em + 0.104166vw, 1em);
	line-height: 1.5;
	color:#000
}

.box-4 .box-summary{
	font-size:clamp(0.875rem, 0.875rem + 0.104166vw, 1rem);
	line-height: 1.5;
}

.box-overlay{
	position: relative;
}

.box-overlay .box-image{
	width: 100%;
	height: 100%;
	position: absolute;
	inset:0
}

.box-overlay .box-content-wrapper{
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	background: rgba(0,0,0,.5);
	padding-top:10vh
}

.box-overlay .box-title-link,
.box-overlay .box-summary{
	color:#fff
}

/*-------------
SECTION
--------------*/
.section{
	display: flex;
}

.section-column{
	width: 100%;
	display: flex;
}

.section-vertical{
	flex-direction: column;
}

.section-padding-left{
	padding-left:15px
}

.section-padding-right{
	padding-right:15px
}

.section-padding-top{
	padding-top:15px
}

.section-padding-bottom{
	padding-bottom:15px
}

.section-100{
	width: 100%;
}

.section-75{
	width: 75%;
}

.section-50{
	width: 50%;
}

.section-25{
	width: 25%;
}

/*-------------
ADS
--------------*/

.ads-boxes{
	width: 100%;
	display: flex;
}

.ads-vertical{
	flex-direction: column;
	gap:30px 0
}

.ads-item{
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex:1
}

.ads-item img{
	max-width: 100%;
	height: auto;
	display: block;
}

.article-feed-ad{
	margin-top:15px;
}

.onk-ads-box-2{
	width: 25%;
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-shrink: 0;
	padding:0 15px
}

.onk-ads-box-wrapper{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 16px;
}

.onk-ads-box{
	width: 250px;
	display: block;
	background: #fff;
	flex-shrink: 0;
}

/*-------------
BORDERS
--------------*/
.radius-16{
	border-radius: 16px;
}

.radius-8{
	border-radius: 8px;
}

/*-------------
IMAGES
--------------*/
.image-fit{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/*-------------
HEADING
--------------*/

.heading-wrapper{
	padding:0 0 30px 0
}

.heading{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.heading::before{
	content:"";
	display: flex;
	width: 16px;
	height: 16px;
	border-radius:50%;
	margin-right:8px
}

.heading.orange::before{
	background: var(--c-orange);
}

.heading.green::before{
	background: var(--c-green);
}

.heading.blue::before{
	background: var(--c-blue);
}

.heading.red::before{
	background: var(--c-red);
}

.heading.yellow::before{
	background: var(--c-yellow);
}

.heading.purple::before{
	background: var(--c-purple);
}

.heading.teal::before{
	background: var(--c-teal);
}

.heading.cyan::before{
	background: var(--c-teal);
}

.heading-title{
	display: block;
	font-size:clamp(1.625rem, 1.125rem + 0.208333vw, 1.875rem);
	line-height: 1.5;
	font-family: var(--title-font);
	padding-right:15px
}

/*-------------
	BADGES
--------------*/

.badge-bg{
	display: inline-block;
	padding:4px 10px;
	border-radius: 10px;
	font-size:10px;
	text-transform: uppercase;
}

.badge-bg.blue{
	background: var(--c-blue-light);
	color: var(--c-blue);
}

.badge-bg.red{
	background: var(--c-red-light);
	color: var(--c-red);
}

.badge-bg.orange{
	background: var(--c-orange-light);
	color: var(--c-orange);
}

.badge-bg.green{
	background: var(--c-green-light);
	color: var(--c-green);
}

.badge-bg.purple{
	background: var(--c-purple-light);
	color: var(--c-purple);
}

.badge-bg.yellow{
	background: var(--c-yellow-light);
	color: var(--c-yellow);
}

.badge-bg.cyan{
	background: var(--c-cyan-light);
	color: var(--c-cyan);
}

.badge-bg.teal{
	background: var(--c-teal-light);
	color: var(--c-teal);
}

.badge{
	display: inline-block;
	border-radius: 10px;
	font-size:10px;
	text-transform: uppercase;
}

.badge.blue{
	color: var(--c-blue);
}

.badge.red{
	color: var(--c-red);
}

.badge.orange{
	color: var(--c-orange);
}

.badge.green{
	color: var(--c-green);
}

.badge.purple{
	color: var(--c-purple);
}

.badge.yellow{
	color: var(--c-yellow);
}

.badge.cyan{
	color: var(--c-cyan);
}

.badge.teal{
	color: var(--c-teal);
}


/*-------------
SHOWCASE
--------------*/

.top-wrapper{
	margin-top:30px
}

.top-container{
	align-items: stretch;
	padding:0
}

/*-------------
NEW ITEMS
--------------*/

.new-items{
	width: 100%;
	gap:15px 0;
}

.new-items .box-2{
	flex:1;
}

/*-------------
POPULAR
--------------*/
.popular-items{
	display: flex;
	flex-direction: column;
	gap:15px 0;
	justify-content: stretch;
	font-size:16px
}

/*-------------
SPOTLIGHT
--------------*/

.spotlight-container{
	padding:0;
	align-items: stretch;
}

.spotlight-items{
	flex-wrap: wrap;
	gap:30px 0;
	flex-shrink: 0;
}

.spotlight-items .box-2{
	width: 25%;
	flex:auto
}

.spotlight-ads{
	padding-left:15px;
}

/*-------------
LIFE SECTION
--------------*/

.life-container{
	padding:0
}

.life .box-4 .box{
	font-size:24px
}

.life-bottom{
	flex:1
}

.life-bottom .box-2{
	margin-top:30px
}

.life-popular-items{
	gap:15px 0
}

/*-------------
NATURE SECTION
--------------*/

.nature-container{
	padding:0
}

.nature-top .box-2 .box-image{
	height: 35vh;
}

.nature-new{
	flex-wrap: wrap;
	gap:15px 0;
	margin-top:30px;
	flex:1
}

.nature-new .box-3{
	width: 50%;
	flex: auto;
}

.nature-popular-items{
	gap:15px 0;
	width: 100%;
}

/*-------------
SCIENCE
--------------*/
.science-container{
	padding:0
}

/*-------------
OTHERS
--------------*/

.others-container{
	align-items: stretch;
	padding:0
}

.others-items{
	flex-wrap: wrap;
	gap:30px 0
}

.others-items .box-2{
	width: 25%;
}

/*-------------
ARTICLE
--------------*/

.article{
	width: 100%;
	display: flex;
}

.article-left{
	width: 50%;
	padding-right:15px;
	margin-top:30px
}

.article-right-wrapper{
	width: 50%;
	padding-left:15px;
	margin-top:30px;
	margin-bottom:30px
}

.article-right{
	width: 100%;
	display: flex;
	flex-direction: column;
	gap:30px 0
}

.article-showcase{
	width: 100%;
	padding:30px;
	background: #fff;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	gap:15px 0
}

.article-content{
	width: 100%;
	padding:30px;
	background: #fff;
	border-radius: 16px;
	margin:15px 0 0 0
}

.important{
	width: 100%;
	display: flex;
	flex-direction: column;
	gap:5px 0
}

.important div{
	font-size:12px;
	font-style: italic;
	color:#707070
}

.a-content{
	font-size:clamp(0.875rem, 0.875rem + 0.104166vw, 1rem);
	line-height: 1.65;
	color:#212121;
	text-align: justify;
}

.a-content p{
	display: block;
	margin:15px 0
}

.a-content ul, .a-content ol{
	display: block;
	list-style: none;
}

.a-content ul li, a.-content ol li{
	margin:15px 0;
	display: block;
}

.childs{
	width: 100%;
	display: flex;
	flex-direction: column;
	gap:15px 0;
	margin:15px 0
}

.child{
	width: 100%;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 16px;
	padding:30px;
	gap:15px 0
}

.child-image-wrapper{
	width: 100%;
	position: relative;
}

.child-image{
	width: 100%;
	display: block;
	overflow: hidden;
	text-align: center;
}

.child-image img{
	max-width: 100%;
	height: auto;
	display: block;
	margin:0 auto
}

.child-image-info-wrapper{
	width: 100%;
	margin:5px 0 0 0
}

.child-image-info{
	width: 100%;
	display: flex;
	flex-direction: column;
	gap:5px 0
}

.image-source-link{
	display: inline-block;
	color:#707070;
	font-size:12px
}

.image-source-link:hover{
	text-decoration: underline!important;
}

.image-tag{
	display: block;
	font-size:12px;
	color:#000
}

.child-header{
	width: 100%;
	display: flex;
	align-items: center;
	gap:0 15px
}

.child-number{
	background: #000;
	padding:10px 15px;
	font-size:20px;
	border-radius: 16px;
}

.similars{
	width: 100%;
	display: flex;
	flex-direction: column;
	gap:15px 0;
}

.similars .box-3{
	padding:0
}

.similars .box-3 .box-content{
	padding:20px 30px
}

.similars .box-3 .box-summary{
	font-size:clamp(0.875rem, 0.875rem + 0.104166vw, 00.875rem);
	line-height: 1.5;
	color:#707070;
	-webkit-line-clamp: 2;
}

.similars .heading{
	margin-bottom:15px
}

.similars .heading-title{
	font-size:18px;
}

.fihrist-wrapper{
	margin:15px 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 16px;
}

.fihrist-wrapper .heading{
	padding:30px 30px 15px 30px;
	margin:0;
	border-bottom:1px solid #f4f5f6
}

.fihrist-wrapper .heading-title{
	font-size:18px
}

.fihrist{
	width: 100%;
	display: flex;
	flex-direction: column;
	list-style: none;
	background: #fff;
	padding:15px 30px 15px 30px;
	border-radius: 16px;
}

.fihrist li{
	width: 100%;
	display: block;
	padding:5px 0
}

.fihrist li a{
	color:#000;
	font-size:14px
}

.fihrist li a:hover{
	text-decoration: underline!important;
}

/*-------------
	COMMON
--------------*/

.selection{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-block:clamp(0.9375rem, 0.973rem + 4.928806133625411vh, 3.75rem);
}

.f-title-14{
	font-size:14px;
	line-height: 1.4;
}

.f-title-16{
	font-size:clamp(0.875rem, 0.875rem + 0.104166vw, 1rem);
	line-height: 1.5;
}

.f-title-18{
	font-size:clamp(1rem, 1rem + 0.104166vw,1.125rem);
	line-height: 1.5;
}

.f-title-20{
	font-size:clamp(1.125rem, 1rem + 0.208333vw,1.25rem);
	line-height: 1.5;
}

.f-title-24{
	font-size:clamp(1.25rem,1.25rem + 0.208333vw,1.5rem);
	line-height: 1.5;
}

.f-title-26{
	font-size:clamp(1.125rem,1.125rem + 0.73846153vw,1.625rem);
	line-height: 1.5;
}

.f-title-30{
	font-size:clamp(1.25rem, 1.25rem + 0.5208333vw, 1.875rem);
	line-height: 1.5
}

.f-title-34{
	font-size:clamp(1.875rem, 1.875rem + 0.208333vw, 2.125rem);
	line-height: 1.5
}

.f-title-36{
	font-size:clamp(1.125rem,1.125rem + 0.9375vw,2.25rem);
	line-height: 1.5
}

.f-title-40{
	font-size:clamp(1.25rem,1.25rem + 1.041666vw, 2.5rem);
	line-height: 1.25
}

.f-title-50{
	font-size:clamp(1.5625rem, 1.5625rem + 1.302083vw,3.125rem);
	line-height: 1.5;
	letter-spacing: 1px;
}

.f-title-58{
	font-size:clamp(1.825rem, 1.825rem + 1.5104166vw,3.625rem);
	line-height: 1.25;
	font-weight: 700;
}

.f-title-60{
	font-size:clamp(1.875rem, 1.875rem + 1.485333vw,3.75rem);
	line-height: 1.25;
	font-weight: 700;
}

.f-content-14{
	font-size:14px;
	line-height: 21px;
	font-family: var(--c-font);
}

.f-content-16{
	font-size:clamp(0.875rem, 0.875rem + 1.5625vw, 1rem);
	line-height: 1.5;
	font-family: var(--c-font);
}

.f-content-18{
	font-size:clamp(1rem, 1rem + 1.5625vw,1.125rem);
	line-height: 1.85;
	font-family: var(--c-font);
}

.f-content-20{
	font-size:clamp(1rem, 1rem + 1.5625vw,1.25rem);
	line-height: 1.85;
	font-family: var(--c-font);
}

.w-900{
	font-weight: 900;
}

.w-800{
	font-weight: 800;
}

.w-700{
	font-weight: 700;
}

.w-600{
	font-weight: 600;
}

.w-500{
	font-weight: 500;
}

.w-400{
	font-weight: 400;
}

.w-300{
	font-weight: 300;
}

.w-200{
	font-weight: 200;
}

.w-100{
	font-weight: 100;
}


/*-----
SHARE BUTTONS
-------*/

.article-share-buttons{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	padding:30px 0;
	gap:0 20px
}

.whatsapp-share-button{
	height: 28px;
	display: inline-flex;
	align-items: center;
	padding:1px 12px 1px 12px;
	font-weight: 500;
	font-size:13px;
	border-radius: 9999px;
	background: #25D366;
	color:#fff;
}

/*---------
PAGE
---------*/

.page-content{
	width: 100%;
	display: block;
	padding:30px;
	border-radius: 16px;
	background: #fff;
}

/*------
FOOTER
-------*/

.footer-bottom-wrapper{
	background: #212121;
}

.footer-bottom{
	width: 100%;
	padding:15px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color:#fff;
	font-size:12px
}

.footer-list{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	list-style: none;
	gap:0 20px;
}

.footer-list li a{
	display: inline-block;
	color:#fff;
}

/*---------
RESPONSIVE
---------*/
.toggle-button{
	display: flex;
	flex-direction: column;
	gap: 8px 0;
	width: 36px;
	border:none;
	background: transparent;
	cursor: pointer;
}

.toggle-button span{
	width: 100%;
	height: 2px;
	display: block;
	background: #000;
}

#closeMenu {
	font-size:30px;
	display: inline-block;
	color:#fff;
	cursor:pointer;
	z-index:5000;
	background: transparent;
	border: none;
}

.close-menu span {
	display: block;
	width: 26px;
	height: 2px;
	background: #fff;
	margin: 8px 0;
	position: relative;
	top: 0;
	transition: top .15s 0s linear,background .3s 0s linear,transform .15s .15s linear,-webkit-transform .15s .15s linear;
}

.close-menu span:nth-child(1){
	transition:top .15s 0s linear,background .3s 0s linear,transform .15s .15s linear,-webkit-transform .15s .15s linear;
	transform: rotate(45deg);
	top:8px;
}

.close-menu span:nth-child(2){
	transition: opacity 0s .15s linear,background .3s 0s linear;
	opacity:0
}

.close-menu span:nth-child(3){
	transition:top .15s 0s linear,background .3s 0s linear,transform .15s .15s linear,-webkit-transform .15s .15s linear;
	transform: rotate(-45deg);
	top:-12px
}

.res-header-wrapper{
	background: #fff;
	display: none;
}

.res-header{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding:15px
}

.res-menu-wrapper{
	position: fixed;
	background: #000;
	height: 100%;
	width: 100%;
	align-items: stretch;
	left:-150%;
	transition:all 300ms ease 0s
}

.res-menu-wrapper.active{
	left:0
}

.res-menu{
	width: 100%;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.res-menu-header{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding:15px;
	border-bottom:1px solid rgba(255,255,255,.2);
}

.res-menu-list{
	width: 100%;
	list-style-type: none;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.res-menu-list li{
	width: 100%;
	display: flex;
}

.res-menu li a{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding:15px;
	font-size:18px;
	color:#fff;
}

/** MEDIA QUERIES */

@media (max-width:1759px) {	



}

@media (max-width:1559px) {	


}

@media (max-width:1367px) {

	.container{
		width:100%;
		padding:0
	}

	.heading{
		padding:0 15px
	}

	.footer-bottom{
		padding:15px
	}

	.article-container{
		padding:0 15px
	}

}

@media (max-width:1280px) {

	.all-header-wrapper{
		display: none;
	}

	.res-header-wrapper{
		display: flex;
	}

	.spotlight-ads{
		padding-right:15px
	}

}

@media (max-width:1100px) {

	.spotlight-items .box-2{
		width: 33.33%;
	}

}

@media (max-width:1024px) {

	.top{
		flex-direction: column;
	}

	.showcase-wrapper{
		width: 100%;
	}

	.box-1 .box{
		flex-direction: row;
	}

	.new-items-wrapper{
		width: 100%;
		margin:30px 0 0 0
	}

	.new-items{
		width: 100%;
		flex-direction: row;
	}

	.box-2 .box-image,.nature-top .box-2 .box-image{
		height: 300px;
	}

	.popular-items-wrapper{
		width: 100%;
		margin-top:30px
	}

	.popular-items{
		width: 100%;
		flex-direction: row;
		flex-wrap: wrap;
	}

	.popular-items .box-3{
		width: 50%;
		flex:auto
	}

	.spotlight{
		flex-direction: column;
	}

	.spotlight-items{
		width: 100%;
	}

	.spotlight-ads{
		margin-top:30px;
		width: 100%;
		padding-left:0;
	}

	.spotlight-ads .ads-vertical{
		padding:0 15px;
		flex-direction: row;
		gap:0 15px
	}

	.life{
		flex-direction: column;
	}

	.life-left{
		width: 100%;
	}

	.life-popular{
		width: 100%;
		margin-top:30px
	}

	.life-popular-items{
		flex-direction: row;
		flex-wrap: wrap;
	}

	.life-popular-items .box-3{
		width: 50%;
		flex:auto
	}

	.nature{
		flex-direction: column;
		gap:30px 0
	}

	.nature-left{
		width: 100%;
	}

	.nature-right{
		width: 100%;
	}

	.nature-popular-items{
		flex-direction: row;
	}

	.nature-popular-items .box-2{
		width: 50%;
	}

	.others-items .box-2{
		width: 33.33%;
	}

}

@media (max-width:850px) {

	.spotlight-items .box-2{
		width: 50%;
	}

	.science-new-items{
		flex-direction: column;
	}

	.others-items .box-2{
		width: 50%;
	}

}

@media (max-width:768px) {
	
	.spotlight .box-2{
		width: 50%;
	}

	.box-2 .box-image,.nature-top .box-2 .box-image{
		height: auto;
	}

	.article-container{
		padding:0 15px
	}

	.article{
		flex-direction: column;
	}

	.article-left{
		width: 100%;
		padding:0
	}

	.article-right-wrapper{
		width: 100%;
		padding:0;
		margin-bottom:30px
	}

	.article-right .similars .box-3{
		padding:0
	}

	.page-container{
		padding:0 15px
	}

	.page-content{
		padding:15px
	}

}

@media (max-width:620px) {

	.spotlight-items .box-2{
		width: 100%;
	}

	.others-items .box-2{
		width: 100%;
	}


}

@media (max-width:600px) {

	.box-1 .box{
		flex-direction: column;
	}

	.popular-items .box-3, .life-popular-items .box-3,.nature-new .box-3{
		width: 100%;
	}

	.nature-new{
		gap:15px 0
	}

	.life-bottom{
		flex-wrap: wrap;
	}

	.life-bottom .box-2{
		width: 50%;
		flex:auto
	}

}

@media (max-width:480px){

	.new-items{
		flex-direction: column;
	}

	.popular-items{
		flex-direction: column;
	}

	.popular-items .box-3{
		width: 100%;
	}

	.spotlight-ads{
		padding:0
	}

	.spotlight-ads .ads-vertical{
		flex-direction: column;
		gap:30px 0
	}

	.box-4 .box{
		flex-direction: column-reverse;
	}

	.box-4 .box-image{
		width: 100%;
		height: auto;
	}

	.nature-popular-items{
		flex-direction: column;
		gap:15px 0
	}

	.nature-popular-items .box-2{
		width: 100%;
	}

}

@media (max-width:390px) {

	.spotlight .box-2{
		width: 100%;
	}

	.life-bottom .box-2{
		width: 100%;
	}

	.nature-top{
		flex-direction: column;
		gap:15px 0
	}

	.box-1 .box-content{
		padding:15px
	}

	.others-items .box-2{
		width: 100%;
	}

	.article-showcase,.child{
		padding:15px
	}

	.fihrist-wrapper .heading{
		padding:15px
	}

	.fihrist{
		padding:15px
	}


}
