body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

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

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

a {
    text-decoration: none;
}


/* Container */

.container {
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 15px;
}

.page {
    overflow: hidden;
}


/* header */

.header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-top: 2em;
}

.header.fixed {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    background-color: #f38181;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    transform: translate3d(0, 0, 0);
    padding: 10px 0;
}

.header.active {
    background-color: #f38181;
}

.header__logo {
    font-size: 2em;
    font-weight: 700;
    color: #fff;
}

.header__inner {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
}

.nav {
    font-size: 0.9em;
    text-transform: uppercase;
}

.nav__link {
    color: #fff;
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    -webkit-transition: color 0.1s linear;
    transition: color 0.1s linear;
    display: inline-block;
    margin: 0 25px;
    padding-bottom: 10px;
}

.nav__link:last-child {
    margin-right: 0;
}

.nav__link.active {
    color: #fce38a;
}

.nav__link::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fce38a;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    -webkit-transition: opacity 0.1s linear;
    transition: opacity 0.1s linear;
    opacity: 0;
}

.nav__link:hover {
    color: #fce38a;
}

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

.nav-toggle {
    position: absolute;
    top: 24;
    right: 24px;
    z-index: 1;
    width: 30px;
    padding: 10px 0;
    font-size: 0;
    color: transparent;
    border: 0;
    cursor: pointer;
    background: none;
    display: none;
}

.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 .2s linear;
}

.nav-toggle__item:before,
.nav-toggle__item::after {
    content: '';
    width: 100%;
    height: 3px;
    background-color: #fff;
    left: 0;
    z-index: 1;
    position: absolute;
    transition: transform .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 {
    transform-origin: left top;
    transform: rotate(45deg) translateX(-2px);
}

.nav-toggle.active .nav-toggle__item::after {
    transform-origin: left bottom;
    transform: rotate(-45deg) translateX(-3px);
}


/* Hero */

.hero-bg {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: url(../img/2-layers.png) center no-repeat;
    background-size: cover;
    text-align: center;
    min-height: 820px;
    position: relative;
}

.hero-bg__title {
    font-size: 10em;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
    color: #fff;
}

.hero-bg__title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin: 60px auto;
    background-color: #fff;
}

.hero-bg__undertitle {
    margin-bottom: 40px;
    font-size: 4.8em;
    color: #fff;
    font-family: "Kaushan Script";
    font-weight: 400;
}

.hero-bg__inner {
    max-width: 53.467em;
    width: 100%;
    margin: 0 auto;
}


/* Button */

.btn {
    display: inline-block;
    vertical-align: top;
    text-transform: uppercase;
    color: #fff;
    border: 3px solid #fff;
    padding: 8px 30px;
    text-decoration: none;
    font-size: 14px;
    -webkit-transition: background 0.1s linear, color 0.1s linear;
    transition: background 0.1s linear, color 0.1s linear;
    font-weight: 700;
}

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

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

.slider__inner {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    text-align: left;
}

.slider__item.active {
    opacity: 1;
}

.slider__num {
    font-size: 24px;
    font-weight: 700;
}

.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:before {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background-color: #f38181;
    position: absolute;
    top: -3px;
    left: 0;
    z-index: 1;
}

.section {
    padding: 100px 0;
}


/* ABOUT_US SECTION */

.section__header {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

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

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

.section__title::after {
    content: "";
    display: block;
    width: 60px;
    background-color: #f38181;
    height: 3px;
    margin: 30px auto;
}

.section-header__text {
    color: #999999;
    font-family: Roboto;
    font-weight: 400;
    line-height: 24px;
    padding-bottom: 80px;
}

.stats {
    display: -webkit-box;
    display: flex;
}

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

.stats__item {
    -webkit-box-flex: 1;
    flex: 1 1 0;
    border-left: 1px solid #b5eae0;
    text-align: center;
    color: #fff;
    padding: 90px 0;
}

.stats__item:last-child {
    border-right: 1px solid #b5eae0;
}

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

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

.section-header {
    width: 100%;
    text-align: center;
}

.services {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
}

.services__item {
    width: 33.33333%;
    padding-left: 85px;
    padding-right: 25px;
    position: relative;
}

.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;
    font-family: Roboto;
}

hr {
    border: 0;
    height: 1px;
    background-color: #e5e5e5;
    width: 100%;
    margin: 40px 0;
}

.section-service {
    padding-bottom: 120px;
}

.features {
    padding-bottom: 0;
    background: url("../img/bg-feat.png") center no-repeat;
    background-size: cover;
}

.devices {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

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

.item--iphone {
    position: absolute;
    bottom: -80px;
    right: 0;
    z-index: 1;
}

.services2__text {
    max-width: 954px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 92px;
    color: #999999;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
}

.services2-body {
    display: -webkit-box;
    display: flex;
    -webkit-box-flex: 1;
    flex: 1 1 0;
    margin-bottom: 120px;
}

.services2-body__item {
    width: 50%;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.accordion {
    margin-left: 30px;
}

.accordion-body {
    display: none;
}

.accordion__item.active .accordion-body {
    display: block;
}

.accordion-header {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    border: 1px solid #e5e5e5;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
}

.accordion-info {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.accordion-header__icon {
    padding: 15px;
}

.fa-chevron-up,
.fa-chevron-down {
    padding-right: 10px;
    width: 22px;
    height: 12px;
    color: #cccccc;
}

.accordion-body {
    border: 1px solid #e5e5e5;
    overflow: hidden;
    padding: 21px 58px 28px 20px;
    height: 132px;
    color: #999999;
    font-family: "Roboto - Light Italic";
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    overflow-y: scroll;
    overflow-x: hidden;
    margin-top: 0;
}

.accordion-header__title {
    text-transform: uppercase;
    color: #333333;
}

 ::-webkit-scrollbar {
    width: 5px;
}

 ::-webkit-scrollbar-track {
    background: #f5f5f5;
}

 ::-webkit-scrollbar-thumb {
    background: #95e1d3;
    border-radius: 10px;
    height: 90px;
}


/*  QUOTE SECTION */

.quote-body {
    position: relative;
}

.quote-body .slick-slider {
    padding: 0 110px;
}

.quote-item {
    padding-left: 255px;
    position: relative;
    min-height: 210px;
}

.quote__photo {
    display: block;
    width: 200px;
    height: 200px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.quote__text {
    color: #999999;
    font-family: "Roboto", sans-serif;
    font-style: italic;
    font-size: 24px;
    font-weight: 300;
    line-height: 36px;
}

.quote__author {
    color: #333333;
    font-family: "Kaushan Script";
    font-size: 24px;
    font-weight: 400;
}

.quote__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;
    position: absolute;
    top: 50%;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 0;
    background: 0;
    cursor: pointer;
}

.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;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.quote-body__btn--next,
.slick-next {
    right: 0;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.quote {
    padding: 70px 0 70px 0;
    background-color: #f8f8f8;
}


/* Social */

.social__item {
    width: 55px;
    height: 55px;
    padding: 10px;
    background-color: #fce38a;
    color: #f38181;
    border-right: 1px solid #f38181;
    font-size: 30px;
    text-decoration: none;
    line-height: 1;
    -webkit-transition: background 0.1s linear, color 0.1s linear;
    transition: background 0.1s linear, color 0.1s linear;
}

.social {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.social__item:last-child {
    border-right: 0;
}


/* CARD */

.card {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}

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

.card__info {
    margin-top: 20px;
    text-align: center;
}

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

.card__prof {
    font-style: italic;
    color: #999;
    font-weight: 300;
}

.social__item:hover {
    color: #fff;
    background-color: #f38181;
    cursor: pointer;
}

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

.card__inner:hover .card__img {
    -webkit-transform: translate3d(-10px, -10px, 0);
    transform: translate3d(-10px, -10px, 0);
}

.card__inner:hover .card__img img {
    opacity: 0.1;
}

.card__inner:hover .card__text {
    opacity: 1;
}

.card__inner:hover .card__pic {
    opacity: 1;
}

.card__img {
    background: -webkit-gradient(linear, left top, left bottom, from(#f38181), to(#fce38a));
    background: linear-gradient(to bottom, #f38181, #fce38a);
    -webkit-transition: -webkit-transform 0.2s linear;
    transition: -webkit-transform 0.2s linear;
    transition: transform 0.2s linear;
    transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

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

.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;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}

.card__pic {
    opacity: 0;
    position: absolute;
    top: 40%;
    left: 89px;
    z-index: 2;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}

.logos {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 50px 0;
    flex-wrap: wrap;
}

.section--grey {
    background-color: #f8f8f8;
}


/* WORKS SECTION */

.works {
    display: -webkit-box;
    display: flex;
}

.works__col {
    -webkit-box-flex: 1;
    flex: 1 1 0;
}

.works__item {
    position: relative;
    background: -webkit-gradient(linear, left top, left bottom, from(#f38181), to(#fce38a));
    background: linear-gradient(to bottom, #f38181, #fce38a);
}

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

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

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

.quote__photo2 {
    position: absolute;
    top: -22px;
    left: -40px;
    z-index: 1;
}

.works__info {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
    width: 100%;
    z-index: 1;
    color: #fff;
    text-align: center;
    padding: 0 15px;
    opacity: 0;
}

.works__title {
    margin-bottom: 5px;
    font-size: 14px;
    text-transform: uppercase;
}

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

.quote-item2 {
    padding-left: 255px;
    position: relative;
}

.quote2 {
    padding: 100px 0 130px 0;
}

.clients {
    display: -webkit-box;
    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;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 50%;
}

.clients__name {
    color: #333;
    text-transform: uppercase;
    font-family: Montserrat;
    font-size: 14px;
}

.clients__prof {
    font-size: 15px;
    color: #333;
    font-style: italic;
    font-family: "Roboto - Light Italic";
    font-weight: 400;
    line-height: 24px;
    margin: 15px 0 0;
}

.clients__text {
    color: #999;
    font-family: Roboto;
    font-weight: 400;
    line-height: 24px;
}

.clients__text::before {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #f38181;
    margin: 15px 0;
}

.sections-clients {
    background: url(../img/whatps-bg.png) center no-repeat;
    background-size: cover;
}


/* Blog */

.blog {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
}

.blog__item {
    width: 31%;
}

.blog__header {
    position: relative;
    margin: 20px 0;
}

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

.blog__date {
    color: #fff;
    background-color: #95e1d3;
    position: absolute;
    bottom: 10px;
    left: -10px;
    z-index: 1;
    padding: 15px;
}

.blog__date-day {
    font-family: Montserrat;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

.blog__date-day span {
    font-family: "Roboto Light";
    font-weight: 300;
}

.blog__title a {
    color: inherit;
    text-decoration: none;
}

.blog__title a:hover {
    text-decoration: underline;
}

.blog__title {
    color: #333333;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

.blog__text {
    color: #999999;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
}

.blog__footer {
    border-top: 1px solid #e5e5e5;
    color: #999999;
    font-family: "Roboto - Light Italic";
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    padding-top: 10px;
    font-style: italic;
    padding-bottom: 120px;
}

.blog__content {
    margin-bottom: 10px;
}

.blog-stat__item {
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
}

.blog-stat__item i {
    color: #95e1d3;
}


/* Section Map*/

.section--map {
    background: url(../img/map.png) center no-repeat;
    background-size: cover;
}

.map {
    text-align: center;
    padding: 57px 0;
}

.map__title {
    color: #f38181;
    font-family: Montserrat;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.map__title a {
    color: inherit;
    text-decoration: none;
}

.map__title a:hover {
    text-decoration: underline;
}

.map__title:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #f38181;
    margin: 15px auto 0;
}

.footer {
    padding-top: 65px;
    background-color: #f8f8f8;
}

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

.footer__inner {
    padding-bottom: 65px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.footer__col {
    padding: 0 15px;
}

.footer__text {
    color: #999999;
    font-family: Roboto;
    font-weight: 400;
    line-height: 24px;
    margin: 30px 0;
}

.footer__social-header {
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #e5e5e5;
    font-weight: 400;
    padding-bottom: 15px;
}

.footer__social-header b {
    font-size: 18px;
    font-weight: 700;
}

.footer__social-content {
    padding-top: 15px;
    color: #999999;
    font-family: "Roboto - Light Italic";
    font-weight: 400;
    line-height: 24px;
    font-style: italic;
}

.footer__social {
    margin-bottom: 25px;
}

.footer__social-content a {
    color: #95e1d3;
    font-size: 18px;
    margin-left: 10px;
    vertical-align: middle;
    display: inline-block;
}

.footer__social-content a:hover {
    color: #3e9484;
}

.subscribe__input {
    padding: 12px;
    background: #fff;
    font-style: italic;
    color: #cccccc;
    font-family: "Roboto";
    font-weight: 400;
    line-height: 1.1;
    border: 1px solid #e7e7e7;
    border-right: 0;
}

.subscribe__btn {
    line-height: 1.1;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    padding: 15px 35px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-transition: background .2s linear;
    transition: background .2s linear;
    background-color: #95e1d3;
    border: none;
}

.subscribe__btn:hover {
    background-color: #3c9282;
}

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

.subscribe__btn:focus {
    outline: 0;
}

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

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

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

.footer__title {
    color: #333333;
    font-family: Montserrat;
    font-size: 14px;
    text-transform: uppercase;
    margin: 30px 0;
}


/* BLOGS */

.blogs__item {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 20px;
}

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

.blogs__content {
    padding-left: 20px;
}

.blogs__title {
    display: block;
    color: #333333;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
}

.blogs__content span {
    display: block;
    color: #999999;
    font-family: "Roboto ";
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
    font-style: italic;
}

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

.instagram {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

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

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

.footer__copyright {
    text-align: center;
    color: #333333;
    font-size: 14px;
    font-weight: 400;
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
}

.footer__copyright span {
    color: #f38181;
}

.instagram__footer a {
    text-decoration: none;
    color: #333333;
    font-family: "Roboto";
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
    font-style: italic;
}

.instagram__footer {
    margin-top: 10px;
}

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

@media (max-width: 1230px) {
    .hero-bg__undertitle {
        font-size: 52px;
    }
    .hero-bg__title {
        font-size: 120px;
    }
    .quote__text {
        font-size: 18px;
    }
}

@media (max-width: 990px) {
    /* Hero block */
    .hero-bg__title {
        font-size: 80px;
    }
    .hero-bg__undertitle {
        font-size: 32px;
    }
    /* Clients */
    .clients__item {
        width: 100%;
        margin-bottom: 0;
    }
    .clients__item:last-child {
        margin-bottom: 0;
    }
    .clients {
        max-width: 600px;
        margin: 0 auto;
    }
    /* Footer */
    .footer__col--first {
        width: 100%;
    }
    .footer__col--second,
    .footer__col--third {
        width: 50%;
    }
    /* Instagram */
    .instagram {
        -webkit-box-pack: start;
        justify-content: flex-start;
    }
    .instagram__item {
        width: auto;
        border-right: 1px solid #fff;
    }
    .quote-body .slick-slider {
        padding: 0 60px;
    }
    .quote__photo {
        width: 150px;
        height: 150px;
    }
}

@media (max-width:770px) {
    .nav-toggle {
        display: block;
    }
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #f38181;
        width: 100%;
    }
    .nav__link {
        display: block;
        margin: 0;
        padding: 8px 20px;
    }
    .nav.active {
        display: block;
    }
    .header {
        padding: 10px 0;
    }
    .hero-bg {
        min-height: 680px;
    }
    .hero-bg__title {
        font-size: 60px;
    }
    .logos {
        padding: 0 50px;
        -webkit-box-pack: center;
        justify-content: center;
    }
    .logos__item img {
        height: 100px;
        width: 100px;
    }
    .quote__author {
        padding-top: 15px;
        font-size: 18px;
    }
    .quote {
        padding: 20px 0 20px 0;
    }
    .quote__text {
        line-height: 1.2;
    }
    .quote-item {
        padding-left: 0;
    }
    /* Hero block */
    .slider__text {
        display: none;
    }
    .slider__item.active:before {
        width: 50%;
    }
    .section {
        padding: 40px 0;
    }
    /* Cards */
    .card {
        -webkit-box-pack: center;
        justify-content: center;
    }
    .card__item {
        width: 100%;
        max-width: 410px;
        margin-bottom: 30px;
    }
    .card__item:last-child {
        margin-bottom: 0;
    }
    .section-header__text {
        padding-bottom: 50px;
    }
    .card__pic {
        top: 37%;
        left: 69px;
    }
    /* Stat */
    .stats__count {
        font-size: 32px
    }
    .stats__text {
        font-size: 10px;
    }
    .stats__item {
        border-left: none;
        padding: 40px 0;
    }
    .stats__item:last-child {
        border-right: none;
    }
    .stats__count {
        margin-bottom: 10px;
    }
    .services__item {
        width: 50%;
    }
    hr {
        display: none;
    }
    .services2-body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        padding: 0 20px;
        margin-bottom: 0;
    }
    .accordion {
        padding: 30px 0;
        margin-left: 0;
    }
    .services2-body__item {
        width: 100%;
    }
    /* Works */
    .works {
        flex-wrap: wrap;
    }
    .works__col {
        -webkit-box-flex: 0;
        flex: none;
        width: 50%;
    }
    /* Blog */
    .blog {
        max-width: 380px;
        margin: 0 auto;
    }
    .blog__item {
        width: 100%;
    }
    .blog__footer {
        padding-bottom: 20px;
    }
    /* Footer */
    .footer__col--second,
    .footer__col--third {
        width: 100%;
    }
    .slick-slide img {
        display: none !important;
    }
}

@media (max-width: 575px) {
    .slick-slide img {
        display: none;
    }
    .quote__text {
        padding: 0 15px;
    }
    .quote-body .slick-slider {
        padding: 0 10px;
    }
    /* Hero block */
    .hero-bg__undertitle {
        font-size: 22px;
    }
    .section__subtitle {
        font-size: 20px;
    }
    .section__title {
        font-size: 24px;
    }
    .section__title::after {
        margin: 20px auto;
    }
    /* Services */
    .services__item {
        width: 100%;
    }
    .item--iphone {
        width: 170px;
        bottom: -50px;
        right: -30px;
    }
    /* Devices */
    .devices {
        max-width: 320px;
    }
    /* Clients */
    .clients__photo {
        position: static;
    }
    .clients__item {
        padding: 0;
        text-align: center;
    }
    .clients__text::before {
        margin: 15px auto;
    }
    /* Subscribe */
    .subscribe {
        flex-wrap: wrap;
        max-width: none;
    }
    .subscribe__input,
    .subscribe__btn {
        width: 100%;
    }
    .subscribe__input {
        margin-bottom: 10px;
        border-right: 1px solid #e7e7e7;
    }
    /* Blogs */
    .blogs__img {
        width: 80px;
        height: 80px;
    }
    .blogs__title {
        font-size: 10px;
    }
}