.background{
  width: 100%;
  height: 500px;
}
.background video{
  position: fixed;
  z-index: -1;
}
@media only screen and (min-width: 720px){
  .background video{
    width: 100vw;
  }
}
@media only screen and (max-width: 720px){
  .background video{
    height: 100vh;
    left: -145%;
  }
}
.slider{
  width: 100%;
  margin: 20px 0 20px;
}
.slick-slide {
  opacity: .4;
  margin: 0px 5px 0 5px;
}
.slick-active{
  opacity: 1;
}
.slick-current{
  opacity: 1;
}
.slick-slide img {
  width: 100%;
}
.slick-dots li button:before{
  font-size: 20px;
}
.footer{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 100px;
  color: #fff;
}
.statement, .contacts{
  width: 50%;
  padding: 20px;
}
.statement img{
  float: left;
  width: 150px;
  margin-right: 15px;
}
.contacts{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.contacts h3, .contacts h4, .contacts span, .contacts div{
  margin: 0 0 .5rem;
}
.contacts h3{
  font-weight: 600;
}
.contacts h4{
  font-weight: 500;
}
.contacts .links{
  display: flex;
}
.contacts .links *{
  margin: 0;
}
.contacts .links a{
  margin-right: 10px;
}
.contacts .links a svg{
  width: 30px;
  transition: all .5s;
}
.contacts .links a svg:hover{
  fill: #0895f3;
  scale: .9;
}

@media only screen and (min-width: 1080px){
  .background{
    height: calc(100vh / 3);
  }
}
@media only screen and (max-width: 1080px){
  .background{
    height: calc(100vh / 4);
  }
}
@media only screen and (max-width: 720px){
  .statement, .contacts{
    width: 100%;
  }
}