@import "normalize.css" screen;
@import "fonts.css" screen;

/*baisic*/
#top100counter{
  bottom: 0;
  z-index: -999;
}
html{
  -webkit-locale: "ru-RU";
  direction: ltr;
  unicode-bidi: isolate;
  min-height: 100%;
  font-size: calc(10vw / 1920 * 100);
}
html, body{
  min-height: 100%;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}
body{
  font: 300 1.6rem/1.26 'TT_TANK', sans-serif;
  min-height: 100%;
  position: relative;
  overflow-x: hidden;
  opacity: 1;
  -moz-font-feature-settings: 'kern';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
}

/*box-sizing*/
*, *:before, *:after, input[type="search"]{box-sizing: border-box;}

/*typographyc*/
ul,li,h1,h2,p{    
  margin:0;
  padding: 0;    
  border: none;
}
ul li{list-style: none;}
a{
  text-decoration: none;
  outline: none;
  transition: .25s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:-moz-any-link:focus ,
a:-moz-focusring,
a::-moz-focus-inner,
a::-moz-focus-outer{
  outline: 0!important;
  outline: none;
}
a:active {outline: none;}

/*layout*/
.tank-wrapper{
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  position: relative;	
  background-color: #252C2C;
  color: #fff;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: column;
}
.tank-line{
  position: absolute;
  background-color: #fff;
  user-select: none;
  pointer-events: none;
}
.tank-line--gor{
  width: 100%;
  height: 1px;
  left: 0;
}
.tank-line--ver{
  top: 0;
  bottom: 0;
  width: 1px;
}
.tank-line--top{
  top: calc(54px + 13.2rem);
}
.tank-line--bottom{
  bottom: calc(54px + 13.2rem);
}
.tank-line--left{
  left: 3.4rem;
}
.tank-line--right{
  right: 3.4rem;
}
.tank-line--midleft{
  left: 77.8rem;
}
.tank-line--midright{
  right: 65.4rem;
}


/*header*/
.tank-header{
  position: absolute;
  z-index: 900;
  top: 57px;
  left: 0;
  right: 0;
  padding: 2.5rem 9.4rem 2.5rem 80.6rem;
}
.tank-header__logo{
  position: absolute;
  top: 50%;
  left: 9.2rem;
  transform: translateY(-50%);
  width: 6.2rem;
  height: 8.2rem;
}
.tank-header__logo svg{
  display: block;
  width: 100%;
  height: 100%;
}
.tank-nav ul{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5rem;
  text-align: left;
}
.tank-nav ul li:nth-child(odd){
  width: 42rem;
}
.tank-nav a{
  color: #FD9552;
  font-size: 1.9rem;
  text-align: left;
}
.tank-nav a b{
  font-weight: 500;
}
.tank-nav a:hover{
  color: #fff;
}
.tank-nav .tank--hide{
  display: none;
}

/*tank-footer*/
.tank-footer{
  position: absolute;
  z-index: 900;
  bottom: 57px;
  left: 0;
  right: 0;
  padding: 2.5rem 9.4rem 2.5rem 80.6rem;
}
.tank-footer-bar{
  position: absolute;
  top: 2.5rem;
  left: 7rem;
  max-width: 67rem;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.tank-footer-txt{
  font-size: 1.7rem;
  line-height: 1.5;
}
.tank-footer-txt a{
  color: #fff;
  text-decoration: underline;
  text-decoration-style: dotted;
}
.tank-footer-txt a:hover{
  color: #FD9552;
}
.tank-footer-txt--sm{
  font-size: 1.6rem;
  line-height: 1.25;
}

/*tank-main*/
.tank-main{
  padding: calc(54px + 13.2rem) 7rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 200;
}
.tank-content{
  width: 100%;
  max-width: 68.6rem;
  padding: 4rem 0 3rem;
}
.tank-content::before{
  content: '';
  display: block;
  background: url(../img/left-spot-min.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  margin-top: -28rem;
  left: 1.6rem;
  width: 43rem;
  height: 67.2rem;
  transform: scaleX(-1);
}
.tank-title{
  padding-left: 2.2rem;
  position: relative;
  z-index: 2;
  font-size: 7rem;
  color: rgba(255, 149, 73, 1);
  font-weight: bold;
}
.tank-txt{
  position: relative;
  z-index: 2;
  font-size: 1.9rem;
}
.tank-txt p{
  margin-top: 1.9rem;
}

/*tank-figure*/
.tank-man{
  position: absolute;
  bottom: 0;
  right: 11.2rem;
  width: 46.5rem;
  display: flex;
  align-items: flex-end;
}
.tank-man img{
  width: 100%;
}
.tank-spots{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 114rem;
}
.tank-spots img{
  width: 100%;
}
.tank-spot--mob{
  display: none;
}





@media only screen and (max-width : 767px) and (orientation: portrait){
  html{
    font-size: calc(10vw / 767 * 100);
  }
  .tank-wrapper{
    display: block;
  }
  .tank-lines{
    display: none;
  }
  .tank-header{
    height: 12.8rem;
    border-bottom: 1px solid #fff;
    padding: 0;
  }
  .tank-header__logo{
    top: 46%;
    left: 5.6rem;
    width: 8rem;
    height: 9.4rem;
  }
  .tank-header .tank-nav{
    display: none;
  }
  .tank-main{
    padding: calc(54px + 12.8rem + 2rem) 4rem 54px;
    min-height: unset;
    display: block;
  }
  .tank-content{
    max-width: unset;
    padding: 2rem 0 8rem;
    position: relative;
  }
  .tank-content::before{
    margin-top: 0;
    top: -2rem;
    left: -4rem;
    width: 53rem;
    height: 77.2rem;
  }
  .tank-title{
    padding-left: 0;
    font-size: 8rem;
    word-break: keep-all;
  }
  .tank-txt{
    font-size: 2.8rem;
    line-height: 1.5;
  }
  .tank-txt p{
    margin-top: 2.8rem;
  }  
  .tank-figure{
    position: relative;
    width: calc(100% + 8rem);
    margin: 6rem 0 -12rem -4rem;
  }
  .tank-man{
    bottom: 18rem;
    right: -8.5rem;
    width: 44rem;
  }
  .tank-spots{
    position: static;
    transform: none;
    width: 100%;
  }
  .tank-spot--desctop{
    display: none;
  }
  .tank-spot--mob{
    display: block;
  }
  
  .tank-footer{
    position: static;
    padding: 0;
  }
  .tank-footer-bar{
    position: static;
    max-width: unset;
    display: block;
    text-align: center;
    padding: 6rem 0 12rem;
  }
  .tank-footer-txt{
    font-size: 2.2rem;
  }
  .tank-footer-txt br{
    display: none;
  }
  .tank-footer-txt--sm br{
    display: block;
  }
  .tank-footer-txt--sm{
    margin-top: 6rem;
    font-size: 2rem;
  }
  
  .tank-nav ul{
    display: block;
    gap: 0;
    text-align: center;
    border-top: 1px solid #fff;
  }
  .tank-nav ul li:nth-child(odd){
    width: 100%;
  }
  .tank-nav ul li{
    width: 100%;
    padding: 4rem;
    border-bottom: 1px solid #fff;
  }
  .tank-nav a{
    font-size: 2.4rem;
    text-align: center;
    line-height: 2;
  }
  .tank-nav .tank--hide{
    display: block;
  }

}






