body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;

    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

*,
*:after,
*:before {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

/* 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: 820px;
    position: relative;

    background: url('../images/intro.jpg') center no-repeat;
    background-size: cover;
}

.intro__inner {
    width: 100%;
    margin: 0 auto;

    text-align: center;
}

.intro__suptitle {
    margin-bottom: 20px;
    font-size: 72px;
    color: white;
    font-family: 'Kaushan Script', cursive;
    text-align: center;
    font-weight: normal;
}

.intro__title {
    color: white;
    text-transform: uppercase;
    font-size: 150px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}

.intro__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    margin: 60px auto 0;

    margin-bottom: 60px;

    background-color: white;
}

/* Header */

.header {
    width: 100%;
    padding-top: 30px;
    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, 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 {
    text-transform: uppercase;
    font-size: 14px;
}

.nav__link {
    display: inline-block;
    vertical-align: top;
    margin: 0 15px;
    position: relative;

    color: white;
    text-decoration: none;

    transition: color 0.1s linear;
}

.nav__link:after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    opacity: 0;

    background-color: #fce38a;

    position: absolute;
    top: 100%;
    left: 0px;
    z-index: 1;

    transition: opacity 0.1s linear;
}

.nav__link:hover {
    color: #fce38a;
}

.nav__link:hover:after {
    opacity: 1;
}

.nav__link.active:after {
    opacity: 1;
}

.nav__link.active {
    color: #fce38a;
}

.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__item {
    display: block;
    width: 100%;
    height: 3px;

    background-color: #fff;

    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

.nav-toggle__item:before,
.nav-toggle__item::after {
    content: '';
    width: 100%;
    height: 3px;

    background-color: #fff;

    position: absolute;
    left: 0;
    z-index: 1;
    transition: transform 0.2s linear;
}

.nav-toggle__item:before {
    top: -8px;
}

.nav-toggle__item:after {
    bottom: -8px;
}

.nav-toggle.active .nav-toggle__item {
    background: none;
}

.nav-toggle.active .nav-toggle__item:before {
    display: block;
    transform: rotate(-135deg) translate3d(-6px, -5px, 0);
}

.nav-toggle.active .nav-toggle__item:after {
    display: block;
    transform: rotate(135deg) translate3d(-7px, 5px, 0);
}

/* Button */

.btn {
    display: inline-block;
    vertical-align: top;
    padding: 8px 25px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;

    border: 3px solid #fff;

    transition: color 0.1s linear, background 0.1s linear;
}

.btn:hover {
    background: #fff;
    color: #333;
}

/* Slider */

.slider {
    width: 100%;
    margin-top: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.slider__inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.slider b {
    font-size: 24px;
    margin-right: 5px;
}

.slider__item {
    width: 23%;
    padding: 20px 0;
    position: relative;

    border-top: 3px solid #fff;

    opacity: 0.7;

    font-size: 18px;
    color: white;

    text-transform: uppercase;
}

.slider__item.active {
    opacity: 1;
}

.slider__item.active::before {
    content: '';
    display: block;
    width: 70px;
    height: 3px;

    position: absolute;
    top: -3px;
    left: 0;
    z-index: 1;
    background-color: orange;
}

/* Section */

.section {
    padding: 80px 0;
}

.section--grey {
    background-color: #f8f8f8;
    padding: 40px 0;
}

.section--reviews {
    padding: 40px 0;
}

.section--clients {
    background: url('/assets/images/clients-bg.jpg') no-repeat center;
    background-size: cover;
}

.section--map {
    background: url('/assets/images/map-bg.jpg') no-repeat center;
    background-size: cover;
}

.section--devices {
    background: url('/assets/images/devices-bg.jpg') no-repeat center;
    background-size: cover;

    padding-bottom: 0;
    margin-bottom: 40px;
}

.section__header {
    width: 100%;
    max-width: 950px;
    margin: 0 auto 50px;
    position: relative;

    text-align: center;
}

.section__suptitle {
    font-size: 24px;
    color: #333;
    font-family: 'Kaushan Script', cursive;
}

.section__title {
    font-size: 30px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
}

.section__text {
    font-size: 15px;
    color: #999;
}

.section__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    margin: 25px auto;

    background-color: orange;
}

.section__title--map {
    color: orangered;
}

.section__title--map::after {
    margin: 13px auto;
    background-color: orangered;
}

.section__header--map {
    margin-bottom: 0;
}

.fa-location-dot {
    font-size: 35px;
    color: orangered;
}

/* Cards */

.cards {
    display: flex;
    justify-content: space-between;
    margin: 80px -15px 0;
    flex-wrap: wrap;
}

.cards__img {
    background: linear-gradient(to bottom, #f38181, #fce38a);

    transition: transform 0.2s linear;
}

.cards__item {
    width: 33.33333%;
    padding: 0 15px;
}

.cards__info {
    margin-top: 20px;

    text-align: center;
}

.cards__name {
    text-transform: uppercase;
    color: #333;
    font-size: 14px;
    margin-bottom: 5px;
}

.cards__prof {
    color: #999;
    font-style: italic;
    font-size: 15px;
    font-weight: 300;
}

.cards__inner {
    background-color: #95e1d3;
    position: relative;
}

.cards__inner:hover .cards__img {
    transform: translate3d(-10px, -10px, 0);
}

.cards__inner:hover .cards__img img {
    display: block;
    opacity: 0.1;
}

.cards__img img {
    display: block;
    transition: opacity 0.1s linear;
    max-width: 100%;
    height: auto;
}

.cards__text {
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    opacity: 0;

    position: absolute;
    top: 50%;
    left: 0;
    z-index: 2;
    transform: translate3d(0, -50%, 0);

    transition: opacity 0.2s linear;
}

.cards__inner:hover .cards__text {
    opacity: 1;
}

/* Statistics */

.statistics {
    background-color: #95e1d3;
}

.statistics__inner {
    display: flex;
    flex-wrap: wrap;
}

.stat__item {
    flex: 1 1 0;

    border-left: 1px solid rgba(255, 255, 255, 0.7);

    text-align: center;
    color: white;
    padding: 70px 25px;
}

.stat__item:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.7);
}

.stat__text {
    text-transform: uppercase;
    font-size: 14px;
}

.stat__count {
    font-size: 72px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
}

/* Services */

.services {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid grey;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.services:last-child {
    border-bottom: none;
    padding-bottom: none;
}

.services__item {
    flex: 1 1 0;
    position: relative;

    padding-left: 70px;
    padding-right: 20px;
}

.services__title {
    text-transform: uppercase;

    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.services__icon {
    position: absolute;
    top: 2px;
    left: 28px;
    z-index: 1;
}

.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;
    margin: 0 -15px;
    flex-wrap: wrap;
}

.wedo__item {
    width: 50%;
    padding: 0 15px;
}

.wedo__img {
    display: block;
    max-width: 100%;
    height: auto;
}

.accordion__item {
    border: 1px solid #e5e5e5;

    margin-bottom: 5px;
}

.accordion__item.active .accordion__content {
    display: block;
}

.accordion__item.active .accordion__header:after {
    transform: translateY(-30%) rotate(-45deg);
}

.accordion__item.active .accordion__header {
    border-bottom-color: #e5e5e5;
}

.accordion__header {
    padding: 15px 20px 15px 60px;
    position: relative;

    border-bottom: 1px solid transparent;
    cursor: pointer;
}

.accordion__header:after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;

    position: absolute;
    border-top: 2px solid #ccc;
    border-right: 2px solid #ccc;
    top: 50%;
    right: 20px;
    z-index: 1;

    transform: translateY(-60%) rotate(135deg);
}

.accordion__icon {
    position: absolute;
    top: 50%;
    left: 20px;
    z-index: 1;

    transform: translateY(-40%);
}

.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 {
    padding: 0 110px;

    position: relative;
}

.reviews__item {
    padding-left: 235px;
    position: relative;
}

.reviews__photo {
    position: absolute;
    top: -20%;
    left: 0;
    z-index: 1;
    width: 210px;
    height: 210px;

    border-radius: 50%;
}

.reviews__text {
    font-size: 24px;
    color: #999;
    font-style: italic;
    font-weight: 300;
    margin: 40px 0;
}
.reviews__author {
    font-size: 24px;
    color: black;
    font-family: 'Kaushan Script', cursive;
}

.reviews__author:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 60px;
    height: 3px;
    margin-right: 10px;
    background-color: #f38181;
}

.reviews__button {
    font-size: 0;
    color: transparent;

    position: absolute;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
}

.reviews__button:after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;

    border-top: 2px solid #ccc;
    border-right: 2px solid #ccc;
}

.reviews__button--prev {
    left: 0;
    transform: rotate(-135deg);
}

.reviews__button--next {
    right: 0;
    transform: rotate(45deg);
}

/* Team Cards */

.social {
    display: flex;
    justify-content: center;
}

.social__item {
    width: 55px;
    height: 55px;

    background-color: #fce38a;

    border-right: 1px solid #f38181;
    text-decoration: none;
    color: #f38181;

    font-size: 30px;
    padding: 12px 10px;
    line-height: 1;

    transition: color 0.2s linear, background-color 0.2s linear;
}

.social__item:last-child {
    border-right-color: transparent;
}

.social__item:hover {
    background-color: #f38181;
    color: #fce38a;
}

/* Logos */

.logos {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin: 0 -15px;
}

.logos__item {
    padding: 0 15px;
}

.logos__item img {
    display: block;
    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);
}

.works__item:hover .works__img {
    opacity: 0.1;
}

.works__item:hover .works__info {
    opacity: 1;
}

.works__info {
    opacity: 0;
    position: absolute;
    padding: 0 15px;
    top: 50%;
    left: 0;
    width: 100%;

    text-align: center;
    color: white;

    transform: translate3d(0, -50%, 0);
    transition: opacity 0.2s linear;
}

.works__img {
    transition: opacity 0.2s linear;
    max-width: 100%;
    height: auto;
    display: block;
}

.works__title {
    text-transform: uppercase;
    font-size: 14px;

    margin-bottom: 5px;
}

.works__text {
    font-weight: 300;
    font-style: italic;
    font-size: 15px;
}

/* Clients */

.clients {
    display: flex;
    flex-wrap: wrap;
    margin-top: 70px;
}

.clients__item {
    width: 50%;
    position: relative;

    margin-bottom: 60px;
}

.clients__content {
    padding: 0 45px 0 175px;
}

.clients__img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;

    width: 110px;
    height: 110px;
    border-radius: 50%;
}

.clients__name {
    text-transform: uppercase;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.clients__prof {
    color: #333;
    font-weight: 300;
    font-size: 15px;
    font-style: italic;
}

.clients__text {
    font-size: 15px;
    color: #999;
}

.clients__text:before {
    content: '';
    display: block;
    margin-top: 10px;
    margin-bottom: 20px;

    background-color: #f38181;
    height: 3px;
    width: 60px;
}

/* Blog */

.blog {
    display: flex;
    justify-content: space-between;
}

.blog__item {
    width: 30%;
}

.blog__header {
    position: relative;
    margin-bottom: 14px;
}

.blog__photo {
    display: block;
    max-width: 100%;
    height: auto;
}

.blog__date {
    padding: 10px 20px;
    color: white;
    font-size: 15px;
    font-style: italic;
    font-weight: 300;
    text-align: center;

    position: absolute;
    bottom: 10px;
    left: -10px;
    z-index: 1;

    background-color: #95e1d3;
}

.blog__date div {
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    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 {
    color: #999;
    font-size: 15px;
}

.blog__footer {
    padding-top: 14px;
    border-top: 1px solid #e5e5e5;

    font-size: 15px;
    color: #999;
    font-weight: 300;
    font-style: italic;
}

.blog-stat__item {
    display: inline-block;
    margin-right: 15px;
}

.blog-stat__item i {
    color: #95e1d3;
    margin-right: 3px;
}

/* Map */

.map__nav {
    color: inherit;
    text-decoration: none;
}

.map__nav:hover {
    text-decoration: underline;
}

/* Footer */

.footer {
    padding-top: 65px;

    background-color: #f8f8f8;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    padding-bottom: 65px;
}

.footer__logo {
    color: #ccc;
    font-size: 46px;
    font-weight: bold;

    margin-bottom: 30px;
}

.footer__text {
    margin-bottom: 30px;

    font-size: 15px;
    color: #999;
}

.footer__stats {
    margin-bottom: 25px;
}

.footer__stats-header {
    font-size: 14px;
    color: #333;
    padding-bottom: 15px;

    border-bottom: 1px solid #e5e5e5;
}

.footer__stats-header b {
    font-size: 18px;
}

.footer__stats-content {
    padding-top: 15px;

    font-size: 15px;
    color: #999;
    font-style: italic;
    font-weight: 300;
}

.footer__stats-content a {
    color: #95e1d3;
    font-size: 25px;
    margin: 0 7px;

    text-decoration: none;
}

.footer__item--first {
    width: 40%;
}

.footer__item--second {
    width: 29%;
}

.footer__item--third {
    width: 22%;
}

.footer__title {
    text-transform: uppercase;
    color: black;
    font-size: 14px;
}

/* Subscribe Block */

.subscribe {
    display: flex;

    width: 100%;
    max-width: 380px;
}

.subscribe__input {
    background-color: #fff;
    height: 40px;
    width: 60%;

    border: 1px solid #e7e7e7;
    font-family: 'Montserrat', sans-serif;

    line-height: 1.1;
    font-size: 15px;
    font-weight: 300;
    font-style: italic;
    color: black;
    padding: 12px;
}

.subscribe__input::placeholder {
    color: #ccc;
}

.subscribe__btn {
    height: 40px;
    padding: 12px 30px;
    line-height: 1.1;
    width: 40%;

    background-color: #95e1d3;
    border: none;

    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;

    cursor: pointer;
    transition: background-color 0.2s linear;
}

.subscribe__btn:hover {
    background-color: #297e6f;
}

.subscribe__input:focus {
    outline: none;
    border-color: #95e1d3;
}

/* Blogs */

.blogs__item {
    margin-top: 30px;
    display: flex;

    align-items: center;
}

.blogs__img {
    width: 120px;
    height: 80px;
}

.blogs__content {
    padding-left: 20px;
}

.blogs__title {
    display: block;
    margin-bottom: 5px;
    color: black;
    font-size: 12px;
    text-transform: uppercase;

    text-decoration: none;
    line-height: 1.2;
}

.blogs__title:hover {
    text-decoration: underline;
}

.blogs__data {
    font-size: 13px;
    font-weight: 300;
    font-style: italic;
    color: #999;
}

/* Instagram */

.instagram {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: space-between;
}

.instagram__item {
    width: 32.33333333%;
    border-bottom: 1px solid #fff;
}

.instagram__item img {
    display: block;
    width: 100%;
    height: auto;
}

/* Copyrigth */

.copyright {
    border-top: 1px solid #e5e5e5;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    color: #333;
}

.copyright span {
    color: orange;
}

/* Slider slick */

.slick-arrow {
    display: none;
}

@media (max-width: 1230px) {
    /* Intro */
    .intro__title {
        font-size: 120px;
    }

    .intro__suptitle {
        font-size: 52px;
    }

    /* Reviews */

    .reviews__text {
        font-size: 20px;
    }
}

@media (max-width: 990px) {
    /* Intro */
    .intro__title {
        font-size: 80px;
    }

    .intro__suptitle {
        font-size: 32px;
    }

    /* Nav */

    .nav {
        opacity: 0;
        z-index: -100;

        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;

        background-color: #eb8b8d;

        transition: opacity 0.1s linear;
    }

    .nav.active {
        opacity: 1;
        z-index: 1;
    }

    .nav.active .nav__link {
        display: block;
        opacity: 1;
        z-index: 1;
    }

    .nav__link {
        display: none;
        margin: 0;

        padding: 8px 20px;
    }

    /* Stat */

    .statistics__inner {
        justify-content: center;
    }

    .stat__item {
        flex: none;
        width: 33.33333333%;
        border: none;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .stat__item:last-child {
        border-right: none;
    }

    /* Reviews */

    .reviews__photo {
        width: 150px;
        height: 150px;
    }

    .reviews__item {
        padding-left: 175px;
    }

    .reviews {
        padding: 0 60px;
    }

    /* Clients */

    .clients {
        max-width: 600px;
        margin: 0 auto;
    }

    .clients__item {
        width: 100%;
        padding-right: 0;
    }

    /* Instagram */

    .footer__inner {
        flex-wrap: wrap;
    }

    .footer__item--first {
        width: 100%;
    }

    .footer__item--second,
    .footer__item--third {
        width: 50%;
        margin-top: 20px;
    }
}

@media (max-width: 770px) {
    /* Intro */

    .intro {
        min-height: 650px;
    }

    /* Header */

    .header {
        padding: 10px 0;
    }

    /* Nav-toggle */

    .nav-toggle {
        display: block;
    }

    /* Section */

    .section {
        padding: 40px 0;
    }

    .section--devices {
        padding-bottom: 0;
    }

    /* Slider */
    .slider__text {
        display: none;
    }

    .slider__item {
        text-align: center;
    }

    .slider__item.active:before {
        width: 50%;
    }

    /* Cards */

    .cards {
        justify-content: center;
        margin-top: 50px;
    }
    .cards__item {
        width: 100%;
        max-width: 410px;
        margin-bottom: 30px;
    }

    .cards__item:last-child {
        margin-bottom: 0;
    }

    /* Services */

    .services {
        flex-direction: column;
    }

    .services__item {
        width: 100%;
        margin: 20px 0;
    }

    .services:last-child {
        margin-bottom: -10px;
    }

    /* Devices */

    .devices {
        max-width: 320px;
    }

    .devices__item--iphone {
        width: 180px;
        bottom: -50px;
        right: -80px;
    }

    /* Reviews */

    .reviews__photo {
        position: static;
        display: block;
        margin: 0 auto;
        margin-bottom: 15px;
    }

    .reviews__item {
        padding-left: 0px;
    }

    .reviews__text {
        font-size: 16px;
    }

    .reviews__author {
        font-size: 20px;
    }

    /* Works */

    .works {
        flex-wrap: wrap;
    }

    .works__column {
        flex: none;
        width: 50%;
    }

    /* Blog */

    .blog {
        flex-wrap: wrap;
        max-width: 380px;
        margin: 0 auto;
    }

    .blog__item {
        width: 100%;
        margin-bottom: 20px;
    }

    .blog__item:last-child {
        margin-bottom: 0;
    }

    /* Subscribe */

    .subscribe {
        flex-wrap: wrap;
        max-width: none;
    }

    .subscribe__input {
        border-right: 1px solid #e7e7e7;
    }

    .subscribe__input,
    .subscribe__btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 575px) {
    /* Intro */
    .intro__title {
        font-size: 40px;
    }

    .intro__suptitle {
        font-size: 22px;
    }

    /* Section */
    .section__header {
        margin-bottom: 50px;
    }

    .section__title {
        font-size: 24px;
    }

    .section__suptitle {
        font-size: 20px;
    }

    .section__title:after {
        margin: 20px auto;
    }

    /* Stat */

    .stat__item {
        width: 100%;
        border-bottom: 1px solid #b5eae0;
    }

    .stat__item:last-child {
        border-bottom: none;
    }

    .stat__count {
        font-size: 52px;
    }

    /* We Do */

    .wedo__img {
        display: none;
    }

    .wedo__item {
        width: 100%;
    }

    /* Reviews */

    .reviews {
        padding: 0;
    }

    .reviews__button {
        top: 18%;
    }

    /* Logos */

    .logos {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logos__item {
        width: 50%;
        margin-bottom: 10px;
    }

    .logos__item img {
        margin: 0 auto;
    }

    /* Clients */

    .clients__img {
        position: static;
    }

    .clients__item {
        text-align: center;
    }

    .clients__content {
        padding-left: 0px;
        padding-right: 0;
    }

    .clients__text:before {
        margin: 10px auto;
    }

    .clients__item:last-child {
        margin-bottom: 0;
    }

    /* Instagram */

    .footer__item--second,
    .footer__item--third {
        width: 100%;
    }

    .footer__title {
        text-align: center;
    }
}
