/*ГЛОБАЛЬНЫЕ ПЕРЕМЕННЫЕ*/
:root {
	--main-color-white: #ffffff;
	--main-color-black: #202020;
	--main-color-blue: #3a52ff;
	--main-color-gray: #c4c4c4;
	--main-color-bg: #f4f5fd;
	--main-color-blue--dark: #0164a4;
}

/*ШРИФТЫ*/
@font-face {
	font-family: 'Opensans';
	font-display: swap;
	src: url('assets/fonts/opensanslight.woff2');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Opensans';
	font-display: swap;
	src: url('assets/fonts/opensans.woff2');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Opensans';
	font-display: swap;
	src: url('assets/fonts/opensanssemibold.woff2');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Opensans';
	font-display: swap;
	src: url('assets/fonts/opensansbold.woff2');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'Opensans';
	font-display: swap;
	src: url('assets/fonts/opensansextrabold.woff2');
	font-weight: 800;
	font-style: normal;
}

/*СТИЛИ ВСЕГО ДОКУМЕНТА*/
:focus::-webkit-input-placeholder {
	color: transparent;
}

:focus::-moz-placeholder {
	color: transparent;
}

:focus:-moz-placeholder {
	color: transparent;
}

:focus:-ms-input-placeholder {
	color: transparent;
}

:focus {
	outline: none !important;
}

html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	height: 100%;
}

body {
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	overflow: hidden;
	min-height: 100%;
	position: relative;
	background: var(--main-color-bg);
}

html, body {
	color: var(--main-color-black);
	font: 14px/1.4 'Opensans', sans-serif;
	overflow-x: hidden;
	opacity: 1;
}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:after,
:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

a, input, button {
	transition: all 0.2s ease 0s;
	-moz-transition: all 0.2s ease 0s;
	-webkit-transition: all 0.2s ease 0s;
}

/* ОСНОВНЫЕ СТИЛИ */
.clb {
	clear: both;
	height: 0;
	width: 100%;
}

.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
}
.contain {
	position: relative;
}

.section {
	padding-right: 15px !important;
	padding-left: 15px !important;
	margin-right: auto;
	margin-left: auto;
}
.fluid {
	padding-right: 0px !important;
	padding-left: 0px !important;
	margin-right: auto;
	margin-left: auto;
}

.bg--gray {
	background-color: var(--main-color-gray);
}

.bg--beige {
	background-color: var(--main-color-beige);
}

.btn {
	display: inline-block;
	margin-bottom: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.42857143;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	border: 1px solid transparent;
	transition: all 0.2s ease 0s;
	-moz-transition: all 0.2s ease 0s;
	-webkit-transition: all 0.2s ease 0s;
}

.btn--blue {
	text-transform: uppercase;
	color: var(--main-color-white);
	padding: 15px 25px;
	background-color: var(--main-color-blue);
	display: block;
	border-radius: 50px;
}

.btn--blue:hover {
	background-color: var(--main-color-blue--dark);
}

.btn--border {
	text-transform: uppercase;
	color: var(--main-color-black);
	padding: 15px 25px;
	display: block;
	border-radius: 50px;
	border: 1px solid var(--main-color-black);
}

.btn--border:hover {

}

.bg--img {
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	overflow: hidden;
}

.button-detail {
	margin-top: 20px;
	width: 100%;
	text-align: center;
}

.gap {
	padding-top: 20px;
}

.title--h2 {
	font-size: 36px;
	color: var(--main-color-black);
	font-weight: 700;
	text-transform: uppercase;
}

.title--h3 {
	font-size: 24px;
	color: var(--main-color-black);
	font-weight: 400;
}

.title-wrap {
	/*padding-bottom: 60px;*/
	text-align: center;
}

.catalog-wrap {
	/*padding-bottom: 122px;*/
}
.catalog-wrap__link-index {
	background: #a98a1d;
	text-decoration: none;
	color: var(--main-color-red--dark);
	font-weight: 700;
	font-size: 19px;
	padding: 5px;
	border-radius: 50px;
	margin: 0 auto;
	display: grid;
	width: 400px;
	justify-content: center;
}
.hidden {
	display: none;
}

.slider__type .button-arrow {
	font-size: 24px;
	width: 30px;
	height: 30px;
	color: #fff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color: var(--main-color-red);
}

.slider__type .navigation-prev {
	left: -50px;
}

.slider__type .navigation-next {
	right: -50px;
}

.text-center {
	text-align: center;
}

.block-center {
	margin: 0 auto;
}

.flex {
	display: flex;
}

.grid {
	display: grid;
	grid-gap: 10px;
}

.inline-grid {
	display: inline-grid;
}

/*ДЛЯ СЛАЙДЕРА >>>>>*/
.button-arrow {
	height: 20px;
	width: 20px;
	font-size: 20px;
	color: #000;
	display: grid;
	align-items: center;
	justify-items: center;
	text-decoration: none;
	background-color: transparent;
}

.navigation-prev {
	left: 0;
}

.navigation-next {
	right: 0;
}

.navigation-prev, .navigation-next {
	line-height: 0;
	position: absolute;
	top: 50%;
	display: block;
	padding: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
	border: none;
	outline: none;
	z-index: 10;
}

.slick-dots li {
	margin: 0 10px;
}

.slick-dots li button {
	background: #fff;
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.25);
	border-radius: 50%;
}

.slick-dots li button:hover {
	background: var(--main-color-blue);
}

.slick-dots li.slick-active button {
	background: var(--main-color-blue);
}

.slick-dots li button:before {
	content: "";
}

.slick-dotted.slick-slider {
	margin-bottom: 0;
}

/*<<<<< ДЛЯ СЛАЙДЕРА*/

header {
	padding-bottom: 20px;
	padding-top: 20px;
}
.h1-top-header {
	text-align: center;
    font-size: 36px;
    text-transform: uppercase;
}
.section {
	/*background: #fff;*/
	position: relative;
	z-index: 1;
}
.content-title {
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	color: var(--main-color-red);
}
header .back {
	background-repeat: no-repeat !important;
	background-size: cover !important;
	height: 220px;
	border: 1px solid var(--main-color-blue--dark);
	margin-top: 25px;
}
footer .back {
	background-repeat: no-repeat !important;
	background-size: cover !important;
	/*height: 220px;*/
	border: 1px solid var(--main-color-blue--dark);
	margin-top: 25px;
	margin-bottom: 25px;
}

.phone--top a {
	color: var(--main-color-black);
	font-size: 40px;
	text-decoration: none;
	font-weight: 700;
}
.email--top a {
	color: var(--main-color-black);
	font-size: 26px;
	text-decoration: none;
	font-weight: 500;
}
.desc--top {
	display: grid;
	gap: 15px;
	color: var(--main-color-black);
	text-align: center;
}
.desc--top .title {
	font-size: 40px;
	text-transform: uppercase;
	font-weight: 700;
}
.desc--top .title a {
	text-decoration: none;
	color: var(--main-color-black);
}
.desc--top .desc {
	font-size: 18px;
	font-weight: 700;
}
.header--menu-wrap {
	grid-template-columns: 1fr 1fr;
	padding: 5px 20px;
	gap: 25px;
	height: 100%;
	/*background: rgb(0 0 0 / 47%);*/
	/*background: rgb(0 0 0 / 20%);*/
	border: 1px solid #c4c4c4;
	align-items: center;
	-webkit-box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
	box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
footer .header--menu-wrap {
	grid-template-columns: 1fr 1fr 1fr;
	margin-bottom: 20px;
}
.footer-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: left;
}
.footer-menu ul li a {
	text-decoration: none;
	color: var(--main-color-black);
}
.header--menu-left {
	justify-content: start;
}
.header--menu-right {
	/*grid-template-columns: 300px;*/
	align-items: center;
	justify-items: center;
	justify-content: end;
	padding: 10px 0;
	grid-gap: 0;
}
.header--menu-center {
	text-align: center;
	color: var(--main-color-red--dark);
}
/*.header--menu-center div:nth-child(1) {*/
	/*font-size: 40px;*/
	/*text-decoration: none;*/
	/*font-weight: 700;*/
	/*text-transform: uppercase;*/
	/*letter-spacing: 8px;*/
/*}*/
.callback--top {
	width: 100%;
}

/*слайдер баннер главный*/
.slider-banner {
	height: 304px;
	/*overflow: hidden;*/
}

.slider-banner .slider-banner__wrap {
	height: 304px !important;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	overflow: hidden;
}

.slider-banner .slick-dots {
	bottom: 52px;
}
/*.slider-banner .slider-banner__block {
	display: flex;
	height: 100%;
	grid-gap: 100px;
	align-items: center;
}*/
.slider-banner .slider-banner__block {
	display: flex;
    height: 100%;
    grid-gap: 100px;
    align-items: center;
    flex-direction: row-reverse;
}
.slider-banner .slider-banner__text {
	flex-basis: 50%;
	padding: 20px 0;
	background: #0164a4a1;
}
/*.slider-banner .slider-banner__img {
	height: 100%;
	display: flex;
	align-items: center;
	padding-left: 195px;
}*/
.slider-banner .slider-banner__img {
	height: 100%;
    display: flex;
    align-items: center;
    padding-right: 195px;
}
.slider-banner .slider-banner__img img {
	height: 65%;
}

.slider-banner .slider-banner__text .slider-banner__text-title {
	font-size: 44px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	color: var(--main-color-white);
}

.slider-banner .slider-banner__text .slider-banner__text-desc {
	font-size: 34px;
	font-weight: 700;
	text-align: center;
	color: var(--main-color-white);
}


.slider-banner .button-arrow {
	width: 40px;
	height: 42px;
	background: #8184a1;
}
.slider-banner .button-arrow span {
	color: #fff;
	font-size: 26px;
	font-weight: bold;
}
.slider-banner .button-arrow:hover {
	background: #346699;
}
.slider-banner .navigation-prev {
	left: -8px;
	-moz-border-radius: 0px 4px 4px 0px;
	-webkit-border-radius: 0px 4px 4px 0px;
	-khtml-border-radius: 0px 4px 4px 0px;
	border-radius: 0px 4px 4px 0px;
}
.slider-banner .navigation-next {
	right: -8px;
	-moz-border-radius: 4px 0px 0px 4px;
	-webkit-border-radius: 4px 0px 0px 4px;
	-khtml-border-radius: 4px 0px 0px 4px;
	border-radius: 4px 0px 0px 4px;
}
.slider-banner .navigation-prev:before,
.slider-banner .navigation-next:before,
.slider-banner .navigation-prev:after,
.slider-banner .navigation-next:after {
	width: 0;
	height: 0;
	content: "";
	position: absolute;
}
.slider-banner .navigation-prev:before,
.slider-banner .navigation-next:before {
	top: -4px;
	border-bottom: 4px solid #575b71;
}
.slider-banner .navigation-prev:after,
.slider-banner .navigation-next:after {
	bottom: -4px;
	border-top: 4px solid #575b71;
}

.slider-banner .navigation-prev:before,
.slider-banner .navigation-prev:after {
	left: 0;
	border-left: 8px solid transparent;
}

.slider-banner .navigation-next:before,
.slider-banner .navigation-next:after {
	right: 0;
	border-right: 8px solid transparent;
}



.top-menu {
	margin: 0;
	justify-content: center;
	display: flex;
	flex-wrap: wrap;
}

.top-menu li {
	list-style: none;
	position: relative;
	white-space: nowrap;
}

.top-menu ul {
	-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.top-menu ul li:not(:first-child) {
	border-top: none;
}

.top-menu a {
	text-decoration: none;
	color: #ffffff;
	display: block;
	padding: 20px 18px;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 700;
	background-color: var(--main-color-red__light);
}

.top-menu .top-menu__submenu a {
	padding: 12px 15px;
	background-color: rgba(30, 75, 113, 0.8);
}

.top-menu .top-menu__submenu a:hover {
	color: var(--main-color-red__lighten);
	background-color: rgba(30, 75, 113, 0.8);
}

.top-menu li a:hover {
	background-color: var(--main-color-red--light);
}

.top-menu li a.active {
	background-color: var(--main-color-red--light);
}

.top-menu li:hover > ul {
	visibility: visible;
	opacity: 1;
}

.top-menu li ul {
	visibility: hidden;
	opacity: 0;
	transition: all .3s ease-out;
	position: absolute;
	top: calc(100% + 1px);
	top: 100%;
	z-index: 100;
}

.top-menu ul ul {
	top: 0;
	left: 100%;
}

.product-wrap {
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: -15px;
	margin-top: 60px;
}

.product-wrap .product-item {
	width: 32.4%;
	margin-bottom: 15px;
	box-shadow: 5px 15px 30px 0 rgba(0, 0, 0, 0.25);
	background: #fff;
	position: relative;
}
.product-wrap .label-sale {
	position: absolute;
	background-image: url(/images/sale.png);
	height: 100px;
	width: 100px;
	background-repeat: no-repeat;
	background-size: contain;
}
.product-wrap .product-item a {
	display: block;
	cursor: pointer;
}

.product-item .product-img {
	height: 165px;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	overflow: hidden;
	margin: 30px 10px 10px 10px;
}

.product-item .product-text {
	padding: 25px 25px 0;
	text-align: center;
}

.product-item .product-form {
	padding: 25px;
}

.product-item .product-text .product-title {
	height: 70px;
	overflow: hidden;
	font-size: 16px;
	font-weight: 600;
	/*text-transform: uppercase;*/
	color: var(--main-color-black);
}

.product-item .product-text .product-desc {
	height: 66px;
	overflow: hidden;
	margin: 10px 0;
	font-size: 16px;
	font-weight: 400;
	color: var(--main-color-black);
}

.product-item .product-text .product-price {
	/*height: 25px;*/
	margin-bottom: 15px;
}
.product-item .product-text .product-price s {
	font-size: 16px;
	color: var(--main-color-red);
}
.product-item .product-text .product-price {
	font-size: 26px;
	font-weight: 600;
	color: var(--main-color-red--dark);
}
.product-item .product-text .product-price span {
	font-size: 26px;
	font-weight: 600;
	color: var(--main-color-red--dark);
}
.product-item .product-form .input--tel {
	border: 0;
	border-bottom: 2px solid var(--main-color-red);
	background: 0 0;
	padding-bottom: 10px;
	text-align: center;
	font-size: 20px;
	width: 100%;
	margin-bottom: 8px;
}

.product-item .product-form .btn--product {
	padding: 15px 24px;
	width: 100%;
}

.remodal {
	padding: 20px;
}

.remodal-md {
	max-width: 350px;
	padding: 25px 0;
}

.remodal-md .product__modal-form {
	display: grid;
	padding: 30px 60px 20px;
}

.remodal-md .product__modal-form input {
	margin-bottom: 1rem;
	height: 45px;
	border: 1px solid #d8d8d8;
	padding-left: 15px;
	width: 100%;
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}

.remodal-md .product__modal-form input.not_phone {
	border: 1px solid #ff0020;
}

.product-modal__item {
	grid-template-columns: 1fr 1fr 0.6fr;
	grid-gap: 20px;
}

.product-modal__item-left {

}

.modal__item-img {
	height: 280px;
	-webkit-background-size: contain;
	background-size: contain;
}

.modal__item-value {
	font-weight: 600;
}

.product-modal__item-center {
	text-align: left;
}

.modal__item-title {
	font-size: 19px;
	text-transform: uppercase;
	font-weight: 700;
	padding-bottom: 20px;
}

.modal__item-value small {
	font-size: 90%;
}

.product-modal__item-right {

}

.product-modal__item-right .product-price {

}
.product-modal__item-right .product-price s {
	font-size: 16px;
	color: var(--main-color-red);
	display: block;
}
.product-modal__item-right .product-price {
	font-size: 14px;
	font-weight: 600;
	color: var(--main-color-red--dark);
}
.product-modal__item-right .product-price span {
	font-size: 26px;
	font-weight: 600;
	color: var(--main-color-red--dark);
}

.product-modal__item-right small {
	font-size: 90%;
}

.product-form {
	margin-top: 20px;
}

.product-modal__item-bottom {
	grid-column: span 3 / auto;
}

.product-modal__item-bottom .product-text {
	text-align: left;
}

.top-banner_left {
	width: 365px;
	height: 425px;
	background-repeat: no-repeat !important;
	-webkit-background-size: cover !important;
	background-size: cover !important;
	position: absolute;
	top: 0;
	left: 0;
	transform: scale(-1, 1);
}

.top-banner_right {
	width: 365px;
	height: 425px;
	background-repeat: no-repeat !important;
	-webkit-background-size: cover !important;
	background-size: cover !important;
	position: absolute;
	top: 0;
	right: 0;
}

.logo--top img {
	height: 200px;
}

.btn--product {
	text-transform: uppercase;
	font-weight: 700;
	color: var(--main-color-red);
}

.btn--product:hover {
	text-transform: uppercase;
	font-weight: 700;
	color: var(--main-color-red--light);
}

.btn__order__disabled {
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none !important;
	opacity: 0.2 !important;
}

.stock {
	text-align: center;
	font-weight: 700;
}

.in-stock {
	color: #2eb30c;
}

.not-available {
	color: #ff0000;
}

footer {
	margin-top: 40px;
}

.bottom-banner_left {
	width: 500px;
	height: 332px;
	background-repeat: no-repeat !important;
	-webkit-background-size: cover !important;
	background-size: cover !important;
	position: absolute;
	bottom: 0;
	left: 0;
}

.bottom-banner_right {
	width: 365px;
	height: 332px;
	background-repeat: no-repeat !important;
	-webkit-background-size: cover !important;
	background-size: cover !important;
	position: absolute;
	bottom: 0;
	right: 0;
}

/*Стили для теста разделов*/
.section-desc {

}
.section-desc h2,
.section-desc h3{
	text-align: center;
}
.section-desc span {
	display: block;
	margin-bottom: 20px;
}
.section-desc span.span--center {
	text-align: center;
}
.section-desc__block {
	display: block;
}
.section-desc__block ul {
	padding-left: 20px;
}
.sect-block__img {
	text-align: center;
}
.section-desc__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	justify-items: center;
	margin-bottom: 20px;
}
.sect-grid-item {
	height: 230px;
	display: grid;
	align-items: end;
	justify-items: center;
}
.sect-grid-item__img {

}
.sect-grid-item__img img {
	height: 230px;
}
.sect-grid-item__title {

}

/* Large desktops and laptops */
@media (min-width: 1200px) {

}

/* Portrait tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
	.title--h2 {
		font-size: 32px;
	}
	
	.title--h3 {
		font-size: 21px;
	}
	
	.title-wrap {
		padding-bottom: 35px;
	}
	
	.header--menu-wrap {
		padding: 10px 0;
	}
	/*.header--menu-center div:nth-child(1) {*/
		/*font-size: 37px;*/
	/*}*/
	
	.phone--top a {
		font-size: 24px;
	}
	
	.footer--menu-wrap {
		padding: 30px 0;
	}
	
	.logo--top img {
		height: 155px;
	}
}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
	.gap {
		padding-top: 30px;
	}
	
	.title--h2 {
		font-size: 28px;
	}
	
	.title--h3 {
		font-size: 18px;
	}
	header .back {
		height: auto;
	}
	.header--menu-wrap {
		display: grid;
		padding: 0;
		align-items: center;
		justify-items: center;
		grid-row-gap: 10px;
		grid-gap: 10px;
	}
	/*.header--menu-center div:nth-child(1) {*/
		/*font-size: 21px;*/
	/*}*/
	.logo--top {
		grid-area: 2 / 3 / 1 / 1;
	}
	
	/*.phone--top {*/
	/*grid-area: 2 / 2 / 2 / 2;*/
	/*}*/
	.phone--top a {
		font-size: 44px;
	}
	.desc--top .desc {
		font-size: 18px;
	}
	.desc--top .address {
		font-size: 18px;
	}
	.slider-banner .slider-banner__block {
		align-items: flex-end;
	}
	
	.slider-banner .slider-banner__text .slider-banner__text-title {
		font-size: 42px;
	}
	
	.slider-banner .slider-banner__text .slider-banner__text-desc {
		font-size: 28px;
	}
	
	.footer--menu-wrap {
		display: grid;
		padding: 30px 0;
		align-items: center;
		justify-items: center;
		grid-row-gap: 10px;
	}
	footer .header--menu-wrap {
		grid-gap: 10px;
	}
	.logo--top img {
		height: 115px;
	}
	.header--menu-right {
		grid-template-columns: 1fr;
	}
	.bx_catalog_tile .bx_catalog_tile_ul li:nth-child(5n+1) {
		clear: inherit;
	}
	.bx_catalog_tile .bx_catalog_tile_ul li {
		width: 33.33%;
	}
	.sect-grid-item__img img {
		height: 165px;
	}
	.sect-block__img img {
		height: 190px;
	}
}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {

}

/* Landscape phones and smaller */
@media (max-width: 480px) {
	.title-wrap {
		padding-bottom: 30px;
	}
	
	.title--h2 {
		font-size: 26px;
	}
	
	.title--h3 {
		font-size: 18px;
	}
	
	.header--menu-wrap {
		display: inline-grid;
		padding: 0;
		justify-content: space-between;
		grid-row-gap: 5px;
	}
	
	.logo--top .icon.icon-logo {
		width: 93px;
		height: 21px;
	}
	
	.phone--top a {
		font-size: 18px;
	}
	
	#stick .header--menu-wrap {
		padding: 0;
	}
	
	.logo--top {
		grid-area: 1 / 2 / 2 / 1;
	}
	
	.phone--top {
		grid-area: 1 / 2 / 1 / 2;
		text-align: right;
	}
	
	.slider-banner {
		height: 600px;
	}
	
	.slider-banner .slider-banner__wrap {
		height: 600px !important;
	}
	
	.slider-banner .slider-banner__text .slider-banner__text-title {
		font-size: 36px;
	}
	
	.slider-banner .slider-banner__text .slider-banner__text-desc {
		font-size: 24px;
	}
	
	.slider-banner .slider-banner__text .slider-banner__text-price {
		font-size: 38px;
	}
	
	.footer--menu-wrap {
		display: inline-grid;
		padding: 25px 0;
		justify-content: space-between;
		grid-row-gap: 20px;
	}
}

@media (max-width: 420px) {
	.header--menu-wrap {
		padding: 0;
		grid-template-columns: 1fr 1fr;
	}
	
	.footer--menu-wrap {
		padding: 10px 0;
		grid-template-columns: 1fr 1fr;
	}
}

/* Custom, iPhone 6/7/8/X */
@media (max-width: 375px) {

}

/* Custom, iPhone Retina 5/SE */
@media (max-width: 320px) {
	.phone--top a {
		font-size: 16px;
	}
	
	.slider-banner {
		height: 300px;
	}
	
	.slider-banner .slider-banner__wrap {
		height: 300px !important;
	}
	
	.slider-banner .slider-banner__text .slider-banner__text-title {
		font-size: 18px;
	}
	
	.slider-banner .slider-banner__text .slider-banner__text-desc {
		font-size: 16px;
	}
	
	.slider-banner .slider-banner__text .slider-banner__text-price {
		font-size: 22px;
	}
	
	.slider-banner .slick-dots {
		bottom: 20px;
	}
	
	.title--h2 {
		font-size: 18px;
	}
	
	.title--h3 {
		font-size: 14px;
	}
	
	.gap {
		padding-top: 20px;
	}
}


/*==========  Mobile First  ==========*/
/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width: 480px) {
	.section {
		width: 460px;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {
	.section {
		width: 750px;
	}
}

/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
	.section {
		width: 970px;
	}
}

/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {
	.section {
		width: 1170px;
	}
}
