@import url('https://fonts.googleapis.com/css?family=Hind:400,500');
@import url('https://cdnjs.cloudflare.com/ajax/libs/material-design-iconic-font/2.2.0/css/material-design-iconic-font.min.css');

body{
  margin: 0;
  font-family: 'Hind', sans-serif;
  color: #cec4c4;
  letter-spacing: 1px;
}
.logo{
  width: 300px;
  margin: auto;
}
@media screen and (min-width: 500px) {
  .logo{
    width: 270px;
  }
}
.fixed{
  padding: 25px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  margin: auto;
}
.wrapper{
    height: 100%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.center {
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 5 1 auto;
  -ms-flex: 5 1 auto;
  flex: 5 1 auto;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  }

.footer-wrapper {
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.footer{
  text-align: center;
}
.footer .contacts-info{
  margin-bottom: 20px;
}
.footer .contacts-info p{
  font-size: 20px;
  margin: 2px;
}
.footer .contacts-info p span{
  font-weight: 500;
}
.footer .social{
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .social li{
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
}
.footer .social a{
  font-family:"Material-Design-Iconic-Font";
  color: #cec4c4;
  text-decoration: none;
  padding: 10px;
  font-size: 22px;
}

.footer .social a:hover{
  color: black;
  font-family:
}

.footer .social .facebook::before{
  content: '\f343';
}

.footer .social .instagram::before{
  content: '\f34f';
}

.slideshow{
    position: relative;
    height: 100vh;
}
.slideshow .slideshow__slider {
    position: relative;
    height: 100vh;
    background-color: black;
}

.slideshow .slideshow__content{
    height: 100vh;
    width: 100%;
    display: table;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

    /* image */
.slideshow .slideshow__image{
    width: 100%;
    position: absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: top .8s;
    backface-visibility: hidden;
    opacity: .6;
}


.slideshow__arrows{
  height: 50px;
  width: 100%;
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
  z-index: 3;
}
.slideshow__arrows .slick-arrow{
  font-family:"Material-Design-Iconic-Font";
  font-size: 30px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #cec4c4;
  background-color: transparent;
  border: none;
}
.slideshow__arrows .prev{
  margin-left: 15px;
  float:left;
}
.slideshow__arrows .prev::before{
  content:'\f2ff';
}
.slideshow__arrows .next{
  margin-right: 15px;
  float: right;
}
.slideshow__arrows .next::before{
  content: '\f301';
}
.slideshow__arrows .slick-arrow:hover{
    color: black;
  }
