@charset "UTF-8";
/* h1,h2 = 42 > 38
h3 = 30 > 26 */
/* 
'Interregular', Arial, sans-serif  ;	// 400 
'Intersemibold', Arial, sans-serif  ;	// 600 
'Comfortaa-Bold', Arial, sans-serif  ;	// 700 


*/
/* 	
	-moz-box-sizing: border-box; 
	box-sizing: border-box; 
	
	-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
transition: all 0.5s; 

	background-size: 100% auto;
	background-position: center top; 	
	background-repeat: no-repeat; 
	background-image: url(../images/search.svg); 
*/
/* 
1) РОДИТЕЛЬ для сетки элементов
при 475px = repeat(3, 1fr);

.inner{ 
	display: grid;
	grid-template-columns: repeat(4, 1fr); 
	-moz-column-gap:15px;
	column-gap:15px;
	row-gap:15px;
}
2) РОДИТЕЛЬ для выравнивания текста item
.inner{ 
	display:flex;
	align-items: center;
	
	-moz-column-gap:15px; 
	column-gap: 15px; 
}
 */
/* 
КАРТИНКА без текста
посередине, не растягивается
.inner .item{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100px;
	
	background: #fff;
	border-radius: 10px;
}
.inner .item img {  
    width: 100%;   
    height: 100%;
}
*/
/* @media (max-width: 1940px){
	.nnn{
		background-size:  auto 100%;
	}
} */
@font-face {
  font-family: 'Interregular';
  src: url("../fonts/Interregular.ttf");
}
@font-face {
  font-family: 'Intersemibold';
  src: url("../fonts/Intersemibold.ttf");
}
@font-face {
  font-family: 'Comfortaa-Bold';
  src: url("../fonts/Comfortaa-Bold.ttf");
}
.clearfix {
  clear: both;
}

body {
  margin: 0px;
  padding: 0px;
  line-height: 1.4;
  color: #FFF;
  background: #000;
  text-align: center;
}

#main {
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0px auto;
}

.content-100vh {
  width: 100%;
  padding-top: 0;
  height: 100vh;
  min-height: 800px;
  overflow: hidden;
}

.block-mobile {
  display: none;
}

#video_bg_wrap {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: calc(100% - 7px);
  top: 0;
  left: 0px;
}

#video_bg {
  width: 100%;
  height: 100%;
}

@media (min-aspect-ratio: 16 / 9) {
  #video_bg {
    height: 300%;
    top: -100%;
  }
}
@media (max-aspect-ratio: 16 / 9) {
  #video_bg {
    width: 300%;
    left: -100%;
  }
}
@supports (object-fit: cover) {
  #video_bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.content-100vh-max {
  height: 100%;
}

.content-100vh-wrap {
  position: relative;
  width: 100%;
  max-width: calc(1088px + 30px);
  margin: 0px auto;
}

.content-100vh-pos {
  width: auto;
  height: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.s1-content {
  width: 100%;
  margin: 0 auto;
  padding: 48px 0 20px 0;
  text-align: center;
  color: #fff;
  line-height: 1.5;
  font-size: 16px;
}

.header-logo {
  display: block;
  width: 61px;
  margin: 0 auto 20px auto;
}

.header-logo img {
  display: block;
  width: 100%;
  margin: auto;
}

.logo-txt {
  font-family: "Interregular", Arial, sans-serif;
  font-weight: 400;
  opacity: 0.7;
  font-size: 14px;
}

h1 {
  margin: 100px auto 20px auto;
  font-family: "Comfortaa-Bold", Arial, sans-serif;
  letter-spacing: -0.08em;
  line-height: 1.2;
  font-size: 72px;
}

.content-txt {
  font-family: "Interregular", Arial, sans-serif;
  font-weight: 400;
  font-size: 24px;
}

.social-txt {
  font-family: "Interregular", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
}

/* form */
/* а) обязательные стили */
#form-send-file-alert {
  /* display:block;*/
  display: none;
}

#form-send-file-alert.form-send-file-alert-visible {
  display: block;
  z-index: 99999999;
}

/* б) стили для оформления */
/* Окно сообщения (фиксированное) */
.form-send-file-alert-wrap {
  position: relative;
  width: auto;
  height: auto;
}

.form-send-file-alert-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 999999;
}

.form-send-file-alert-pos {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 90%;
  max-width: 500px;
  height: 80px;
  margin: auto;
  padding: 40px;
  text-align: center;
  background: #fff;
}

.form-send-file-alert-txt {
  margin: 0 auto;
  font-size: 22px;
  text-transform: uppercase;
  font-family: "Interregular", Arial, sans-serif;
  font-weight: 400;
  color: #000;
}

.form-send-file-button {
  text-align: center;
}

.form-send-file-button input {
  width: 100px;
  height: 40px;
  margin: 20px auto 20px auto;
  cursor: pointer;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  border: 0;
  outline: none;
  background: green;
}

/* form */
.form-wrap {
  margin: 64px auto 155px auto;
}

.form-pos {
  width: 475px;
  height: 56px;
  margin: 0 auto;
}

.item-email {
  float: left;
  width: 328px;
  height: 100%;
}

.item-button {
  float: right;
  width: 138px;
  height: 100%;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/button.svg);
}

.form-wrap input {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0px;
  border: 0;
  text-align: center;
  font-size: 16px;
}

.item-email input {
  font-family: "Interregular", Arial, sans-serif;
  font-weight: 400;
  background: #fff;
  color: #868788;
  border-radius: 28px;
}

.item-button input {
  background: transparent;
  color: #fff;
  font-family: 'Intersemibold', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
}

/* / form */
.social-icon {
  width: 120px;
  margin: 20px auto 0 auto;
  text-align: center;
}

.social-icon a {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0;
}

.social-icon a:nth-child(1) {
  float: left;
}

.social-icon a:nth-child(2) {
  float: right;
}

.social-icon a img {
  width: 100%;
  height: 100%;
}

/* mobile */
@media (max-width: 1920px) {
  .form-wrap {
    margin: 64px auto 100px auto;
  }
}
/* / 1920 */
@media (max-width: 1800px) {
  h1 {
    font-size: 60px;
  }
}
/* / 1800 */
@media (max-width: 1140px) {
  h1 {
    font-size: 50px;
  }

  .content-txt {
    font-size: 20px;
  }
}
/* / 1140px */
@media (max-width: 1024px) {
  .block-desktop {
    display: none;
  }

  .block-mobile {
    display: block;
  }

  .home-video-wrap {
    position: absolute;
    /* задаёт высоту контейнера для 16:9 (если 4:3 — поставьте 75%) */
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }

  .home-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-width: 0;
    outline-width: 0;
  }

  .content-100vh-cover {
    /* background-repeat: no-repeat;	
    background-position: top center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover; 
    
    background-image: url(../images/home-main.gif); */
  }

  .block-mobile-img {
    position: absolute;
    overflow: hidden;
    /* display: flex; */
    display: grid;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0px;
    text-align: center;
    z-index: -1;
  }

  .block-mobile-img img {
    width: auto;
    height: 100%;
  }
}
/* / 1024 */
@media (max-width: 810px) {
  h1 {
    margin: 70px auto 20px auto;
    font-size: 40px;
  }

  .form-wrap {
    margin: 64px auto 50px auto;
  }
}
/* / 810px */
@media (max-width: 510px) {
  .form-pos {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
  }

  .item-email {
    float: none;
    width: 100%;
    max-width: none;
    height: 56px;
    margin: 0 auto;
  }

  .item-button {
    float: none;
    width: 100%;
    max-width: none;
    height: 56px;
    margin: 8px auto 0 auto;
    border-radius: 28px;
  }
}
/* / 510 */
@media (max-width: 400px) {
  .logo-txt {
    font-size: 14px;
  }

  h1 {
    font-size: 32px;
  }

  .content-txt {
    font-size: 16px;
  }

  .social-txt {
    font-size: 16px;
  }
}
/* / 340 */

/*# sourceMappingURL=style.css.map */
