/*обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}


*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


:focus,
:active {
  outline: none;
}
a:focus,
a:active {
  outline: none;
}


nav,
footer,
header,
aside {
  display: block;
}


html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}


input,
button,
textarea {
  font-family: inherit;
}


input::-ms-clear {
  display: none;
}
button {
  cursor: pointer;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
a,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
ul li {
  list-style: none;
}
img {
  vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

/*fonts*/

@font-face {
  font-family: 'AvantGardeCE-Book';
  src: url('../fonts/agagcb__.eot');
  src: local('☺'), url('../fonts/agagcb__.woff') format('woff'), url('../fonts/agagcb__.ttf') format('truetype'), url('../fonts/agagcb__.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'BellMTBold';
  src: url('../fonts/BELLB.eot');
  src: local('☺'), url('../fonts/BELLB.woff') format('woff'), url('../fonts/BELLB.ttf') format('truetype'), url('../fonts/BELLB.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'ITCAvantGardeStd';
  src: url('../fonts/ITCAvantGardeStd-Bold.eot');
  src: local('☺'), url('../fonts/ITCAvantGardeStd-Bold.woff') format('woff'), url('../fonts/ITCAvantGardeStd-Bold.ttf') format('truetype'), url('../fonts/ITCAvantGardeStd-Bold.svg') format('svg');
  font-weight: bold;
  font-style: bold;
}

@font-face {
  font-family: 'Times New Roman';
  src: url('../fonts/times.eot');
  src: local('☺'), url('../fonts/times.woff') format('woff'), url('../fonts/times.ttf') format('truetype'), url('../fonts/times.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

/*body*/
 body {
  color: #494949;
  font-family: "Avant Garde CE - Book",sans-serif;
  font-size: 15px;
 }

 /*container*/

 .container {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1145px;
  width: 100%;
 }

 header {
  background-color: #4d5673;
 }

 .header__background {
  position: relative;
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100vh;
 }

 .header__menu {
  display: flex;
  justify-content: center;
  width: 100%;
  position: fixed;
  z-index: 7;
  top: 0;
  left: 0;
  background-color: #15263e;
  white-space: nowrap;  
  padding: 1% 0%;

 }


 .header__link {
  position: relative;
  color: #ffffff;
  font-size: 16px;
  text-align: left;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2.7px;
  transition: all 0.6s ease;

 }

 .header__link:after {
  content: " ";
  width: 10px;
  height: 2px;
  background-color: #fff;
  display: inline-block;
  margin:0px 20px 2px;

 }

 .header__link:hover {
  color: #ff0072;
 }

 .header__link--after:after {
  content: "";
  opacity: 0;
  visibility: hidden;
 }

 .header__content {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 1;
 }

 .header__content-hello {
  color: #ffffff;
  font-size: 37px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
 }

 .header__content-img {
  max-width: 100%;
 }

 .header__content-surname {
  color: #ffffff;
  font-size: 79px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 25.92px;
 }

 .header__content-about {
  color: #ffffff;
  font-size: 25px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
 }

 .header__button {
  text-align: center;
  margin: 10% 0%;
  transition: all 0.5s ease;
 }

 .header__button:hover {
  transform: scale(0.9);
 }

.header__button-link {
  color: #ffffff;
  font-size: 18px;
  padding: 15px 30px;
  text-transform: uppercase;
  letter-spacing: 1.35px;
  text-align: center;
  background-color: #ffffff;
  background-image: linear-gradient(41deg, #a21af0 0%, #ff0072 100%);
  
}


 /*popup*/

 .popup {
  position: fixed;
  z-index: 3;
  width: 100%;
  height: 100%;
  background-color: rgb(0,0,0, 0.6);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.8s ease 0s;
}

.popup__area {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.popup:target {
  opacity: 1;
  visibility: visible;
}

.popup:target .popup__content {
  transform: translate(0px, 0px);
  opacity: 1;
}

.popup__body {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 10px;
}

.popup__content {
  position: relative;
  background-color:  #15263e;
  color: #000;
  max-width: 800px;
  padding: 60px;
  transform: translate(0%, -100%);
  opacity: 0;
  transition: all 0.8s ease 0s;
}

.popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  color: #fff;
}

.popup__title {
  color: #fff;
  font-size: 40px;
  text-align: center;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding-bottom: 5%;
}

.popup__form-flex {
  display: flex;
}

.popup__input {
  max-width: 200px;
  height: 40px;
  width: 100%;
  border-radius: 20px;
  border: 1px solid #dcdcde;
  padding-left: 3%;
  margin-right: 5%;
}

.popup__btn {
  color: #fff;
  max-width: 200px;
  height: 40px;
  width: 100%;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1.35px;
  text-align: center;
  background-color: #ffffff;
  background-image: linear-gradient(41deg, #a21af0 0%, #ff0072 100%);
}

.popup__radio {
  margin-top: 5%;
  text-align: center;
  color: #fff;
}

.popup__radio [type="checkbox"] {
  color: red;
}

/*about*/

.about {
  display: flex;
  justify-content: space-between;
  
}

.about__item {
  width: 33.333%;
  position: relative;
}

.about__item-name {
  color: #15263e;
  font-size: 26px;
  font-weight: 700;
  line-height: 43px;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 2.7px;
  padding-top: 125px;
}

.about__item-profesion {
  color: #a21af0;
  line-height: 43px;
  text-align: right;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: 18px;
}

.about__item-text {
  line-height: 30px;
  text-align: right;
  letter-spacing: 1.13px;
  padding-bottom: 25px;
}

.about__item-img {
  max-width: 100%;
  position: absolute;
  bottom: 0;
}

.about__skills {
  padding-top: 140px;
}

.about__item-skills {
  padding-bottom: 30px;
}

.about__skills-name {
  color: #4d4d4d;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.35px;
  padding-bottom: 15px;
}

.about__skills-img {
  max-width: 100%;
}

/*adress*/

.section__adress {
  background-color: #dcdcde;
}

.adress {
  padding: 75px 0px;
  display: flex;
  justify-content: space-between;
}

.adress__item {
  width: 33.333%;
  display: flex;
}

.adress__item-icon {
  width: 87px;
  height: 87px;
  background-color: #374362; 
  border-radius: 50%;
  position: relative;
  margin-right: 30px;
}

.adress__item-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;

}

.adress__item-title {
  color: #4d4d4d;
  font-size: 18px;
  line-height: 24px;
  text-align: left;
  font-weight: 600;
  letter-spacing: 1.35px;
  text-transform: uppercase;
  padding-bottom: 26px;
}

.adress__item-tel {
  color: #4d4d4d;
  font-size: 18px;
  line-height: 24px;
  text-align: left;
  font-weight: 300;
}

/*services*/

.services {
  padding-top: 84px;
}

.services__title {
  color: #15263e;
  font-size: 36px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2.7px;
}

.services__subtitle {
  font-size: 18px;
  color: #4d4d4d;
  text-align: center;
  letter-spacing: 1.35px;
  padding: 30px 0px 55px;
}

.services__row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 74px;
}

.services__item {
  width: 30%;
  position: relative;

}

.services__item-icon {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 114px;
  height: 114px;
  background-color: #ffffff;
  background-image: linear-gradient(41deg, #a21af0 0%, #ff0072 100%); 
  border-radius: 50%;

}

.services__item-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
}

.services__item-name {
  color: #4d4d4d;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.88px;
  font-weight: 700;
  padding: 25px;
}

.services__item-text {
  line-height: 30px;
  text-align: center;
  letter-spacing: 1.13px;
}

/*reviews*/

.section__reviews {
  background: url('../images/Layer_4.png')
  no-repeat center;
  background-size: cover;
  background-color: #000000;
}

.reviews__title {
  color: #ffffff;
  font-size: 36px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 3.75px;
  padding-top: 120px;
}

.reviews__items {
  display: flex;
  justify-content: space-between;
  padding: 50px 40px 150px;
}

.reviews__text {
  position: relative;
  color: #ffffff;
  line-height: 30px;
  text-align: right;
  letter-spacing: 1.13px;
}

.reviews__text:before {
  content: url('../images/up.png');
  position: absolute;
  top: -10%;
  left: -10%;
  transform: translate(10%, 10%);
  max-width: 100%;


}

.reviews__text:after {
  content: url('../images/down.png');
  position: absolute;
  bottom: -10%;
  right: -10%;
  transform: translate(10%, 10%);
  max-width: 100%;


}

.reviews__item-one {
  width: 50%;
  margin-right: 5%;
}

.reviews__item-two {
  width: 40%;
  display: flex;
  justify-content: flex-start;
}

.reviews__item-img {
  max-width: 100%;
  border: 10px solid #ffffff;
  border-radius: 50%;
}

.reviews__item-text {
  padding-left: 6%;
}

.reviews__item-name {
  color: #ffffff;
  font-size: 30px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1.88px;
  padding-top: 40px;
  
}

.reviews__item-profesion {
  color: #c714d5;
  letter-spacing: 1.13px;
  padding-top: 18px;
}

/*portfolio*/

.portfolio {
  padding: 80px 0px;
  position: relative;
}

.portfolio__title {
  color: #15263e;
  font-size: 36px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 3.75px;
}

.portfolio__subtitle {
  font-size: 18px;
  color: #4d4d4d;
  text-align: center;
  letter-spacing: 1.35px;
  padding: 30px 0px;
}

.slick-track {
  display: flex;
}

.slick-list {
  overflow: hidden;
}

.portfolio__slider {
  position: relative;
  margin-top: 10%;

}

.portfolio__slider .portfolio__slider-item img {
 width: 95%;
}

.portfolio__slider-item {
  text-align: center;
  padding-bottom: 5%;
}


.portfolio__next {
  margin-top: 2%;
  position: absolute;
  top: 20%;  
  z-index: 10;
  right:37%; 
  background-color: #ff0072;
  width: 120px;
  height: 30px;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  cursor: pointer; 
  opacity: 0.4;
  transition: all 0.4s ease;
}

.portfolio__next:hover {
  transform: scale(0.9);
}

.portfolio__prev:hover {
  transform: scale(0.9);
}

.portfolio__prev {
  margin-top: 2%;
  position: absolute;
  top: 20%;  
  z-index: 10;
  left:37%; 
  background-color: #ff0072;
  width: 120px;
  height: 30px;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex; 
  cursor: pointer;
  opacity: 0.4;
  transition: all 0.4s ease;
}

.portfolio__next.slick-arrow.slick-disabled {
  opacity: 1;
}

.portfolio__prev.slick-arrow.slick-disabled {
  opacity: 1;
}

/*experiense*/

.section__experiense {
  background-color: #e7e7e7;
  background-image: linear-gradient(41deg, #a21af0 0%, #ff0072 100%);
}

.experiense {
  padding: 100px 0px 10px;
}

.experiense__title {
  text-align: center;
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
}

.experiense__subtitle {
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  letter-spacing: 1.35px;
  padding: 27px 0px 88px;
}

.experiense__row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 87px;
}

.experiense__item-text {
  width: 70%;
}

.experiense__item {
  width: 25%;
  border-right: 14px solid #dcdcde;
 
}

.experiense__item--left {
  border-left: 14px solid #dcdcde;
  border-right: 0px;
  padding-left: 2%;
}


.experionse__name {
  color: #ffffff;
  font-size: 20px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1.88px;
  padding-bottom: 15px;
  white-space: nowrap;
}

.experiense__date {
  color: #ffffff;
  font-size: 18px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1.68px;
  white-space: nowrap;
}

.experiense__text {
  color: #ffffff;
  line-height: 30px;
  text-align: left;
  letter-spacing: 1.13px;
}

.xperiense__text--right {
  text-align: right;

}

/*blog*/

.blog {
  padding: 95px 0px 75px;
}

.blog__title {
  color: #15263e;
  font-size: 36px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 3.75px;

}

.blog__subtitle {
  color: #4d4d4d;
  font-size: 18px;
  text-align: center;
  letter-spacing: 1.35px;
  padding: 28px 0px 70px;
}

.blog__row {
  display: flex;
  justify-content: space-between;
}

.blog__item {
  width: 28%;
}

.blog__item-img {
  width: 100%;
}

.blog__suptitle {
  color: #929292;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1.13px;
  padding: 40px 0px 20px;
}

.blog__item-title {
  color: #15263e;
  font-size: 20px;
  text-align: left;
  letter-spacing: 1.5px;
  font-weight: 700;
  padding-bottom: 25px;
}

.blog__item-text {
  line-height: 30px;
  text-align: left;
  letter-spacing: 1.13px;
}

/*contacts*/

.contacts {
  position: relative;
}

.contacts__background {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 776px;
  opacity: 0.8;
  background-color: #e7e7e7;
}

.contacts__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #15263e;
  padding: 65px 95px; 
}

.contacts__title {
  color: #ffffff;
  font-size: 36px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2.7px;
}

.contacts__subtitle {
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  letter-spacing: 1.35px;
  padding: 40px 0px 55px;
}

.contacts__form {
  width: 970px;
  width: 100%;
  
}

input:focus {
  box-shadow: -3px -3px 5px #fff;
}

textarea:focus {
  box-shadow: -3px -3px 5px #fff;
}

.input__flex {
  display: flex;
  justify-content: space-between;
}

.contacts__input-name,
.contacts__input-tel,
.contacts__input-email {
  width: 30%;
  margin-bottom: 5%;
  padding: 20px 25px;
  color: #777777;
  font-size: 18px;
  letter-spacing: 1.35px;
}

.contacts__area {
  width: 100%;
  height: 110px;
  padding: 15px 20px;
  color: #727272;
  font-size: 18px;
  letter-spacing: 1.35px;
}

.contacts__button {
  text-align: center;
  padding-top: 30px;
}

.contacts__btn {
  background-color: #ffffff;
  background-image: linear-gradient(41deg, #a21af0 0%, #ff0072 100%);
  padding: 15px 25px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.35px;
  color: #ffffff;
}



/*footer*/

.footer__text {
  text-align: center;
  padding: 60px 0px;
  letter-spacing: 1.13px;

}

/*медиа запросі*/

@media (max-width: 1230px) {

/*header*/

.header__link {
    font-size: 14px;
}

.header__link:after {
    margin: 0px 10px 2px;
}

.header__menu {
  height: 70px;
  padding: 2% 0%;
}

.header__content-surname {
  font-size: 69px;
}

.header__content-about {
  font-size: 20px;
}

/*about*/

.about__skills {
  padding-top: 100px;
}

.about__item-name {
  padding-top: 95px;
}

.experionse__name {
  font-size: 18px;
}

/*contacts*/

.contacts__form {
  width: 670px;
}


}


@media (max-width: 990px) {

/*header*/

.header__menu {
  padding: 3% 0% 0% 2%;
}

.header__link:after {
  margin: 0px 5px 2px;
  width: 6px;
}

.header__content-surname {
  font-size: 49px;
}


.header__content-about {
  font-size: 18px;
}

.header__burger {
  display: none;
}

/*about*/

.about__item {
  width: 50%;
  padding-top: 10%;
}

.about__item--skills {
  display: none;
}

/*adress*/

.adress__item {
  width: 33.333%;
  display: block;
}

.adress {
  padding: 75px 20px;
}

.adress__item-icon {
  margin: 0 auto;
  margin-bottom: 5%;    
}

.adress__item-title { 
  text-align: center;
}

.adress__item-tel {
  text-align: center;
}

/*reviews*/

.reviews__items {
  display: flex;
  justify-content: space-around;
  padding: 50px 30px 150px;
}

.portfolio__prev {
  left: 33%;
}

.portfolio__next {
  right: 33%;
}

/*blog*/

.blog__item {
  width: 32%;
}

/*experionse*/

.experionse__name {
  white-space: normal;
}

/*contacts*/

.contacts__title {
  white-space: nowrap;
}

.contacts__subtitle {
  padding: 30px 0px 55px;
}

.contacts__form {
  width: 470px;
}

.contacts__input-name, .contacts__input-tel, .contacts__input-email {
  padding: 10px 20px;
  font-size: 16px;
}

.contacts__area {
  padding: 10px 15px;
  font-size: 16px;
}


}


@media (max-width: 767px) {
  
  /*header*/

body.lock {
  overflow: hidden;
}

.header__menu {
  width: 100%;
  position: fixed;
  top: -100%;
  left: 0;
  height: 100%;
  background-color: #15263e;
  display: block;
  padding: 120px 25px 20px;
  transition: all 0.3s ease;
  z-index: 12;
  overflow: auto;
  font-size: 36px;

}

.header__menu.active {
  top: 0;
}

.header__list {
  margin: 0px 0px 20px 0px;
}

.header__burger-bg {
  width: 100%;
  height: 90px;
  background-color: #a21af0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 13;
}

.header__burger {
  display: block;
  position: fixed;
  top: 3%;
  left: 5%;
  width: 40px;
  height: 30px;
  z-index: 13;

}

.header__burger.active:before{
  transform: rotate(45deg);
  top: 50%;
}

.header__burger.active:after{
  transform: rotate(-45deg);
  bottom: 50%;
}

.header__burger.active span {
  transform: scale(0);
}

.header__burger:before,
.header__burger:after {
  content: "";
  background-color: #fff;
  position: absolute;
  width: 100%;
  height: 2px;
  z-index: 13;
  transition: all 0.3s ease;
  
}

.header__burger:before {
  top: 0;
}

.header__burger:after {
  bottom: 0;
}

.header__burger span {
  position: absolute;
  background-color: #fff;
  width: 100%;
  height: 2px;
  left: 0;
  top: 50%;
  z-index: 13;
  transition: all 0.3s ease;
}

.header__link {
  font-size: 30px;
}

.header__link:after {
  margin: 0;
  width: 0px;
}

/*about*/

.about__item--foto {
  display: none;
}

.about__item {
  width: 100%;
  padding-top: 0;
}

.about__item-name {
  padding-top: 55px;
  text-align: center;
}

.about__item-profesion {
  text-align: center;
}

.about__item-text {
  text-align: center;
}

/*adress*/

.adress__item {
  width: 33%;
}

.adress__item-tel {
  font-size: 14px;
}

.adress__item-title {
  font-size: 16px;
}

/*services*/

.services__item {
  width: 32%;
}

/*reviews*/

.reviews__item-name {
  padding-top: 10%;
}

/*portfolio*/

.portfolio__next {
  right: 28%;
  top: 24%;
}

.portfolio__prev {
  left: 28%;
  top: 24%;
}

.portfolio__subtitle {
   margin: 0px 0px 10px 0px;
}

/*experiense*/

.experiense__item--left {
  padding-left: 5%;
  padding-right: 5%;
  width: 40%;
}

.experiense__item-text {
  width: 60%;
}

.experiense__item {
  width: 30%;
  border-right: 14px solid #fff;
  padding-right: 10%;
}

.experiense__item--left {
  border-right: 0px;
}

/*blog*/

.blog {
  padding: 75px 0px 0px;
}

.blog__row {
  display: block;
}

.blog__item {
  width: 100%;
  padding-bottom: 10%;
}

.blog__suptitle {
  text-align: center;
}

.blog__item-title {
  text-align: center;
}

.blog__item-text {
  text-align: center;
}

/*contacts*/

.input__flex {
  display: flex;
  flex-direction: column;
}

.contacts__input-name, .contacts__input-tel, .contacts__input-email {
  width: 100%;
  height: 50px;
}

.contacts__form {
  width: 370px;
}

.contacts__center {
  padding: 25px 35px;
}

.contacts__btn {
  width: 100%;
}

}


@media (max-width: 575px) {
  
/*header*/

.header__link {
  font-size: 20px;
}


.header__list {
  margin: 0px 0px 40px 0px;
}

.header__content-hello {
  font-size: 27px;
}

.header__content-surname {
  font-size: 30px;
}

.header__content-about {
  font-size: 16px;
}

.header__button {
  margin: 25% 0%;
}

/*adress*/

.adress {
  display: block;
}

.adress__item {
  width: 100%;
  margin-bottom: 10%;
}

.adress__item-title {
  font-size: 23px;
  padding-bottom: 3%;
}

.adress__item-tel {
  font-size: 24px;
}

/*services*/

.services__row {
  display: block;
}

.services__subtitle {
  padding: 30px 10px 55px;
}

.services__item {
  width: 100%;
  padding-bottom: 15%;
}

.services__item-text {
  padding: 0 5%;
}

.services__row {
  padding-bottom: 0px;
}


/*reviews*/

.reviews__title {
  font-size: 30px;
  padding-top: 80px;
}

.reviews__items {
  display: block;
  padding: 50px 40px 80px;
}

.reviews__item-one {
  width: 100%;
  margin-right: 5%;
}

.reviews__item-two {
  width: 100%;
  padding-top: 15%;
}

/*portfolio*/

.portfolio__next {
  right: 8%;
  bottom: 0;
}

.portfolio__prev {
  left: 8%;
  bottom: 0;
}

.portfolio {
  padding: 40px 0px;

}

.portfolio__title {
  margin-bottom: 25%;
  font-size: 46px;
}

.portfolio__subtitle {
  display: none;
}

.experiense__subtitle {
  padding: 27px 10px 88px;
}

/*experiense*/

.experiense__item {
  border-right: 1px solid #fff;
  
}

.experiense__item--left {
  border-right: 0px;
  border-left: 1px solid #fff;
  
}

.experiense__date {
  font-size: 12px;
}

.experionse__name {
  font-size: 12px;
}

/*blog*/

.blog__item-title {
  line-height: 28px;
}

.blog__subtitle {
  padding: 28px 10px 70px;
}

/*contacts*/

.contacts__form {
  width: 250px;
}

.contacts__title {
  font-size: 30px;
}

.contacts__subtitle {
  padding: 10px 0px 35px;
  font-size: 16px;
}

.contacts__center {
  padding: 25px 20px;
}

.contacts__background {
  height: 676px;
}

/*popup*/

.popup__title {
  font-size: 20px;
}

.popup__form-flex {
  display: block;
}

.popup__input {
  margin-bottom: 10%;
  max-width: 400px;
}

.popup__btn {
  max-width: 400px;
}


}






