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

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  font-weight: normal;
}

body{
  font-family: 'Gilroy', sans-serif;
  background-color: #161616;
}

.whatsapp {
	display: block;
  position: fixed;
  bottom: 50px;
  right: 30px;
  width: 65px;
  z-index: 2;
  color: #25d366;
}

.container{
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container{
    width: 768px;
  }
}
@media (min-width: 1200px) {
  .container{
    width: 1200px;
  }
}

.header{
  position: relative;
}

.header::before {
  content: "";
  display: block;
  width: 80px;
  height: 40px;
  background-image: url(images/flag.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  position: absolute;
  right: 10px;
  top: 10px;
}

@media(min-width: 768px) {
  .header::before {
    width: 160px;
    height: 100px;  
  }
}

@media(min-width: 1200px) {
  .header::before {
    width: 240px;
    height: 160px;
  }
}

.header__bg{
  width: 100%;
}

.header__container{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 100%;
}
.header__logo{
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}
.header__logo-icon{
  width: 200px;
}
.header__logo-text{
  color: #F3ECE2;
  margin-bottom: 20px;
  opacity: 0.6;
}
.header__logo-link{
  display: block;
  width: 100%;
  padding: 15px 0;
  border: 2px solid #F16E9F;
  border-radius: 30px;
  color: #ffffff;
  font-size: 18px;
  font-weight: bolder;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition:  0.3s;
}
.header__logo-link:hover{
	border: 2px solid transparent;
	background-color: #F16E9F;
}
.header__info{
  width: 100%;
}
.header__info-menu{
  display: none;
}
.header__info-tile{
  text-align: center;
  font-size: 25px;
  color: #F16E9F;
  margin-bottom: 20px;
}
.header__info-tel{
  margin-right: 15px;
  color: #ffffff;
  cursor: pointer;
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__info-contacts{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__info-tel:hover{
    color: #F16E9F;
}
@media (min-width: 768px) {
  .header__container{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    top: 50%;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .header__logo{
    width: auto;
    padding-right: 35px;
    text-align: left;
    border-right: 1px solid #D8D8D8;
  }
  .header__logo-icon{
      width: 250px;
  }
  .header__logo-text{
    margin-bottom: 40px;
  }
  .header__logo-link{
    display: inline-block;
    width: auto;
    padding-left: 55px;
    padding-right: 55px;
  }
  .header__info{
    padding-left: 30px;
  }
  .header__info-menu{
    display: block;
  }
  .header__info-menu{
    margin-bottom: 10px;
  }
  .header__menu-link{
    color: #F3ECE2;
    margin-right: 10px;
  }
  .header__menu-link:hover{
    color: #F16E9F;
  }
  .header__menu-link:last-child{
    margin-right: 0;
  }
  .header__info-tile{
    text-align: left;
    font-size: 35px;
  }
  .header__info-contacts{
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media (min-width: 1200px) {
  .header__container{
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .header__logo{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .header__logo-text{
    margin-bottom: 40px;
  }
  .header__info{
    width: 50%;
  }
  .header__info-tile{
    font-size: 46px;
  }
  .header__info-tel{
    font-size: 26px;
  }
}

/*social*/
.social__list{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.social__item{
  list-style: none;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.social__item:last-child{
  margin-right: 0;
}
.social__item:hover{
  opacity: 1;
}
.social__icon{
  position: relative;
}
.social__icon:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center;
}
.social__icon--wh:before{
  background-image: url('./images/wh.svg');
}
.social__icon--viber:before{
  background-image: url('./images/viber.svg');
}
.social__link{
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  z-index: 2;
}

/* girl */
.girl{
  padding: 45px 0;
}
.girl__square{
  position: relative;
  margin-bottom: 40px;
}
.girl__square-params{
  padding-left: 30px;
}
.girl__params{
  display: block;
  width: 100%;
  position: absolute;
  top: 30px;
  left: 0;
}
.girl__params-title{
  margin-bottom: 7px;
  font-size: 30px;
  color: #F16E9F;
  font-weight: bolder;
}
.girl__params-item{
  list-style: none;
  color: #ffffff;
}
.girl__square-img{
  width: 100%;
  border-radius: 8%;
}
.girl__round{
  position: relative;
}
.girl__round-params{
  top: 40%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-left: 25px;
}
.girl__params-item--text-black{
    color: #000000;
}
@media (min-width: 768px) {
  .girl__container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .girl__item{
	  transition: 0.3s;
  }
  .girl__item:hover{
	  transform: scale(1.1)
  }
  .girl__square{
    width: 50%;
    margin-left: 30px;
    margin-right: 30px;
  }
  .girl__square-params{
    padding-left: 20px;
  }
  .girl__round{
    width: 50%;
    margin-left: 30px;
    margin-right: 30px;
  }
}

/* programs */
.programs{
    padding-top: 50px;
    padding-bottom: 20px;
}
.programs__title{
  font-size: 45px;
  color: #ffffff;
  text-align: center;
  font-weight: bolder;
  margin-bottom: 30px;
}
.programs__content{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.programs__list{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 20px;
}
.programs__item{
  background-color: #F16E9F;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  list-style: none;
}
.programs__item:last-child{
  margin-bottom: 0;
}
.programs__thumbnail{
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.programs__thumbnail-link{
  display: block;
  padding-top: 50%;
}
.programs__item-content{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px;
}
.programs__time{
  font-size: 48px;
  color: #ffffff;
}
.programs__price{
  font-size: 31px;
  color: #ffffff;
  font-weight: bolder;
  margin-bottom: 25px;
}
.programs__services{
  margin-bottom: 20px;
}
.programs__service{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
  list-style: none;
  margin-bottom: 10px;
}
.programs__service:last-child{
  margin-bottom: 0;
}
.programs__service:before{
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-radius: 50%;
  background-color: #ffffff;
}
.programs__sign-up{
  display: block;
  padding: 15px;
  background-color: #ffffff;
  border: 2px solid transparent;
  border-radius: 30px;
  text-align: center;
  font-size: 20px;
  font-weight: bolder;
  text-transform: uppercase;
  color: #F16E9F;
  transition: 0.3s
}
.programs__sign-up:hover{
	border: 2px solid #ffffff;
	background-color: transparent;
	color: #ffffff;
}
.programs__info{
  margin-bottom: 30px;
  text-align: center;
}
.programs__info-label{
  color: #ffffff;
  font-size: 30px;
  margin-bottom: 10px;
}
.programs__info-label--pink{
  color: #F16E9F;
}
.programs__phone{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  background-color: #ffffff;
  border-radius: 25px;
  color: #000000;
  font-size: 18px;
}
.programs__phone-icon{
  display: inline-block;
  position: relative;
  width: 30px;
  height: 30px;
  margin-right: 15px;
  border-radius: 50%;
  background-color: yellow;
}
.programs__phone-icon:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: center;
  background-image: url('./images/phone-solid.svg');
}
.programs__plus-service{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 25px;
  color: #ffffff;
  font-weight: bolder;
  font-size: 18px;
}
.programs__plus-service-img{
  width: 65px;
  margin-right: 15px;
}
@media (min-width: 768px) {
  .programs__list{
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 0;
    margin-right: -10px;
    margin-left: -10px;
  }
  .programs__item{
    width: 50%;
    margin-right: 10px;
    margin-left: 10px;
  }
  .programs__phone{
    padding-left: 30px;
    padding-right: 30px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: auto;
  }
}
@media (min-width: 1200px) {
  .programs__content{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .programs__title{
    font-size: 167px;
    text-align: left;
    margin-bottom: 40px;
  }
  .programs__item{
    border-radius: 25px;
  }
  .programs__list{
    width: 60%;
  }
  .programs__item-content{
    padding: 40px;
  }
  .programs__service{
    font-size: 21px;
  }
  .programs__info{
    width: 40%;
    padding-left: 120px;
  }
  .programs__info-label{
    font-size: 66px;
    text-align: left;
  }
  .programs__phone{
    width: 100%;
    padding: 24px 0;
    font-size: 26px;
    border-radius: 80px;
  }
  .programs__plus-service{
    font-size: 21px;
  }
  .programs__plus-service-img{
    width: 88px;
  }
  .programs__sign-up{
    padding: 24px;
    font-size: 24px;
    border-radius: 80px;
  }
}

/* footer */
.footer{
  padding: 45px 0;
}
.footer__map{
  width: 100%;
  margin-bottom: 30px;
}
.footer__contacts{
  text-align: center;
}
.footer__contacts-title{
  font-size: 45px;
  color: #F16E9F;
  font-weight: bolder;
  margin-bottom: 15px;
}
.footer__contacts-adress{
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 15px;
}
.footer__contacts-label{
  font-size: 28px;
  color: #F16E9F;
  margin-bottom: 25px;
}
.footer__contact{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.footer__contact-tel{
  font-size: 20px;
  margin-right: 15px;
  color: #ffffff;
}
.footer__contact-tel:hover{
	color: #F16E9F
}
.footer__social-link{
	border-color: #F16E9F;
}
@media (min-width: 768px) {
  .footer__container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .footer__map{
    width: 50%;
    transition: 0.3s;
  }
  .footer__map:hover{
	  transform: scale(1.1)
  }
  .footer__contacts{
    width: 50%;
    padding-left: 60px;
    text-align: left;
  }
  .footer__contact{
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media (min-width: 1200px) {
  .footer__container{
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer__map{
    width: 50%;
    margin-bottom: 0;
  }
  .footer__contacts-title{
    font-size: 69px;
    margin-bottom: 25px;
  }
  .footer__contacts-adress{
    width: 60%;
    font-size: 18px;
    opacity: 0.6;
    margin-bottom: 69px;
  }
  .footer__contacts-label{
    font-size: 46px;
    margin-bottom: 22px;
  }
  .footer__contact-tel{
    font-size: 26px;
      
  }
}
