@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:wght@700&family=Nunito+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

:root
{
	--white: #FFFFFF;
	--black: #000000;
	--green:#009AA6;
	--light-green:rgba(0, 154, 166, 0.2);
	--grey:#868686;
	--light:#F8F9FA;

	
/*--title:300 32px/44px 'Open Sans', sans-serif;
--cname:800 20px/27px 'Open Sans', sans-serif;
--button:400 16px/20px 'Open Sans', sans-serif;
--textbig:400 20px/27px 'Nunito Sans', sans-serif;
--text:400 16px/24px 'Nunito Sans', sans-serif;
--fname:700 20px/27px 'Nunito Sans', sans-serif;
--snumbig:700 64px/78px 'Cormorant Infant', serif;
--snumsmall:700 40px/48px 'Cormorant Infant', serif;*/

--title:300 2rem/2.75rem 'Open Sans', sans-serif;
--cname:800 1.25rem/1.68rem 'Open Sans', sans-serif;
--button:400 1rem/1.25rem 'Open Sans', sans-serif;
--textbig:400 1.25rem/1.68rem 'Nunito Sans', sans-serif;
--text:400 1rem/1.5rem 'Nunito Sans', sans-serif;
--fname:700 1.25rem/1.68rem 'Nunito Sans', sans-serif;
--snumbig:700 4rem/4.875rem 'Cormorant Infant', serif;
--snumsmall:700 2.5rem/3rem 'Cormorant Infant', serif;


}

body, html
{
	width: 100%;
	min-height: 100%;
	padding: 0;
	margin: 0;
	font-size: 16px;
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 400;
	/*font:var(--textbig);*/
	background: var(--light);
}

div,a,span,p,input,textarea, img
{
	position: relative;
	box-sizing: border-box;
	outline: none;
}
a 
{
	color: var(--black);
	text-decoration: none;
}
textarea
{
	resize: none;
}
.color-title
{
	color: var(--green);
	text-transform: uppercase;
	display: block;
	letter-spacing: 3px;
	font: var(--text);
}
.title
{
	font: var(--title);
	display: block;
	margin: 8px 0 24px;
}
.title b 
{
	font-weight: 800;
}
.button
{
	padding: 1.25rem 1.875rem;
	border-radius: 1.875rem;
	height: 3.75rem;
	background: var(--green);
	color: var(--white);
	font: var(--button);
	display: inline-block;
	width:15.375rem;
	transition: all 0.3s ease;
	-webkit-appearance:none;
		border: none;
		cursor: pointer;
}

.button:hover
{
	transform: scale(1.1);
}

.page
{
	/*min-height: 100vh;*/
}
#first-page, #products
{
	background: var(--white);
	box-shadow: 0px 0px 15px rgba(62, 74, 75, 0.05);
}

#products
	{
		min-height: 100vh;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 85px 0 64px;
	}

.content
{
	display: block;
	min-width: 1040px;
	width: 80vw;
	margin:0 auto;
}

#first-page .content
{
	z-index: 1;
}

#first-page .content
{
	display: flex;
	align-items: center;
	height: 100vh;
}

#first-page .slides
{
	position: absolute;
	width: 100vw;
	height: 100vh;
	top:0;
	left: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

#first-page .slides .slide
{
	background-size: cover;
	background-position: center;
}

#top-header
{
	position: fixed;
	width: 100vw;
	top:0;
	left: 0;
	z-index: 5;
	transition: all 0.3s ease;
}

#top-header.scrolled
{
	background: #fff;
}

#top-header .content
{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#top-header .logo
{
	display: inline-flex;
	align-items: center;
	height: 85px;
}

#top-header .logo img
{
	height: 100%;
	transition: all 0.3s ease;
}

#top-header.scrolled .logo img
{
	height: 70%
}

#top-header #menu
{
	display: flex;
	justify-content:space-between;
	width: 68.5%;
}
#top-header #menu a
{
	display: inline-flex;
	font:var(--text);
	color:var(--black);
	padding: 0.8rem 0 0.5rem;
}
#top-header #menu a.selected
{
	border-bottom: 1px solid var(--green);
	color: var(--green);
}
#contacts-icons
{
	display: flex;
	justify-content: flex-start;
	gap:12px;
}
#contacts-icons a
{
	display: flex;
	gap:10px;
	min-width: 40px;
	height: 40px;
	border-radius: 20px;
	padding: 9px;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color:var(--green);
	border: 1px solid var(--green);
}
#contacts-icons a span
{
	font:var(--text);
	line-height: 22px;
	padding-right: 4px;
	display: none;
	align-items: center;
	opacity: 0;
	transition: all 0.5s ease;
	position: absolute;
	white-space: nowrap;
	left: -1px;
	width: auto;
	height: 42px;
	box-sizing: border-box;
	padding: 10px;
	gap: 10px;
	border-radius: 20px;
	background: var(--green);
	overflow: hidden;
	top: -1px;	
	color: var(--white);
}

#contacts-icons a span i
{
	font-size: 22px;
}

#contacts-icons a:hover
{
	z-index: 1;
}

#contacts-icons a:hover span
{
	opacity: 1;
	display: flex;
}
.slide-info
{
	display: flex;
	flex-direction: column;
	max-width: 40%;
}
.slide-info p 
{
	margin: 0 0 24px;
}
#first-page .down-line
{
	display: flex;
	justify-content: space-between;
	position: absolute;
	bottom: 6%;
	width: 100%;
}
#slider-pager, .slider-pager
{
	display: flex;
	align-items: center;
	gap:25px;
}
#slider-pager .num, .slider-pager .num
{
	display: flex;
	align-items: flex-end;
}
#slider-pager .num .current, .slider-pager .num .current
{
	font: var(--snumbig);
}
#slider-pager .num .count, .slider-pager .num .count
{
	font:var(--snumsmall);
}
#slider-pager a, .slider-pager a
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	font-size: 32px;
	border: 1px solid var(--black);
	color: black;
}

.popgal-pager
{
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
}
.popgal-pager .video-link
{

}
.excellence
{
	display: flex;
	flex-direction: column;
	gap:35px;
	margin-top: 46px;
}
.excellence .eitem
{
	display: grid;
	grid-template-columns: 72px 1fr;
	grid-gap: 28px;
}
.excellence .eitem>i
{
	font-size: 72px;
	color: var(--green);
}

.excellence .eitem>svg 
{
	height: 72px;
}
.excellence .eitem .text .name
{
	display: block;
	margin-bottom: 5px;
	font: var(--text);
	font-size: 14px;
	line-height: 19px;
	font-weight: 800;
	letter-spacing: 3px;
	text-transform: uppercase;
}
.excellence .eitem .text .desc
{
	font: var(--text);
}
#about
{
	padding:120px 0 80px;
}

#about .content
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

#about .video a
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50vw;
	height: 100%;
	position: absolute;
	right: 0;
	overflow: hidden;
	background: url('/images/video.png') center center no-repeat;
	background-size: cover;
}

#about .video a video
{
	position: absolute;
    left: 50%; /* % of surrounding element */
    top: 50%;
    transform: translate(-50%, -50%);
}

#about .video a div
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	animation-duration: 3s;
  	animation-name: round1;
  	animation-iteration-count: infinite;
  	background: rgba(0, 154, 166, 0.2);
	
}

#about .video a div:before
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	animation-duration: 3s;
  	animation-name: round2;
  	content: "";
  	position: absolute;
  	left: 0;
  	top: 0;
  	animation-iteration-count: infinite;
  	border:1px solid rgba(0, 154, 166, 0.4);
	opacity: 0;
}

#about .video a span
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--green);
	color: var(--white);
	font-size: 32px;
	box-sizing: border-box;
	padding-left: 5px;
	position: relative;
	z-index: 2;
}

@keyframes round1 {
  0% {
    width: 80px;
    height: 80px;
  }

  50% {
    width: 110px;
    height: 110px;
  }

  80% {
    width: 110px;
    height: 110px;
  }
  100%
  {
  	width: 80px;
    height: 80px;
  }
}

@keyframes round2 {
  0% {
    transform: scale(1.0);
    opacity: 0;
  }

  

  80% {
    transform: scale(1.3);
    opacity: 1;
  }

  100%
  {
  	opacity: 0;
  }
}

@keyframes ex1 {
  0% {
    opacity: 0;
    transform: translateX(50vw);
  }

  20% {
    opacity: 1;

  }
  100% { opacity:1; transform: translateX(0);}
}

@keyframes ex2 {
  0% {
    opacity: 0;
 		transform: translateX(50vw);
  }

  20% {
    opacity: 0;
    transform: translateX(50vw);
  }
  40% {
    opacity: 1;
  }
  100% { opacity:1; transform: translateX(0);}
}

@keyframes ex3 {
  0% {
    opacity: 0;
    transform: translateX(50vw);
  }

  40% {
    opacity: 0;
    transform: translateX(50vw);
  }
  60% {
    opacity: 1;
  }

  100% { opacity:1; transform: translateX(0);}
}

@keyframes ex4 {
  0% {
    opacity: 0;
    transform: translateX(50vw);
  }

  60% {
    opacity: 0;
    transform: translateX(50vw);
  }
  80% {
    opacity: 1;
  }
  100% { opacity:1; transform: translateX(0);}
}

@keyframes cn1 {
  0% {
    opacity: 0;
    transform: translateX(-50vw);
  }

  20% {
    opacity: 1;
    transform: translateX(0);

  }
  100% { opacity:1; transform: translateX(0);}
}

@keyframes cn2 {
  0% {
    opacity: 0;
 		transform: translateX(-50vw);
  }

  20% {
    opacity: 0;
    transform: translateX(-50vw);
  }
  40% {
    opacity: 1;
    transform: translateX(0);
  }
  100% { opacity:1; transform: translateX(0);}
}

@keyframes cn3 {
  0% {
    opacity: 0;
    transform: translateX(-50vw);
  }

  40% {
    opacity: 0;
    transform: translateX(-50vw);
  }
  60% {
    opacity: 1;
    transform: translateX(0);
  }

  100% { opacity:1; transform: translateX(0);}
}

@keyframes cn4 {
  0% {
    opacity: 0;
    transform: translateX(-50vw);
  }

  60% {
    opacity: 0;
    transform: translateX(-50vw);
  }
  80% {
    opacity: 1;
    transform: translateX(0);
  }
  100% { opacity:1; transform: translateX(0);}
}


.about-text
{
	box-sizing: border-box;
	padding-left: 18%;
}

.about-text>p, #sotrudnichestvo .text>p, .slide-info p
{
	font: var(--textbig);
}
.brend-text p
{
	font: var(--text);
}

.brend-text p
{
	margin: 0;
}

.brend-text .bline
{
	margin-top: 36px;
}

.brend-line
{
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}
.brend-line a, .brend-line a img
{
	height: 52px;

}

.brend-line a img
{
	filter: grayscale(100%);
	opacity: 0.4;
	transition: all 0.3s ease;
}

.brend-line a:hover img
{
	opacity: 1;
	filter: grayscale(0%);
	transform: scale(1.05);
}

.brend-line a.selected img
{
	opacity: 1;
	filter: grayscale(0%);
}

.bline
{
	display: flex;
	justify-content: flex-start;
	gap:25px;
	align-items: center;
}
.file 
{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap:6px;
	transition: all 0.2s ease;
}
.file i 
{
	font-size: 30px;
}
.file:hover
{
	transform: scale(1.04);
}

.center-text
{
	max-width: 60%;
	margin: 0px auto 58px;
	text-align: center;
}

.brend-info
{
	display: none;
	grid-template-columns: repeat(2, 1fr);
	grid-gap:16px;
}
.brend-info .brend-text 
{
	padding-right: 75px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
}

.brend-info .brend-text:after
{
	content:'';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width:100%;
	background: var(--white);
	transition: all 0.5s ease;
	opacity: 0;
	pointer-events: none;
}

.brend-info .brend-text.pelena:after
{
	opacity: 1;
}

.brend-info .brend-text.pelena.end:after
{
	opacity: 0;
}
.brend-pager
{
	display: flex;
	justify-content: center;
	gap:12px;
	margin-top:20px;
}
.brend-pager span, .brend-pager a
{
	display: inline-flex;
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

.brend-pager a
{
	background: #EEEEEE;
}
.brend-pager a.now
{
	background: #ABCED2;
}

.brend-products .bp-arrow
{
	position: absolute;
	top: 50%;
	margin-top: -22px;
	color: var(--green);
	font-size: 44px;
}

.brend-products .bp-arrow.next
{
	right: -54px;
}

.brend-products .bp-arrow.prev
{
	left: -54px;
}

.brend-products-line
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap:16px;
}

.brend-products-line>div
{
	aspect-ratio: 1 / 1;
}
.brend-prod-item
{
	text-decoration: none;
	display: flex;
	flex-direction: column;
	padding: 0px;
	align-items: center;
	justify-content: center;
	gap:4px;
	/*width: 248px;*/
	/*height: 248px;*/
	width: 100%;
	aspect-ratio: 1 / 1;
	background: var(--white);
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

.brend-prod-item>div
{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 160px;
	box-sizing: border-box;
}

.brend-prod-item span
{
	height: 3em;
	display: flex;
	align-items: center;
}

.brend-prod-item img 
{
	display: block;
	max-width: 160px;
	max-height: 160px;
}
.brend-prod-item span 
{
	font: var(--text);
	color: var(--black);
	text-align: center;
	padding: 0 20px;
}
#contacts .content, #sotrudnichestvo .content
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap:30px;
}
#contacts
{
	padding:120px 0 100px;
}
.contacts-block
{
	display: flex;
	flex-direction: column;
	gap:24px;
}
#contacts .map
{
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
.contacts-block .citem
{
	display: grid;
	grid-template-columns: 92px 1fr;
	grid-gap:20px;
	background: var(--white);
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
	padding:7px 15% 22px 15px;
	background-size: auto 80%;
	background-position: 95% center;
	background-repeat: no-repeat;
}
.contacts-block .citem .icon
{
	display: flex;
	width: 92px;
	height: 92px;
	border-radius: 50%;
	border:1px solid rgba(0, 154, 166, 0.2);
	align-items: center;
	justify-content: center;
}
.contacts-block .citem .icon .bg 
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	text-align: center;
	font-size: 32px;
	color: var(--white);
	background: var(--green);
	border:20px solid rgba(0, 154, 166, 0.2);
}
.contacts-block .citem .text .name 
{
	display: block;
	margin: 12px 0;
	font:var(--cname);
}
.contacts-block .citem .text .info 
{
	font: var(--text);
}
.contacts-block .citem .text .info a:hover
{
	text-decoration: underline;
}

.contacts-block .citem .text .info.social-line 
{
	display: flex;
	justify-content: flex-start;
	gap:12px;
} 
.contacts-block .citem .text .info.social-line a:hover
{
	text-decoration: none;
}
.contacts-block .citem .text .info.social-line .social 
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	border: 1px solid var(--black);
	color: black;
	font-size: 24px;
}
.center
{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
#sotrudnichestvo
{
	padding:100px 0 54px;
	background: url('/images/sotr-bg.jpg') center center no-repeat;
	background-size: cover;
	min-height: 100vh;
}

#sotrudnichestvo .text
{
	padding-right: 80px;
}
.form form 
{
	display: flex;
	gap:24px;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}
.form form input[type=text]
{
	display: flex;
	align-items: center;
	height: 60px;
}
.form form textarea, .form form input[type=text]
{
	padding:16px 20px;
	width: 100%;
	background: var(--white);
	border: 1px solid #D5D5D5;
	font: var(--textbig);
}
footer>.content 
{
	display: grid;
	grid-template-columns: 5fr 5fr 2fr;
	grid-gap:16px;
	padding-top: 48px;
	padding-bottom: 60px;
}

footer>.content img
{
	width: 160px;
}

footer>.content .logo-block
{
	font: var(--text);
}

footer>.content .logo-block p
{
	width: 50%;
	margin: 0;
}

footer .f-soc
{
	padding-top: 36px;
	align-items: flex-end;
}

footer .social-line
{
	display: flex;
	justify-content: flex-start;
	gap: 12px;
}

footer .social-line .social
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border:1px solid var(--black);
	border-radius: 50%;
}

footer .name
{
	font: var(--fname);
}

footer .sr-block
{
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: flex-start;
	gap: 16px;
	padding-top: 36px;
}

footer .cinfo
{
	padding-top: 13px;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: space-between;
	gap: 11px;
}

footer .cinfo a
{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 12px;
}

footer>.content>div
{
	display: flex;
	flex-direction: column;
	gap:12px;
}

.bottom-footer
{
	background: #E9F3F5;
}

.bottom-footer>.content 
{
	display: flex;
	justify-content: space-between;
	padding:32px 0;
	font: var(--text);
}

.bottom-footer>.content a
{
	border-bottom: 1px solid var(--black);
}
.bottom-footer>.content a:hover 
{
	border: none;
}
#galery
{
	padding-top: 80px;
}

#galery .photos
{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(7, 4.5vw);
	grid-gap: 16px;
	margin-top: 20px;
}

#contacts .content
{
	margin-top: 20px;
}

#galery .photos a
{
	background-size: cover;
	background-position: center;
	display: block;
	transition: all 0.3s ease;
}

#galery .photos a:hover
{
	transform: scale(1.05);
}

/*#galery .photos a:nth-child(1),
#galery .photos a:nth-child(3),
#galery .photos a:nth-child(7),
#galery .photos a:nth-child(8)
{
	grid-row: span 3;
}

#galery .photos a:nth-child(2),
#galery .photos a:nth-child(4),
#galery .photos a:nth-child(5),
#galery .photos a:nth-child(6)
{
	grid-row: span 4;
}*/

.fancybox-navigation
{
	top:50%;
	margin-top: -50px;
}

#products 
{
	height: 100vh;
	overflow: hidden;
	min-height: -webkit-fit-content;
}

.double
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 40px;
}

.popgal
{
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.popgal-list
{
	display: flex;
	width: 100%;
	padding-top: 60%;
	aspect-ratio: 1/0.6;
	position: relative;
}

.popgal-list div
{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	bottom: 0;
	background-size: cover;
	background-position: center;
}

#shadow
{
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top:0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.2);
	z-index: 100;
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s ease;
}

#shadow.vis
{
	opacity: 1;
	pointer-events: initial;
}

#shadow #swindow
{
	display: block;
	padding: 40px;
	width: 0px;
	max-width: 1200px;
	background: var(--white);
	transition: all 0.3s ease;
}

#shadow.vis #swindow
{
	width: 90vw;
}

#shadow #swindow>a
{
	position: absolute;
	top: 10px;
	right: 10px;
	opacity: 0;
	transition: all 0.3s ease;
}

#shadow.vis #swindow>a
{
	opacity: 1;
}

.sr-block span
{
	max-width: 360px;
}

.contacts-block .citem .icon:before
{
	content: "";
	width: 100%;
	top:0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--green);
	opacity: 0.2;
	border-radius: 50%;
	position: absolute;	
	transform: scale(0.8);
}

.swindow-c
{
	max-height: 80vh;
	overflow: auto;
}

#shadow .specifications
{
	padding: 10px;
}

.inner-page
{
	display: block;
	margin-top: 100px;
	padding:80px 0 100px;
	background: var(--white);
}
.news-list
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 40px;
}
.new-item
{

}
.new-item .image
{
	display: block;
	background-position: center;
	background-size: cover;
	width: 100%;
	padding-top: 69.5%;
}
.new-item .name
{
	display: block;
	padding:10px 0;
	font: var(--textbig);
}
.new-full a
{
	text-decoration: underline;
}
.new-full a:hover
{
	color: var(--green);
}
.new-full .back
{
	display: block;
	font: var(--textbig);
	color: var(--green);
	margin-top: 50px;
}

.project_images
	{
		display: grid;
		grid-template-columns: 4fr 1fr;
		grid-gap: 22px;
		margin-top: 50px;
	}

	.project_images .main
	{
		display: block;
		position: relative;
	}

	.project_images .main.full
	{
		grid-column: span 2;
	}

	.project_images .main .proj_slide_arrow
	{
		display: block;
		position: absolute;
		z-index: 1;
		font-size: 55px;
		color: var(--black);
		top: 288px;
		padding: 10px;
		border-radius: 50%;
		background-color: rgba(255, 255, 255, 0.5);
		/*box-shadow: 0px 0px 3em var(--white);*/
	}

	.project_images .main .proj_slide_arrow.icon-arrow-left
	{
		left: 20px;
	}

	.project_images .main .proj_slide_arrow.icon-arrow-right
	{
		right: 20px;
	}

	.project_images .pm_image
	{
		display: block;
		background-size: cover;
		background-position: center;
		height: 632px;
	}

	.project_images .list
	{
		display: block;
		overflow: auto;
		height: 632px;
	}

	.project_images .list::-webkit-scrollbar {
	  width: 0px;
	  margin-right: 0px;
	}

	.project_images .list::-webkit-scrollbar-track {

	}

	.project_images .list::-webkit-scrollbar-thumb {
	  background-color: #1A1A1A;
	  outline: none;
	}

	.project_images .list a
	{
		width: 100%;
		height: 200px;
		margin-bottom: 16px;
		display: block;
		background-size: cover;
		background-position: center;
	}

	.project_images .list a:last-child
	{
		margin-bottom: 0;
	}

.showvideo
{
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	border: 1px solid var(--green);
	color: var(--green);
	margin: 10px 0;
}

@media all and (min-width: 1600px)
{
	html, body
	{
		font-size: 18px;
	}

	.brend-info
	{
		grid-template-columns: 5fr 4fr;
	}
}

@media all and (min-width: 801px)
{
	#mslide
	{
		display: none;
	}
	.ms
	{
		display: none !important;
	}

	.video a
	{
		transition: all 0.5s ease;
		transform: translateX(0);
		opacity: 1;
	}

	.needanim .video a
	{
		opacity: 0;
		transform: translateX(-50vw);
	}

	.excellence .eitem
	{
		/*transition: all 0.3s ease;*/
		animation-duration: 1.2s;
	}

	#contacts .content .citem
	{
		animation-duration: 1.2s;	
	}

	.excellence .eitem:nth-child(1){animation-name: ex1;}
	.excellence .eitem:nth-child(2){animation-name: ex2;}
	.excellence .eitem:nth-child(3){animation-name: ex3;}
	.excellence .eitem:nth-child(4){animation-name: ex4;}

	#contacts .content .citem:nth-child(1){animation-name: cn1;}
	#contacts .content .citem:nth-child(2){animation-name: cn2;}
	#contacts .content .citem:nth-child(3){animation-name: cn3;}
	#contacts .content .citem:nth-child(4){animation-name: cn4;}

	.needanim .excellence .eitem
	{
			opacity: 0;
			animation-name: initial;
			transform: translateX(50vw);
	}

	#contacts .content.needanim .citem
	{
		opacity: 0;
		animation-name: initial;
		transform: translateX(-50vw);	
	}

	#contacts .content .map
	{
		transition: all 1s ease;
		transform: scale(1.0);
	}

	#contacts .content.needanim .map
	{
		transform: scale(0.01);
	}

	#galery .photos
	{
		max-width: 100vw;
		overflow: auto;
		height: 34vw;
		display: flex;
		justify-content: flex-start;
		gap: 16px;
	}

	#galery .photos::-webkit-scrollbar {
  width: 2px;               /* width of the entire scrollbar */
}

#galery .photos::-webkit-scrollbar-track {
  background: transparent;        /* color of the tracking area */
}

#galery .photos::-webkit-scrollbar-thumb {
  background-color: transparent;    /* color of the scroll thumb */
  border-radius: 20px;       /* roundness of the scroll thumb */
  border: 1px solid transparent;  /* creates padding around scroll thumb */
}

	#galery .photos>div
	{
		flex:none;
		width: 24vw;
		display: grid;
		grid-gap: 16px;
	}

	#galery .photos>div:nth-child(2n)
	{
		grid-template-rows: 13.5vw 18vw;
	}

	#galery .photos>div:nth-child(2n+1)
	{
		grid-template-rows: 18vw 13.5vw;
	}
}


@media all and (max-width: 800px)
{

	:root
	{
		--title:300 2rem/2.75rem 'Open Sans', sans-serif;
		--cname:800 1.25rem/1.68rem 'Open Sans', sans-serif;
		--button:400 1.4rem/2rem 'Open Sans', sans-serif;
		--textbig:400 1.6rem/2.2rem 'Nunito Sans', sans-serif;
		--text:400 1.4rem/2rem 'Nunito Sans', sans-serif;
		--fname:700 1.6rem/1.68rem 'Nunito Sans', sans-serif;
		--snumbig:700 4rem/4.875rem 'Cormorant Infant', serif;
		--snumsmall:700 2.5rem/3rem 'Cormorant Infant', serif;
	}
	html, body
	{
		font-size: 10px;
	}

	body
	{
		padding-top: 57px;
	}

	.new-full
	{
		font:var(--textbig);
	}
	.inner-page
	{
		margin-top:0;
		padding: 50px 0 80px;
	}
	.news-list {
		margin-top: 20px;
		grid-gap: 20px;
		grid-template-columns: repeat(1, 1fr);
	}
	.project_images
	{
		margin: 20px 0;
	}
	.new-full .back
	{
		margin-top: 30px;
	}
	.contacts-block .citem .icon:before
	{
		transform: scale(0.85);
	}

	.contacts-block .citem .icon
	{
		width: 75px;
		height: 75px;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0;
	}

	.contacts-block .citem .icon .bg
	{
		width: 45px;
height: 45px;
border-radius: 50%;
text-align: center;
font-size: 24px;
	}

	.contacts-block .citem
	{
		grid-template-columns: 75px 1fr;
grid-gap: 12px;
	}

	#contacts .content
	{
		grid-gap: 40px;
	}

	#top-header
	{
		padding: 6px 0;
		background: var(--white);
	}

	.button
	{
		width: 14.3em;
		border-radius: 2.2rem;
		height: 4.4rem;
		padding: 1.2rem 1.6rem;
	}

	#first-page .down-line
	{
		justify-content: flex-end;
		padding-left: 12px;
		box-sizing: border-box;
	}

	#products
	{
		height: auto;
		min-height: 100vh;
		overflow: initial;
		padding: 40px 0;
	}

	.swindow-c
	{
		overflow: auto;
		max-height: 80vh;
	}

	.swindow-c .title b
	{
		word-break: break-word;
	}

	.double
	{
		grid-template-columns: 1fr;
		width: 100%;
		font: var(--text);
		grid-gap: 12px;
	}

	#shadow #swindow
	{
		padding: 25px 15px;
	}

	.swindow-c .title
	{
		margin-bottom: 0;
	}

	.swindow-c .popgal-pager
	{
		margin-top: 12px;
	}

	.mmenu
	{
		font-size: 30px;
		line-height: 40px;
		display: flex;
		align-items: center;
	}

	.mmenu i
	{
		display: flex;
		align-items: center;
	}

	.title
	{
		margin: 4px 0 16px;
	}

	.slide-info p
	{
		margin: 0 0 16px;
	}

	footer .f-soc
	{
		align-items: flex-start;

	}

	footer .sr-block, footer .f-soc
	{
		padding-top: 28px;
	}

	#top-header #menu
	{
		display: none;
		position: fixed;
		width: 100vw;
		left: 0;
		top: 56px;
		height: calc(100vh - 56px);
		flex-direction: column;
		padding-top: 30%;
		box-sizing: border-box;
		justify-content: flex-start;
		align-items: center;
		gap: 16px;
		background: var(--white);
	}

	#top-header #menu.open
	{
		display: flex;
	}

	#top-header #menu a
	{
		font: var(--textbig);
		font-size: 2rem;
	}

	#top-header #menu a.selected
	{
		border: none;
		color: var(--black);
	}

	#top-header .logo
	{
		height: auto;
	}

	#top-header .logo img
	{
		width: 100px;
		margin-top: -6px;
	}
	.content
	{
		width: 100%;
		min-width: 0;
		box-sizing: border-box;
		padding: 0 12px;
	}

	.slide-info
	{
		max-width: initial;
	}

	#contacts-icons
	{
		display: none;
	}

	#first-page .content
	{
		align-items: flex-start;
		padding-top: 31px;
		height: calc(100vh - 57px);
	}

	#dslide
	{
		display: none;
	}
	#first-page .slides>div:first-child
	{
		display: none;
	}
	#first-page .slides
	{
		grid-template-columns: 1fr;
		height: 50vh;/*calc(100vh - 57px);*/
		/*aspect-ratio: 1 / 1.5;*/
	}

	#first-page .slides
	{
		top: initial;
		bottom: 0;
	}

	#first-page .down-line
	{
		width: calc(100% - 24px);
		bottom: 2%;
	}

	#about .content
	{
		display: flex;
		flex-direction: column-reverse;
		gap: 4rem;
	}

	#about .content .video
	{
		margin: 0 -12px;
		aspect-ratio: 16 / 9;
	}

	#about .video a
	{
		width: 100%;
	}
	
	#about .video a video
	{
		aspect-ratio: 16 / 9;
		width:100%;
		top:0;
		left:0;
		transform:none;
	}

	.excellence
	{
		margin-top: 24px;
		gap: 24px;
	}

	#about {
		padding: 80px 0 0;
	}

	.excellence .eitem
	{
		grid-template-columns: 50px 1fr;
	}

	.excellence .eitem>i
	{
		font-size: 50px;
	}

	.about-text
	{
		padding-left: 0;
	}

	#products .center
	{
		justify-content: flex-start;
		align-items: flex-start;
	}

	#products .center .center-text
	{
		text-align: left;
		max-width: 100%;
		font: var(--textbig);
		margin-bottom: 40px;
	}

	.brend-line
	{
		margin-left: -12px;
		width: 100vw;
		overflow: auto;
		gap: 40px;
		padding: 0 12px;
		height: 36px;

	}

	.file
	{
		font: var(--textbig);
	}

	.brend-text .bline
	{
		margin-top: 20px;
		flex-wrap: wrap;
	}

	.brend-line a, .brend-line a img
	{
		height: 32px;
	}

	.brend-info
	{
		grid-template-columns: 1fr;
		grid-gap: 0;
	}

	#galery
	{
		padding-top: 0px;
	}

	.brend-products-line
	{
		display: flex;
		justify-content: flex-start;
		gap: 12px;
		margin-left: -12px;
		width: 100vw;
		padding:20px 12px 28px;
		overflow: auto;
	}

	.brend-prod-item
	{
		width: 60vw;
		aspect-ratio: 1/1;
	}

	.brend-text .button
	{
		display: none;
	}

	.brend-info .brend-text
	{
		padding-right: 0;
	}

	#products
	{
		background: initial;
		box-shadow: initial;
	}

	#galery .photos
	{
		display: flex;
		width: 100vw;
		margin-left: -12px;
		overflow: auto;
		grid-template-columns: initial;
		grid-template-rows: initial;
		padding-left: 20px;
		grid-gap: 12px;
		gap: 12px;
		margin-top: 4px;
	}

	#contacts
	{
		padding: 40px 0 0px;
	}

	#contacts .content
	{
		margin-top: 4px;
	}

	.photos a
	{
		flex: none;
		width: 60vw;
		aspect-ratio: 1/1;
		background-size: cover;
	}

	#galery .photos a:nth-child(2), #galery .photos a:nth-child(4), #galery .photos a:nth-child(5), #galery .photos a:nth-child(6), #galery .photos a:nth-child(1), #galery .photos a:nth-child(3), #galery .photos a:nth-child(7), #galery .photos a:nth-child(8)
	{
		grid-row: initial;
	}

	#contacts .content, #sotrudnichestvo .content
	{
		grid-template-columns: repeat(1, 1fr);
	}

	.map
	{
		aspect-ratio: 1/1.2;
		margin-left: -12px;
		width: 100vw;
	}

	#sotrudnichestvo
	{
		background: url('/images/sotr-fon.png') center bottom no-repeat;
		background-size: 100% auto;
		padding-bottom: 15rem;
		height: auto;
		padding-top: 40px;
	}

	#sotrudnichestvo .text
	{
		padding-right: 0;
	}

	footer>.content .logo-block p
	{
		width: auto;
		font: var(--textbig);
	}

	.sr-block span
	{
		font: var(--textbig);
	}

	footer .sr-block span.name
	{
		font: var(--fname);
	}

	.form form input[type=text]
	{
		height: 44px;
	}

	.form form textarea, .form form input[type=text]
	{
		padding: 8px 20px;
	}
	.form form
	{
		gap: 12px;
	}

	#sotrudnichestvo .text>p
	{
		margin: 0;
	}

	.mob-center
	{
		display: flex;
		justify-content: center;
	}

	footer>.content
	{
		grid-template-columns: 1fr;
	}

	.bottom-footer>.content
	{
		padding: 20px 12px;
		flex-direction: column-reverse;
		align-items: flex-start;
		justify-content: center;
		gap:20px;
	}

	footer>.content
	{
		padding-top:30px;
		padding-bottom: 40px;
	}

	footer .cinfo a i
	{
		font-size: 16px;
	}

	footer .social-line .social
	{
		font-size: 2.4rem;
	}

	.fs
	{
		display: none !important;
	}
	.project_images
	{
		display: block;
		position: relative;
		/*height: 65vw;*/
	}

	.project_images .pm_image
	{
		display: block;
		padding-top: 69.5%;
		width: 100%;
		height: 0;
		background-size: cover;
		background-position: center;
	}

	.project_images .list
	{
		display: none;
	}

	.project_images .main .proj_slide_arrow
	{
		display: block;
		position: absolute;
		z-index: 1;
		font-size: 35px;
		color: var(--black);
		top: 110px;
		padding: 5px 5px;
		background-color: rgba(255, 255, 255, 0.5);
		/*box-shadow: 0px 0px 3em var(--white);*/
	}

	.project_images .main .proj_slide_arrow.icon-left
	{
		left: 0px;
	}

	.project_images .main .proj_slide_arrow.icon-right
	{
		right: 0px;
	}
}

@media all and (max-width: 350px)
{
	#first-page .content
	{
		height: auto;
		aspect-ratio: 1/1.875;
	}
	#first-page .slides
	{
		height: auto;
		aspect-ratio: 1/1.875;
	}
}