* {
  cursor: inherit;
}

body{
  overflow: hidden;
}

header{
  background:#000;
  background-size: 100%;
  height: 100vh;
  font-family: 'Exo 2';
  position: relative;
}

header video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
   object-fit: cover;
}

header .op{
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.72);
  z-index: 1;
}
#main{
  /*! outline: 1px solid red; */
  height: auto;
  display: flex;
  align-items: center;
 position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 35;
  padding: 12px 0;
}
#main:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  transform: translateY(-100%);
  transition: 350ms linear;
  z-index: -1;
}
#main.main__fixed:before{
  transform: translateY(0%);
}
#main .row{
   max-width: 1300px;
  margin: 0 auto;
  display: inline-block;
  width: 100%;
}

#main .logo{
  width: 0;
  float: left;
  margin: 0;
    display: inline-block;
  opacity: 0;
  transition: 200ms linear;
}
#main .logo img {
  width: 98px;
}
#main .logo:hover {
  transform: translateY(5px);
}
#main nav {
  width: calc(100% - 332px);
   margin-top: 0;
  height: auto;
  display: inline-block;
  position: relative;
}
#main nav .nav_ul{
  /*! border: 1px solid red; */
   font-family: 'Exo 2';
  text-transform: uppercase;  
  display: flex;
  width: 100%;
  
  font-weight: bold;
}
#main nav .nav_ul .nav_li {
  list-style: none;
  width: auto;
  position: relative;
}
#main nav .nav_ul .nav_li a {
  display: flex;
  align-items: flex-start;
}

#main nav a {
  display: inline-block;
  color: rgba(253,253,253,0.70);
  opacity: 1;
  transition: 200ms linear;
  font-weight: 700;
  font-size: 11px;
  line-height: 38px;
  padding: 5px 0;
  position: relative;
  box-sizing: border-box;
  cursor: pointer;
}
#main nav a span {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
}
#main nav a span img {
  width: 25px;
  margin-left: 20px;
  transform: rotate(-90deg);
  transition: 200ms linear;
  display: none;
}
#main nav .nav_ul .nav_li:hover span img {
  transform: rotate(0deg);
}
#main nav .nav_ul .nav_li:hover .list {
  box-sizing: border-box;
}
#main nav .nav_ul .nav_li .list {
  width: 236px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: -2px -2px 18px 0 rgba(0,0,0,0.07);
    border-radius: 0;
    margin-top: 25px;
    border: 0;
    position: absolute;
    left: -60px;
    top: 15px;
    z-index: 2;
    display: none;
    opacity: 1;
    z-index: 10;
    box-sizing: border-box;
}
#main nav .nav_ul .nav_li .list .top_li {
    position: relative;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    box-sizing: border-box;
    list-style: none;
}
/*
#main nav .nav_ul .nav_li .list .top_li:after {
    content: '';
    position: absolute;
    left: 22px;
    top: 15px;
    width: 6px;
    height: 13px;
    background-image: url(../icon/sorting_arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 6px 13px;
    opacity: 0;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    transform: rotate(90deg);
}
#main nav .nav_ul .nav_li .list .top_li.active-sub-menu:after{
  transform: rotate(0deg);
  opacity: 1;
}*/
#main nav .nav_ul .nav_li .list .top_li .arrow-blue {
    position: absolute;
    left: 0;
    top: 0;
    width: 54px;
    height: 36px;
    background-image: url(../icon/sorting_arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 6px 13px;
    opacity: 0;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    transform: rotate(90deg);
    cursor: pointer;
}
#main nav .nav_ul .nav_li .list .top_li.active-sub-menu .arrow-blue{
  transform: rotate(0deg);
  opacity: 1;
}
#main nav .nav_ul .nav_li  .list .top_li:hover .arrow-blue {
  opacity: 1;
}
#main nav .nav_ul .nav_li  .list li span a{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    width: 100%;
    padding: 0 24px 0 24px;
    cursor: pointer;
    color: #06060a;
	text-align: center;
    font-size: 11px;
    line-height: 14px;
    font-weight: bold;
    box-sizing: border-box;
}
#main nav .nav_ul .nav_li  .list .sub_list {
    background-color: #fff;
    display: none;
    box-sizing: border-box;
}
#main nav .nav_ul .nav_li  .list .top_li:hover:after {
  opacity: 1;
}
#main nav .nav_ul .nav_li  .list .option {
    list-style: none;
    background-color: #fff;
    cursor: pointer;
    height: auto;
    width: 100%;
  padding: 0 24px 0 54px;
    display: flex;
    align-items: center;
    border: 0px solid #ebebeb;
    transition: 200ms linear;
    
    box-sizing: border-box;
    list-style: none;
}
#main nav .nav_ul .nav_li  .list .option a {
   color: #06060a;
    font-size: 11px;
    line-height: 14px;
    font-weight: bold;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
    text-transform: initial;
    padding: 2px 0;
}
#main nav .nav_ul .nav_li  .list .option:hover a {
  color: #0095b7
}
#main nav a:hover{
  color:rgba(253,253,253,1);
}

#main nav .nav_ul .nav_li.active .nav_li_link{
  color: #fff;
  opacity: 1;
}

@media only screen and (max-width: 900px){
  #main nav .nav_ul .nav_li .list {
    left: -62px;
    top: 0;
  }
}

#header_contact{
  float: right;
  margin: 0;
  display: inline-block;
  color: #fff;
}

#header_contact{
  display: flex;
  align-items: center;
}

#header_contact img{
  width: 18px;
  margin: auto 10px;
  transition: 200ms linear;
}

.clearFix {
  display: none;
}
#mob_menu{
 cursor: pointer;
  width: 40px;
  height: 40px;
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  cursor: pointer;
  margin-left: auto;
  margin-right: 0;
  align-items: center;
    justify-content: center;
}

/*#mob_menu div:nth-child(1){
  border: 1px solid #fff;
  width: 90%;
  height: 5px;
  border-radius: 10px;
  background: #fff;
}

#mob_menu div:nth-child(2){
  border: 1px solid #fff;
  width: 90%;
  height: 5px;
  border-radius: 10px;
  margin: 5px auto;
   background: #fff;
}

#mob_menu div:nth-child(3){
  border: 1px solid #fff;
  width: 90%;
  height: 5px;
  border-radius: 10px;
   background: #fff;
}*/
#mob_menu .box {
  width: 8px;
  height: 8px;
  background-color: #fff;
}
#mob_menu.mob_menu-click .box:nth-child(2),
#mob_menu.mob_menu-click .box:nth-child(4),
#mob_menu.mob_menu-click .box:nth-child(6),
#mob_menu.mob_menu-click .box:nth-child(8){
  opacity: 0;
}


#header_contact a {
  font-size: 12px;
  line-height: 38px;
  color: #ffffff;
  font-weight: 700;
  display: grid;
  grid-template-columns: 29px auto;
  grid-gap: 0 28px;
  align-items: center;
  font-family: 'Exo 2';
}
#header_contact a p {
  font-size: 12px;
  line-height: 38px;
  color: #ffffff;
  font-weight: 700;
  font-family: 'Exo 2';
}
#header_contact a span {
  font-weight: 300;
  font-family: 'Exo 2';
}
#header_contact div{
  position: relative;
  z-index: 1;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  align-items: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(223,221,219,0.15);
  margin-right: 0;
-webkit-transition: -webkit-transform ease-out .1s,background .2s;
    -moz-transition: -moz-transform ease-out .1s,background .2s;
    transition: transform ease-out .1s,background .2s;
}
#header_contact div:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: '';
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    top: 0;
    left: 0;
    padding: 0;
    z-index: -1;
    box-shadow: 0 0 0 2px rgba(255,255,255,.1);
    opacity: 0;
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
}
#header_contact:hover div{
    background: rgba(223,221,219,0.15);
    -webkit-transform: scale(.93);
    -moz-transform: scale(.93);
    -ms-transform: scale(.93);
  transform: scale(.93);
}
/*#header_contact:hover div img {
  -webkit-transform: scale(.93);
    -moz-transform: scale(.93);
    -ms-transform: scale(.93);
  transform: scale(.93);
}*/
#header_contact:hover div:after {
    -webkit-animation: sonarEffect 1.3s ease-out 75ms;
    -moz-animation: sonarEffect 1.3s ease-out 75ms;
    animation: sonarEffect 1.3s ease-out 75ms;
}

@media only screen and (max-width: 1300px){
  #main .row {
    padding: 0 15px;
  }
}

/*HEADER MEDIA*/
@media only screen and (max-width:1050px){
  #main nav {width: calc(100% - 302px);}
}/**/

@media only screen and (max-width:900px){
    body {overflow-x: hidden; overflow-y: scroll;}
  #main .logo{opacity: 0; display: block; width: 100px;}
  #main{height: auto; padding: 0; }
  #main .row{
    /*outline: 1px solid red;*/
    display: grid;  background: #000;
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr 98px 1fr;;
    grid-template-areas: "post-1 post-2 post-4 "  
                       "post-3 post-3 post-3"; 
    padding: 15px 10px;
  }
   #main .logo{grid-area: post-2;margin: auto;}
  #main nav {
    grid-area: post-3;
    display:none;
    
    position: absolute;
    left: 0;
    top: 68px;
    width: 100%;
     background-color: #06060a;
     height: calc(100vh - 68px);
    
  }
  #main nav .nav_ul {
    min-width: 300px;
    flex-direction: column;
    align-items: center;
     justify-content: flex-start;
  }
  #main nav .nav_ul .nav_li {
    width: auto;
  }
  #main nav .nav_ul .nav_li a {
    display: block;
  }
  #main nav .nav_ul .nav_li .list {
    top: 0;
  }
  #header_contact{grid-area: post-1;width: auto; margin: 0 auto 0 0 ;}
/*
  #mob_menu{display:flex; margin-right: 0;margin-left: 0;padding: 0;flex-direction: column;width: 100%;justify-content: flex-end;}
  #mob_menu div:nth-child(1),
  #mob_menu div:nth-child(3) {
    margin: 0 auto;
  }
  #mob_menu div:nth-child(1),
  #mob_menu div:nth-child(2),
  #mob_menu div:nth-child(3){
    width: 45px;
    margin-right: 0;
  }*/
  #mob_menu {
    display: grid;
  }
  #main nav .nav_ul .nav_li .nav_li_link {
    line-height: 20px;
    font-size: 14px;
    padding: 0;
    line-height: 48px;
    color: #fff;
  }
}/**/
@media only screen and (max-width:525px){
  #header_contact div {
    margin-right: 10px;
  }
  #main .row {
    grid-template-columns:0 auto 40px;
    grid-gap: 10px;
    grid-template-areas: "post-2 post-1 post-4 ";
    padding: 15px 10px 5px 10px;
        width: calc(100% - 20px);
}
#header_contact a {
  grid-gap: 10px;
}
#main .logo {
    margin-right: auto;
    margin-left: 0;
}


}
/********************

******************/

.header_content{
  height: calc(100% );
  overflow: hidden;
  display: flex;
  align-items: center;
}

.header_content>div{
  width: 584px;
  height: 441px;
  /*! overflow: hidden; */
  /*! outline: 1px solid blue; */
  position: relative; 
  opacity: 0;
}


.header_content>div img{
  width: 564px;
  z-index: 2;
  position: relative;
  transition-property: all;
  transition-duration: 0.5s;
  top: 0px;
  left: 0px;
}

.header_content>div p:nth-child(2){
  color: #fff;
  font-family: 'Exo 2';
  font-weight: bold;
  text-transform: uppercase;
  text-align: left;
  font-size: 36px;
  line-height: 42px;
  padding: 20px 0 5px 0;
    z-index: 2;
  position: relative;
}

.header_content ul{
  width: 368px;
  /*! outline: 21px solid gold; */
  height: 40px;
  overflow: hidden;
}
 
.header_content>div li{
  color: #dfdddb;
    font-size: 19px;
    line-height: 35px;
  font-weight: 300;
    font-family: 'Exo 2';
   text-transform: uppercase;
  padding-bottom: 20px;
    z-index: 2;
  position: relative;
  list-style: none;
  text-align: left;
  transition-property: all;
  transition-duration: 0.5s;
}

.header_content>div form{
  /*! outline: 1px solid gold; */
    z-index: 2;
  position: relative;
}

.header_content>div input{
  display: block;
  width: 100%;
  padding: 10px;
  background: transparent;
  border-radius: 20px;
  margin: 10px auto;
 box-sizing: border-box;
  font-family: 'Exo 2';
  color: #fff;
  font-weight: 100;
  text-transform: uppercase;
  outline: none;
  text-align: left;
  border: 1px solid #d6d6d8;
}
.header_content .btn-1 rect {
      stroke: rgba(214,214,216,0.9);
}
.header_content>div input:focus {
  border-color: #007baf;
  color: #fff;
}

.header_content>div button{
  display: block;
  width: 282px;
  height: 40px;
  padding: 10px;
  background: #009dbd;
  border: 1px solid #666666;
  border-radius: 20px;
  margin: 10px auto;
  color: #fff;
   font-family: 'Exo 2';
  font-size: 14px;
  font-weight: 300;

  position: relative;
  cursor: pointer;
  outline: none;
   transition: all 0.2s linear 0s;
}
.header_content>div button:before {
    content: '\f178';
    font-family: FontAwesome;
    font-size: 10.5px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 20px;
    top: 10px;
    opacity: 0;
    height: 20px;
    width: 10px;
    margin: 0 auto;
    z-index: 1;
    transition: all 0.2s linear 0s;
}
.header_content>div button span {
    display: block;
    transition: all 0.2s linear 0s;
}
.header_content>div button:hover:before {
    opacity: 1;
    text-indent: 0px;
}
.header_content>div button:hover {
    padding-right: 20px;
}
.header_content .sfera_red{
  position: absolute;
  width: 408px;
  height: 408px;
  background: #b61316;
  right: 16px;
  top: 94px;
  border-radius: 50%;
  z-index: 1;
 
  animation-iteration-count: infinite;
  animation-delay: 1.5s;
 
  
}


@media only screen and (max-width: 700px){
  .header_content>div img {
    max-width: 564px;
    width: 100%;
  }
}
@media only screen and (max-width: 525px){
.header_content>div img {
    width: 60%;
  }
  .header_content>div p:nth-child(2) {
    text-align: center;
    font-size: 24px;
    line-height: 30px;
  }
  .header_content>div li {
    font-size: 16px;
    line-height: 20px;
  }
  .header_content>div li {
    text-align: center;
  }
  .header_content .sfera_red {
    max-width: 306px;
    height: 306px;
    width: 100%;
  }
}
/**************

WE PRODUCE

***************/



#we_produce{
  /*! outline: 1px solid blue; */
  height: 100vh;
  font-family: 'Exo 2';
  min-height: 900px;
}

.we_produce_block{
  /*! outline: 1px solid black; */
  width: calc(50vw - 0px);
  display: inline-block;
  float:left;
}

#we_produce_block1{
  height: 100vh;
  vertical-align: top;
  background: url(../img/we_produce_block1.jpg) left top no-repeat;
  background-size: auto 100%;
  transition-property: all;
  transition-duration: 0.8s;
}

#we_produce_block2{
    background: #000;
    height: 100vh;
  /*position: relative;*/
}


#we_produce_block2>img{
  position: absolute;
  top: 0px;
  bottom: 0;
  height: 100%;
  right: 0;
  opacity: 0.04;
}


#we_produce_block2 h2{
  color: #dfdddb;
  font-family: 'Exo 2';
  text-transform: uppercase;
  font-weight: bold;
  font-size: 60px;
  line-height: 72px;
  text-align: left;
  margin:  100px 0 0 120px;
  position: relative;
  z-index: 10;
}

#we_produce_block2 h3{
   color: #dfdddb;
   font-family: 'Exo 2';
  text-transform: uppercase;
  font-size: 18px;
  line-height: 38px;
  font-weight: bold;
   position: relative;
  z-index: 10;
}



#we_produce_nav{
  /*! outline: 1px solid gold; */
 max-width: 1130px;
 width: 100%;
  background: #0e0e12;
  padding: 55px 160px 5px 60px;
  box-sizing: border-box;
  position: absolute;
  margin: 200px auto 0 auto;
  z-index: 2;
  /*transform: translateX(-175px);*/
  right: 175px;
  height: 100%;
  max-height: 262px;
}
#we_produce_nav .link_produce {
      font-family: 'Exo 2';
    font-weight: 600;
    font-size: 14px;
    line-height: 37px;
    color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    z-index: 10;
    cursor: pointer;
    text-transform: uppercase;
    display: none;
    width: 100px;

}
#we_produce_nav ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  
}
#we_produce_nav ul li:nth-child(n+7){
  display: none;
}
.custom-scroll {
  height: 100%;
}
.custom-scroll  .mCSB_scrollTools {
  opacity: 0;
  width: 0;
}
#we_produce_nav>img{
  position: absolute;
  right: 12px;
  top: -70px;
   animation: margin_top_bottom 1s ease-in-out 0.5s alternate, move 5s linear 2s;
  animation-iteration-count: infinite;
  animation-delay: 0.5s;
  z-index:-1;
}

#we_produce_nav>.sfera_red{
  background: #b61316;
  width: 207px;
  height: 207px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(30%,-55%);
  z-index: -10;
   animation: margin_top_bottom 1s ease-in-out 0.5s alternate, move 5s linear 2s;
  animation-iteration-count: infinite;
  animation-delay: 0.5s;
}

#we_produce_nav>.opacity{
   background: rgba(14,14,18,0.85);
  width: 100%;
  height: 100%;
 
  position: absolute;
  right: 0;
  top: 0;
  
  z-index: -1;
}

#we_produce_nav ul li{
  color: #dfdddb;
  list-style: none;
  padding: 0px 0 40px 0;
  font-weight: bold;
  text-transform: uppercase;
  text-align: left;
  position: relative;
  margin-left: 0;
  margin-bottom: 42px;
}

#we_produce_nav ul li p{
  text-align: left;
  clear: both;
  margin-left: 30px;
  opacity: 0.42;
  transition-property: all;
  transition-duration: 0.3s;
  font-size: 16px;
  line-height: 16px;
  color: #dfdddb;
}

#we_produce_nav ul li p:hover{
  opacity: 1;
  cursor: pointer;
}

#we_produce_nav ul li p:hover:before{
  width: 122px;
}


#we_produce_nav ul li p:before{
  content: ' ';
  width: 61px;
  height: 1px;
  background-color: #b61316;
  position: absolute;
  bottom: 0;
  transition-property: all;
  transition-duration: 0.3s;
  
}
@media (max-height: 700px){
  #we_produce_nav ul li {
    margin-bottom: 0;
  }
  #we_produce_nav ul li p:before {
    bottom: 20px;
  }
  #we_produce_nav>.opacity {
    top: auto;
    bottom: 0;
  }
}
@media (max-width: 1380px){
  #we_produce_nav ul {
        grid-template-columns: 1fr 1fr;
  }
  #we_produce_nav {
    width: 80%;
        max-height: 300px;
  }
}

@media only screen and (max-width:1200px){
#we_produce_nav {
  padding: 30px;
}  
#we_produce_nav ul li p {
  line-height: 20px;
}

  #we_produce_block2 h2 {font-size: 40px;line-height: 48px; text-align: center;margin: 70px 0 0 auto;}
}
}/**/
@media (max-width: 991px){
  #we_produce_nav {
    margin-top: 120px;
  }
}
@media only screen and (max-height:900px){
  
  /*#we_produce_nav ul li{ margin: 15px 0;}
  #we_produce_nav ul li p::before { width: 15px;padding: 15px 20px;}
  #we_produce_nav ul li p:hover:before{padding: 5px 50px 25px 20px ;}*/
  

 /********/ 
}/**/

@media only screen and (max-width:900px){
    #we_produce_block2 h2 {font-size: 40px;line-height: 48px; text-align: center;margin: 70px 0 20px auto;}
   #we_produce_block2 h3 {font-size: 14px;text-align: center;}
  #we_produce{
    display: flex;
    flex-flow: column-reverse;
    align-items: flex-start;
    min-height: 50px;
    overflow: hidden;
    height: auto;
  }
  #we_produce_block1{
    width: 100%;
    height: auto;
    float:none;
    background-size: cover;
  }
  
   #we_produce_block2{
    width: 100%;
     height: auto;
     float:none;
     text-align: center;
  }
  
  #we_produce_nav{
    margin: 10px auto;
    left: 0;
    transform: translateX(0%);
    padding: 40px 10px;
    height: auto;
    position: relative;
  }
  
 /********/ 
}/**/
@media only screen and (max-width:700px){
  #we_produce_nav ul {
    grid-template-columns: 1fr;
}
}


@media only screen and (max-width:700px){
  #we_produce_nav > img{display: none;}
  #we_produce_nav {width: 300px; height: auto;max-height: 100%}
  #we_produce_nav ul li {width: 100%;}
  #we_produce_block2 {
    height: auto;
    padding-bottom: 30px;
  }
  #we_produce_nav>.sfera_red {
    display: none;
  }
  /*****/
}/**/
@media only screen and (max-width: 425px){
   #we_produce_block2 h2 {font-size: 32px;line-height: 48px; text-align: center;}
}
@media (min-width: 900px) and (max-height: 750px){
  #we_produce_nav {
    margin-top: 50px;
  }
}

/*************

solve problems

***********/

#solve_problems{
  height: 100vh;
    font-family: 'Exo 2';
  position: relative;
  /*min-height: 953px;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  width: 100%;
  box-sizing: border-box;
}
#solve_problems .scroll-y {
  width: 100%;
  height: calc(100% - 111px - 75px);
}
#solve_problems .scroll-y .mCustomScrollBox {
  overflow: visible !important;
}
#solve_problems .scroll-y .mCustomScrollBox .mCSB_container{
  overflow: visible !important;
}
.infograficka {
  width: 100%;
  height: 100%;
 
}
#solve_problems .zagl{
  /*! outline: 1px solid red; */
  display: inline-block;
  position: relative;
   margin-bottom: 75px;
   transition: 200ms linear;
}


#solve_problems .zagl h2{
  text-transform: uppercase;

  font-size: 60px;
  line-height: 48px;
}
@media only screen and (max-width: 900px) {
  #solve_problems .zagl h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 900px) {
  #solve_problems .zagl h2 {
    font-size: 32px;
  }
}
#solve_problems .zagl h3{
  text-align: right;
  text-transform: uppercase;
  font-weight: bold;
  padding: 10px 0;
}

#solve_problems_block1, #solve_problems_block3{
  /*! outline: 1px solid blue; */
  position: relative;
  z-index: 2;
  
}

#solve_problems_block1 .row{
  max-width: 1500px;
  width: 100%;
  display: grid;
  grid-template-columns: 95px minmax(121px,221px) minmax(31px,131px) minmax(121px,221px) minmax(54px,154px) minmax(121px,221px) minmax(38px,138px) minmax(121px,221px) 98px;
}

#solve_problems_block1 .row>ul,#solve_problems_block3 .row>ul{
  display: inline-block;
  /*! outline: 1px solid red; */
  width: 100%;
  height: 221px;
  /*! vertical-align: bottom; */
  position: relative;
  flex-grow: 1;
 
}
#solve_problems_block1 .row>ul:nth-child(1){
  height: calc(221px + 40px);
  top:0;
}
#solve_problems_block3 .row>ul:nth-child(1){
  height: calc(221px + 40px);
  top:-40px;
}
#solve_problems_block1 .row>ul li,#solve_problems_block3 .row>ul li{
  list-style: none;
}

#solve_problems_block1 .row>ul:nth-of-type(1) li:nth-of-type(1){
  position: absolute;
  height: calc(50% + 20px);
  bottom: 0;
  right: 0;
  left: 0;
  width:0px;
  border-left: 1px dashed #e8e8e8;
}

#solve_problems_block1 .row>ul:nth-of-type(1) li:nth-of-type(1) div{
  position: absolute;
  bottom: 0;
  right: 0;
  left: -2px;
  height: 0%;
  width:0px;
  opacity: 0;
  border-left: 1px dashed #b61316;
}

#solve_problems_block1 .row>ul:nth-of-type(1) li:nth-of-type(1) div img{
  transform: translate(-55%, -50%) rotateZ(-90deg)
}

.li_anim{
  list-style: none;
}

.li_anim div{
  transition-property: width,height;
  transition-duration: 1s;
  
}

#solve_problems_block1 .row>ul:nth-of-type(1) li:nth-of-type(2){
  position: absolute;
  width: 50%;
  bottom: 0;
  right: 0;
  top: -40px;
  
  margin: auto;
  height: 0px;
  border-top: 1px dashed #e8e8e8;
}
#solve_problems_block1 .row>ul:nth-of-type(1) li:nth-of-type(2) div{
  position: absolute;
  bottom: 0;
  left: 0;
  top: -2px;
  width: 0%;
  border-top: 1px dashed #b61316;
  text-align: left;
  opacity: 0;
  transform-origin: left;
  
}

#solve_problems_block1 .row>ul:nth-of-type(1) li:nth-of-type(2) div img{
  position: absolute;
  right: 0;
  top: -9px;
  margin-right: 0px;
  margin-left: auto;
}



#solve_problems_block1 .row>ul:nth-of-type(2) li:nth-of-type(1),#solve_problems_block1 .row>ul:nth-of-type(3) li:nth-of-type(1),#solve_problems_block1 .row>ul:nth-of-type(4) li:nth-of-type(1){
  position: absolute;
  width: 100%;
  bottom: 0;
  right: 0;
  top: -2px;
  margin: auto;
  height: 0px;
  border-top: 1px dashed #e8e8e8;
}
#solve_problems_block1 .row>ul:nth-of-type(2) li:nth-of-type(1) div,#solve_problems_block1 .row>ul:nth-of-type(3) li:nth-of-type(1) div,#solve_problems_block1 .row>ul:nth-of-type(4) li:nth-of-type(1) div{
  position: absolute;
  bottom: 0;
  left: 0;
  top: -2px;
  width: 0%;
  opacity: 0;
  border-top: 1px dashed #b61316;
  text-align: left;
}

#solve_problems_block1 .row>ul:nth-of-type(2) li:nth-of-type(1) div img,#solve_problems_block1 .row>ul:nth-of-type(3) li:nth-of-type(1) div img,#solve_problems_block1 .row>ul:nth-of-type(4) li:nth-of-type(1) div img{
  position: absolute;
  right: 0;
  top:-9px;
  margin-left: auto;
}



/*******************/

#solve_problems_block3{
  clear: both;
 
}

#solve_problems_block3 div.row{
    max-width: 1500px;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(121px,221px) minmax(121px,221px) minmax(95px,195px) minmax(121px,221px) minmax(100px,200px) minmax(121px,221px) 221px;
}



#solve_problems_block1 .row>div, #solve_problems_block3 .row>div{
  
  display: inline-block;
  /*! vertical-align: bottom; */
  width: 100%;
  max-height: 221px;
  height: 100%;
  margin: 0;
  position: relative;
  box-shadow: -6px -6px 16px 0px rgba(0,0,0,0.13);
  transition: 200ms linear;
}
#solve_problems_block1 .row>div img, #solve_problems_block3 .row>div img{
  position: absolute;
  left: 0;
  bottom:0;
  z-index: 1;
  opacity: 0;
  width: 100%;
  transition: 200ms linear;
  display: none;
}
/*
#solve_problems_block1 .row>div:hover {
  box-shadow: none;
  transform: translateY(-15%);
}
#solve_problems_block1 .row>div:hover ul{
  box-shadow: none;
}
#solve_problems_block1 .row>div:hover  img{
  opacity: 1;
}
#solve_problems_block3 .row>div:hover {
  box-shadow: none;
   transform: translateY(-15%);
}*/
/*#solve_problems_block3 .row>div:hover  img{
  opacity: 1;
}*/
#solve_problems_block1 .row>div ul, #solve_problems_block3 .row>div ul{
 position: absolute;
bottom: 0;
 right: 0;
 left: 0;
 height: 100%;
 width: 100%;
 display: flex;
 flex-direction: column;
 transition: 200ms linear;
}
/*#solve_problems_block1 .row>div:hover ul {
  height: auto;
}
#solve_problems_block3 .row>div:hover ul {
  height: auto;
}*/

#solve_problems_block1 .row>div ul li, #solve_problems_block3 .row>div ul li{
  list-style: none;
  height: 50%;
  display: flex;
  align-items: center;
  width: 100%;
}

#solve_problems_block1 .row>div ul li:nth-of-type(1), #solve_problems_block3 .row>div ul li:nth-of-type(1){
  background: #e8e8e8;
  
}
#solve_problems_block1 .row>div ul li:nth-of-type(2), #solve_problems_block3 .row>div ul li:nth-of-type(2){
  background: #fff;
  
}

#solve_problems_block1 .row>div ul p, #solve_problems_block3 .row>div ul p{
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  padding: 10px;
  box-sizing: border-box;
}

#solve_problems_block1 .row>div:nth-of-type(1) p{
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  padding: 10px;
  box-sizing: border-box;
}


#solve_problems_block1 .row>div:nth-of-type(1),#solve_problems_block1 .row>div:nth-of-type(2), #solve_problems_block1 .row>div:nth-of-type(3), #solve_problems_block3 .row>div:nth-of-type(3), #solve_problems_block3 .row>div:nth-of-type(2) {
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  background: #fff;
  display: inline-flex;
  align-items: center;
}


#solve_problems_block2{
  
  height: auto;
  width: 100%;
  float: left;
  
  min-width: 1040px;
  margin: 0 auto 40px 0;
  position: relative;
  box-sizing: border-box;
}

#solve_problems_block2>div:nth-child(1){
  width: calc(100% - 23%);
  border: 1px solid #b61316;
  border-left-color: transparent;
  border-radius: 0 220px 200px 0;
  /*float: left;*/
  height: 180px;
  display: flex;
  align-items: center;
  margin-left: 0;
}



#solve_problems_block2>div p{
  font-weight: bold;
  text-transform: uppercase;
  text-align: left;
  display: inline-block;
  font-size: 30px;
  line-height: 48px;
}

#solve_problems_block2>div p span{
  display: block;
  padding-left: 75px;
}
#solve_problems_block2>div p .left_callback {
  text-align: left;
  padding-left: 0;
}
#solve_problems_block2>div button{
  height: 40px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 1px solid #b61316;
  background: #b61316;
  width: 300px;
  border-radius: 100px;
  font-family: 'Exo 2';
  font-weight: 300;
 font-size: 14px;
  line-height: 37px;
  color: #fff;
  position: relative;
  cursor: pointer;
}
#solve_problems_block2>div button:before {
    content: '\f178';
    font-family: FontAwesome;
    font-size: 10.5px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    right: 20px;
    bottom: 10px;
    opacity: 0;
    height: 20px;
    width: 10px;
    margin: 0 auto;
    z-index: 1;
    transition: all 0.2s linear 0s;
}
#solve_problems_block2>div button span{
transition: all 0.2s linear 0s;
}
#solve_problems_block2>div button:hover span {
  transform: translateX(-15px);
}
#solve_problems_block2>div button:hover:before {
  opacity: 1;
}
#solve_problems_block3 .row>ul:nth-of-type(1) li:nth-of-type(1){
  position: absolute;
  width: 70%;
  bottom: 0;
  right: 0;
  top: 40px;
  margin: auto;
  height:0px;
  border-top: 1px dashed #e8e8e8;
}

#solve_problems_block3 .row>ul:nth-of-type(1) li:nth-of-type(1) div{
  position: absolute;
  bottom: 0;
  right: 0;
  top: -2px;
  width: 0%;
  height:0px;
  opacity: 0;
  border-top: 1px dashed #b61316;
}

#solve_problems_block3 .row>ul:nth-of-type(1) li:nth-of-type(1) div img{
  position: absolute;
  left: 0;
  top: -9px;
  transform: rotateZ(180deg);
}

#solve_problems_block3 .row>ul:nth-of-type(1) li:nth-of-type(2){
  position: absolute;
  height: calc(50% + 20px);
  left: 0;
  right: 40%;
  top: 0;
  margin: auto;
  width:0px;
  border-left: 1px dashed #e8e8e8;
}

#solve_problems_block3 .row>ul:nth-of-type(1) li:nth-of-type(2) div{
  position: absolute;
  bottom: 0;
  right: 0;
  left: -2px;
  height: 0%;
  width:0px;
  opacity: 0;
  border-left: 1px dashed #b61316;
}

#solve_problems_block3 .row>ul:nth-of-type(1) li:nth-of-type(2) div img{
  transform: translate(-48%,-40%) rotateZ(-90deg)
}




#solve_problems_block3 .row>ul:nth-of-type(2) li:nth-of-type(1),#solve_problems_block3 .row>ul:nth-of-type(3) li:nth-of-type(1){
  position: absolute;
  width: 100%;
  bottom: 0;
  right: 0;
  top: 0;
  margin: auto;
  height:0px;
  border-top: 1px dashed #e8e8e8;
}

#solve_problems_block3 .row>ul:nth-of-type(2) li:nth-of-type(1) div,#solve_problems_block3 .row>ul:nth-of-type(3) li:nth-of-type(1) div{
  position: absolute;
  bottom: 0;
  right: 0;
  top: -2px;
  width: 0%;
  opacity: 0;
  height:0px;
  border-top: 1px dashed #b61316;
}

#solve_problems_block3 .row>ul:nth-of-type(2) li:nth-of-type(1) div img,#solve_problems_block3 .row>ul:nth-of-type(3) li:nth-of-type(1) div img{
 position: absolute;
  left: 0;
  top:-9px;
  transform: rotateZ(180deg);
}



#solve_problems_block2 ul{
/*! outline: 1px solid gold; */
  position: absolute;
  width: 221px;
  height: 479px;
  right: 95px;
  top: 0;
  bottom: 0;
  margin: auto;
}

#solve_problems_block2 ul li:nth-child(2){
  position: absolute;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  width:0px;
  border-left: 1px dashed #e8e8e8;
}

#solve_problems_block2 ul li:nth-of-type(2) div{
  position: absolute;
  top: 0;
  right: 0;
  left: -2px;
  height: 0%;
  width:0px;
  opacity: 1;
  border-left: 1px dashed #b61316;
  opacity: 0;
}

#solve_problems_block2 ul:nth-of-type(1) li:nth-of-type(2) div img{
 position: absolute;
  bottom: -9px;
  transform: rotateZ(90deg);
  left: -5px;
}

#solve_problems_block2 ul li:nth-child(1){
  position: absolute;
  width: 50%;
  left: 0;
  top: 0;
  margin: auto;
  border-top: 1px dashed #e8e8e8;
}

#solve_problems_block2 ul li:nth-of-type(1) div{
  position: absolute;
  top: 0;
  left: 0;
  top: -2px;
  width: 0%;
  opacity: 1;
  border-top: 1px dashed #b61316;
  opacity: 0;
}

#solve_problems_block2 ul li:nth-of-type(1) div img{
 position: absolute;
  top: -10px;
  transform: rotateZ(0deg);
  right : 0px;
}


#solve_problems_block2 ul li:nth-child(3){
  position: absolute;
  width: 100%;
  left: -50%;
  bottom: 0;
  margin: auto;
  border-top: 1px dashed #e8e8e8;
}

#solve_problems_block2 ul li:nth-of-type(3) div{
  position: absolute;
  top: 0;
  right: 0;
  top: -2px;
  width: 0%;
  opacity: 1;
  border-top: 1px dashed #b61316;
  opacity: 0;
}

#solve_problems_block2 ul li:nth-of-type(3) div img{
 position: absolute;
  top: -9px;
  transform: rotateZ(-180deg);
  left : 0px;
}

@media only screen and (min-width:900px) and (max-height: 1000px){
  #solve_problems_block1 .row>ul:nth-child(1) {
    height: calc(161px + 40px);
  }
  #solve_problems_block1 .row>div, #solve_problems_block3 .row>div {
    max-height: 161px;
  }
  #solve_problems_block1 .row>ul, #solve_problems_block3 .row>ul {
    height: 161px;
  }
  #solve_problems_block3 .row>ul:nth-child(1) {
    height: calc(161px + 40px);
  }
  #solve_problems_block2 ul {
    height: 419px;
  }
}
@media only screen and (min-width:900px) and (max-height: 850px){
  #solve_problems_block2>div:nth-child(1) {
    height: 100px;
  }
  #solve_problems_block2 ul {
    height: 339px;
  }
}
@media only screen and (min-width:900px) and (max-height: 800px){
  #solve_problems_block1 .row>ul:nth-child(1) {
    height: calc(121px + 40px);
  }
  #solve_problems_block1 .row>div, #solve_problems_block3 .row>div {
    max-height: 121px;
  }
  #solve_problems_block1 .row>ul, #solve_problems_block3 .row>ul {
    height: 121px;
  }
  #solve_problems_block3 .row>ul:nth-child(1) {
    height: calc(121px + 40px);
  }
  #solve_problems_block2 ul {
    height: 289px;
  }
   #solve_problems_block2>div:nth-child(1) {
    height: 80px;
  }
  #solve_problems_block1 .row>div:nth-of-type(1), 
  #solve_problems_block1 .row>div:nth-of-type(2), 
  #solve_problems_block3 .row>div:nth-of-type(3), 
  #solve_problems_block3 .row>div:nth-of-type(2) {
    font-size: 12px;
    line-height: 14px;
  }
  #solve_problems_block1 .row>div ul p, 
  #solve_problems_block3 .row>div ul p {
    font-size: 12px;
    line-height: 14px;
  }
}
@media only screen and (max-width:1800px){
  #solve_problems_block2 ul {
    right: 34px;
  }
}
@media only screen and (max-width:1660px){
  #solve_problems_block2 ul {
    right: 0;
  }
}
@media only screen and (max-width:1500px){
  #solve_problems {
    overflow: hidden;
  }
  #solve_problems_block2 ul {
    right: -65px;
  }
}
@media only screen and (max-width:1500px) {
  #solve_problems_block1 .row>div:nth-of-type(1), 
  #solve_problems_block1 .row>div:nth-of-type(2), 
  #solve_problems_block3 .row>div:nth-of-type(3), 
  #solve_problems_block3 .row>div:nth-of-type(2) {
    font-size: 12px;
    line-height: 14px;
  }
  #solve_problems_block1 .row>div ul p, 
  #solve_problems_block3 .row>div ul p {
    font-size: 12px;
    line-height: 14px;
  }
}
@media only screen and (max-width:900px){
  #solve_problems {
    height: auto;
  }
  #solve_problems .scroll-y {
    height: auto;
    padding-bottom: 25px;
  }
  #solve_problems .zagl {
    margin-bottom: 25px;
  }
  #solve_problems_block1 .row>div,
  #solve_problems_block3 .row>div {
    max-height: 100%;
    height: 120px;
  }
  #solve_problems_block1 .row,
  #solve_problems_block3 div.row {
    grid-template-columns: minmax(160px,221px) minmax(160px,221px);
    grid-gap: 10px;
    justify-content: center;
  }
  #solve_problems_block3 .row>div:nth-of-type(3) {
    grid-column: 1/3;
    height: 45px;
  }
  #solve_problems_block1 .row>ul,
   #solve_problems_block3 .row>ul,
  #solve_problems_block2 ul {
    display: none;
  }
  #solve_problems_block2>div:nth-child(1) {
    width: 100%;
    border: none;
    display: flex;
    flex-direction: column;
        align-items: center;
    justify-content: center;
  }
  #solve_problems_block2 > div p {
    line-height: 34px;
    margin-bottom: 10px;
  }
  #solve_problems_block2>div p .left_callback {
    text-align: center;
  }
  #solve_problems_block2>div p span {
    padding-left: 0;
  }
  #solve_problems_block1 .row>div img, #solve_problems_block3 .row>div img{
    display: none;
  }
  #solve_problems_block2 {
    min-width: 100%;
    margin-bottom: 0;
  }
  #solve_problems .zagl h3 {
    text-align: center;
  }
}
@media only screen and (max-width:700px){
  #solve_problems_block1 .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    padding: 10px;
    width: calc(100% - 20px);
  }
   #solve_problems_block3 div.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    padding: 10px;
    width: calc(100% - 20px);
   }
  #solve_problems_block1 .row > ul,#solve_problems_block3 .row > ul,#solve_problems_block2 ul{display: none;}
  #solve_problems_block1 .row > div, #solve_problems_block3 .row > div { width: 100%;min-height: 100%;margin:0;}
  #solve_problems_block1 .row > div:nth-of-type(1) p {font-size: 12px;}
  #solve_problems_block1 .row > div:nth-of-type(2), #solve_problems_block3 .row > div:nth-of-type(3), #solve_problems_block3 .row > div:nth-of-type(2) {font-size: 12px;}
  #solve_problems_block1 .row > div ul p, #solve_problems_block3 .row > div ul p {font-size:12px;}
  #solve_problems .zagl {margin-top: 20px;transform: translateY(0%);}
   #solve_problems{min-height: 470px; height: auto;}
  
  #solve_problems_block2{min-width: 300px;width: 100%;border:none;}
  #solve_problems_block2 > div{
        display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #solve_problems_block2 > div p{display: block;width: 400px;text-align: center;}
  #solve_problems_block2>div p span {
    padding: 0;
  }
}
@media only screen and (max-width:525px){
#solve_problems_block2 > div p {
  width: 100%;
}
#we_offer_block1_conteiner {
  min-width: 360px;
}
}
/***************

we_offer

*************/


#we_offer{
  font-family: 'Exo 2';
 /* outline: 1px solid blue;*/
  height: 100vh;
  background: url(../img/we_offer_bc.jpg) center no-repeat;
  background-size: cover;
  min-height: 100%; /*900*/
  position: relative;
}

#we_offer video{
  position: absolute;
  top: 0;
  z-index: 1;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#we_offer_block1{
  float: left;
  width: 50%;
  height: 100%;
  background: rgba(6,6,10,0.96);
  position: relative;
  z-index: 2;
   min-width: 960px;
}

#we_offer_block1_conteiner{
  width: 100%;
      display: flex;
    flex-direction: column;
    height: 100%;
  min-width: 400px;
}

#we_offer_block1 h2{
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
    font-size: 60px;
    line-height: 48px;
  padding: 140px 0 40px 0;
  text-align: left;
  padding-left: 330px;
  margin: 0;
}

#we_offer_block1 h2~div{
  /*! outline: 1px solid gold; */
  position: relative; 
  padding-left: 330px;
  width: 100%;
}


#we_offer_block1 h2~div h3{
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
    text-align: left;
  font-size: 30px;
    line-height: 36px;
  position: relative;
  z-index: 2;
}

#we_offer_block1 h2~div p{
  color: #dfdddb;
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 15px 0;
  font-weight: 300;
  font-size: 14px;
  line-height: 38px;
  transition-property:  opacity;
  transition-property: 0.3s;
}


#we_offer_block1 h2~div .sfera_red{

  width: 430px;
  height:430px;
  position: absolute;
  z-index: -1;
  border: 1px solid #b61316;
  border-radius: 300px;
  top: -180px;
  left: 125px;
  animation: margin_top_bottom 1s ease-in-out 0.5s alternate, move 5s linear 2s;
  animation-iteration-count: infinite;
  animation-delay: 1.5s;
}

#we_offer_block1 h2~div .sfera_red div{
  width: 235px;
  height: 235px;
   border: 1px solid #b61316;
  background: #b61316;
  border-radius: 300px;
  position: absolute;
  left: 0;
  right: -20px;
  bottom:40px;
  animation: margin_top_bottom_abs1s ease-in-out 1.5s alternate, move 5s linear 2s;
  animation-iteration-count: infinite;
  animation-delay: 0.5s;
}


#we_offer_block1_conteiner ul li{
 margin: 0;
  background: #0e0e12;
  box-sizing: border-box;
}

#we_offer_block1_conteiner ul{
  max-height: 100%;
  overflow: hidden;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

#we_offer_block1_conteiner ul li p{
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  text-align: left;
  font-size: 24px;
  line-height: 40px;
  padding: 28px 25px 0 25px;
  box-sizing: border-box;
  font-weight: bold;
  transition: .1s linear;
}
#we_offer_block1_conteiner ul li:hover p {
  color: rgba(255,255,255,1);
}
@media (max-width: 1600px) and (max-height: 950px) {
  #we_offer_block1_conteiner ul li p {
    font-size: 20px;
    line-height: 34px;
    padding-top: 15px;
  }
  #we_offer_block1 h2 {
    padding-bottom: 20px;
  }
}
@media (max-width: 1440px) and (max-height: 750px) {
  #we_offer_block1_conteiner ul li p {
    font-size: 18px;
    line-height: 20px;
    padding-top: 15px;
  }
}
@media (max-width: 1440px) {
  #we_offer_block1 h2,
  #we_offer_block1 h2~div {
    padding-left: 150px;
  }
  #we_offer_block1 {
    min-width: 750px;
  }
}
@media (max-width: 1100px) {
  #we_offer_block1 {
    width: 100%;
    min-width: 100%;
  }
  #we_offer video {
    display: none;
  }
  #we_offer_block1 h2, #we_offer_block1 h2~div {
    padding-left: 0;
    text-align: center;
  }
  #we_offer_block1 h2~div {
    width: 100%;
    text-align: center;
  }
  #we_offer_block1 h2~div h3,
  #we_offer_block1 h2~div p {
    text-align: center;
  }
}
@media only screen and (max-width:900px){
  #we_offer_block1 {
    width: 100%;
    background: rgba(6,6,10,0.86);
    overflow: hidden;
    float: none;
  }
  #we_offer{height: 100%; min-height:400px;}
  #we_offer_block1 h2 {font-size: 40px;line-height: 48px; padding: 40px 0 20px 0;position: relative;z-index: 2;text-align: center;}
  #we_offer_block1 h2 ~ div h3 {font-size: 20px;line-height: 24px; text-align: center;}
  #we_offer_block1 h2~div p {
    text-align: center;
    padding: 0;
  }
  #we_offer_block1_conteiner ul {
    width: 100%;
    max-height: 100%;
    grid-template-columns: 1fr;
  }
  #we_offer_block1_conteiner ul li p {
    font-size: 18px;
    line-height: 24px;
    padding-top: 28px;
    text-align: center;
}
}
@media only screen and (max-width:768px){
  #we_offer_block1_conteiner ul li p {
        padding: 20px;
        font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (max-width:425px){
  #we_offer_block1 h2 {font-size: 32px;line-height: 48px;}
}
@media only screen and (max-width:650px){
  
  
  #we_offer_block1{width: 100%;min-width: 100px;}
}
@media only screen and (max-width:525px){
#we_offer_block1_conteiner {
  min-width: 360px;
}
}

/******************

about_company

**************/

#about_company{
  
}



#about_company{
  /*! outline: 1px solid blue; */
  height: calc(100vh - 288px);
  font-family: 'Exo 2';
  overflow: hidden;
  
background: #000;
}

.about_company_block{
  /*! outline: 1px solid red; */
  display: inline-block;
  width: calc(50% - 2px);
  vertical-align: top;
 
  /*! overflow: hidden; */
}

#about_company_block1{
    background: url(../img/about_company_block1.jpg) left top no-repeat;
    background-size: cover;
  height: 100%;
}

#about_company_block2{
  position: relative;
  
  height: 100%;
}

#about_company_block2>.opacity{
  background: rgba(0,0,0,0);
  height: 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  / display: none; 
}

#about_company_block2 img{
  opacity: 0.04;
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
  right: 0;
}


#about_company_block2 h2{
  color: #fff;
  font-family: 'Exo 2';
  text-transform: uppercase;
  font-weight: bold;
  font-size: 60px;
  line-height: 48px;
  text-align: left;
  margin:  140px 0 0 120px;
  position: relative;
  z-index: 3;
}

@media only screen and (max-width: 1100px){
  #about_company {
    height: calc(100vh - 252px)
  }
}
#we_produce_txt{
  max-width: 870px;
  width: 100%;
  position: relative;
  color: #fff;
  left: -263px;
  margin-top: 110px;
  height: 100%;
  max-height: 175px;
  padding: 54px 45px 54px 47px;
      box-sizing: border-box;
}

#we_produce_txt .opacity{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #0e0e12;
  z-index: 2;
}

#we_produce_txt .about__index {
   
   max-width: 870px;
   width: 100%;
   box-sizing: border-box;
   height: 70px;
   overflow: hidden;
   position: relative;
}
#we_produce_txt .link_about__index {
  font-size: 14px;
  line-height: 24px;
  position: absolute;
  right: 50px;
  bottom: 25px;
  cursor: pointer;
  color: #fff;
  z-index: 10;
}
@media only screen and (max-width: 700px) {
  #we_produce_txt {
    padding: 15px 15px 15px 15px;
    max-height: 100%;
  }
  #we_produce_txt .about__index {
    height: 100%;
  }
}
#we_produce_txt .top{
  position: relative;
  z-index: 3;
  text-align: left;
  margin-bottom: 35px;
  font-family: 'Exo 2';
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
}
#we_produce_txt .top p {
  text-align: left;
}
#we_produce_txt .down{
  position: relative;
  z-index: 3;
  text-align: left;
  font-family: 'Exo 2';
  font-weight: 100;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255,255,255,0.5);
  display: none;
}
#we_produce_txt .down p {
  text-align: left;
}
#we_produce_txt p strong{
  font-weight: bold;
  
}


#we_produce_txt span{
  text-align: right;
  display: block;
  z-index: 3;
  position: relative;
  padding: 30px 38px 57px 38px;
}



#we_produce_txt .sfera_red{
  width: 626px;
  height: 626px;
  border: 1px solid #b61316;
  position: absolute;
  top: 5px;
  right: 0;
  z-index: 1;
  transform: translate(23%, -32%);
  border-radius: 10000px;
  animation: margin_top_bottom 1s ease-in-out 0.5s alternate, move 5s linear 2s;
  animation-iteration-count: infinite;
  animation-delay: 1.5s;
}



#we_produce_txt .sfera_red div{
  width: 550px;
  height: 550px;
  background: #b61316;
   border-radius: 10000px;
  position: absolute;
  bottom: -50px;
  left: -53px;
  /*! opacity: 0; */
   animation: margin_top_bottom_abs 1s ease-in-out 1.5s alternate, move 5s linear 2s;
  animation-iteration-count: infinite;
  animation-delay: 0.5s;
}
@media (min-width: 900px) and (max-height: 780px){
  #we_produce_txt {
    margin-top: 40px;
  }
}
@media (min-width: 900px) and (max-height: 700px){
  #about_company_block2 h2 {
        margin: 100px 0 0 120px;
  }
}
@media only screen and (max-width: 1100px){
  #about_company_block2 h2 {margin-left: 45px;}
}
@media only screen and (max-width:900px){
  #about_company_block2 h2 {
    font-size: 40px;
    text-align: center;
    margin: 30px 0 ;

}
  #about_company{height: auto;overflow: hidden;}
  /*#about_company_block2{width: 100%; position: absolute;right: 0;}*/
  .about_company_block{width: auto;}
  #about_company_block2{height: auto;}
  #we_produce_txt{left: 0;width: calc(100% - 40px);margin-bottom:20px;}
  /*****/
}

/****************

callback form1

******************/


#callback_form1{
  /*outline: 1px solid blue;*/
   font-family: 'Exo 2';
}

#callback_form1 h2{
  font-size: 30px;
  text-transform: uppercase;
 padding-top: 50px;
  font-weight: bold;
  text-align: left;
  line-height: 40px;
  width: 100%;
}
#callback_form1 h2 span{
  display: block;
}
#callback_form1 h2 .left_callback {
  text-align: left;
}
#callback_form1 .row{
  max-width: 1300px;
  margin: 0 auto;
display: grid;
grid-template-columns: minmax(420px,1fr) minmax(480px,580px);
grid-gap: 30px;
align-items: flex-start;
padding: 60px 30px 36px 30px;
box-sizing: border-box;
}
#callback_form1 .row>div {
  width: 100%;
}
#callback_form1 .row>div p {
  color: #06060a;
  font-size: 14px;
  line-height: 30px;
   font-weight:300;
  font-style: normal;
}
#callback_form1 .row>div form{
  margin: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 6px 16px;

}


#callback_form1 .row>div form input{
  width: 100%;
  height: 40px;
  padding: 0 24px;
  margin: 0 auto;
  box-sizing: border-box;
  border-radius: 100px;
  border: 1px solid #dadadc;
  text-align: left;
   font-family: 'Exo 2';
 background: transparent;
 outline: none;
}
#callback_form1 .row>div form>input:focus {
  border-color: #0098ba;
}
#callback_form1 .row>div form>button{
  display: inline-block;
  max-width: 282px;
  width: 100%;
  height: 40px;
  box-sizing: border-box;
  border-radius: 100px;
  border: 1px solid #dadadc;
  background: #009dbd;
  color: #fff;
   font-family: 'Exo 2';
   text-align: center;
   transition: 200ms linear;
   margin:  0 auto;
}
#callback_form1 .row>div form>button:hover {
      background: #0092b0;
}
#callback_form1 .row>div form>button:focus {
  transform: scale(0.9);
}
#callback_form1 .row>div label {
  margin: 10px ;
  display: flex;
  text-align: left;
cursor: pointer;
align-items: center;
}
#callback_form1 .row>div label input {
  display: none;
}
.form_input_doc {
  grid-column: 1/3;
  margin-left: 0;
}

#callback_form1 .form_input_doc label div{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dadada;
  padding: 0;
  width: 29px;
    height: 29px;
  border-radius: 50%;
  align-items: center;
  margin-right: 20px;
  position: relative;
  z-index: 2;
}
#callback_form1 .form_input_doc label div img {
   position: relative;
  z-index: 2;
  transition: 200ms linear;
}
#callback_form1 .form_input_doc label div:after {
    pointer-events: none;
    position: absolute;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    content: '';
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    top: 0;
    left: 0;
    padding: 0;
    z-index: 1;
    opacity: 1;
     background: #dadada;
    -webkit-transition: -webkit-transform .2s,opacity .3s;
    -moz-transition: -moz-transform .2s,opacity .3s;
    transition: transform .2s,opacity .3s;
}
#callback_form1 .form_input_doc label:hover div:after {
  background: #009dbd;
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);

}
#callback_form1 .form_input_doc label:hover div img {
   filter: brightness(0%) invert(1);
}
#callback_form1 .row>div label p{
  display: inline-block;
}


@media only screen and (max-width: 1100px){
  #callback_form1 .row {
    padding: 30px;
  }
}
@media only screen and (max-width:991px){
  #callback_form1 .row {
    grid-template-columns: 1fr;
  }
  #callback_form1 h2{
  text-align: center;
  padding: 0;
}
#callback_form1 h2 span{
  display: block;
}
#callback_form1 h2 .left_callback {
  text-align: center;
}
#callback_form1 .row>div{
  max-width: 580px;
  margin: 0 auto;
}


  /*******/
}
@media only screen and (max-width:768px){
  #callback_form1 .row>div form {
    grid-template-columns: 1fr;
  }
  #callback_form1 .row>div {
    width: 100%;
    padding: 0;
  }
  #callback_form1 .row>div label {
    display: grid;
    grid-template-columns: auto 1fr;
  }
  .form_input_doc {
    grid-column: 1;
    margin: 0 auto;
}
  #callback_form1 h2 {
    padding: 0;
    line-height: 32px;
  }
  #callback_form1 .row {
    width: calc(100% - 20px);
    padding: 60px 10px 36px 10px;
  }
  #callback_form1 .row>div label p {
    text-align: left;
  }
  #callback_form1 .row>div p {
    line-height: 20px;
  }
}
/************************

slaid_partner

*************************/


#slaider_partner{
  /*border: 1px solid red;*/
    font-family: 'Exo 2';
  height: calc(100vh - 490px);
 
}
#slaider_partner .row {
  max-width: 1300px;
  margin:  0 auto;
  width: calc(100% - 60px);
   padding: 145px 30px 90px 30px;
   box-sizing: border-box;
}

#slaider_partner h2{
  font-family: 'Exo 2';
  font-size: 60px;
  text-transform: uppercase;
  text-align: left;
  padding-bottom:30px;
  margin-bottom: 45px;
}

.slick-dots{display: none;}
.slaider_partner_conteiner{
  display: flex;
  align-items: flex-start;
  height: auto;
}


.slaider_partner_conteiner .item{
  width: 132px;
    height: 132px;
  /*! outline: 1px solid blue; */
  display: inline-block;
  padding: 0;
  box-sizing: border-box;
  opacity: 0.4;
  transition: 200ms linear;
}


.slaider_partner_conteiner .item:hover{
  opacity: 1;
}

.slaider_partner_conteiner .item img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slaider_partner_conteiner .item h3{
  text-transform: uppercase;
  padding: 15px 0;
  opacity: 0;
  line-height: 38px;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  transition: 200ms linear;

}
.slaider_partner_conteiner .item:hover h3 {
  opacity: 1;
}
.slaider_partner_conteiner .karkas1{
  width: calc(100% - 80px);
  height: auto;
}
.slaider_partner_conteiner .karkas2{
  width: 100%;
}

.slaider_partner_conteiner>img{
  transition-property: all;
  transition-duration: 0.3s;
  height: 30px;
  filter: contrast(0%);
  transform: translateY(65px);
}

.slaider_partner_conteiner>img:hover{
  cursor: pointer;
  height: 30px;
  filter: contrast(100%);
}

.slaider_partner_conteiner>img:nth-last-child(1){
  transform: rotateZ(180deg) translateY(-65px);
}


@media only screen and (max-width:900px){
  #slaider_partner{min-height: 200px; height: auto;}
  #slaider_partner h2{padding: 50px;padding-top:30px;padding-bottom:10px;font-size: 40px;line-height: 48px; text-align: center;}
  
  /********/
}
@media only screen and (max-width: 768px){
  #slaider_partner .row {
    width: calc(100% - 20px);
    padding: 45px 10px 90px 10px;
  }
  #slaider_partner h2 {
    padding: 0;
  }
}
@media only screen and (max-width: 425px){
  #slaider_partner h2 {
    font-size: 32px;
    line-height: 48px;
  }
}

@media only screen and (min-width: 900px) and (max-height: 1000px) {
  #slaider_partner .row {
    padding: 95px 30px 0 30px;
    height: 100%;
  }
}
@media only screen and (min-width: 900px) and (max-height: 880px) {
  #slaider_partner h2 {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 900px) and (max-height: 850px) {
  .section-slide footer .row {
    grid-gap: 30px;
  }
  #slaider_partner {
        height: calc(100vh - 430px);
  }
}
@media only screen and (min-width: 900px) and (max-height: 790px) {
  .section-slide footer {
    padding: 20px 0 20px 0;
  }
  .section-slide footer .row {
    grid-gap: 0 30px;
}
#slaider_partner {
        height: calc(100vh - 360px);
  }
}
@media only screen and (min-width: 900px) and (max-height: 740px) {
  #slaider_partner h2 {
    font-size: 40px;
    padding-bottom: 10px;
  }
  #slaider_partner {
        height: calc(100vh - 360px);
  }
  .slaider_partner_conteiner .item h3 {
    padding: 0;
    line-height: 16px;
  }
}
@media only screen and (min-width: 900px) and (max-height: 680px) {
  .footer_bock2 {
    padding-top: 60px;
  }
  .slaider_partner_conteiner .item {
    height: 122px;
  }
   #slaider_partner {
        height: calc(100vh - 340px);
  }
  .section-slide footer {
    padding: 20px 0 0 0;
}
}
/************
footer
***************/

footer{
  background: url(../img/footer_bc.jpg) right no-repeat;
  background-size: cover;
  height: auto;
  font-family: 'Exo 2';
  padding: 60px 0 20px 0;
  color: #fff;
  position: relative;
}
footer .line-red-project {
  width: 0%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 14px;
   background-color: #b61316;
}
footer .line-red-project .slick-dots li {
  height: 100%;
  width: 100%;
  margin: 0;
}
footer .line-red-project .slick-dots li button{
  width: 100%;
  height: 100%;
  padding: 0;
}
footer .line-red-project .slick-dots li button::before {
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #b61316;
}
footer .line-red-project .slick-dots li.slick-active button:before {
    opacity: 1;
    background-color: #b61316;
}
footer .line-red-project .slick-dots {
  height: 1px;
  bottom: 0;
  display: flex !important;
}
footer .row {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(355px,480px) minmax(282px,480px) 270px;
  align-items: flex-start;
  grid-gap:90px 30px;
}
footer .row a {
  margin-left: 0;
}
.footer_block1{
  /*! outline: 1px solid gold; */
}


.footer_block1_1{
  display: grid;
  grid-template-columns: 225px minmax(100px,225px);
  grid-gap: 30px;
  /*! outline: 1px solid blue; */
  width: 100%;
}


.footer_block1_1 h4{
  text-transform: uppercase;
  text-align: left;
  font-weight: 600;
    font-style: normal;
    font-size: 11px;
    line-height: 38px;
    margin-bottom: 0;
}

.footer_bock1_11{
  display: inline-block;
  vertical-align: top;
}


.footer_bock1_11 ul li{
  list-style: none;
  text-align: left;
}

.footer_bock1_11 ul li a{
    display: inline-flex;
    align-items: center;
  text-transform: uppercase;
  font-weight: 300;
    font-style: normal;
    font-size: 11px;
    line-height: 30px;
    position: relative;
    padding-left: 32px;
}
.footer_bock1_11 ul li a div {
  width: 0;
  height: 25px;
  position: absolute;
  right: calc(100% - 12px);
  overflow: hidden;
  transition: 200ms linear;
}
.footer_bock1_11 ul li img{
  width: 12px;
  height: 25px;
  opacity: 1;
  transition: 200ms linear;
  position: absolute;
  right:0;
  top: 0;
}

.footer_bock1_11 ul li:hover div{
  width: 12px;
}

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


.footer_bock1_12 li{
  list-style: none;
  text-transform: uppercase;
  margin: 0 auto;
  opacity: 0.70;
  text-align: left;
  transition: 200ms linear;
}
.footer_bock1_12 li a {
  font-weight: 600;
    font-style: normal;
    font-size: 11px;
    line-height: 32px;
    text-align: left;
}
.footer_bock1_12 li:hover{
  opacity: 1;
  cursor: pointer;
}






/************/

.footer_bock2{
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}

.footer_bock2 h4{
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
    font-style: normal;
    font-size: 18px;
    line-height: 38px;
    margin-bottom: 30px;
    text-align: center;
}

.footer_form input{
  width: 282px;
  padding: 10px;
  margin: 0 auto;
  box-sizing: border-box;
  border-radius: 100px;
  border: 1px solid rgba(31,31,31,0.9);
  text-align: left;
  color: #fff;
  font-family: 'Exo 2';
  font-weight: 100;
    font-style: normal;
    font-size: 14px;
    line-height: 14px;
  background: transparent;
  display: block;
  outline: none;
}
.footer_form input:focus {
      border-color: #007baf;
}
.footer_form button{
  width: 282px;
  height: 40px;
  box-sizing: border-box;
  border-radius: 100px;
  border: 1px solid #007baf;
  background: #007baf;
  color: #fff;
  margin-top: 4px;
  font-family: 'Exo 2';
  text-align: center;
  transition: 200ms linear;
}
.footer_form button:hover {
  background: #0070a0;
}
.footer_form button:focus {
  transform: scale(0.9);
}

.footer_bock3{
  padding-left: 15px;
}

.footer_bock3 ul{
}

.footer_bock3 li{
  list-style: none;
  color: #fff;
  text-align: left;
    margin-bottom: 20px;
    align-items: center;
}
.footer_bock3 li a {
  font-weight: 100;
    font-style: normal;
    font-size: 12px;
    line-height: 28px;
    text-align: left;
    display: grid;
    grid-template-columns: 29px auto;
    grid-gap: 28px;
}
.footer_bock3 li a p {
  text-align: left;
  margin-left: 0;
}

.footer_bock3 li div{
  position: relative;
  z-index: 1;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  align-items: center;
  display: flex;
  align-items: center;
  justify-content: center;
-webkit-transition: -webkit-transform ease-out .1s,background .2s;
    -moz-transition: -moz-transform ease-out .1s,background .2s;
    transition: transform ease-out .1s,background .2s;
}
.footer_bock3 li div:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: '';
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
        top: 0;
    left: 0;
    padding: 0;
    z-index: -1;
    box-shadow: 0 0 0 2px rgba(223,221,219,.1);
    opacity: 0;
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
}
.footer_bock3 li a:hover div{
    background: rgba(223,221,219,0.15);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
  transform: scale(1);
}
.footer_bock3 li a:hover div img {
  -webkit-transform: scale(.93);
    -moz-transform: scale(.93);
    -ms-transform: scale(.93);
  transform: scale(.93);
}
.footer_bock3 li a:hover div:after {
    -webkit-animation: sonarEffect 1.3s ease-out 75ms;
    -moz-animation: sonarEffect 1.3s ease-out 75ms;
    animation: sonarEffect 1.3s ease-out 75ms;
}
@-webkit-keyframes sonarEffect {
  0% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.4), 0 0 10px 10px #06060a, 0 0 0 10px rgba(255,255,255,0.7);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(255,255,255,0.4), 0 0 10px 10px #06060a, 0 0 0 10px rgba(255,255,255,0.7);
    -webkit-transform: scale(1.5);
    opacity: 0;
  }
}
@-moz-keyframes sonarEffect {
  0% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.4), 0 0 10px 10px #06060a, 0 0 0 10px rgba(255,255,255,0.7);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(255,255,255,0.4), 0 0 10px 10px #06060a, 0 0 0 10px rgba(255,255,255,0.7);
    -moz-transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes sonarEffect {
  0% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.4), 0 0 10px 10px #06060a, 0 0 0 10px rgba(255,255,255,0.7);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(255,255,255,0.4), 0 0 10px 10px #06060a, 0 0 0 10px rgba(255,255,255,0.7);
    transform: scale(1.5);
    opacity: 0;
  }
}

@-webkit-keyframes sonarEffectBlue {
  0% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(0,149,183,0.4), 0 0 10px 10px #ffffff, 0 0 0 10px rgba(0,149,183,0.9);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(0,149,183,0.4), 0 0 10px 10px #ffffff, 0 0 0 10px rgba(0,149,183,0.9);
    -webkit-transform: scale(1.5);
    opacity: 0;
  }
}
@-moz-keyframes sonarEffectBlue {
  0% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(0,149,183,0.4), 0 0 10px 10px #ffffff, 0 0 0 10px rgba(0,149,183,0.9);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(0,149,183,0.4), 0 0 10px 10px #ffffff, 0 0 0 10px rgba(0,149,183,0.9);
    -moz-transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes sonarEffectBlue {
  0% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(0,149,183,0.4), 0 0 10px 10px #ffffff, 0 0 0 10px rgba(0,149,183,0.9);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(0,149,183,0.4), 0 0 10px 10px #ffffff, 0 0 0 10px rgba(0,149,183,0.9);
    transform: scale(1.5);
    opacity: 0;
  }
}
.footer_bock3>div img{
  opacity: 0.3
}

.footer_bock4{
  display: grid;
  grid-template-columns: 97px auto;
  grid-gap: 10px 30px;
  align-items: center;
}


.footer_bock4 .footer_bock4_1{
  width: 97px;
}

.footer_bock4 .footer_bock4_1 img{
  width: 100%;
  transition: 200ms linear;
}
.footer_bock4 .footer_bock4_1 img:hover {
  transform: scale(0.85);
}

.footer_bock4 .footer_bock4_2 p{
  text-align: left;
  font-weight: 700;
    font-style: normal;
    font-size: 12px;
    line-height: 20px;
}
.footer_bock4 .footer_bock4_2 span{
  display: block;
  text-align: left;
   font-weight: 300;
    font-style: normal;
    font-size: 12px;
    line-height: 20px;
    color: #d6d6d8;
}
.footer_bock4 a{
  font-weight: 300;
    font-style: normal;
    font-size: 12px;
    line-height: 38px;
    text-align: left;
    color: rgba(255,255,255,0.13);
    grid-column: 1/3;
    transition: 200ms linear;
    width: 180px;
}
.footer_bock4 a:hover {
  color: rgba(255,255,255,0.43);
}

.footer_bock5 {
  display: grid;
  grid-template-columns: 93px auto;
  grid-gap: 0;
  align-items: center;
  grid-column: 3;
  padding-left: 25px;
}
.footer_bock5 img{
  opacity: 0.13;
  transition: 200ms linear;
  
}
.footer_bock5 a{
  font-weight: 300;
    font-style: normal;
    font-size: 11px;
    line-height: 28px;
    text-align: left;
}
.footer_bock5 a:first-child{
  padding-right: 20px;
}
.footer_bock5:hover img{
  opacity: 1;
}



@media only screen and (max-width:1024px){
  footer .row {
    grid-template-columns: 1fr 1fr;
  }
  .footer_bock2 {
    padding-top: 0;
    grid-row: 2;
    grid-column: 1/3;
  }
  .footer_bock5 {
    grid-column: 2;
  }
}
@media only screen and (max-width:768px){
  footer .row {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    padding: 0 15px;
    width: calc(100% - 30px);
  }
  .footer_bock2 {
    padding-top: 0;
    grid-row: 2;
    grid-column: 1;
  }
  .footer_bock5 {
    grid-column: 1;
    padding-left: 0;
    justify-content: center;
  }
  .footer_bock3 li {
    grid-gap: 10px;
    justify-content: flex-start;
   width: 100%;
  }
  .footer_bock3 ul {
     width: 300px;
     margin: 0 auto;
  }
  .footer_bock4 {
    grid-gap: 10px;
    justify-content: center;
  }
  .footer_block1_1 {
    justify-content: center;
  }
}
@media only screen and (max-width: 525px){
  .footer_block1_1 {
  grid-template-columns: 1fr;
}
.footer_bock1_12 li a,
.footer_bock1_12 li,
.footer_block1_1 h4,
.footer_bock1_11 ul li {
  text-align: center;
}
.footer_block1_1 h4 {
  padding-left: 0;
}
.footer_bock1_11 ul li a {
  margin-left: -32px;
}
}

.fixed_forms {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
  align-items: center;
  justify-content: center;
  background-color: rgba(6,6,10,0.40);
  z-index: 9999;
  opacity: 1;
  visibility: hidden;
  transition: visibility 0s linear 1s,opacity 0.5s linear;
  overflow: auto;
}
.fixed_forms .callback_popup {
  max-width: 735px;
  width: 100%;
  background-color: #fff;
  position: relative;
  top: 50%;
  margin: 0 auto;
  text-align: center;
  padding: 60px 25px 0 25px;
  transform: translateY(-50%);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all .5s;
  box-sizing: border-box;
}
.fixed_forms .close_modal_form {
  position: absolute;
  top: 0;
  height: 50px;
  width: 12px;
  display: flex;
  align-items: center;
  right: 20px;
  cursor: pointer;
  z-index: 2;
  background-color: #fff;
}
.fixed_forms .close_modal_form img:hover {
  animation: rotateCross 150ms linear forwards;
}
@keyframes rotateCross{
  0%{transform: rotate(0deg);}
  100%{transform: rotate(-90deg);}
}
.fixed_forms .callback_popup h2 {
  font-family: 'Exo 2';
  color: rgba(6,6,10,0.16);
  font-size: 75px;
  line-height: 75px;
  font-weight: 700;
    font-style: normal;
    text-align: center;
    text-transform: uppercase;
}
.fixed_forms .callback_popup h3 {
  font-family: 'Exo 2';
  color: rgba(6,6,10,1);
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
    font-style: normal;
    text-align: center;
    text-transform: uppercase;
    margin-top: 10px;
}
.fixed_forms .callback_popup h4 {
  font-family: 'Exo 2';
  color: rgba(6,6,10,1);
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
    font-style: normal;
    text-align: left;
    max-width: 290px;
  width: 100%;
  margin: 40px auto 20px auto;
}
.fixed_forms .callback_popup input {
  font-family: 'Exo 2';
  max-width: 282px;
  width: 100%;
  height: 40px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
    font-style: normal;
    text-align: left;
    color: rgba(6,6,10,1);
    padding: 0 24px;
    border-radius: 20px;
    border:1px solid rgba(214,214,216,0.9);
    display: block;
   outline: none;
    position: relative;
     z-index: 3;
}
.fixed_forms .callback_popup .btn-1 {
   margin: 0 auto 6px auto;
   z-index: 5;
}
.fixed_forms .callback_popup input:focus {
border-color:#007baf;
}
.fixed_forms .callback_popup button {
  font-family: 'Exo 2';
  max-width: 282px;
  width: 100%;
  height: 40px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
    font-style: normal;
    text-align: center;
    color: rgba(255,255,255,1);
    padding: 0 24px;
    border-radius: 20px;
    border:1px solid rgba(182,19,22,1);
    background-color: rgba(182,19,22,1);
     margin: 0 auto 0 auto;
     box-shadow: 0 0 0 15px rgba(255,255,255,1);
     position: relative;
     z-index: 2;
}
.fixed_forms .callback_popup label {
  display: grid;
  grid-template-columns: 29px 1fr;
  grid-gap: 20px;
  align-items: center;
  font-family: 'Exo 2';
  max-width: 305px;
  width: 100%;
  margin: 20px auto 15px auto;
  cursor: pointer;
  position: relative;
     z-index: 2;
}
.fixed_forms .callback_popup label p {
  font-family: 'Exo 2';
    color: rgba(6,6,10,1);
    font-size: 14px;
    line-height: 30px;
    font-weight: 300;
    font-style: normal;
    text-align: left;
    max-width: 100%;
    width: 100%;
    margin: 0 auto 0 auto;
}
.fixed_forms .callback_popup label div{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dadada;
  padding: 0;
  width: 29px;
    height: 29px;
  border-radius: 50%;
  align-items: center;
  margin-right: 0;
  position: relative;
  z-index: 2;
}
.fixed_forms .callback_popup label div img {
   position: relative;
  z-index: 2;
  transition: 200ms linear;
}
.fixed_forms .callback_popup label div:after {
    pointer-events: none;
    position: absolute;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    content: '';
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    top: 0;
    left: 0;
    padding: 0;
    z-index: 1;
    opacity: 1;
     background: #dadada;
    -webkit-transition: -webkit-transform .2s,opacity .3s;
    -moz-transition: -moz-transform .2s,opacity .3s;
    transition: transform .2s,opacity .3s;
}
.fixed_forms .callback_popup label:hover div:after {
  background: #009dbd;
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);

}
.fixed_forms .callback_popup label:hover div img {
   filter: brightness(0%) invert(1);
}
.fixed_forms .callback_popup label input{
  display: none;
}

.fixed_forms .callback_popup ul {
  /*display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));*/
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  grid-gap: 10px;
  background: #06060a;
  margin: 0 -25px;
  padding: 16px 25px;
  width: calc(100% + 50px);
   word-break: break-all;
   box-sizing: border-box;
}
.fixed_forms .callback_popup ul li{
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 10px;
  margin-right: 10px;
  
}
.fixed_forms .callback_popup ul li p{
  font-family: 'Exo 2';
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 30px;
    font-weight: 300;
    font-style: normal;
    text-align: left;
    transition: 200ms linear;
    
}
.fixed_forms .callback_popup ul li:hover p {
  color: rgba(255,255,255,1);
}
.fixed_forms .callback_popup ul li div{
  width: 0;
  height: 29px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0);
  margin-right: 0;
  position: relative;
  transition: 200ms linear;
  transform: scale(0);
-webkit-transition: -webkit-transform ease-out .1s,background .2s;
    -moz-transition: -moz-transform ease-out .1s,background .2s;
    transition: transform ease-out .1s,background .2s;
}
.fixed_forms .callback_popup ul li div:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: '';
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
        top: 0;
    left: 0;
    padding: 0;
    z-index: -1;
    box-shadow: 0 0 0 2px rgba(255,255,255,.1);
    opacity: 0;
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
}
.fixed_forms .callback_popup ul li div.click__delete{
    background: rgba(255,255,255,0.15);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
  transform: scale(1);
}
.fixed_forms .callback_popup ul li div.click__delete img {
  -webkit-transform: scale(.93);
    -moz-transform: scale(.93);
    -ms-transform: scale(.93);
  transform: scale(.93);
}
.fixed_forms .callback_popup ul li div.click__delete:after {
    -webkit-animation: sonarEffect 1.3s ease-out 75ms;
    -moz-animation: sonarEffect 1.3s ease-out 75ms;
    animation: sonarEffect 1.3s ease-out 75ms;
}
.fixed_forms .callback_popup ul li div img {
  width: 0;
  transition: 200ms linear;
}
.fixed_forms .callback_popup ul li div a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.fixed_forms .callback_popup ul li div a img{
  filter: brightness(0%) invert(1);
}
.fixed_forms .callback_popup ul li:hover div {
  width: 29px;
  transform: scale(1);
}
.fixed_forms .callback_popup ul li:hover div img{
  width: 12px;
}
.red_line_form {
  position: absolute;
  height: 418px;
  width: calc(100% - 50px);
  z-index: 1;
  top: 0;
  left:25px;
  right: 25px;
  margin: 0 auto;
  overflow: hidden;
  opacity: 1;
}
@keyframes redLineHoverHStart {
  0%{height: 0;}
  100%{height: 100%;}
}
@keyframes redLineHoverWStart {
  0%{width: 0px;}
  100%{width: 188px;}
}
@keyframes redLineHoverHEnd {
  0%{height: 100%;}
  100%{height: 0px;}
}
@keyframes redLineHoverWEnd {
  0%{width: 188px;}
  100%{width: 0px;}
}
.red_line_form .left{
  width: 1px;
  height: 0; /*418px*/
  background-color: #b61316;
  position: absolute;
  top: 0;
  left: 0;
  transition: 500ms linear;
}
.red_line_form .right{
  width: 1px;
  height: 0; /*368px*/
  background-color: #b61316;
  position: absolute;
  top: 0;
  right: 0;
  transition: 500ms linear;
}
.red_line_form .bottom_l{
  width: 0; /*188px*/
  height: 1px;
  background-color: #b61316;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 300ms linear 500ms;
}
.red_line_form .bottom_r{
  width: 0; /*188px*/
  height: 1px;
  background-color: #b61316;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: 300ms linear 500ms;
}

@media only screen and (max-width: 525px){
  .fixed_forms .callback_popup input {
    width: 90%;
  }
  .fixed_forms .callback_popup button {
    width: 60%;
  }
  .fixed_forms .callback_popup {
    width: 100%;
    height: 100%;
        display: flex;
    flex-direction: column;
    justify-content: center;
  }/*
  .fixed_forms .callback_popup ul {
    min-height: calc(100% - 60px - 75px - 18px - 36px - 228px - 25px)
  }*/
  .red_line_form {
    left: 12px;
    right: 12px;
    width: calc(100% - 24px);
  }
  .fixed_forms .close_modal_form {
    right: 15px;
  }
  .red_line_form {
  display: none;
}
}

.popup_map {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(6,6,10,0.96);
  z-index: 9999;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 10%;
  padding-left: 10%;
}
.popup_map .close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #009fc1;
}
.popup_map .close img {
  width: 12px;
  height: 12px;
  position: absolute;
}
.popup_map .close:hover img{
  animation: rotateCross 150ms linear forwards;
}
.popup_map #popup_map {
  width: 100%;
  height: 100%;
  border: none;
}

.btn-1 {
  background:transparent;
  font-weight: 100;
  position: relative;
  z-index: 1;
  max-width: 282px;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.btn-1 input {
  background:transparent !important;
  position: relative;
  z-index: 2;
  height: 100% !important;
  width: 100% !important;
  /*border-color: transparent !important; */
}
#callback_form1 .row>div form input:focus {
  border-color:#007baf;
}
.btn-1 svg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  display: none;
}
.btn-1 rect {
  fill: none;
  stroke: rgba(255,255,255,1);
  stroke-width: 1;
  stroke-dasharray: 422, 0;
  transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
}
/*.btn-1:hover {
  font-weight: 900;
  letter-spacing: 1px;
}*/
/*.btn-1:hover rect {
  stroke-dasharray: 15, 500;
  stroke-dashoffset: 48;
}*//*
#callback_form1 .btn-1 rect {
  stroke: #dadadc;
  transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
}
#callback_form1 .btn-1:hover rect {
  stroke:#007baf;
}
.fixed_forms .callback_popup .btn-1 rect {
  stroke:rgba(214,214,216,0.9);
}
.fixed_forms .callback_popup .btn-1:hover rect {
  stroke: rgba(182,19,22,0.9);
}*/

input::-webkit-input-placeholder {
    color: #999;
}
input:focus::-webkit-input-placeholder {
    color: transparent;
}
/* Firefox < 19 */
input:-moz-placeholder {
    color: #999;
}
input:focus:-moz-placeholder {
    color: transparent;
}
/* Firefox > 19 */
input::-moz-placeholder {
    color: #999;
}
input:focus::-moz-placeholder {
    color: transparent;
}

/* Internet Explorer 10 */
input:-ms-input-placeholder {
    color: #999;
}
input:focus:-ms-input-placeholder {
    color: transparent;
}
.section-slide-shifter {
  left: 0;
  height: 100%;
  top: 0;
  width: 100%;
  position: fixed;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  z-index: 28;
  display: none;
}
.section-slide-shifter.grey {
      background-color: #e6e6e6;
}
.section-slide-shifter.blue {
      background-color: #009dbd;
}
.section-slide {
  background-color: #fff;
  /*position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;*/
  position: relative;
  z-index: 30;
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -o-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
}
.section-slide:after {
  content: '';
  position: absolute;
  z-index: 1000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,.7);
  visibility: visible;
  opacity: 1;
  transition: all ease-out .4s;
}
.section-slide.section-active:after{
  visibility: hidden;
  opacity: 0;
  transition: all ease-out .5s .1s;
}
.section-slide.section-slide-active {
  z-index: 27;
}
@media (max-width: 900px){
  .section-slide:after {
    display: none;
  }
}

#preloader-internal {
  text-align: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: #fff;
}

#preloader-internal #loader {
  position: absolute;
  left: 50%;
  top: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -moz-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

#preloader-internal #loader svg {
  -moz-animation: rotate 2s infinite linear;
  -webkit-animation: rotate 2s infinite linear;
  animation: rotate 2s infinite linear;
}
#preloader-internal #loader span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  line-height: 100px;
  font-family: Helvetica;
  font-size: 51px;
  font-weight: bold;
}

@-moz-keyframes rotate {
  from {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
