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

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    /* font-family: 'Kaushan Script', cursive; */
}

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

hr {
    display: block;
    width: 100%;
    height: 1px;
    margin: 50px 0;

    border:0;
    background-color: #e5e5e5;
}

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

/* Page */
.page {
    overflow: hidden;
}

/* **********************
********* Header ******
********************** */

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

    padding-top: 30px;
}

.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: bold;
    color:#fff;
    cursor: pointer;
}

/* Nav */

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

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

    color: #fff;
    text-decoration: none;

    transition: color 0.2s linear;
}

.nav__link.active {
    color: #fce38a;
}

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

.nav__link:nth-child(6) {
    margin-right: 40px;
}

.nav__link::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;

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

    background-color: #fce38a;

    transition: opacity 0.2s  linear;
}

.nav__link:hover {
    color: #fce38a;
}

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

/* Nav toggle */
.nav-toggle {
    width: 30px;
    padding: 10px 0;
    display: none; 

    font-size: 0;
    color:transparent;

    border: none;
    background: none;
    cursor: pointer;

    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 1;
}

.nav-toggle:focus {
    outline: none;
}

.nav-toggle__item {
    display: block;
    width: 100%;
    height: 3px;

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

    background-color: #fff;

    transition: background 0.2s linear;
}

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

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

    position: absolute;
    left: 0;
    z-index: 1;

    background-color: #fff;

    transition: transform 0.2s linear;
}

.nav-toggle.active .nav-toggle__item::before {
    transform-origin: left top;
    transform: rotate(45deg) translate3d(1px, -2px, 0);
}

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

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

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

/* **********************
********* Intro ******
********************** */

.intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    width: 100%;
    min-height: 820px;
    position: relative;

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

.intro__inner {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;

    text-align: center;
}
.intro__inner a {
    position: relative;
}
.intro__inner a span{
    display: none;
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    /* width: 60px; */
    padding: 5px 15px;

    text-align: center;
    color: #333;
    font-size: 14px;
    background-color: rgba(14, 14, 14, 0.157);
    border-radius: 10px;

    pointer-events: none;
}

.intro__suptitle {
    margin-bottom: 20px;

    font-family: 'Kaushan Script', cursive;
    font-size: 72px;
    color:#fff;
    font-weight: 400;
}

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

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

    background-color: #fff;
}

/* Button */

.btn {
    display: inline-block;
    vertical-align: top;
    padding: 8px 30px;

    border: 3px solid #fff;

    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;

    transition: background-color 0.2s 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:first-child {
    opacity: 1;
}

.slider__item:first-child::before {
    content: '';
    display: block;
    width: 70px;
    height: 3px;

    position: absolute;
    top: -3px;
    left: 0;
    z-index: 2;

    background-color: #f38181;
}

.slider__item b {
    font-size: 24px;
    font-weight: bold;
}

/* **********************
********* Section ******
********************** */


.section {
    padding: 80px 0;
}

.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;
    font-weight: 400;
}
.section__title {
    font-size: 30px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
}

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

    background-color: #f38181 ;
}

.section__text {
    color: #999;
}

/* card */

.card {
    margin: 80px 15px;
    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.2s linear;
}

.card__text {
    width: 100%;

    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    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;
}

.card__info {
    margin-top: 20px;

    text-align: center;
}

.card__name {
    margin-bottom: 5px;

    text-transform: uppercase;
    font-size: 14px;
    color: #333;
}

.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: bold;
    line-height: 1;
}
.stat__text {
    font-size: 14px;
    text-transform: uppercase;
}

/* Section-02 Services */

.services {
    display: flex;
    flex-wrap: wrap;
}
.services__item {
    width: 33.3333%;
    padding: 0 35px 40px 80px;
    margin-bottom: 40px;

    position: relative;
}

.services__item--border {


    border-bottom: 1px solid #e5e5e5;
}

.servicer__icon {
    position: absolute;
    top: 7px;
    left: 20px;
    z-index: 1;
}

.services__title {
    margin-bottom: 10px;

    font-size: 14px;
    color: #333;
    text-transform: uppercase;
}

.services__text {
    color:#999;
}

/* Section--devices */

.section--devices {
    padding-bottom: 0;
    margin-bottom: 30px;

    background: url(../images/section-03/backg.jpg) center no-repeat;
    background-size: cover;
}

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

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

.devices__item--iphone {
    display: block; 
    position: absolute;
    bottom: -90px;
    right: -70px;
    z-index: 1;
}

/* Section wedo */

.wedo {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

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

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

/* Accordion */

.accordion__item {
    margin-bottom: 10px;

    border: 1px solid #e5e5e5;
}

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

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

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


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

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

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

    border-top: 3px solid #ccc;
    border-right: 3px solid #ccc;

    position: absolute;
    top: 48%;
    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__title {
    font-size: 14px;
    color:#333;
    text-transform: uppercase;
}

.accordion__content {
    padding: 15px;
    display: none;

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

/* div--gray. Reviews */

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

.reviews {
    position: relative;
}

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

.reviews-item {
    padding-left: 205px;
    position: relative;
}

.reviews__photo {
    display: block;
    width: 145px;
    height: 145px;
    margin-top: 15px;

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

    border: 5px solid #95e1d3;
}

.reviews__text {
    margin-bottom: 15px;

    font-size: 24px;
    font-style: italic;
    font-weight: 300;
    color:#999;
    letter-spacing: -1.5px;
    word-spacing: 1px;
}

.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: none;
    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: 3px solid #ccc;
    border-left: 3px solid #ccc;
}

.slick-prev {
    left: 0;
    transform: rotate(-45deg);
}

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

/* Social  */

.social {
    display: flex;
    justify-content: center;
}
.social__item {
    height: 55px;
    width: 55px;
    box-sizing:border-box;
    padding: 12px 10px;

    background-color: #fce38a;
    border-right: 1px solid #f38181;

    font-size: 30px;
    text-decoration: none;
    color: #f38181;
    line-height: 1;

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

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

.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__col {
    flex: 1 1 0;
}

.works__item {
    position: relative;

    background: linear-gradient(to bottom, #f38181, #fce38a);
}

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

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

.works__icon {
    margin-bottom: 5px;
}

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

.works__info {
    width: 100%;
    padding: 0 15px;

    text-align: center;
    color: #fceedf;
    opacity: 0;

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

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

.works__title {
    margin-bottom: 5px;

    font-size: 14px;
    text-transform: uppercase;
}

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

/* Clear slider */
.section--slider-clear {
    padding-top: 17px;
    padding-bottom: 77px;
}

.reviews__photo--clear {
    display: block;
    min-height: 210px;
    width: 210px;
    height: 210px;
    margin-top: 0;
    top: -20px;
    left: 0;
    

    border: none;
}

.reviews__item--clear {
    padding-left: 255px;
    padding-bottom: 21px;
    margin-top: 21px;
}

/* Section--clients */

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

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

.clients__item {
    width: 50%;
    padding: 0 45px 0 175px;
    position: relative;
    margin-bottom: 60px;
}

.clients__photo {
    width: 110px;
    height: 110px;

    top: 0;
    left: 40px;
    z-index: 1;
    position: absolute;
}

.clients__name {
    margin-bottom: 5px;

    font-size: 14px;
    color: #333;
    text-transform: uppercase;
}
.clients__prof {
    font-style: italic;
    font-weight: 300;
}
.clients__text {
    color: #999;
}

.clients__text::before {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    margin: 10px 0 15px 0   ;

    background-color: #f38181;
}

/* Section blog */

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

.blog__item {
    width: 31.5%;
}

.blog__header {
    position: relative;

    margin-bottom: 15px;
}

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

.blog__date {
    padding: 12px 20px;

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

    background-color: #95e1d3;

    font-style: italic;
    color:#fff;
    font-weight: 300;
    text-align: center;
}

.blog__date-day {
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    font-style: normal;
}

.blog__content {
    margin-bottom: 10px;
}

.blog__title {
    margin-bottom: 8px;

    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: #b3b3b3;
    font-size: 14px;
}

.blog__footer {
    padding-top: 10px;

    border-top: 1px solid #e5e5e5;

    font-size: 14px;
    color: #d2d2d2;
    font-style: italic;
}

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


}

.blog-stat__item:last-child {
    margin-right: 0;
}

.blog-stat__item img {
    text-align: center;
    vertical-align: middle;
    margin-right: 3px;
}

/* Section--map */

.section--map {
    padding: 50px 0;
    background: url(../images/section-09/back.jpg) center no-repeat;
    background-size: cover;
}

.map {
    text-align: center;
}

.map__title {
    font-size: 24px;
    font-weight: 700;
    color: #f38181;
    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;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 -15px;
    padding-bottom: 65px;
}

.footer__col {
    padding: 0 15px;
}

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

.footer__logo {
    margin-bottom: 30px;

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

.footer__text {
    margin-bottom: 30px;

    color: #999;
}

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

.footer__title {
    margin: 25px 0 30px;

    font-size: 14px;
    text-transform: uppercase;
    color:#333;
}

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

/* footer__social */

.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: 14px;
    color: #999;
    font-style: italic;
    font-weight: 300;
}

.footer__social-content a {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}

.footer__social-content a:first-child {
    margin-left: 15px;
}

.footer__social-content a:last-child {
    margin-right: 0px;
}

/* Subscribe */

.subscribe {
    width: 100%;
    max-width: 380px;
    display: flex;
} 

.subscribe__input {
    width: 60%;
    height: 40px;

    padding: 12px;

    background: #fff;
    border: 1px solid #e7e7e7;
    border-right: none;

    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    line-height: 1.1;
    color: #333;
    font-weight: 300;
}

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

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

.subscribe__btn {
    width: 40%;
    height: 40px;
    padding: 0 30px;

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

    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;

    transition: background-color 0.2s linear;
}

.subscribe__btn:hover {
    background-color: #74c7b8;
}

/* Blogs */

.blogs__item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

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

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

.blogs__content {
    padding-left: 20px;
}

.blogs__title {
    display: block;
    margin-bottom: 2px;

    color: #333;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
}

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

.blogs__date {
    font-size: 13px;
    color: #d4d4d4;
    font-style: italic;
    font-weight: 300;
    text-transform: none;
}

/* Instagram */

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

.intagram__item {
    width: 33%;

    border-bottom: 1px solid #fff;
}

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

/* Copyright */

.copyright {
    padding: 20px 0;

    text-align: center;

    font-size: 14px;
    color: #333;

    border-top: 1px solid #e5e5e5;
}

.copyright span {
    color: #f38181;
}

/* ***********************
*******Adaptive********
*********************** */

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

    .intro__title {
        font-size: 120px;
    }

    /* Reviews */
    .reviews__text {
        font-size: 20px;
    }
}

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

    .intro__title {
        font-size: 80px;
    }

    /* Stat */
    .stat {
        justify-content: center;
    }

    .stat__item {
        flex:none;
        width: 33.3333%;
        padding-top: 30px;
        padding-bottom: 30px;

        border: none;
    }

    .stat__item:last-child {
        border: 0;
    }

    /* Services */
    .services__item {
        width: 50%;
        padding-bottom: 0;
    }

    .services__item--border {
        border-bottom: none;
    }

    /* Reviews */
    .reviews .slick-slider {
        padding: 0 60px;
    }

    .reviews-item {
        padding-left: 175px;
    }

    .reviews__photo--clear {
        width: 150px;
        height: 150px;

        top: -2px;
    }

    /* 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;
    }

    .intagram__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: 5px 0;
        padding: 8px 20px;
    }

    .nav__link:last-child {
        margin: 5px 0;
    }

    .nav__link::after {
        margin-top: 0px;
    }   

    .nav-toggle {
        display: block;
    }

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

    .slider__item:first-child::before {
        width: 50%;
    }

    /* 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;
    }

    /* Services */
    .services {
        justify-content: center;
    }

    .services__item {
        width: 100%;
        max-width: 500px;
    }

    .servicer__icon {
        top: 2px;
    }

    /* wedo */
    .wedo__img {
        display: none;
    }

    .wedo__item {
        width: 100%;
    }

    /* Reviews */ 
    .reviews__photo {
        position: static;
        margin: 0 auto 25px auto;
    }

    .reviews-item {
        padding-left: 0;
    }

    .reviews__text {
        font-size: 16px;
        letter-spacing: -0.5px;
    }

    .reviews__author {
        font-size: 20px;
    }

    /* Works */
    .works {
        flex-wrap: wrap;
    }

    .works__col {
        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: 20px;
    }

    .section__title {
        font-size: 24px;
    }

    .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;
    }

    /* Devices  */
    .devices {
        max-width: 320px;
    }

    .devices__item--iphone {
        width: 150px;

        bottom: -58px;
        right: -60px;
    }

    /* Reviews */ 
    .reviews .slick-slider {
        padding: 0;
    }

    .slick-arrow {
        top: 22%;
    }

    .reviews__photo--clear {
        width: 150px;
        height: 150px;
        min-height: 150px;
    }

    .section--slider-clear {
        padding-top: 15px;
    }

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

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

    .logos__img {
        margin: 0 auto;
    }

    /* Works */
    .works__col {
        width: 100%;
    }

    .works__image {
        width: 100%;
    }

    /* Clients */
    .clients__photo {
        position: static;
    }

    .clients__item {
        text-align: center;
        padding-left: 0;
    }

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

    /* Blogs */
    .blogs__img {
        width: 80px;
        height: 60px;
    }

    .blogs__title {
        font-size: 10px;
    }

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

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

        border-right: 1px solid #e7e7e7;
    }

    .subscribe__btn {
        width: 100%;
    }
}





