body {
  margin: 0;
  font-family: "Kaushan Script", cursive;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

hr {
  display: block;
  width: 100%;
  height: 1px;
  margin: 40px 0;
  border: 0;
  background-color: #e5e5e5;
}

/* Page */

.page {
  overflow: hidden;
}

/* container */

.container {
  width: 100%;
  max-width: 1230px;
  padding: 0 15px;
  margin: 0 auto;
}

/* intro */

.intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  position: relative;
  background: url("../images/intro.jpg");
  -webkit-background-size: cover;
  background-size: cover;
}

.intro-inner {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.intro-title {
  color: #fff;
  font-size: 110px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}

.intro-title:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #fff;
  margin: 25px auto;
}

.intro-suptitle {
  margin-bottom: 20px;
  font-family: "Kaushan Script", cursive;
  font-size: 60px;
  color: #fff;
}

/* header */

.header {
  padding-top: 16px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header.fixed {
  padding: 10px 0;
  background-color: #eb8b8d;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translate3d(0, 0, 0);
}

.header.active {
  background-color: #eb8b8d;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}

/* nav */

.nav {
  font-size: 14px;
  text-transform: uppercase;
  padding-right: 95px;
}

.nav-link {
  display: inline-block;
  vertical-align: top;
  margin: 15px 27px;
  position: relative;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s linear;
}

.nav-link:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fce38a;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  transition: opacity 0.3 linear;
}

.nav-link:hover {
  color: #fce38a;
}

.nav-link:hover:after,
.nav-link.active:after {
  opacity: 1;
}

.nav-link.active {
  color: #fce38a;
}

/* Nav toggle */

.nav-toggle {
  width: 30px;
  padding: 10px 0;
  display: none;
  font-size: 0;
  color: transparent;
  border: 0;
  background: none;
  cursor: pointer;
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1;
}

.nav-toggle:focus {
  outline: 0;
}

.nav-toggle-item {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: background .3s linear;
}

.nav-toggle.active .nav-toggle-item {
  background: none;
}

.nav-toggle-item:before,
.nav-toggle-item:after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  background-color: #fff;
  left: 0;
  z-index: 1;
  transition: transform .3s linear;
}

.nav-toggle-item:before {
  top: -8px;
}

.nav-toggle-item:after {
  bottom: -8px;
}

.nav-toggle.active .nav-toggle-item:before {
  transform-origin: left top;
  transform: rotate(45deg) translate3d(0px, -2px, 0);
}

.nav-toggle.active .nav-toggle-item:after {
  transform-origin: left bottom;
  transform: rotate(-45deg) translate3d(0px, 3px, 0);
}

/* Button */

.btn {
  display: inline-block;
  vertical-align: top;
  border: 3px solid #fff;
  padding: 8px 30px;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: backgraund 0.3s linear, color 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: 23%;
  padding: 20px 0;
  position: relative;
  border-top: 3px solid #fff;
  opacity: 0.7;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
}

.slider-item.active {
  opacity: 1;
}

.slider-item.active:before {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background-color: #f38181;
  position: absolute;
  top: -3px;
  left: 0;
  z-index: 1;
}

.slider-num {
  font-size: 24px;
  font-weight: 700px;
}

/* Section */

.section {
  padding: 80px 0;
}

.section--devices {
  margin-bottom: 40px;
  padding-bottom: 0;
  background: url("../images/devices-bg.jpg") center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.section--gray {
  background-color: #f8f8f8;
}

.section--clients {
  background: #f5f5f5 url("../images/clients-bg.jpg") center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.section--map {
  padding: 40px 0;
  background: #e6e6e6 url("../images/map-bg.jpg") center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.section-header {
  width: 100%;
  max-width: 950px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-suptitle {
  font-family: "Kaushan Script", cursive;
  font-size: 24px;
  color: #333;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
}

.section-title:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 30px auto;
  background-color: #f38181;
}

.section-text {
  font-size: 15px;
  color: #999;
}

/* Card */

.card {
  margin: 80px -15px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.card-item {
  width: 33.33333%;
  padding: 0 15px;
}

.card-inner {
  position: relative;
  background-color: #95e1d3;
}

.card-inner:hover .card-img {
  transform: translate3d(-10px, -10px, 0);
}

.card-inner:hover .card-img img {
  opacity: 0.1;
}

.card-inner:hover .card-text {
  opacity: 1;
}

.card-img {
  background: linear-gradient(to bottom, #f38181, #fce38a);
  transition: transform 0.2s linear;
}

.card-img img {
  display: block;
  max-width: 100%;
  height: auto;
  transition: opacity 0.1s linear;
}

.card-text {
  width: 100%;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  transform: translate3d(0, -50%, 0);
  transition: opacity 0.2s linear;
}

.card-info {
  margin-top: 20px;
  text-align: center;
}

.card-name {
  margin-bottom: 5px;
  font-size: 14px;
  color: #333;
  text-transform: uppercase;
}

.card-prof {
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  color: #999;
}

/* Statistics */

.statistics {
  background-color: #95e1d3;
}

.stat {
  display: flex;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1 1 0;
  padding: 70px 25px;
  border-left: 1px solid #b5eae0;
  text-align: center;
  color: #fff;
}

.stat-item:last-child {
  border-right: 1px solid #b5eae0;
}

.stat-count {
  margin-bottom: 10px;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
}

.stat-text {
  font-size: 14px;
  text-transform: uppercase;
}

/* Services */

.services {
  display: flex;
  flex-wrap: wrap;
}

.services-item {
  width: 33.33333%;
  padding: 0 35px 40px 85px;
  position: relative;
  margin-bottom: 40px;
}

.services-item--border {
  border-bottom: 1px solid #e5e5e5;
}

.services-icon {
  position: absolute;
  top: 0;
  left: 28px;
  z-index: 1;
}

.services-title {
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
  text-transform: uppercase;
}

.services-text {
  font-size: 15px;
  color: #999;
}

/* Devices */

.devices {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.devices-item {
  display: block;
  max-width: 100%;
  height: auto;
}

.devices-item--iphone {
  position: absolute;
  bottom: -80px;
  right: 0;
  z-index: 1;
}

/* We do */

.wedo {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.wedo-item {
  width: 50%;
  padding: 0 15px;
}

.wedo-img {
  display: block;
  width: 100%;
  height: auto;
}

/* Accordion */

.accordion-item {
  margin-bottom: 10px;
  border: 1px solid #e5e5e5;
}

.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;
  position: relative;
  border-bottom: 1px transparent;
  cursor: pointer;
}

.accordion-header::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 1;
  transform: translateY(-50%) rotate(135deg);
}

.accordion-icon {
  position: absolute;
  top: 50%;
  left: 20px;
  z-index: 1;
  transform: translateY(-50%);
}

.accordion-content {
  padding: 15px 20px;
  display: none;
  font-size: 15px;
  color: #999;
  font-style: italic;
  font-weight: 300;
}

.accordion-title {
  font-size: 14px;
  color: #333;
  text-transform: uppercase;
}

/* Reviews */

.reviews {
  position: relative;
}

.reviews .slick-slider {
  padding: 0 110px;
}

.reviews-item {
  min-height: 210px;
  padding-left: 255px;
  position: relative;
}

.reviews-photo {
  display: block;
  width: 210px;
  height: 210px;
  border: 2px solid #95e1d3;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 1;
}

.reviews-text {
  margin-bottom: 15px;
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  color: #999;
}

.reviews-author {
  font-family: "Kaushan Script", cursive;
  font-size: 24px;
  color: #333;
}

.reviews-author:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  height: 3px;
  margin-right: 10px;
  background-color: #f38181;
}

.slick-arrow {
  display: block;
  font-size: 0;
  color: transparent;
  border: 0;
  background: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
}

.slick-arrow:focus {
  outline: 0;
}

.slick-arrow:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-top: 2px solid #ccc;
  border-left: 2px solid #ccc;
}

.slick-prev {
  left: 0;
  transform: rotate(-45deg);
}

.reviews-btn--next,
.slick-next {
  right: 0;
  transform: rotate(135deg);
}

/* Social */

.social {
  display: flex;
  justify-content: center;
}

.social-item {
  width: 55px;
  height: 55px;
  padding: 12px 10px;
  background-color: #fce38a;
  border-right: 1px solid #f38181;
  font-size: 35px;
  text-decoration: none;
  color: #f38181;
  line-height: 1;
  transition: background 0.3s lianer, color 0.3s lianer;
}

.social-item:last-child {
  border-right: 0;
}

.social-item:hover {
  color: #fff;
  background-color: #f38181;
}

/* logos */

.logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 -15px;
}

.logos-item {
  padding: 0 15px;
}

.logos-img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* works */

.works {
  display: flex;
}

.works-column {
  flex: 1 1 0;
}

.works-item {
  position: relative;
  background: linear-gradient(to bottom, #f38181, #fce38a);
  transition: transform 0.2s linear;
}

.works-item:hover .works-image {
  opacity: 0.1;
}

.works-item:hover .works-info {
  opacity: 1;
}

.works-image {
  display: block;
  transition: opacity 0.3s linear;
  max-width: 100%;
  height: auto;
}

.works-info {
  width: 100%;
  padding: 0 15px;
  text-align: center;
  color: #fff;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  transform: translate3d(0, -50%, 0);
  transition: opacity 0.3s linear;
}

.works-title {
  margin-bottom: 5px;
  font-size: 14px;
  text-transform: uppercase;
}

.works-text {
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
}

/* Clients */

.clients {
  display: flex;
  flex-wrap: wrap;
  margin-top: 70px;
}

.clients-item {
  width: 50%;
  padding: 0 45px 0 175px;
  position: relative;
  margin-bottom: 60px;
}

.clients-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 40px;
  z-index: 1;
}

.clients-name {
  margin-bottom: 5px;
  font-size: 14px;
  color: #333;
  text-transform: uppercase;
}

.clients-prof {
  font-size: 15px;
  color: #333;
  font-style: italic;
  font-weight: 300;
}

.clients-text {
  font-size: 15px;
  color: #999;
}

.clients-text::before {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 15px 0;
  background-color: #f38181;
}

/* Blog */

.blog {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.blog-item {
  width: 31%;
}

.blog-header {
  position: relative;
  margin-bottom: 14px;
}

.blog-foto {
  display: block;
  max-width: 100%;
  height: auto;
}

.blog-date {
  padding: 10px 20px;
  background-color: #95e1d3;
  font-style: italic;
  font-size: 15px;
  color: #fff;
  font-weight: 300;
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: -10px;
  z-index: 1;
}

.blog-date-day {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  font-style: normal;
}

.blog-content {
  margin-bottom: 14px;
}

.blog-title {
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
  text-transform: uppercase;
}

.blog-title a {
  color: inherit;
  text-decoration: none;
}

.blog-title a:hover {
  text-decoration: underline;
}

.blog-text {
  font-size: 15px;
  color: #999;
}

.blog-footer {
  padding-top: 14px;
  border-top: 1px solid #e5e5e5;
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: #999;
}

.blog-stat-item {
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
}

.blog-stat-item i {
  color: #95e1d3;
}

/* Map */

.map {
  text-align: center;
}

.map-title {
  font-size: 24px;
  color: #f38181;
  font-weight: 700;
  text-transform: uppercase;
}

.map-title:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 15px auto 0;
  background-color: #f38181;
}

.map-title a {
  color: inherit;
  text-decoration: none;
}

.map-title a:hover {
  text-decoration: underline;
}

/* Footer */

.footer {
  padding-top: 65px;
  background-color: #f8f8f8;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -15px;
  padding-bottom: 65px;
}

.footer-col {
  padding: 0 15px;
}

.footer-col--first {
  width: 40%;
}

.footer-col--second {
  width: 29%;
}

.footer-col--third {
  width: 22%;
}

.footer-logo {
  margin-bottom: 30px;
  font-size: 46px;
  font-weight: 700;
  color: #ccc;
}

.footer-text {
  margin-bottom: 30px;
  font-size: 15px;
  color: #999;
}

.footer-social {
  margin-bottom: 25px;
}

.footer-social-header {
  padding-bottom: 15px;
  font-size: 14px;
  color: #333;
  border-bottom: 1px solid #e5e5e5;
}

.footer-social-header b {
  font-size: 18px;
}

.footer-social-content {
  padding-top: 15px;
  font-size: 15px;
  color: #999;
  font-style: italic;
  font-weight: 300;
}

.footer-social-content a {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  font-size: 20px;
  color: #95e1d3;
}

.footer-title {
  margin: 30px 0;
  font-size: 14px;
  color: #333;
  text-transform: uppercase;
}

/* Blogs */

.blogs-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.blogs-img {
  width: 120px;
  height: 80px;
}

.blogs-content {
  padding-left: 20px;
}

.blogs-title {
  display: block;
  margin-bottom: 5px;
  color: #333;
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
  text-decoration: none;
}

.blogs-title:hover {
  text-decoration: underline;
}

.blogs-date {
  font-size: 13px;
  color: #999;
  font-style: italic;
  font-weight: 300;
}

/* Instagram */

.instagram {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.instagram-item {
  width: 33%;
  border-bottom: 1px solid #fff;
}

.instagram-item img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Subscribe */

.subscribe {
  width: 100%;
  max-width: 380px;
  display: flex;
}

.subscribe-input {
  width: 60%;
  height: 40px;
  padding: 12px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-right: 0;
  font-size: 15px;
  line-height: 1.1;
  font-style: italic;
  color: #333;
  font-weight: 300;
}

.subscribe-input::placeholder {
  color: #ccc;
}

.subscribe-input:focus {
  outline: 0;
  border-color: #95e1d3;
}

.subscribe-btn {
  width: 40%;
  height: 40px;
  padding: 12px 30px;
  background-color: #95e1d3;
  border: 0;
  cursor: pointer;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  transition: background 0.3s linear;
}

.subscribe-btn:hover {
  background-color: #74c7b8;
}

.subscribe-btn:focus {
  outline: 0;
}

/* Copyright */

.copyright {
  padding: 20px 0;
  border-top: 1px solid #e5e5e5;
  text-align: center;
  font-size: 14px;
  color: #333;
}

.copyright span {
  color: #f38181;
}

@media (max-width: 1230px) {

  /* Intro */
  .intro-suptitle {
    font-size: 52px;
  }

  .intro-title {
    font-size: 100px;
  }

  /* Reviews */

  .reviews-text {
    font-size: 20px;
  }

}

@media (max-width: 990px) {

  /* Intro */
  .intro-suptitle {
    font-size: 32px;
  }

  .intro-title {
    font-size: 60px;
  }

  /* Stat */

  .stat {
    justify-content: center;
  }

  .stat-item {
    flex: none;
    width: 33.33333%;
    padding-top: 30px;
    padding-bottom: 30px;
    border: 0;
  }

  .stat-item:last-child {
    border-right: 0;
  }

  /* Service */
  .services-item {
    width: 50%;
    padding-bottom: 0;
  }

  .services-item--border {
    border-bottom: 0;
  }

  /* Reviews */

  .reviews .slick-slider {
    padding: 0 60px;
  }

  .reviews-photo {
    width: 150px;
    height: 150px;
  }

  .reviews-item {
    padding-left: 180px;
  }

  /* Clients */

  .clients {
    max-width: 600px;
    margin: 0 auto;
  }

  .clients-item {
    width: 100%;
    padding-right: 0;
  }

  .clients-item:last-child {
    margin-bottom: 0;
  }

  /* Footer */

  .footer-col--first {
    width: 100%;
  }

  .footer-col--second,
  .footer-col--third {
    width: 50%;
  }

  /* Instagram */

  .instagram {
    justify-content: flex-start;
  }

  .instagram-item {
    width: auto;
    border-right: 1px solid #fff;
  }

}

@media (max-width: 770px) {

  /* Intro */

  .intro {
    min-height: 650px;
  }

  /* Header */

  .header {
    padding: 10px 0;
  }

  /* Nav */
  .nav {
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #eb8b8d;
  }

  .nav.active {
    display: block;
  }

  .nav-link {
    display: block;
    margin: 0;
    padding: 8px 20px;
  }

  .nav-toggle {
    display: block;
  }

  /* Section */
  .section {
    padding: 40px 0;
  }

  .section--devices {
    padding-bottom: 0;
  }

  /* Card */
  .card {
    margin-top: 50px;
    justify-content: center;
  }

  .card-item {
    width: 100%;
    max-width: 410px;
    margin-bottom: 30px;
  }

  .card-item:last-child {
    margin-bottom: 0;
  }

  /* Slider */
  .slider-text {
    display: none;
  }

  .slider-item.active:before {
    width: 50%;
  }

  /* Service */
  .services {
    justify-content: center;
  }

  .services-item {
    width: 100%;
    max-width: 400px;
    padding-left: 55px;
    padding-right: 0;
  }

  .services-icon {
    left: 0;
  }

  /* Wedo */

  .wedo-img {
    display: none;
  }

  .wedo-item {
    width: 100%;
  }

  /* Reviews */

  .reviews-photo {
    position: static;
    margin: 0 auto 20px;
  }

  .reviews-item {
    padding-left: 0;
  }

  .reviews-text {
    font-size: 16px;
  }

  .reviews-author {
    font-size: 20px;
  }

  /* Works */

  .works {
    flex-wrap: wrap;
  }

  .works-column {
    flex: none;
    width: 50%;
  }

  /* Blog */

  .blog {
    max-width: 380px;
    margin: 0 auto;
  }

  .blog-item {
    width: 100%;
    margin-bottom: 30px;
  }

  .blog-item:last-child {
    margin-bottom: 0;
  }

  /* Footer */

  .footer-col--second,
  .footer-col--third {
    width: 100%;
  }

}

@media (max-width: 575px) {

  /* Intro */

  .intro-suptitle {
    font-size: 22px;
  }

  .intro-title {
    font-size: 40px;
  }

  /* Section */
  .section-header {
    margin-bottom: 50px;
  }

  .section-suptitle {
    font-size: 18px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-title:after {
    margin: 20px auto;
  }

  /* Stat */

  .stat-item {
    width: 100%;
    border-bottom: 1px solid #b5eae0;
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .stat-count {
    font-size: 50px;
  }

  /* Devices */

  .devices {
    max-width: 320px;
  }

  .devices-item--iphone {
    width: 180px;
    bottom: -50px;
    right: -80px;
  }

  /* Reviews */

  .reviews .slick-slider {
    padding: 0;
  }

  .slick-arrow {
    top: 18%;
  }

  /* logos */

  .logos {
    flex-wrap: wrap;
    justify-content: center;
  }

  .logos-item {
    width: 50%;
    margin-bottom: 20px;
  }

  .logos-img {
    margin: 0 auto;
  }

  .works-column {
    width: 100%;
  }

  .works-image {
    width: 100%;
  }

  /* Clients */

  .clients-photo {
    position: static;
  }

  .clients-item {
    padding-left: 0;
    text-align: center;
  }

  .clients-text::before {
    margin: 15px auto;
  }

  /* Blogs */

  .blogs-img {
    width: 80px;
    height: 50px;
  }

  .blogs-title {
    font-size: 10px;
  }

  /* Subscribe */

  .subscribe {
    flex-wrap: wrap;
    max-width: none;
  }

  .subscribe-input {
    margin-bottom: 10px;
    border-right: 1px solid #e7e7e7;
  }

  .subscribe-input,
  .subscribe-btn {
    width: 100%;
  }

}