:root {
	--white : #fff;
	--white_1 : #f5f5f5;
	--black : #000000;
	--grey : #A1A1A1;
	--red : #E3000B;
	--yellow : #ffed00;



	--orange : #F39100;
	--blue : #A2D9E7;
	--blue_21 : #A2D9E736;
	--dark_blue: #008E9C;
	--dark_blue_70: #008E9CB2;
	--dark_blue_80: #008E9CCC;
	--text_black: #191E27;
	--transition-custom: .4s all linear;
}

/* Добавляем пользовательский класс для отступа */
/*
.custom-gutter {
	margin-right: -16px;
	margin-left: -16px;
}
.custom-gutter > .col,
.custom-gutter > [class*="col-"] {
	padding-right: 16px;
	padding-left: 16px;
}
*/
.container {
	width: calc(100% - 32px);
	max-width: 1060px;
	padding: 0;
}
@media (max-width: 767px) { /* Мобилка */
	.pc_img {
		display: none;
	}
	.tablet_img {
		display: none;
	}
	.mob_img {
		display: unset!important;
	}
}
@media (min-width: 768px) and (max-width: 1025px) {  /* Планшет */
	.container {
		max-width: 631px;
	}
	.pc_img {
		display: none;
	}
	.tablet_img {
		display: unset!important;
	}
	.mob_img {
		display: none;
	}
}
@media (min-width: 1026px) { /* pc */
	.pc_img {
		display: unset!important;
	}
	.tablet_img {
		display: none;
	}
	.mob_img {
		display: none;
	}

}
[class*="btn"] {
	display: inline-block;
	text-decoration: none;
	transition: var(--transition-custom);
	border: transparent;
	cursor: pointer;
}
a, button {
	transition: var(--transition-custom);
	position: relative;
	z-index: 6;
}
img {
	width: 100%;
}
.btn-white{
	font-size: 13px;
	font-weight: 500;
	line-height: 15.73px;
	padding: 15px 14px;
	text-align: center;
	color: var(--Text-blue);
	background: var(--white-bg);
	border-radius: 6px;
}
.btn-white:hover {
	background: var(--white-bg-hov);
}

.triangular_border, .triangular_border * {
	font-family: 'BERNIER Distressed';
}
.triangular_border {
	--btn-border: 3px solid var(--white);
	--triangle-width: 20px;
	--border-width: 20px;

	position: relative;
	color: var(--white);
	background: transparent;
	text-align: center;
	font-size: 36px;
	text-transform: uppercase;
	padding: 3px 20px;
}

.triangular_border .text {
	background: var(--black);
	display: inline-block;
	padding: 3px 9px;
	transition: var(--transition-custom);
}

/* Общие стили для всех псевдоэлементов */
.triangular_border::before,
.triangular_border::after,
.triangular_border .border_left_right::before,
.triangular_border .border_left_right::after, 
.triangular_border .border::before,
.triangular_border .border::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	transition: var(--transition-custom);
	z-index: 1;
}

/* Исправление для нижней границы */
.triangular_border .border::after {
	top: auto;
	bottom: 0;
}

/* Основные треугольники по бокам */
.triangular_border::before,
.triangular_border::after {
	width: var(--triangle-width);
	background: var(--black);
}

.triangular_border::before {
	left: 0.2px;
	clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 75% 50%, 0% 0%);
}

.triangular_border::after {
	right: 0.2px;
	clip-path: polygon(0% 0%, 0% 50%, 0% 100%, 100% 100%, 25% 50%, 100% 0%);
}

/* Верхняя и нижняя белые границы */
.triangular_border .border::before,
.triangular_border .border::after {
	left: 2px;
	width: calc(100% - 4px);
	height: 3px;
	background: var(--white);
	z-index: 2;
}

/* Боковые белые рамки-треугольники */
.triangular_border .border_left_right::before,
.triangular_border .border_left_right::after {
	width: var(--border-width);
	background: var(--white);
	height: 100%;
	z-index: 2;
}

.triangular_border .border_left_right::before {
	left: 0;
	clip-path: polygon(16% 0, 68% 50%, 16% 100%, 0% 100%, 55% 50%, 0% 0%);
}

.triangular_border .border_left_right::after {
	right: 0;
	clip-path: polygon(84% 0, 32% 50%, 84% 100%, 100% 100%, 45% 50%, 100% 0%);
}

@media (hover:hover) {
	.btn-black.triangular_border:hover .text,
	.btn-black.triangular_border:hover::before,
	.btn-black.triangular_border:hover::after {
		background: var(--red);	
	}
}
/* Стили для мобильных устройств */
@media (max-width: 767px) {
	.triangular_border {
		--triangle-width: 11px;
		--border-width: 11px;
	}
	.triangular_border .border::before, .triangular_border .border::after {
		height: 2px;
		left: 1.5px;
		width: calc(100% - 3px);
	}
	.triangular_border {
		font-size: 18px;
		padding: 3px 10px;
	}
	.triangular_border .text {
		padding: 1.25px 5px;
	}
}
/* Стили для планшетов */
@media (min-width: 768px) and (max-width: 1024px) {
	.triangular_border {
		--triangle-width: 11px;
		--border-width: 11px;
	}
	.triangular_border .border::before, .triangular_border .border::after {
		height: 2px;
		left: 1.5px;
		width: calc(100% - 3px);
	}
	.triangular_border {
		font-size: 18px;
		padding: 3px 10px;
	}
	.triangular_border .text {
		padding: 1.25px 5px;
	}
}


.dropdown {
	position: relative;
}
.dropdown .dropdown-toggle {
	
}
.dropdown .dropdown-menu {
	z-index: 2;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	visibility: hidden; 
	opacity: 0; 
	-webkit-transition: var(--transition-custom);
	-moz-transition: var(--transition-custom);
	-ms-transition: var(--transition-custom);
	-o-transition: var(--transition-custom);
	transition: var(--transition-custom);
	display: flex;
	flex-direction: column;
	transform: translate3d(0px, 0px, 0px);
}
.dropdown .dropdown-menu.show {
	visibility: visible; 
	opacity: 1;
	transform: translate3d(0px, 0px, 0px);
	padding-top: 64px;
}
.separation_up {
	top: -1px;
	z-index: 3;
	display: flex;
	position: absolute;
	width: 100%;
	height: 48px;
	overflow: hidden;
}
.separation_up .icon {
	width: 100%;
	fill: var(--white);
	min-width: 1920px;
	aspect-ratio: 1920 / 48;
}
/* Стили для планшетов и мобильных */
@media (max-width: 1024px) {
	.separation_up {
		margin-top: -7px;
		height: 32px;
	}
	.separation_up .icon {
		min-width: 1273px;
	}
	.dropdown .dropdown-menu.show {
		padding-top: 34px;
	}
}

/*
section .separation_down {
    bottom: -1px;
    z-index: 3;
    position: absolute;
    width: 100%;
    height: 48px;
    overflow: hidden;
}

section .separation_down .icon {
    width: 100%;
    height: 48px;
    fill: var(--white);
    min-width: 1920px;
    margin-left: 50%;
    transform: translateX(-50%);
}
*/
section .separation_down {
	bottom: -1px;
	z-index: 3;
	position: absolute;
	width: 100%;
	height: 48px;
	overflow: hidden;
}
section .separation_down .icon {
	width: 100%;
	fill: var(--white);
	min-width: 1920px;
	aspect-ratio: 1920 / 48;
}


/* Стили для мобильных устройств */
@media (max-width: 767px) {
	
}
/* Стили для планшетов и мобильных */
@media (max-width: 1024px) {
	section .separation_down {
		height: 32px;
	}
	section .separation_down .icon {
		min-width: 1273px;
	}
}


* {
	margin: 0;
	padding: 0;
	font-family: 'Proxima Nova';
}
body {
	font-family: 'Proxima Nova';
	color: var(--Text-text-01);
	padding-top: var(--header-height);
	overflow-x: hidden;
}
header:after {
	content: '';
}
header {
	padding-top: 17px;
	position: absolute;
	width: 100%;
}
header .top_menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .top_menu .left_menu, header .top_menu .right_menu {
	flex: 1;
	display: inline-flex;
	gap: 46px;
}
header .top_menu .left_menu .menu_itm {
	margin: auto;
}

header .top_menu .logo img {
	max-width: 579px;
}
header .top_menu .right_menu {
	justify-content: end;
}

/* Стили для мобильных устройств */
@media (max-width: 767px) {
	header {
		padding-top: 4px;
	}
	header .container {
		position: relative;
	}
	header .top_menu {
		flex-wrap: wrap;
		gap: 10px;
	}
	header .top_menu .logo img {
		max-width: 84px;
	}
	header .top_menu .left_menu, header .top_menu .right_menu {
		display: contents;
	}
	header .top_menu .logo {
		order: 1;
		margin: auto;
		width: 85%;
		text-align: center;
	}
	header .top_menu .left_menu .menu_itm {
		order: 2;
		margin: unset;
	}
	header .top_menu .right_menu .menu_itm {
		order: 3;
	}
	header .top_menu .dropdown {
		position: absolute;
		right: 0;
		bottom: 46px;
		z-index: 10;
	}
}
/* Стили для планшетов */
@media (min-width: 768px) and (max-width: 1024px) {
	header {
		padding-top: 9px;
	}
	header .top_menu {
		gap: 47px;
	}
	header .top_menu .left_menu {
		justify-content: end;
	}
	header .top_menu .left_menu .menu_itm {
		margin: unset;
	}
	header .top_menu .left_menu, header .top_menu .right_menu {
		gap: 24px;
	}
	header .top_menu .right_menu {
		justify-content: unset;
	}
	header .top_menu .logo img {
		max-width: 84px;
	}
}


/*
@media (min-width: 1025px) and (max-width: 1435px) {
	header .top_menu .logo img {
		max-width: 70%;
	}
	header .top_menu {
		padding-left: 8%;
	}
	.btn-black {
		white-space: nowrap;
		font-size: 1.5vw;
		padding: 8px 12px;
		min-width: 13vw;
	}
	.dropdown .dropdown-toggle {
		white-space: nowrap;
		font-size: 1.5vw;
		padding: 8px 12px;
	}
	.dropdown .dropdown-menu.show {
		padding-top: 40px;
		font-size: 1.5vw;
	}
	.dropdown .dropdown-menu a {
		font-size: 1.5vw;
		line-height: unset;
	}
}
@media (min-width: 768px) and (max-width: 1025px) {
	header .top_menu {
		justify-content: center;
	}
	header .top_menu .logo {
		margin: 0 33px;
	}
	header .top_menu .logo img {
		max-width: 256px;
	}
	header .top_menu .dropdown {
		margin-left: 24px;
	}
}
@media (max-width: 767px) {
	header {
		padding-top: 14px;
		padding-bottom: 27px;
	}
	header .top_menu {
		flex-wrap: wrap;
		justify-content: center;
	}
	header .top_menu .logo {
		margin-bottom: 21px;
		order: 0;
		width: 100%;
		text-align: center;
	}
	header .top_menu .logo img {
		max-width: 229px;
	}
	header .top_menu .menu_itm {
		order: 2;
		margin-right: 12px;
	}
	header .top_menu .menu_itm:firts-child {
		order: 1;
	}
	header .top_menu .dropdown {
		order: 3;
		margin: 0;
	}
}
*/
/* Первый блок */
.first_block {
	position: relative;
	padding-top: 27px;
}
.first_block .container {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	display: flex;
	justify-content: center;
}
.first_block .gif_img {
	width: 95%;
	max-width: 592px;
	margin-bottom: 67px;
}
section.first_block .separation_down .icon {
	fill: var(--red);
}

.first_block .bg_img {
	max-height: 674px;
	object-fit: cover;
	object-position: 0% -12px;
}

/* Стили для мобильных устройств */
@media (max-width: 767px) {
	.first_block {
		padding-top: 0;
	}
	.first_block .bg_img {
		object-fit: cover;
	}
	.first_block .gif_img {
		max-width: 277px;
		min-width: 277px;
		margin-bottom: 0;
	}
	.first_block .container {
		bottom: unset;
		top: clamp(175px, 31%, 900px);
	}
}
/* Стили для планшетов */
@media (min-width: 768px) and (max-width: 1024px) {
	.first_block {
		overflow: hidden;
	}
	.first_block .bg_img {
		object-fit: cover;
		height: 350px;
		scale: 1.1;
		object-position: center;
	}
	.first_block .gif_img {
		max-width: 307px;
	}
}
@media (min-width: 1025px) and (max-width: 1800px) {
	header .top_menu .logo img {
		width: clamp(20px, 10vw, 579px);
	}
	.first_block .gif_img {
		width: clamp(300px, 31vw, 592px);
	}
}



/* Второй блок */
.second_block {
	background: var(--red);
	color: var(--white);
	position: relative;
}
section.second_block .separation_down .icon {
	fill: var(--yellow);
}
.second_block .icons_block {
	display: flex;
	justify-content: space-between;
}
.second_block .icons_block .itm {
	width: calc(25% - 10px);
	text-align: center;
}
.second_block .icons_block .itm .icon {
	max-width: 120px;
}
.second_block .icons_block .itm .name {
	text-transform: uppercase;
	margin-top: 13.88px;
	font-weight: 600;
	font-size: 20px;
	line-height: 115%;
}
.second_block .info_block {
	display: flex;
	justify-content: space-between;
	gap: 25px;
	margin-top: 35px;
}
.second_block .info_block .img_block {
	width: 52%;
}

.second_block .info_block .text_block {
	padding-top: 32px;
	width: 48%;
	max-width: 490px;
	font-weight: 400;
	font-size: 23px;
	line-height: 143%;
}
.second_block .info_block .text_block p {
	margin-bottom: 46px;
}
.second_block .info_block .text_block p:last-of-type {
	margin-bottom: 0px;
}
.second_block .info_block .text_block .fire {
	max-width: 100%;
	width: 616px;
	margin-left: -91px;
	padding-bottom: 14px;
}



/* Стили для мобильных устройств */
@media (max-width: 767px) {
	.second_block {
		padding-bottom: 10px;
	}
	.second_block .icons_block {
		flex-wrap: wrap;
		gap: 11.3px;
	}
	.second_block .icons_block .itm {
		width: calc(50% - 6px);
	}
	.second_block .icons_block .itm .icon {
		max-width: 77px;
	}
	.second_block .icons_block .itm .name {
		margin-top: 9.69px;
		font-size: 13px;
		line-height: 15px;
	}
	.second_block .info_block {
		flex-wrap: wrap;
		gap: 0;
		margin-top: 26.31px;
	}
	.second_block .info_block .img_block {
		width: 100%;
		order: 2;
	}
	.second_block .info_block .text_block {
		padding-top: 0;
		width: 100%;
		font-size: 15px;
		line-height: 21px;
		text-align: center;
	}
	.second_block .info_block .text_block p {
		margin-bottom: 23px;
	}
	.second_block .info_block .text_block .fire {
		display: none;
	}
}
/* Стили для планшетов */
@media (min-width: 768px) and (max-width: 1024px) {
	.second_block .info_block {
		margin-top: 13.31px;
	}
	.second_block .info_block .img_block {
		width: 50%;
	}
	.second_block .info_block .img_block img {
		width: 354px;
		margin-left: -30px;
	}
	.second_block .info_block .text_block {
		width: 50%;
		font-size: 15px;
		line-height: 21px;
		padding-top: 27px;
	}
	.second_block .info_block .text_block p {
		margin-bottom: 23px;
	}
	.second_block .icons_block .itm .icon {
		max-width: 77px;
	}
	.second_block .icons_block .itm .name {
		margin-top: 9.69px;
		font-size: 13px;
		line-height: 15px;
	}
	.second_block .info_block .text_block .fire {
		max-width: unset;
		width: 398px;
		margin-left: -63px;
	}
}


/* Ассортимент */
.assortment {
	background: var(--yellow);
	position: relative;
	padding-bottom: calc(120px + 48px);
	background-image: url('images/assortment_bg.png');
	background-repeat: no-repeat;
	background-position: top center;
}
.assortment .assortment_bg {
	top: 0;
	left: 0;
	position: absolute;
	width: 1920px;
	z-index: 3;
	right: 0;
	margin: auto;
	pointer-events: none;
}
.assortment .container {
	display: flex;
	flex-direction: column;
}
.assortment .title_block {
	position: relative;
	margin: auto;
	margin-top: 28px;
	margin-bottom: 66px;
}
.assortment .title_block, .assortment .text, .assortment .title_block::before, .assortment .title_block::after {
	background: transparent;
	color: var(--black);
}
.assortment .title_block .border::before, .assortment .title_block .border::after, .assortment .triangular_border .border_left_right::before, .assortment .triangular_border .border_left_right::after{
	background: var(--black);
}
section.assortment .separation_down .icon {
	fill: var(--black);
}
@media (min-width: 768px) {
	.assortment .swiper-wrapper {
		display: flex;
		flex-wrap: wrap;
		gap: 45px 60px;
	}
	.assortment .swiper-wrapper .itm {
		width: calc(33% - 37px)!important;
		position: relative;
	}
}
.assortment .swiper-wrapper {
	align-items: stretch;
}
.assortment .swiper-wrapper .itm {
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}
.assortment .swiper-wrapper .itm .bg {
	background: var(--white_1);
	text-align: center;
	flex: 1;
	padding: 9px 6px 0px 7px;
}
.assortment .swiper-wrapper .itm .glightbox {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.assortment .swiper-wrapper .itm .name {
	font-weight: 400;
	font-size: 26px;
	line-height: 28px;	
}
.assortment .swiper-wrapper .itm .text {
	margin-top: 8px;
	font-size: 19px;
	line-height: 28px;
	color: var(--grey);
	padding-bottom: 6px;
}
.assortment .swiper-wrapper .itm .separation_product {
	aspect-ratio: 313/19;
	fill: var(--white_1);
}
/* Стили для планшетов */
@media (max-width: 767px) {
	.assortment {
		padding-bottom: calc(23.98px + 32px);
		overflow: hidden;
	}
	.assortment .title_block {
		margin-top: 7.18px;
		margin-bottom: 32.25px;
	}
	.assortment .container_slider {
		width: 100%;
		max-width: calc(100% - 62px);
        padding: 0 31px;
	}
	.assortment .slider_block .swiper {
		width: calc(100% + 62px);
        margin-left: -31px;
        padding: 0 31px;
	}
	.assortment .swiper-wrapper .itm .bg {
		padding: 5.37px 3.58px 0px 4.17px;
	}
	.assortment .swiper-wrapper .itm .name {
		font-size: 15px;
		line-height: 17px;
	}
	.assortment .swiper-wrapper .itm .text {
		margin-top: 4.15px;
		font-size: 12px;
		line-height: 15px;
	}

}
@media (min-width: 768px) and (max-width: 1024px) {
	.assortment {
		padding-bottom: calc(23.98px + 32px);
	}
	.assortment .title_block {
		margin-top: 7.18px;
		margin-bottom: 32.25px;
	}
	.assortment .swiper-wrapper {
		gap: 26.83px 36.36px;
	}
	.assortment .swiper-wrapper .itm {
		width: calc(33.3% - 24.1px) !important;
	}
	.assortment .swiper-wrapper .itm .bg {
		padding: 5.37px 3.58px 0px 4.17px;
	}
	.assortment .swiper-wrapper .itm .name {
		font-size: 15px;
		line-height: 17px;
	}
	.assortment .swiper-wrapper .itm .text {
		margin-top: 4.15px;
		font-size: 12px;
		line-height: 15px;
	}
}

/*
.assortment .title_block{
	margin-bottom: 54px;
}
.assortment .slider_block {
	position: relative;
}
.assortment .swiper-slide .bg {
	overflow: hidden;
	background: var(--blue_21);
	border-radius: 50px;
	padding-top: 21px;
}
.assortment .swiper-slide .bg a {
	text-decoration: none;
}
.assortment .swiper-slide img {
	width: 100%;
	transition: var(--transition-custom);
}
@media (min-width: 1025px) {
	.assortment .swiper-slide img:hover {
		transform: scale(1.12);
	}
}
.assortment .swiper-slide .name {
	margin-top: 16px;
	padding: 0 10px;
	padding-bottom: 47px;
	width: 100%;
	text-align: center;
	color: var(--text_black);
	font-size: 27px;
	font-weight: 400;
	line-height: 30px;
	text-align: center;
}

.assortment .swiper-button button {
	cursor: pointer;
	transition: var(--transition-custom);
	border: none;
	overflow: hidden;
	width: 78px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--orange);
	border-radius: 100px;
	margin-right: 20px;
	position: absolute;
	top: calc(50% - 22px);
	margin: auto;
	z-index: 2;
}
.assortment .swiper-button button .icon {
	fill: transparent!important;
	stroke: var(--white)!important;
	height: 31px!important;
	width: 18px!important;
}
.assortment .swiper-button button.swiper_button_prev .icon {
	margin-left: -5px!important;
}
.assortment .swiper-button button.swiper_button_next .icon {
	margin-right: -5px!important;
}
.assortment .swiper-button button.swiper_button_prev{
	left: calc(-24px - 78px);
}
.assortment .swiper-button button.swiper_button_prev.hidden {
	transform: scale(0);
	opacity: 0;
}
.assortment .swiper-button button.swiper_button_next{
	right: calc(-24px - 78px);
}
@media (min-width: 1025px) and (max-width: 1650px) {
	.assortment .swiper-button button {
		width: 48px;
		transform: scale(.8);
	}
	.assortment .swiper-button button.swiper_button_prev{
		left: calc(-2px - 48px);
	}
	.assortment .swiper-button button.swiper_button_next{
		right: calc(-2px - 48px);
	}
}
@media (max-width: 1025px) {
	.assortment {
		overflow: hidden;
	}
	.assortment .swiper-button button {
		display: none;
	}
	.assortment .container {
		margin-right: 0;
	}
	.assortment .swiper {
		overflow: unset;
	}
	.assortment .swiper-slide .name {
		font-size: 17px;
		line-height: 19px;
		padding-bottom: 27px;
	}
	.assortment .swiper-slide .bg {
		border-radius: 33px;
	}
}
@media (min-width: 768px) and (max-width: 1025px) {
	.assortment .container {
		max-width: calc(100% - 50px);
	}
}
@media (max-width: 767px) {
	.assortment {
		margin-top: 40px;
	}
	.assortment .container {
		max-width: calc(100% - 21px);
	}
	.assortment .title_block {
		margin-bottom: 25px;
	}
}
*/
footer {
	font-weight: 400;
	font-size: 26px;
	background: var(--black);
	color: var(--white);
	padding-bottom: 34px;
	position: relative;
}
footer .top-footer {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
}
footer .top-footer .logo {
	max-width: 121px;
}
footer .middle_block {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
}
footer .personal {
	margin-top: 16px;
	color: var(--white);
	text-decoration: none;
	text-align: center;
}
@media (hover:hover) {
	footer .personal:hover {
		text-decoration: underline;
	}
}
@media (min-width: 1026px) {
	footer .top-footer .left_block {
		padding-top: 11px;
	}
	footer .top-footer .right_block {
		padding-top: 22px;
	}
}

@media (max-width: 767px) {
	footer {
		font-size: 15px;
		line-height: 21px;
		padding-bottom: 27px;
	}
	footer .top-footer {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	footer .middle_block {
		display: contents;
	}
	footer .top-footer .logo {
		order: 1;
		width: 75px;
	}
	footer .right_block {
		order: 2;
		margin-top: 19px;
	}
	footer .personal {
		order: 3;
		margin-top: 27px;
	}
	footer .left_block {
		order: 4;
		margin-top: 17px;
	}
}
@media (min-width: 768px) and (max-width: 1025px) {
	footer {
		font-size: 15px;
		line-height: 21px;
		padding-bottom: 27px;
	}
	footer .top-footer .logo {
		width: 75px;
	}
	footer .personal {
		margin-top: 5.97px;
	}
	footer .top-footer .left_block {
		padding-top: 12.7px;
	}
	footer .top-footer .right_block {
		padding-top: 19px;
	}
	/*
	footer {
		padding-top: 48px;
		padding-bottom: 12px;
		margin-top: 34px;
		font-weight: 400;
		font-size: 17px;
		line-height: 19px;
	}
	
	*/
}


@media (max-width: 767px) {
	/*
	footer {
		padding-top: 39px;
		padding-bottom: 20px;
		margin-top: 40px;
		font-weight: 400;
		font-size: 17px;
		line-height: 19px;
		text-align: center;
	}
	
	footer .top-footer {
		flex-wrap: wrap;
		justify-content: center;
		gap: 28px;
	}
	footer .top-footer .logo {
		order: 0;
	}
	footer .top-footer > *:first-child {
		order: 2;
		width: 100%;
	}
	footer .top-footer > *:first-child br{
		display: none;
	}
	footer .top-footer > a {
		order: 1;
	}
	footer .bottom-footer {
		padding-top: 18px;
	}
	*/
}











/*
.to_top {
	position: fixed;
	display: flex;
	background: #67AEB8;
	text-decoration: none;
	color: var(--white);
	text-transform: uppercase;
	right: 83px;
	bottom: -30px;
	border-radius: 100px;
	z-index: 9;
	align-items: center;
	justify-content: center;
	padding: 8px 17px;
	gap: 5px;
	font-size: 17px;
	font-weight: 400;
	opacity: 0;
	transform: var(--transition-custom);
}
.to_top.view {
	opacity: 1;
	bottom: 30px;
}
.to_top .icon{
	width: 16px;
	height: 13px;
}
@media (max-width: 1025px) {
	.to_top {
		right: 30px;
	}
}
*/
.glightbox-clean .gslide-media, .glightbox-modern .gslide-media {
	box-shadow: none;
}
.glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev, .glightbox-modern .gclose, .glightbox-modern .gnext, .glightbox-modern .gprev {
	background-color: unset;
}