:root {
	--white : #fff;
	--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;
}
@media (max-width: 1025px) {
	.custom-gutter {
		padding: 0 6px;
	}
}
@media (min-width: 1650px) {
	.container {
		max-width: 1550px;
	}
}
@media (max-width: 1025px) {
	.container {
		max-width: calc(100% - 32px);
		padding: 0;
	}
}
@media (min-width: 1025px) and (max-width: 1650px) {
	.container {
		max-width: calc(100% - 105px);
		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: calc(100% - 100px);
	}
	.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%;
}
p {
	font-size: 16px;
	font-weight: 400;
	line-height: 23px;
}
.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);
}
.btn-orange {
	color: var(--white);
	background: var(--orange);
	text-align: center;
	/*padding: 8px 0px;*/
	border-radius: 100px;
	font-size: 27px;
	font-weight: 300;
	/*line-height: 32.89px;*/
	text-transform: uppercase;
	padding: 13px 0px;
	line-height: 21px;
}
@media (min-width: 1025px) {
	.btn-orange {
		min-width: 243px;
	}
	.btn-orange:hover  {
		background: var(--dark_blue);	
	}
}
@media (min-width: 768px) and (max-width: 1025px) {
	.btn-orange {
		font-size: 11px;
		min-width: 116px;
		/*line-height: 13.4px;*/
		line-height: 10px;
		padding: 11px 0px;
	}
}
@media (max-width: 767px) {
	.btn-orange {
		font-size: 11px;
		font-weight: 400;
		line-height: 13.4px;
		min-width: 104px;
		line-height: 10px;
		padding: 11px 0px;
	}
}

.dropdown {
	position: relative;
	margin-left: 29px;
}
.dropdown .dropdown-toggle {
	z-index: 3;
	position: relative;
	width: 100%;
	color: var(--white);
	background: var(--orange);
	text-align: center;
	/*padding: 8px 23px;*/
	border-radius: 25px;
	font-size: 27px;
	font-weight: 300;
	/*line-height: 32.89px;*/
	text-transform: uppercase;
	padding: 13px 23px;
	line-height: 21px;
}
.dropdown .dropdown-menu {
	z-index: 2;
	background-color: var(--dark_blue);
	position: absolute;
	top: 0;
	overflow-x: hidden;
	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);
	border-radius: 25px;
	display: flex;
	flex-direction: column;
	transform: translate3d(0px, 0px, 0px);
	padding-bottom: 10px;
}
.dropdown .dropdown-menu.show {
	visibility: visible; 
	opacity: 1;
	transform: translate3d(0px, 0px, 0px);
	padding-top: 58px;
}
.dropdown .dropdown-menu a {
	color: var(--white);
	text-decoration: none;
	text-align: center;
	font-size: 27px;
	font-weight: 300;
	line-height: 32.89px;
}
.title_block {
	color: var(--orange);
	font-size: 50px;
	font-weight: 400;
	line-height: 60.9px;
	text-align: center;
text-transform: uppercase;
}
@media (max-width: 1025px) {
	.dropdown .dropdown-toggle {
		padding: 8px 12.5px;
	}
	.dropdown .dropdown-toggle, .dropdown .dropdown-menu a {
		font-size: 11px;
		line-height: 13.4px;
	}
	.dropdown .dropdown-menu.show {
		padding-top: 38px;
	}
}
@media (min-width: 1025px) and (max-width: 1435px) {
	.title_block {
		font-size: 3.5vw;
		line-height: unset;
	}
}
@media (min-width: 768px) and (max-width: 1025px) {
	.title_block {
		font-size: 27px;
		font-weight: 400;
		line-height: 32.89px;
	}
}
@media (max-width: 767px) {
	.title_block {
		font-size: 20px;
		line-height: 24.36px;
	}
}
* {
	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 {
	padding-top: 39px;
	padding-bottom: 33px;
}
header .top_menu {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
header .top_menu .logo img {
	max-width: 579px;
}

@media (min-width: 1025px) {
	header .top_menu .logo {
		margin-left: 136px;
		margin-right: 135px;
	}
}
@media (min-width: 1025px) and (max-width: 1650px){
	header .top_menu .logo {
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
	
}
@media (min-width: 1025px) and (max-width: 1435px) {
	header .top_menu .logo img {
		max-width: 70%;
	}
	header .top_menu {
		padding-left: 8%;
	}
	.btn-orange {
		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 {
	background: #B6DDEA;
	background: var(--blue);
}
.first_block .container {
	max-width: 1920px;
	display: flex;
}
@media (max-width: 767px) {
	.first_block {
		border-radius: 0px 60px 0px 60px;
		overflow: hidden;
	}
}
.first_block video {
	width: 100%;
}

.first_block .video-placeholder {
	position: relative;
	width: 100%;
	height: auto;
	background-size: cover;
	background-position: center;
}
.first_block .video-placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.first_block .video-placeholder video {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
}
.first_block .video-placeholder.load video {
	opacity: 1;
}
/* Стили для мобильных устройств */
@media (max-width: 767px) {
	.first_block .video-placeholder {
		background-image: url('images/main_banner_mob_img.jpeg');
	}
	.first_block .video-placeholder.load {
		background-image: none;
	}
	.first_block .video-placeholder video {
		min-height: 440px;
	}
}
/* Стили для компьютеров */
@media (min-width: 768px) {
	.first_block .video-placeholder {
		background-image: url('images/main_banner_img.jpeg');
	}
	.first_block .video-placeholder.load {
		background-image: none;
	}
	.first_block .video-placeholder::before,
	.first_block .video-placeholder::after {
		content: '';
		position: absolute;
		top: 0;
		width: 3.5%; /* Ширина полупрозрачного эффекта */
		height: 100%;
		background: linear-gradient(to right, rgba(162, 217, 231, 1), transparent); /* Градиент для полупрозрачного эффекта */
		pointer-events: none; /* Игнорировать события мыши */
	}
	.first_block .video-placeholder::after {
		right: 0;
		background: linear-gradient(to left, rgba(162, 217, 231, 1), transparent); /* Градиент для другой стороны */
	}
}
/* Второй блок */
.second_block {
	margin-top: 50px;
}
.second_block .info_block {
	overflow: hidden;
	background: #EBF7FA;
	display: flex;
	border-radius: 100px 200px 0px 100px;
}
.second_block .animation_block {
	position: relative;
	flex: 1;
}
.second_block .animation_block img {
	width: 105%;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
}
.second_block .gradient_block {
	background: url('images/second_block_pc_bg.jpeg');
	background-size: cover;
	border-radius: 0px 200px 0px 200px;
	
	padding: 96px 61px 65px 91px;
	z-index: 1;
	box-sizing: border-box;
}
.second_block .gradient_block p {
	padding-top: 66px;
	color: var(--white);
	font-size: 23px;
	font-weight: 400;
	line-height: 33px;
}
@media (min-width: 1025px) {
	.second_block .gradient_block {
		width: 750px;
	}
}
@media (min-width: 1025px) and (max-width: 1435px) {
	.second_block .gradient_block {
		width: 54%;
		padding: 60px 60px 70px 70px;
	}
	.second_block .gradient_block p{
		font-size: 1.44vw;
		line-height: 2vw;
		padding-top: 3vw;
	}
}
@media (min-width: 768px) and (max-width: 1025px) {
	.second_block {
		margin-top: 35px;
	}
	.second_block .animation_block img {
		width: 152%;
	}
	.second_block .info_block {
		border-radius: 0px 60px 0px 60px;
	}
	.second_block .gradient_block {
		width: 311px;
		padding: 39px 41px 33px 41px;
		border-radius: 0px 60px 0px 60px;
		background-position-x: right;
	}
	.second_block .gradient_block p{
		padding-top: 26px;
		font-size: 14px;
		line-height: 23px;
	}
	.second_block .gradient_block p br {
		display: none;
	}
}
@media (max-width: 767px) {
	.second_block {
		margin-top: 34px;
	}
	.second_block .container {
		padding: 0;
		max-width: 100%;
	}
	.second_block .animation_block {
		order: 1;
	}
	.second_block .animation_block img {
		width: 100%;
		position: unset;
	}
	.second_block .info_block {
		border-radius: 0px 60px 0px 60px;
		flex-direction: column;
	}
	.second_block .gradient_block {
		order: 0;
		width: 100%;
		padding: 39px 41px 33px 41px;
		border-radius: 0px 60px 0px 60px;
		background-position-x: right;
	}
	.second_block .gradient_block p{
		padding-top: 26px;
		font-size: 14px;
		line-height: 23px;
	}
	.second_block .gradient_block p br {
		display: none;
	}
}

/* Ассортимент */
.assortment {
	margin-top: 55px;
}
.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 {
	box-sizing: border-box;
	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;
	}
}

/* Советы */
.adviсe {
	margin-top: 55px;
}
.adviсe .title_block {
	margin-bottom: 54px;
}
.adviсe .items_adviсe {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-gap: 50px;
}
.adviсe .item {
	position: relative;
	border-radius: 50px;
	overflow: hidden;
	display: flex;
}
.adviсe .item img {
	transition: var(--transition-custom);
}
.adviсe .item .img_block {
	display: flex;
	position: relative;
}
.adviсe .item .description_block {
	position: absolute;
	transition: var(--transition-custom);
	top: 0;
	left: 0;
	background: var(--dark_blue_80);
	color: var(--white);
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 22px 17px;
	box-sizing: border-box;
}
.adviсe .item .description_block h3 {
	font-size: 35px;
	font-weight: 400;
	line-height: 45px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 27px;
	text-transform: uppercase;
	cursor: default;
}
.adviсe .item .description_block h3:after {
	content: '';
	background: var(--white);
	width: 12px;
	height: 12px;
	border-radius: 100%;
	margin-top: 30px;
}
.adviсe .item .description_block p {
	font-size: 23px;
	font-weight: 400;
	line-height: 33px;
	cursor: default;
}
@media (min-width: 1025px) and (max-width: 1550px) {
	.adviсe .items_adviсe {
		gap: 40px;
	}
	.adviсe .item .description_block h3 {
		font-size: 2.2vw;
		margin-bottom: 1vw;
		line-height: 2.5vw;
	}
	.adviсe .item .description_block h3:after {
		margin-top: 1vw;
	}
	.adviсe .item .description_block p {
		font-size: 1.34vw;
		line-height: 2vw;
	}
}
@media (min-width: 1025px) {
	.adviсe .item:nth-child(1n) { 
		grid-area: 1 / 1 / 3 / 2; 
	}
	.adviсe .item:nth-child(2n) { 
		grid-area: 1 / 2 / 2 / 4; 
	}
	.adviсe .item:nth-child(3n) { 
		grid-area: 1 / 4 / 3 / 5; 
	}
	.adviсe .item:nth-child(4n) { 
		grid-area: 2 / 2 / 3 / 4; 
		
	}
	.adviсe .item .description_block {
		opacity: 0;
	}
	.adviсe .item:hover .description_block {
		opacity: 1;
	}
	.adviсe .item:hover img {
		opacity: 0;
	}
}
@media (max-width: 1025px) {
	.adviсe .item {
		border-radius: 33px;
	}
	.adviсe .item .description_block h3 {
		font-size: 17px;
		line-height: 22px;
		margin-bottom: 12px;
	}
	.adviсe .item .description_block h3:after {
		width: 10px;
		height: 10px;
		margin-top: 14px;
	}
	.adviсe .item .description_block p {
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
		cursor: default;
	}
	.adviсe .item .description_block br {
		display: none;
	}
	.adviсe .item .img_block:before {
		content: '';
		transition: var(--transition-custom);
		position: absolute;
		bottom: 0;
		width: 100%;
		height: 68px;
		background-image: url("data:image/svg+xml,%3Csvg width='32' height='16' viewBox='0 0 32 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 14L15.5484 2L30 14' stroke='white' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E%0A");
		background-repeat: no-repeat;
		background-position: center;
		z-index: 3;
	}
	.adviсe .item.active .img_block:before {
		transform: rotate(180deg);
	}
	.adviсe .item .img_block:after {
		content: '';
		transition: var(--transition-custom);
		background: var(--dark_blue_80);
		position: absolute;
		bottom: 0;
		width: 100%;
		height: 68px;
		border-radius: 33px;
		z-index: 2;
	}
	.adviсe .item.active .img_block:after {
		background: transparent;
	}
}
@media (min-width: 768px) and (max-width: 1025px) {

	.adviсe .items_adviсe {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(2, 1fr);
		grid-gap: 25px;
	}
	.adviсe .item .img_block {
		width: 100%;
	}
	.adviсe .item .description_block {
		opacity: 0;
		padding: 0 16px;
		padding-bottom: 34px;
	}
	.adviсe .item.active .description_block {
		opacity: 1;
	}
}
@media (max-width: 767px) {
	.adviсe .items_adviсe {
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: repeat(1, 1fr);
		grid-gap: 39px;
	}
	.adviсe .item {
		position: relative;
		flex-direction: column;
		transition: var(--transition-custom);
	}
	.adviсe .item:after {
		content: '';
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background-image: linear-gradient(#fff 25%, var(--dark_blue_80) 35% 100%);
		opacity: 0;
		transition: var(--transition-custom);
		z-index: -1;
	}
	.adviсe .item.active:after {
		opacity: 1;
	}
	.adviсe .item .img_block:after, .adviсe .item.active .img_block:after {
		background: var(--dark_blue_80);
		width: 74px;
		height: 37px;
		bottom: -0.1px;
		margin: auto;
		left: 0;
		right: 0;
		border-radius: 20px 20px 0px 0px;
	}
	.adviсe .item .img_block:before {
		height: 37px;
	}

	.adviсe .item img {
		z-index: 1;
	}
	.adviсe .item .description_block {
		position: unset;
		padding: 0 20px;
		max-height: 0vh;
		padding-top: 0;
		padding-bottom: 0;
		background: transparent;
		z-index: 0;
	}
	.adviсe .item.active .description_block {
		max-height: 80vh;
		padding-top: 39px;
		padding-bottom: 40px;
	}
	.adviсe .item .description_block h3 {
		max-width: 211px;
		margin: auto;
		margin-bottom: 9px;
	}
}
footer {
	font-weight: 700;
	font-size: 23px;
	color: var(--white);
	margin-top: 171px;
	padding-top: 62px;
	padding-bottom: 53px;
	position: relative;
}
footer:before {
	content: '';
	position: absolute;
	background: var(--blue);
	width: 50%;
	height: 100%;
	left: 0;
	top: 0;
	border-top-right-radius: 50px;
}
footer:after {
	content: '';
	position: absolute;
	background: var(--blue);
	width: 50%;
	height: 100%;
	right: 0;
	top: 0;
	border-top-left-radius: 50px;
}
footer .top-footer {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
footer .top-footer .logo {
	max-width: 531px;
}
footer .bottom-footer {
	position: relative;
	z-index: 1;
	padding-top: 36px;
	text-align: center;
	display: flex;
	justify-content: center;
	position: relative;
}
footer .bottom-footer .personal {
	color: var(--white);
	text-decoration: none;
}
@media (min-width: 768px) and (max-width: 1025px) {
	footer {
		padding-top: 48px;
		padding-bottom: 12px;
		margin-top: 34px;
		font-weight: 400;
		font-size: 17px;
		line-height: 19px;
	}
	footer .top-footer .logo {
		max-width: 256px;
	}
	footer:before {
		border-top-right-radius: 40px;
	}
	footer:after {
		border-top-left-radius: 40px;
	}
}

@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;
	}
}
@media (min-width: 1025px) and (max-width: 1435px) {
	footer {
		font-size: 1.5vw;
	}
	footer .top-footer .logo {
		max-width: 40%;
	}
}
.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;
}
.goverlay {
    background: #0016189e!important;
}
.glightbox-clean .gclose:hover, .glightbox-clean .gnext:hover, .glightbox-clean .gprev:hover, .glightbox-modern .gclose:hover, .glightbox-modern .gnext:hover, .glightbox-modern .gprev:hover {
background-color: rgba(0,0,0,0)!important;
transform: scale(1.1);
}