:root {
    --container-w: 1440px;
	--container-mob: 100%;
}

/* container */
.container {
    width: var(--container-w);
    margin: 0 auto;
}
.basic-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.basic-main-grid {
    display: grid;
    grid-template-columns: 265px auto 265px;
    grid-gap: 15px;
}
.basic-grid-holder {
    display: grid;
}
.grid-item-4 {
    grid-template-columns: repeat(4, calc(100% * 1 / 4 - 15px));
    grid-gap: 15px;
}
.grid-item-5 {
    grid-template-columns: repeat(5, calc(100% * 1 / 5 - 15px));
    grid-gap: 15px;
}
.grid-item-8 {
	grid-template-columns: repeat(8, calc(100% * 1 / 8 - 15px));
    grid-gap: 15px;
}
.basic-top-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding-bottom: 10px;
    border-bottom: 2px solid #5e5e5e;
}
.basic-footer-social {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}
.basic-single-grid {
    display: grid;
    grid-template-columns: 292px auto;
    grid-gap: 20px;
}
.banner-grid {
    display: none;
    grid-template-columns: repeat(2, calc(100% * 1 / 2));
    list-style: none;
	margin-bottom: 15px;
	li {
		position: relative;
		margin-bottom: 0;
		.widget-title {
			position: absolute;
			border-bottom-right-radius: 10px;
			background: #323232;
			color: #959595;
			padding: 3px 10px;
			font-size: 14px;
		}
	}
}

/* Mobile */
.basic-mobile-header {
	display: none;
}
.abs-mob-feature {
	display: none;
}
.dropdown-cat {
	display:none;
}
#mob-search {
	display:none;
}
.basic-mob-footer {
	display:none;
}
@media screen and (max-width: 768px) {
	main {
		padding-top: 13%;
	}
	.container {
		width: var(--container-mob);
	}
	.basic-head {
		display:none;
	}
	.basic-mobile-header {
		display: block;
	}
	.basic-sidebar {
		display:none;
	}
	.basic-mobile-header {
		position: fixed;
		top:0;
		left:0;
		width:100%;
		background:#000;
		z-index: 99999;
	}
	.mob-btn-group {
		position: absolute;
        top: 0;
        right: 0;
        width: 70px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 10px 0;
	}
	.mob-logo {
		text-align:center;
		border-bottom: 1px solid #2e2e2e;
		img {
			width: 127px;
			max-height: 38px;
		}
	}
	.basic-editor-pick {
		padding: 0 10px 25px 10px;
		background-position: center center;
  		background-size: cover;
	}
	#wpcategorieswidget-4,
	#wpcategorieswidget-5 {
		list-style:none;
		select {
		  width: 100%;
		  border-radius: 15px;
		  background: #3d3d3d;
		  border: 1px solid #525252;
		  padding: 5px 15px;
		  color: #fff;
		}
	}
	.abs-mob-feature {
		display:block;
        background: #2c2b2b;
        padding-top: 15px;
        padding-bottom: 15px;
        position: fixed;
		padding-top: 15%;
        width: 100%;
        height: 100%;
		left: -100%;
		transition: 0.2s ease-out;
	}
	.abs-mob-feature.show {
		left: 0;
		transition: 0.2s ease-in;
		z-index:999;
	}
	.mob-menu-icon {
		padding: 3px;
		cursor: pointer;
	}
	.basic-main-grid {
		padding: 0 15px;
	}
	ul#mobile-menu {
		margin-left: 0;
		list-style: none;
		padding-left: 0;
		margin-bottom: 0;
	}
	ul#mobile-menu li {
		padding-left: 10px;
		padding-right: 10px;
	}
	ul#mobile-menu li a {
		text-decoration: none;
		color: #fff;
		display:block;
		padding: 10px 15px;
	}
	.basic-footer {
		padding-left: 15px;
		padding-right: 15px;
	}
	#mob-search {
        justify-content: center;
        align-items: center;
        padding: 10px;
        background: #292727e3;
        gap: 15px;
        margin-top: 1px;
        position: relative;
		transition: 0.3s ease;
		margin-top: 45px;
	}
	#mob-search.open {
		display:flex;
		transition: 0.3s ease;
	}
	.basic-main-grid {
		grid-template-columns: auto;
	}
	.grid-item-4,
	.grid-item-5.mob-grid-2,
	.grid-item-8 {
		grid-template-columns: repeat(2,calc(100% * 1 / 2 - 8px));
	}
	.basic-single-grid {
		grid-template-columns: auto;
	}
	.single-grid-feature-img {
		text-align: center;
	}
	.dropdown-cat {
		display:block;
	}
	.basic-mob-footer {
		display:block;
		position: fixed;
		bottom: 0;
		background: #1f1f1f;
		width: 100%;
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		z-index:999;
	}
	.basic-copy {
	  margin-bottom: 25%;
	}
	.fix-list {
		display: flex;
		justify-content: space-between;
		align-content: center;
		padding: 20px;
		list-style: none;
	}
	.fix-list li a {
		position:relative;
		display: grid;
		grid-template-columns: auto;
		align-content: center;
		justify-items: center;
		text-decoration: none;
		row-gap: 5px;
	}
	.fix-list li span {
		font-size: 13px;
		color:#fff;
		display:block;
		text-align:center;
        margin-top: 5px;
	}
	.fix-list li:hover {
		span {
			color:red;
		}
	}
	.basic-footer-social {
		display:none;
	}
	.basic-top-footer {
		justify-content:center;
	}
}

