body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #333;
  line-height: 1.6em;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

/* CONTAINER */

.container {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}

.page {
  overflow: hidden;
}

/* INTRO */

.intro {
  width: 100%;
  height: 100vh;
  background: url("../images/bgc-eagle.jpg") center no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro__title {
  font-size: 150px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1em;
  margin-top: 60px;
}

.intro__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #fff;
  margin: 60px auto 0;
}

.intro__suptitle {
  font-family: "Kaushan Script", cursive;
  font-size: 72px;
  color: #fff;
  font-weight: 400;
}

.intro__inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}

/* HEADER */

header {
  padding-top: 30px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.header__logo {
  font-size: 30px;
  font-weight: bold;
  color: white;
}

/* NAV */

.nav {
  color: white;
  text-transform: uppercase;
  font-size: 14px;
}

.nav__link {
  text-decoration: none;
  color: white;
  transition: color 0.2s linear;
  display: inline-block;
  vertical-align: top;
  margin: 0 15px;
  position: relative;
}

.nav__link::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.2s linear;
}

.nav__link:hover::after {
  opacity: 1;
}

.nav__link:hover {
  color: #fce38a;
  border-bottom: 1px solid #fce38a;
}

.nav__link > i {
  color: #fff;
}

.nav--icon:hover i{
  color: #fce38a;
}

/* BUTTON */

.btn {
  display: inline-block;
  vertical-align: top;
  border: 3px solid #fff;
  text-decoration: none;
  color: #fff;
  padding: 8px 25px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 50px;
  transition: color 0.2s linear, background 0.2s linear;
}

.btn:hover {
  background-color: #fff;
  color: #333;
}

/* SLIDER */

.slider {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.slider__inner {
  display: flex;
  justify-content: space-between;
}

.slider__item {
  width: 24%;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  padding: 20px 0;
  border-top: 3px solid #fff;
  opacity: 0.7;
  position: relative;
}

.slider__item > .slider__text {
  font-size: 18px;
  font-weight: 400;
}

.slider__item.active::before {
  content: "";
  display: block;
  top: -3px;
  left: 0;
  z-index: 1;
  position: absolute;
  width: 70px;
  height: 3px;
  background-color: #f38181;
}

.slider__item > span {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  padding-right: 7px;
}

/* SECTION */

.section {
  padding: 80px 0;
}

.section--devices {
  background: url(../images/devices/bgc-devices.png) center no-repeat;
  background-size: cover;
  height: 810px;
  padding-bottom: 0;
  margin-bottom: 40px;
}

.section--gray {
  background-color: #f8f8f8;
}

.section--clients {
  background: #e6e6e6 url("../images/clients/bgc.png") no-repeat;
  background-size: cover;
}

.section--map {
  background: #e6e6e6 url("../images/blog/bgc.png");
}

.section__header {
  width: 100%;
  max-width: 950px;
  margin: 0 auto 50px;
  text-align: center;
}

.section__suptitle {
  font-family: "Kaushan Script", cursive;
  font-size: 24px;
  font-weight: 400;
  color: #333;
}

.section__title {
  font-size: 30px;
  color: #333;
  font-weight: bold;
  margin-top: 22px;
  text-transform: uppercase;
}

.section__title::after {
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #f38181;
  z-index: 1000;
  margin: 35px auto 0;
}

.section__text {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #a0a0a0;
  margin-top: 50px;
}

/* CARDS */

.card {
  margin: 80px -15px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.card__item {
  width: 33.333%;
  padding: 0 15px;
}

.card__inner {
  background-color: #95e1d3;
  position: relative;
}

.card__inner:hover .card__text {
  opacity: 1;
}

.card__inner:hover .card__img {
  transform: translate3d(-10px, -10px, 0);
}

.card__inner:hover .card__img img {
  opacity: 0.1;
}

.card__img {
  background: linear-gradient(to bottom, #fce38a, #f38181);
  transition: transform 0.2s linear;
}

.card__img img {
  max-width: 100%;
  height: auto;
  transition: opacity 0.2s linear;
  display: block;
}

.card__text {
  text-transform: uppercase;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  z-index: 1;
  transform: translate3d(0, -50%, 0);
  opacity: 0;
  transition: opacity 0.2s linear;
}

.card__info {
  text-align: center;
}

.card__name {
  color: #7a7a7a;
  margin-top: 20px;
  text-transform: uppercase;
}

.card__prof {
  color: #b6b6b6;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-style: italic;
}

/* STATISTICS */

.statistics {
  background-color: #95e1d3;
}

.stat {
  display: flex;
  flex-wrap: wrap;
}

.stat__item {
  flex: 1 1 0;
  border-left: 1px solid #b5eae0;
  color: #fff;
  text-align: center;
  padding: 70px 25px;
}

.stat__count {
  font-size: 42px;
  font-weight: bold;
  line-height: 1;
}

.stat__text {
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 20px;
}

.stat__item:last-child {
  border-right: 1px solid #b5eae0;
}

/* WORKS */

.works {
  display: flex;
  flex-wrap: wrap;
}

.works__item {
  position: relative;
  padding-left: 70px;
  padding-right: 20px;
  width: 33%;
}

.works__item:nth-child(1),
.works__item:nth-child(2),
.works__item:nth-child(3) {
  padding: 0 20px 30px 70px;
  border-bottom: 1px solid #e5e5e5;
}

.works__item:nth-child(4),
.works__item:nth-child(5),
.works__item:nth-child(6) {
  margin-top: 30px;
}

.works__icon {
  position: absolute;
  top: 6px;
  left: 25px;
  z-index: 1;
}

.works__title {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 10px;
}

.works__text {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #999;
}

/* DEVICES */

.devices {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.ipad {
  position: absolute;
  top: -48px;
  left: 0;
  display: block;
  max-width: 100%;
  height: auto;
}

.iphone {
  position: absolute;
  right: 0;
  top: 185px;
  display: block;
  max-width: 100%;
  height: auto;
}

/* WEDO */

.wedo {
  flex-wrap: wrap;
  display: flex;
  margin: 0 -15px;
}

.wedo__item {
  width: 50%;
  padding: 0 15px;
}

.wedo__img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ACCORDION */

.accordion__item {
  border: 1px solid #e5e5e5;
  margin-bottom: 11px;
}

.accordion__item.active .accordion__content {
  display: block;
}

.accordion__item.active .accordion__header {
  border-bottom-color: #e5e5e5;
}

.accordion__item.active .accordion__header::after {
  transform: translateY(-50%) rotate(-45deg);
  margin-top: 5px;
}

.accordion__header {
  padding: 15px 20px 15px 65px;
  border-bottom: 1px solid transparent;
  position: relative;
  cursor: pointer;
}

.accordion__header::after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  right: 20px;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  width: 16px;
  height: 16px;
  transform: translateY(-50%) rotate(135deg);
  margin-bottom: 5px;
}

.accordion__icon {
  position: absolute;
  top: 50%;
  left: 20px;
  z-index: 1;
  transform: translateY(-50%);
}

.accordion__title {
  text-transform: uppercase;
}

.accordion__content {
  padding: 21px 10px;
  font-family: "Roboto" sans-serif;
  color: #999;
  font-size: 15px;
  display: none;
}

.accordion__content > p {
  margin: 0;
  padding: 0;
}

/* REVIEWS */

.reviews {
  padding: 0 110px;
  position: relative;
}

.reviews__item {
  position: relative;
  padding-left: 205px;
}

.reviews__btn {
  position: absolute;
  z-index: 1;
  font-size: 0;
  color: transparent;
  top: 50%;
  transform: translateY(-50%);
}

.reviews__btn::after {
  content: "";
  display: block;
  border-top: 2px solid #ccc;
  border-left: 2px solid #ccc;
  width: 16px;
  height: 16px;
}

.reviews__btn--prev {
  transform: rotate(-45deg);
  left: 0;
}

.reviews__btn--next {
  transform: rotate(135deg);
  right: 0;
}

.reviews__text {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-size: 24px;
  color: #c7c7c7;
  margin-top: 10px;
}

.reviews__img {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
}

.jobs__img {
  position: absolute;
  left: -35px;
  top: 50%;
  z-index: 1;
  transform: translateY(-40%);
}

.reviews__text {
  font-family: "Roboto", sans-serif;
  font-size: 24;
  font-style: italic;
}

.reviews__author {
  font-family: "Kaushan Script", cursive;
  font-size: 24px;
  color: #333;
  margin-top: 25px;
}

.reviews__author::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  z-index: 1;
  background-color: #f38181;
  width: 60px;
  height: 3px;
  margin-right: 10px;
}

/* SOCIAL */

.social {
  display: flex;
  justify-content: center;
}

.social__item > i{
  text-decoration: none;
  background-color: #fce38a;
  color: #f38181;
  border-right: 1px solid #f38181;
  padding: 12px 10px;
  width: 55px;
  height: 55px;
  font-size: 30px;
  line-height: 1;
  text-align: center;
  transition: background 0.2s linear, color 0.2s linear;
}

.social__item:last-child {
  border-right: 0;
}

.social__item:hover i{
  background-color: #f38181;
  color: #ffffff;
}

/* LOGOS */

.logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logos__img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* JOB */

.jobs {
  display: flex;
}

.jobs__col {
  flex: 1 1 0;
}

.jobs__item {
  position: relative;
  background: linear-gradient(to bottom, #fce38a, #f38181);
}

.jobs__item:hover .jobs__image {
  opacity: 0.1;
}

.jobs__item:hover .jobs__info {
  opacity: 1;
}

.jobs__image {
  transition: opacity 0.2s linear;
  display: block;
  max-width: 100%;
  height: auto;
}

.jobs__info {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-align: center;
  padding: 0 15px;
  opacity: 0;
  transition: opacity 0.2s linear;
}

.jobs__title {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.jobs__text {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-style: italic;
  color: #fff;
}

/* CLIENTS */
.section--clients {
  padding-bottom: 0;
}

.clients {
  display: flex;
  flex-wrap: wrap;
  margin-top: 70px;
}

.clients__item {
  flex-basis: 50%;
  padding: 0 45px 0 175px;
  position: relative;
}

.clients__item:nth-child(1),
.clients__item:nth-child(1) {
  margin-bottom: 80px;
}

.clients__item:nth-child(3),
.clients__item:nth-child(4) {
  padding-bottom: 125px;
}

.clients__photo {
  position: absolute;
  top: 0;
  left: 40px;
  z-index: 1;
}

.clients__name {
  text-transform: uppercase;
  font-size: 14px;
  color: #333;
  margin-bottom: 5px;
}

.clients__prof {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-style: italic;
  color: #595959;
}

.clients__text {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #999;
}

.clients__text::before {
  margin-bottom: 15px;
  margin-top: 15px;
  content: "";
  display: block;
  top: 0;
  left: 0;
  z-index: 1;
  height: 3px;
  width: 60px;
  background-color: #f38181;
}

/* BLOG */

.blog {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.blog__item {
  width: 31%;
}

.blog__header {
  position: relative;
}

.blog__photo {
  display: block;
  max-width: 100%;
  height: auto;
}

.blog__date {
  position: absolute;
  display: block;
  bottom: 15px;
  left: -10px;
  background-color: #95e1d3;
  width: 60px;
  height: 70px;
  text-align: center;
  padding-top: 14px;
  line-height: 1;
  z-index: 1;
}

.blog__date--day {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}

.blog__date--month {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-style: italic;
  color: #fff;
}

.blog__content {
  margin-top: 14px;
}

.blog__title {
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-style: italic;
  color: #333;
  text-decoration: none;
}

.blog__title:hover a {
  text-decoration: underline;
  color: inherit;
  cursor: pointer;
}

.blog__text {
  color: #999;
  margin-top: 14px;
  line-height: 1.5;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
}

.blog__footer {
  color: #999;
  font-style: italic;
}

.blog__footer::before {
  content: "";
  display: block;
  background-color: #e5e5e5;
  max-width: 100%;
  height: 2px;
  margin: 15px 0;
}

.blog__stat__item {
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
}

.blog__stat__item > i {
  color: #95e1d3;
  padding-right: 5px;
}

/* MAP */

.map {
  text-align: center;
}

.map__title {
  display: inline-block;
}

.map__title a {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  color: #f38181;
  text-decoration: none;
}

.map__title i {
  color: #f38181;
}

.map__title:hover a {
  color: #ee3131;
}

.map__title::after {
  content: "";
  display: block;
  background-color: #f38181;
  width: 60px;
  height: 3px;
  margin: 0 auto;
  margin-top: 20px;
}

.map__icon {
  margin-bottom: 20px;
}

.map__icon > i {
  font-size: 35px;
  padding: 0;
}

/* FOOTER */

.footer {
  background: #f8f8f8;
  padding-top: 65px;
}

.footer__inner {
  padding-bottom: 65px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer--first {
  width: 40%;
}

.footer--second {
  width: 29%;
}

.footer--third {
  width: 23%;
}

.footer__logo {
  color: #ccc;
  font-size: 46px;
  font-weight: bold;
  margin-bottom: 30px;
}

.footer__text {
  margin-bottom: 30px;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  color: #999;
  line-height: 1.5;
}

.footer__social {
  margin-bottom: 25px;
}

.footer__social--header {
  font-size: 14px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
}

.footer__social--header b {
  font-size: 18px;
}

.footer__social--content {
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  color: #b4b4b4;
  margin-top: 10px;
  font-style: italic;
  cursor: default;
}

.footer__social--content a,
i {
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  color: #95e1d3;
  font-size: 17px;
  padding-left: 9px;
  cursor: default;
}

.footer__social--content i::before{
  cursor: pointer;
}

.footer__title {
  text-transform: uppercase;
  color: #474747;
  font-size: 14px;
  margin-bottom: 30px;
}

/* BLOGS */

.blogs__item {
  display: flex;
}

.blogs__item:nth-child(2) {
  margin: 30px 0;
}

.blogs__content {
  padding-left: 20px;
  align-items: center;
}

.blogs__title {
  text-decoration: none;
  color: #333;
  margin-bottom: 12px;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1.5;
  display: block;
  margin-bottom: 5px;
}

.blogs__title:hover {
  text-decoration: underline;
}

.blogs__date {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #b1b1b1;
  font-style: italic;
}

/* INSTAGRAM */

.instagram {
  display: flex;
  flex-wrap: wrap;
}

.instagram__item {
  width: 33%;
  border: 1px solid white;
}

.instagram__item img {
  display: block;
  max-width: 100%;
  height: auto;
}

.instagram__footer {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-style: italic;
  color: #333;
  line-height: 1.5;
  margin-top: 20px;
}

/* SUBSCRIBE */

.subscribe {
  width: 100%;
  max-width: 380px;
  display: flex;
}

.subscribe__input {
  font-family: "Roboto", sans-serif;
  width: 230px;
  height: 40px;
  border: 1px solid #e7e7e7;
  background-color: #fff;
  font-size: 15px;
  font-style: italic;
  color: black;
  padding: 12px;
  line-height: 1.1;
  border-right: 0;
}

.subscribe__input::placeholder {
  color: #ccc;
}

.subscribe__input:focus {
  outline: 0;
  border-color: #95e1d3;
}

.subscribe__button {
  width: 150px;
  height: 40px;
  background-color: #95e1d3;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  border: none;
  line-height: 1.1;
  transition: background 0.2s linear;
}

.subscribe__button:hover {
  background-color: #05c09e;
}

.subscribe__button:focus {
  outline: 0;
}

/* COPYRIGHT */

.copyright {
  border-top: 1px solid #efefef;
  text-align: center;
  padding: 25px 0;
  font-size: 14px;
  color: #333;
}

.copyright > span {
  color: #f38181;
}

/* font-family: 'Montserrat', sans-serif;
font-family: 'Kaushan Script', cursive;
font-family: 'Roboto', sans-serif; */


/* ====================================================================================== */

/* MEDIA */

@media (max-width: 1230px) {

   /* INTRO */
  .intro__title {
    font-size: 120px;
    margin-top: 45px;
  }

  .intro__title::after {
    margin-top: 45px;
  }

  .intro__suptitle {
    font-size: 55px;
  }

  .btn {
    margin-top: 40px;
  }

  /* REVIEWS */

  .reviews__text {
    font-size: 20px;
  }

  .reviews__author {
    font-size: 20px;
  }

}

@media (max-width: 990px) {

  /* INTRO */
 .intro__title {
   font-size: 80px;
   margin-top: 30px;
 }

 .intro__title::after {
  margin-top: 30px;
}

 .intro__suptitle {
   font-size: 40px;
 }

 .btn {
  margin-top: 30px;
}

/* REVIEWS */
.reviews__img {
  display: block;
  width: 125px;
  height: 125px;
}

.reviews__item {
  padding-left: 160px;
}

.reviews {
  padding: 0 80px;
}

/* JOBS */
.jobs__img {
  height: 125px;
  width: 125px;
  position: static;
  display: block;
  margin: 50px auto 0;
}

/* CLIENTS */
.section--clients {
  padding: 50px 0 30px;
}

.clients {
  max-width: 600px;
  margin: 0 auto;
}

.clients__item {
  flex-basis: 100%;
  padding: 0;
  margin-bottom: 50px;
}

.clients__item:first-child {
  margin-bottom: 30px;
}

.clients__item:nth-child(3) {
  padding: 0;
}

.clients__item:last-child {
  padding: 0;
}

.clients__photo {
  left: 110px;
  top: -25px;
  width: 100px;
  height: 100px;
}

.clients__content {
  text-align: center;
}

.clients__text::before {
  margin-left: 265px;
}

/* FOOTER */

 .footer--first {
   width: 100%;
 }

 .footer--second {
   width: 50%;
   padding-left: 25px;
 }

 .footer--third {
  width: 50%;
}

/* INSTAGRAM */

.instagram {
  justify-content: flex-start; 
}

.instagram__item {
  width: 26%;
}


}

@media (max-width: 770px) {

 /* NAV */
 nav {
   display: none;
 }

  /* SLIDER */
 .slider__text {
   display: none;
 }

 .slider__item.active::before {
   width: 50%;
 }

 /* SECTION */
 .section {
   padding: 40px 0;
 }

 .section--devices {
   margin-bottom: 0;
   padding-bottom: 0;
 }

 /* CARD */
.card {
  margin-top: 50px;
}

 .card__item {
   width: 100%;
   max-width: 410px;
   margin: 0 auto 35px;
 }

 .card__item:last-child {
   margin: 0 auto;
 }

 /* STATISTICS */
.stat {
  justify-content: center;
}

.stat__item {
  width: 33%;
  flex: none;
  border: 0;
  padding: 30px;
}

.stat__item:last-child {
  border: 0;
}

/* WORKS */
.works__item {
  width: 50%;
}

.works__item:nth-child(1),
.works__item:nth-child(2),
.works__item:nth-child(3),
.works__item:nth-child(4) {
  margin-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 30px;
}

.works__item:nth-child(4) {
  margin-top: 0;
}

/* DEVICES */
.ipad {
  top: -8px;
}

.iphone {
  top: 205px;
}

/* WEDO */
.wedo__img {
  display: none;
}

.wedo__item {
  width: 100%;
}

/* REVIEWS */
.reviews__img {
  position: static;
  margin: 60px auto 0;
}

.reviews__item {
  padding-left: 0;
}

.reviews__text {
  margin-top: 0;
}

/* LOGOS */
.logos {
  flex-wrap: wrap;
}

.logos__item {
  width: 50%;
  padding-bottom: 20px;
}

.logos__img {
  margin: 0 auto;
}

/* JOBS */

.jobs {
  flex-wrap: wrap;
}

.jobs__col {
  width: 50%;
  flex: none;
}

/* BLOG */
.blog {
  max-width: 380px;
  margin: 0 auto;
}

.blog__item {
  width: 100%;
  margin-bottom: 50px;
}

/* FOOTER */

.footer--first {
  width: 100%;
}

.footer--second {
  width: 100%;
  padding-left: 25px;
}

.footer--third {
 width: 100%;
}

.footer__col {
  margin-top: 50px;
}

/* INSTAGRAM */

.instagram__item {
  width: auto;
}

.instagram__footer {
  width: 100%;
}
}

@media (max-width: 655px) {

.clients__photo {
  position: static;
  display: block;
  margin: 0 auto;
}

.clients__name {
  margin-top: 15px;
}

.clients__text::before {
  margin: 20px auto 0;
}

}

@media (max-width: 575px) {

  /* INTRO */
 .intro__title {
   font-size: 50px;
   margin-top: 20px;
 }

 .intro__title::after {
  margin-top: 20px;
}

 .intro__suptitle {
   font-size: 30px;
 }

 .btn {
  margin-top: 25px;
}

/* SECTION */
.section__suptitle {
  font-size: 20px;
}

.section__title {
  font-size: 24px;
}

.section__title::after {
  margin: 20px auto;
}

.section__text {
  margin-top: 30px;
}

.stat__item {
  width: 100%;
  border-bottom: 1px solid #b5eae0;
}

.stat__item:last-child {
  border: 0;
}

.stat__count {
  font-size: 52px;
}

/* WORKS */
.works {
  justify-content: center;
}

.works__item {
  width: 100%;
}

.works__item:nth-child(1),
.works__item:nth-child(2),
.works__item:nth-child(3),
.works__item:nth-child(4),
.works__item:nth-child(5),
.works__item:nth-child(6){
  margin-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 30px;
  text-align: center;
  padding-left: 45px;
  padding-right: 0;
}

.works__item:nth-child(5),
.works__item:nth-child(6) {
  margin-top: 0;
}

.works__icon {
left: 0px;
top: 30px;
}

/* DEVICES */

.devices {
  max-width: 320px;
}

.iphone {
  width: 160px;
  top: 400px;
  right: -75px;
}

.ipad {
  top: 280px;
}

/* REVIEWS */
.reviews {
  padding: 0;
}

.reviews__img {
  margin-top: 100px;
}

.reviews__text {
  font-size: 16px;
}

.reviews__author {
  font-size: 12px;
}

.reviews__btn--next {
  top: -5%;
}

.reviews__btn--prev {
  top: -10%;
}

/* LOGOS */
.logos {
  flex-wrap: wrap;
}

.logos__item {
  width: 100%;
  padding-bottom: 40px;
}

.logos__img {
  margin: 0 auto;
}

/* JOBS */

.jobs {
  flex-wrap: wrap;
}

.jobs__col {
  width: 100%;
  flex: none;
}

.jobs__image {
  display: block;
  max-width: 100%;
  width: 100%;
}

}

@media(max-width: 320px) {
  .ipad {
    top: 312px;
    display: block;
  }
}
