@charset "UTF-8";
@import "../fonts/fonts.css";

body{
  box-sizing: border-box;
  font-family: 'Unbounded', sans-serif;
  color: var(--text);
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.4;
  background: #F5F7FF;
  overflow-x: hidden;
  --text: #444953;
  --black: #202329;
  --white: #F5F7FF;
  --blue: #7C98BB;
  --dark-blue: #5B7BA4;
  --lightblue: #E7EAF4;
}
div, h1, h2, h3, h4, p, ul, ol, li, a, input, textarea, label, button, span{
  box-sizing: border-box;
}
.container{
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1024px){.container{padding-left: 50px; padding-right: 50px}}



a, a:hover{
  text-decoration: none;
  transition: 0.5s;
  cursor: pointer;
  color: var(--text);
}

a:hover{
  color: var(--blue);
}

h1, h2, h3, h4, p, ul, ol{
  margin: 0;
}

ul, ol{
  list-style: none;
  margin: 0;
  padding: 0;
}
ol{
  counter-reset: list;
}
img{
  max-width: 100%;
}

::-webkit-scrollbar {width: 6px;}
::-webkit-scrollbar-track {background: var(--lightblue);}
::-webkit-scrollbar-thumb {
    background-color: var(--blue);
    border-radius: 3px;
}
html, body, div, * {
    scrollbar-width: thin;
    scrollbar-color: var(--blue), var(--lightblue);
}

.mb120{margin-bottom: 120px;}
.mb70{margin-bottom: 70px;}
.mb60{margin-bottom: 60px;}
.mb45{margin-bottom: 45px;}
.mb30{margin-bottom: 30px;}
.mb25{margin-bottom: 25px;}
.mb20{margin-bottom: 20px;}
.mb15{margin-bottom: 15px;}

.ttl{
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.ttl.lg{  
  font-size: 80px;
  line-height: .9;  
}
.ttl.md{
  font-size: 28px;
  line-height: 1.2;
}
.ttl.sm{
  font-size: 20px;
  line-height: 1.2;
}
.subttl{
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--black);
}
.centered{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.flex{
  display: flex;
  flex-wrap: wrap;  
}
.flex.between{
  justify-content: space-between;
}
.flex.align-center{align-items: center;}

.btn{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 255px;
  height: 50px;
  background: var(--black);
  border-radius: 12px;  
  transition: 0.3s;
  font-weight: 400;
  font-size: 13px;
  color: var(--white);
}
.btn:hover{
  background: var(--blue);
  color: var(--white);  
}
.btn.white{
  background: var(--white);
  color: var(--black);
}
.btn.white:hover{
  background: var(--blue);
  color: var(--white);
}



/*=====================================*/



.header{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  transition: 0.5s;
  padding: 24px 0;      
}
.header.sticky{
  background: rgba(245,247,255,.97);
}

.burger-menu {
  display: none;
  width: 38px;
  height: 34px;
  padding: 5px;
  position: relative;
  z-index: 1200;
  margin: 12px 0 12px auto;
}
.burger-menu span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--black);
    position: absolute;
    left: 5px;
    opacity: 1;
    transition: all linear 0.3s;
}
.burger-menu span:first-child {
    top: 7px;
}
.burger-menu span:nth-child(2), .burger-menu span:nth-child(3) {
    top: 15px;
}
.burger-menu span:last-child {
    top: 23px;
}
.burger-menu.active span:first-child {
    top: 0;
    opacity: 0;
}
.burger-menu.active span:nth-child(2) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
.burger-menu.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
.burger-menu.active span:last-child {
    top: 40px;
    opacity: 0;
}
#toTop {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--black);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  position: fixed;
  left: 15px;
  bottom: 15px;
  z-index: 20;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
  color: var(--white);
}
#toTop.show {
  visibility: visible;
  opacity: 1;
}
#toTop:before{
  transform: rotate(-135deg);
}
#toTop:hover{
  background: var(--blue);
}
.body-wrapper{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}
.main{
  flex: 1;
}
.wrapper{
  position: relative;
}


/*=============================*/
.header .logo{
  width: 230px;
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;  
  margin: 0 auto;
}
.header.sticky .logo{
  width: 140px;
}
.header-menu{
  display: flex;
  flex: 1;  
}
.header-menu a{
  font-size: 12px;
  color: var(--text);
  text-transform: uppercase;
  margin-right: 40px;
}
.header-menu a:nth-child(3){
  margin-right: auto;
}
.header-menu a:hover{
  color: var(--blue);
}
.social{
  display: flex;
}
.social a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #B8C7D9;
  background: #fff;
  color: var(--blue);
}
.social a:hover{
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.header .social a{
  margin-left: 10px;
}

/*===============================*/

.main-intro{
  background: url(/images/intro-bg.jpg) no-repeat center / cover var(--lightblue);
}
.main-intro .wrapper{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  padding: 55px 0;
}
.main-intro .sliders{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 35%;
}
.main-ttl-slider{
  z-index: 1;
  margin-bottom: -25px;
}
.main-ttl-slider .swiper-wrapper{
  transition-timing-function: linear;
}
.main-ttl-slider .swiper-slide {
  display: flex;
  width: auto;  
  font-weight: 400;
  font-size: 200px;
  line-height: 1;
  white-space: nowrap;
  color: var(--white);
  text-transform: uppercase;
}
.main-ttl-slider .swiper-slide:after {
  content: '/';
  margin: 0 .5em;
}
.main-subttl-slider{
  position: relative;
  z-index: 3;
}
.main-subttl-slider .swiper-wrapper{
  transition-timing-function: linear;
}
.main-subttl-slider .swiper-slide {
  display: flex;
  align-items: center;
  width: auto;
  height: 40px;
  background: var(--black);
  font-weight: 300;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  color: var(--white);
  text-transform: uppercase;    
}
.main-subttl-slider .swiper-slide:after {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--white);
  margin: 0 30px;
}
.main-intro .ball{
  position: absolute;
  width: 15%;
  min-width: 240px;
  bottom: -20%;
  left: 0;
  right: 0;
  z-index: 2;
  animation: ball 1s cubic-bezier(.73,.15,.84,.56) .5s, rotate 8s linear infinite 1.5s;
  transform: translateY(-100%) scale(20%);
  animation-fill-mode: forwards;
  opacity: 0;
  margin: 0 auto;
}
.main-intro .shadow{
  position: absolute;
  width: 25%;
  min-width: 320px;
  bottom: -30%;
  left: 0;
  right: 0;
  z-index: 1;
  animation: shadow 1s cubic-bezier(.57,.06,1,.55) .5s;
  animation-fill-mode: forwards;
  transform: translateY(-100%) scale(20%);
  opacity: 0;
  margin: 0 auto;
}
@keyframes ball {
  from{transform: translateY(-100%) scale(20%) rotate(0); opacity: 0}
  to {transform: translateY(0) scale(1) rotate(360deg); opacity: 1}
}
@keyframes rotate {
  from{transform: rotate(360deg);}
  to {transform: rotate(720deg);}
}
@keyframes shadow {
  from{transform: translateY(-100%) scale(20%); opacity: 0}
  to {transform: translateY(0) scale(1); opacity: 1}
}
.main-intro .text-box{
  align-items: flex-end;
}
.main-intro .text{
  max-width: 450px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
}
.main-intro .btn{
  width: 180px;
}
.main-about{
  position: relative;
  border-top: 1px dotted var(--blue);
  padding: 140px 0 50px;
}
@media (min-width: 1024px){
  .main-about:before{
    content: '';
    width: 2px;
    height: 100%;
    background: url(/images/about-border.svg) top center repeat-y;
    position: absolute;
    top: 0;
    left: calc(50% - 1px);
  }
}

.main-about .text-box{
  display: flex;
  flex-direction: column;
  width: 46%;
}
.main-about .ttl-box{
  flex: 1;
}
.main-about .item{
  display: flex;
  flex-direction: column;
  width: 46%;
}
.main-about .item .text{
  flex: 1;
  font-weight: 300;
  letter-spacing: -0.28px;
}
.main-about .item .link{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50px;
  background: var(--lightblue);
  border-radius: 8px;
  font-size: 13px;
  padding: 0 20px;
}
.main-about .item .link:hover{
  background: var(--blue);
  color: var(--white);
}
.main-about .item .link:before{
  order: 2;
  font-size: 11px;
  transition: all linear .3s;
}
.main-about .item .link:hover:before{
  transform: rotate(-45deg);
}
.main-about .img-box{
  width: 47%;
}
.main-about .img-box img{
  width: 100%;
  border-radius: 12px;
}
.main-steps{
  background: var(--blue);
  overflow: hidden;
  padding: 40px 0;
}
.main-steps-list li{
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(25% - 5px);
  height: 120px;
  border-radius: 8px;
  border: 2px dashed rgba(245, 247, 255, 0.50);
  color: var(--white);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  padding: 10px;
}
.main-steps-list li:before{
  counter-increment: list;
  content: counter(list)'/';
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  font-size: 10px;
  line-height: 1;
  position: absolute;
  top: 12px;
  right: 12px;
}
.main-steps-list .ico{
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 25px;
}
.main-rent{
  padding: 110px 0 0;
}
.rent-item{
  display: flex;
  justify-content: space-between;
  border-radius: 8px;
  border: 2px dashed var(--blue);
  padding: 12px;
  margin-bottom: 20px;
}
.rent-item .img-box{
  display: flex;
  width: 46.5%;
}
.rent-item .img-box img{
  width: 100%;
  border-radius: 12px;
}
.rent-item .text-box{
  width: 53.5%;
  padding: 20px 5%;
}
.rent-item .size{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 255px;
  height: 40px;
  border-radius: 8px;
  background: rgba(124, 152, 187, 0.10);
  color: var(--dark-blue);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}
.rent-item .size:before{
  content: '';
  width: 23px;
  height: 23px;
  flex-shrink: 0;
  background: url(/images/char1.svg) no-repeat center;
  margin-right: 10px;
}
.rent-item .chars-list{
  width: 54.5%;
}
.rent-item .chars-list li{
  display: flex;
  align-items: center;
  color: var(--black);
  line-height: 1; 
  text-transform: uppercase;
  margin-bottom: 14px;
}
.rent-item .chars-list .ico{
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 8px;
}
.rent-item .chars-list .key{
  display: flex;
  align-items: flex-end;
  flex: 1;
}
.rent-item .chars-list .key:after{
  content: '';
  flex: 1;
  border-bottom: 1px dotted var(--blue);
  margin: 0 10px;
}
.rent-item .chars-list .val{
  color: var(--dark-blue);
}
.rent-item .prices{
  width: 255px;
}
.rent-item .prices .title{
  color: var(--black);
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.rent-item .price-list li{
  display: flex;
  align-items: center;
  color: var(--black);
  font-size: 12px;
  line-height: 1; 
  text-transform: uppercase;  
}
.rent-item .price-list li:not(:last-child){
  border-bottom: 2px dashed var(--blue);
  padding-bottom: 8px;
  margin-bottom: 4px;
}
.rent-item .price-list li:before{
  content: '';
  width: 4px;
  height: 4px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--blue);
  margin-right: 9px;
}
.rent-item .price-list .val{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 128px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid var(--blue, #7C98BB);
  font-weight: 500;
  color: var(--dark-blue);
  margin-left: auto;
}
.rent-item .caption{  
  width: 54.5%;
  border-radius: 8px;
  background: var(--lightblue);
  font-weight: 300;
  padding: 12px 20px;  
}
.rent-item .btn{
  width: 255px;
}
.main-partners{
  padding: 90px 0 85px;
}
.main-partners .wrapper{
  max-width: 1590px;
  justify-content: center;
}
.main-partners .wrapper a{
  display: flex;
  width: calc(20% - 5px);
  margin: 0 2.5px 5px;
}
@media (min-width: 1024px){
  .main-partners .wrapper img{
    filter: grayscale(100%);
    transition: .4s;
  }
  .main-partners .wrapper img:hover{
    filter: grayscale(0);
  }
}
.main-contacts{
  background: #D9DFEA;
}
.main-contacts .map{
  width: 50%;
  filter: grayscale(100%);
  transition: .5s;
}
.main-contacts .map:hover{
  filter: grayscale(0);
}
.main-contacts .contacts-box{
  width: 50%;  
  padding: 8% 50px 8% 5%; 
}
.main-contacts .links{
  max-width: 570px;
}
.main-contacts .links a{
  margin-bottom: 6px;
}
.main-contacts .tel{
  width: calc(50% - 3px);
}
.main-contacts .icon-telegram{
  width: 35%;
}
.main-contacts .icon-telegram:before{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--text);
  transition: inherit;
  margin-right: 10px;
}
.main-contacts .icon-telegram:hover:before{
  border-color: rgba(255, 255, 255, 0.5);
}
.main-contacts .address{
  width: calc(65% - 6px);
}
.footer{
  background: var(--text);
  padding: 40px 0;
}
.footer .copy{
  color: rgba(245, 247, 255, 0.80);
  font-size: 10px;
  line-height: 1; 
  text-transform: uppercase;
}
.footer-menu a{
  color: rgba(245, 247, 255, 0.80);
  font-size: 10px;
  line-height: 1; 
  text-transform: uppercase;
  margin: 0 27px;
}
.footer-menu a:hover{
  color: var(--blue);
}
.footer .social a{
  color: var(--white);
  border: 1px solid rgba(124, 152, 187, 0.50);
  background: rgba(255, 255, 255, 0.00);
  margin-left: 10px;
}
.footer .social a:hover{
  color: var(--blue);
}