@import url('../fonts/gotham/stylesheet.css');

body{
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background-color: #0C0C0C;
}

.phone{
  font-family: 'Gotham Pro';
  font-weight: 500;
  font-size: 30px;
}

.section{
  padding-top: 150px;
  padding-left: 200px;
}

.section__container{
  width: 100%;
  max-width: 90%;
}

.section__title{
  margin: 0;
  max-width: 50%;
  font-family: 'Gotham Pro';
  font-size: 64px;
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
}

.section__subtitle{
  margin-top: 30px;
  font-family: 'Gotham Pro';
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.slider{
  padding-top: 30px;
}

.slider__container{
  width: 450px;
  height: 600px;
}

.slider__image{
  width: 100%;
  object-fit: cover;
}

.glide__bullets{
  display: none;
}

.main{
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
}

.main__video{
  object-fit: cover;
  position: absolute;
  z-index: -1;
  width: 100%;
}

.main__image{
  display: none;
}

.main__content{
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.main__title{
  font-family: Antonio;
  font-size: 144px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 35px;
}

.main__subtitle{
  font-family: 'Gotham Pro';
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
}

.main__intro{
  font-family: 'Gotham Pro';
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
}

.main__location{
  display: flex;
  color: #fff;
  margin-bottom: 40px;
  font-family: 'Gotham Pro';
  font-weight: 500;
  font-size: 14px;
  align-items: center;
}

.main__location i{
  font-size: 18px;
  line-height: 0px;
  margin-right: 5px;
}

.main__metro{
  margin-right: 30px;
}

.main__button{
  width: 180px;
  height: 50px;
  font-family: 'Gotham Pro';
  font-weight: 500;
  cursor: pointer;
  background-color: #fff;
  border: none;
  transition: all .2s;
}

.main__button:hover{
  background-color: #0e0e0e;
  color: #fff;
}

.discounts__row{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 70px;
}

#discount-first{
  background-image: url('../images/discounts__first.jpg');
}

#discount-boroda{
  background-image: url('../images/discounts__boroda.jpg');
}

#discount-dad{
  background-image: url('../images/discounts__dad.jpg');
}

#discount-black{
  background-image: url('../images/discounts__black.jpg');
}

.discounts__discount{
  max-width: 320px;
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.discounts__wrapper{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all .3s;
}

/*

.discounts__wrapper:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

*/

.discounts__title{
  margin-top: 0;
  font-family: 'Gotham Pro';
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

.discounts__new-price{
  margin-bottom: 10px;
  font-family: 'Antonio';
  font-size: 96px;
  line-height: 1;
  color: #fff;
}

.discounts__new-price span{
  font-size: 60px;
}

.discounts__old-price{
  margin-bottom: 50px;
  font-family: 'Antonio';
  font-size: 48px;
  line-height: 1;
  color: #8B8B8B;
  text-decoration: line-through;
}

.discounts__button{
  width: 180px;
  height: 50px;
  font-family: 'Gotham Pro';
  font-weight: 500;
  cursor: pointer;
  background-color: transparent;
  border: 1px #fff solid;
  color: #fff;
  transition: all .3s;
}

.discounts__button:hover{
  background-color: #fff;
  color: #000;
  cursor: pointer;
}

.services__list{
  padding: 0;
}

.services__list a{
  text-decoration: none;
}

.services__bloc{
  padding-top: 40px;
}

.services__bloc-name{
  font-family: 'Gotham Pro';
  font-weight: 500;
  color: #7e7e7e;
}

.services__service{
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: space-between;
  padding: 0 5px 0 5px;
  width: 100%;
  max-height: 160px;
  height: 100%;
  border-top: 1px #252525 solid;
  overflow: hidden;
}

.services__service:after{
  position: absolute;
  left: 0;
  content: " ";
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  transform: translate(0, 100%);
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) all .3s;
}

.services__service:hover .services__title{
  color: #000;
}

.services__service:hover .services__price{
  color: #000;
}

.services__service:hover .services__button{
  color: #000;
  border-bottom: 1px #000 solid;
}

.services__service:hover::after{
  transform: translate(0, 0%);
}

.services__button-box{
  display: flex;
  justify-content: flex-end;
}

.services__title{
  font-size: 30px;
  font-family: 'Gotham Pro';
  font-weight: 500;
  color: #fff;
}

.services__price{
  font-family: 'Antonio';
  font-size: 36px;
  color: #fff;
  text-align: center;
}

.services__price span{
  font-size: 30px;
}

.services__button{
  width: 130px;
  padding: 0;
  padding-bottom: 8px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Gotham Pro';
  color: #fff;
  background-color: transparent;
  border: none;
  border-bottom: 1px #fff solid;
  text-transform: uppercase;
  cursor: pointer;
}

.services__button span{
  font-size: 16px;
  line-height: 10px;
  margin-left: 10px;
}

.barbers{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 90px;
}

.barbers__image-box{
  display: flex;
  height: 100%;
  max-height: 480px;
}

.barbers__image{
  width: 100%;
  object-fit: cover;
}

.barbers__name{
  font-family: 'Gotham Pro';
  color: #fff;
}

.barbers__desc{
  font-family: 'Gotham Pro';
  color: #fff;
  font-weight: 300;
  font-size: 14px;
}

.about{
  margin: 0;
  margin-bottom: 100px;
  padding-top: 50px;
  font-family: 'Gotham Pro';
  font-size: 64px;
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
}

.wide-image{
  display: flex;
  width: 100%;
  max-height: 670px;
  height: 100%;
  overflow: hidden;
}

.wide-image img{
  width: 110%;
  object-fit: cover;
  margin-top: -5%;
  margin-left: -10%;
}

.about-2{
  margin: 0;
  margin-top: -50px;
  font-family: 'Gotham Pro';
  font-size: 42px;
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
}

.barberhub_left{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 145px;
}

.barberhub_right{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 145px;
}

.barberhub__header{
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.barberhub__title{
  margin: 0;
  margin-bottom: 30px;
  font-family: 'Gotham Pro';
  font-size: 42px;
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
}

.barberhub__text{
  margin: 0;
  font-size: 18px;
  font-weight: 300;
  font-family: 'Gotham Pro';
  line-height: 1.2;
  color: #fff;
}

.barberhub__image-box{
  width: 100%;
  display: flex;
}

.barberhub__image-box_low{
  height: 600px;
}

.barberhub__image-box_high{
  height: 700px;
}

.barberhub__image{
  width: 100%;
  object-fit: cover;
}

.barberhub__link{
  font-family: 'Gotham Pro';
  font-weight: 500;
  text-transform: uppercase;
  font-size: 24px;
  color: #C18653;
}

.contacts{
  padding-top: 100px;
  margin-bottom: 120px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 80px;

  color: #fff;
}

.contacts__title{
  font-family: 'Gotham Pro';
  font-weight: 300;
}

.contacts__content{
  margin-bottom: 10px;
  font-family: 'Gotham Pro';
  font-weight: 500;
  font-size: 30px;
}

.contacts__social{
  padding: 0%;
  list-style: none;
}

.contacts__social li{
  margin-bottom: 10px;
}

.contacts__social a{
  color: #fff;
  text-decoration: none;
  font-family: 'Gotham Pro';
  font-weight: 300;
}

#footer hr{
  border: 1px #272727 solid;
}

.copyright{
  padding-top: 50px;
  padding-bottom: 50px;
  font-size: 14px;
  font-family: 'Gotham Pro';
  font-weight: 500;
  color: #fff;
}

@media screen and (max-width: 480px) {
  .section{
    padding-left: 15px;
    padding-right: 15px;
  }

  .section__container{
    max-width: 100%;
  }

  .section__title{
    max-width: 100%;
    font-size: 42px;
  }

  .main__video{
    display: none;
  }

  .main__image{
    position: absolute;
    display: flex;
    object-fit: cover;
    z-index: -1;
  }

  .main__content{
    background-color: rgba(0, 0, 0, .6);
  }

  .main__title{
    font-size: 80px;
  }

  .main__subtitle{
    font-size: 28px;
  }

  .main__intro{
    max-width: 80%;
    line-height: 1.4;
  }

  .discounts__row{
    grid-template-columns: 1fr;
    grid-row-gap: 100px;
  }

  .discounts__discount{
    max-width: 100%;
    height: 440px;
  }

  .discounts__new-price{
    font-size: 72px;
  }

  .slider__container{
    width: 100%;
    height: 500px;
  }

  .glide__arrows{
    display: none;
  }

  .glide__bullets{
    display: inline-flex;
    bottom: -2em;
  }

  .glide__bullet{
    margin: 0 .5em;
  }

  .services__title{
    font-size: 25px;
    grid-area: title;
  }

  .services__price{
    grid-area: price;
    text-align: left;
    margin-top: 0px;
    font-size: 45px;
  }

  .services__button-box{
    width: 100%;
    grid-area: button;
  }

  .services__service{
    max-height: 100%;
    height: 100%;
    grid-template-areas: 
    'title title button'
    'price price button';
  }

  .barbers{
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
  }

  .about{
    padding-top: 0;
    font-size: 38px;
    line-height: 1.2;
  }

  .about-2{
    font-size: 30px;
    line-height: 1.2;
  }

  .barberhub{
    margin-bottom: 100px;
  }

  .barberhub_left{
    display: flex;
    flex-direction: column-reverse;
  }

  .barberhub_right{
    grid-template-columns: 1fr;
  }

  .barberhub__image-box{
    margin-bottom: 30px;
  }

  .barberhub__image-box_high{
    height: 600px;
  }

  .barberhub__image-box_low{
    height: 500px;
  }

  .barberhub__title{
    font-size: 30px;
  }

  .contacts{
    grid-template-columns: 1fr;
    grid-row-gap: 30px;
    margin-bottom: 50px;
    padding-top: 50px;
  }

  .contacts__content{
    font-size: 23px;
  }

  .copyright{
    padding-top: 25px;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 375px){
  .slider__container {
    height: 450px;
}

  .glide__bullets{
    bottom: -2em;
  }
}

@media screen and (max-width: 320px){
  .main__title{
    font-size: 72px;
  }

  .about{
    font-size: 32px;
  }
}