body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 1.6;

    overflow-x: hidden;

}
 /* html {
    overflow-x: hidden
 } */


*,
*: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: 820px;
    position: relative;
    

    background: url("images/intro.jpg") center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}
.intro_inner {
    width: 100%;
    min-width: 880px auto;
    margin: 0 auto;
    text-align: center;
}

.intro_title {
    color: #fff;
    font-size: 120px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}
.intro_title:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin: 60px auto;

    background-color: #fff;
}

.intro_suptitle {
    margin-bottom: 20px;
    font-family: 'Kaushan Script', cursive;
    font-size: 72px;
    color: #fff;

}



/* Header */
.header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-top: 30px;

}
.header.fixed {
    padding: 5px 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 {
    font-size: 14px;
    text-transform: uppercase;
}
.nav_link {
    display: inline-block;
    vertical-align: top;
    margin: 0 15px;
    position: relative;

    color: #fff;
    text-decoration: none;
    transition: color .2s 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 .1s 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 .2s linear;

   
}

.nav-toggle.active .nav-toggle_item {
    background: none;

}


.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 .2s 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(0, -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;
    padding: 8px 30px;

    border: 3px solid #fff;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    

    transition: background .1s linear, color .1s linear;
}
.btn:hover {
    background-color: #fff;
    color: #fce386;
}

/* 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;

    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    

    border-top: 3px solid #fff;
    opacity: .7;

}
.slider_item.activ{
    opacity: 1;
}
.slider_item.activ::before {
    content: "";
    display: flex;
    width: 70px;
    height: 3px;

    position: absolute;
    top: -3px;
    left: 0;
    z-index: 1;
    background-color: #f38181;
}

.slider_num {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

/* section */

.section {
    padding: 80px 0;

}

.section--devices {
    margin-bottom: 40px;
    padding-bottom: 0;
    background: url(images/divices.bg.jpg)
    center no-repeat;
    -webkit-backround-size: cover;
    background-size: cover;
}

.section--map {
    padding: 40px 0;
    background: url(images/blog/vlog.jpg) center no-repeat;   
    -webkit-backround-size: cover;
    background-size: cover;
}

.section--gray  {
    background-color: #f8f8f8;
}

.section_header {
    width: 100%;
    max-width: 950px;
    margin: 0 auto 50px;
    /* margin-bottom: 40px; */
    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-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #999;
}

/* card */
.card {
    margin: 80px -15px 0;
   
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.card_item {
    width: 33.33%;
    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: .1;
}
.card_inner:hover .card_text{
    opacity: 1;
}

.card_img {
    background: linear-gradient(to bottom, #f38181, #fce38a);
    transition: transforn .2s linear;
}



.card_img img {
    display: block;
    max-width: 100%;
    height: auto;
    transition: opacity .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: matrix3d(0, -050%, 0);
     
    transition: opacity .2s linear;

}

.card_info {
    margin-top: 20px;
    text-align: center;
}

.card_name {
    margin-bottom: 5px;

    font-family: 'Montserrat', sans-serif;
    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;
    /* margin-top: 100px;
    margin-bottom: 100px; */
}

.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_coun {
    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;
    /* margin-top: 60px;
    margin-bottom: 100px; */
}
.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_titl {
    margin-bottom: 10px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    text-transform: uppercase;
}
.services_text {
    font-family: 'Roboto', sans-serif;
    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: -50px;
    right: 0;
    z-index: 1;
}

/* 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_content {
    display: block;
    
}
.accordion_item.active
.accordion_header {
    border-bottom-color: #e5e5e5;
}


.accordion_item.active
.accordion_header:after{
    transform: translateY(-50%) rotate(-40deg);
    margin-top: 5px;

}

.accordion_header {
    padding: 15px 20px 15px 65px;
    position: relative;
    border-bottom: 1px solid 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;
    font-style: italic;
    font-weight: 300;
    color: #999;

}
.accordion_title {
    font-size: 14px;
    font-style: regular;
    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: 0;
    z-index: 1;
}

.reviews_text {
    margin-bottom: 15px;
    margin-left: 30px;
    font-size: 24px;
    font-style: italic;
    font-weight: 300;
    color: #999;
}

.reviews_author {
    margin-left: 30px;
    font-size: 24px;
    color: #333;
    font-family: 'Kaushan Script', cursive

}

.reviews--Earle {
    padding-left: 35px;
}

.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;
    
    
    top: 50%;
    right: 20px;
    z-index: 1;
    
    /* transform: rotate(45deg); */

}


.slick-prev {
    left: 0;
    transform: rotate(-45deg);
}


.slick-next {
    right: 0;
    transform: rotate(135deg);
}

/* social */

.social {
    display: flex;
    justify-content: center;
 
}

.social__item {
    width: 55px;
    height: 55px;
    padding: 15px 15px;

    background-color: #fce38a;
    border-right: 1px solid #f38181;

    font-size: 30px;
    text-decoration: none;
    color: #f38181;
    line-height: 1;

    transition: background .1s linear, color .1s linear;
}


.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_col {
    flex: 1 1 0;
}

.works_item {
    position: relative;
    
    background: linear-gradient(to bottom, #f38181, #fce38a);
   
}

.works_item:hover .works_img {
    opacity: .1;
}
.works_item:hover .works_info {
    opacity: 1;
}


.works_img {
    display: block;
    
    width: 100%;
    max-width: 100%;
    height: auto;
    transition: opacity .2s linear;
}

.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);
    transform: opacity  .2s linear;
}

.Works_i {
    font-size: 30px;
    position: relative;
    top: 50%;
    left: 0;
    z-index: 1;
    
}

.works_titl {
    margin-bottom: 5px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
}

.works_text {
    font-size: 15px;
    font-weight: 300;
    font-style: italic;
} 

.reviews--circle {
    border-radius: 50%;

}
.reviews--Joshua {
    padding-left: 35px;
}

/* clients */

.section--clients {

    /* margin-bottom: 40px;
    padding-bottom: 0; */
    height: 800px;
    margin-top: 175px;

    background: url(images/clients/images/clients_20.jpg)
    center no-repeat;
    -webkit-backround-size: cover;
    background-size: cover;;
}

.clients {
    display: flex;
    flex-wrap: wrap;

    margin-top: 10%;
    
    
}

.clients_item {
    flex: 2 2 50%;
    width: 50%;
    padding: 0 45px 0 175px;
    margin-bottom: 60px;
    position: relative;
}
.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;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    text-transform: uppercase;
}

.clients_prof {
    font-size: 15px;
    font-style: italic;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #333;
}
.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: center;
    
}

.blog_item {
    
    width: 25%;
    padding: 15px;

}

.blog_header {
    position: relative;
}

.blog_foto {
    display: block;
    min-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;
}

/* .section--blog {
    padding-left: 350px;
} */

.blog_date-day {
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    font-style: normal;
}

.blog_content {
    margin-top: 10px;
    margin-bottom: 14px;
}

.blog_titl {
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
}

.blog_titl a {
    color: inherit;
    text-decoration: none;
}
.blog_titl a:hover {
    text-decoration: underline;
}

.blog_text {
    font-size: 15px;
    color: #999;
    font-family: 'Roboto', sans-serif;


}

.blog_footer {
    border-top: 1px solid #e5e5e5;
    padding-top: 14px;

    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 a {
    color: inherit;
    text-decoration: none;
}

.map-title a:hover {
    text-transform: uppercase;

}
    
.map-title:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin: 15px auto 0;
    background-color: #f38181;

}

/* footer */

.footer {
    /* display: flex;
    justify-content: center; */

    padding-top: 65px;
    background-color: #f8f8f8;
}

.footer_col {
    padding: 0 15px;
}
.footer_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
    margin-bottom: 70px;
}

.footer_col--first {
    
    width: 40%;
}

.footer_col--second {
   
    width: 29%;
}

.footer_col--third {
    
    width: 23%;
}


.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-style: 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: #b5e8df;

}

.footer_title {
    text-transform: uppercase;
    font-size: 14px;
    color: #333;
    margin-bottom: 40px;
    margin-top: 20px;
}

/* instagram */

.instagram {
    display: flex;
    flex-wrap: wrap;
    justify-content: first baseline;
}

.instagram_item {
    width: 33%;
    border-bottom: 1px solid #fff;
    
}

.instagram_item img {
    display: block;
    max-width: 100%;
    height: auto;
}
.instagram_text {

}


/* subscribe */

.subscribe {
    display: flex;
    width: 100%;
    max-width: 380px;
}

.subscribe_input {
    width: 60%;
    font-size: 15px;
    font-style: italic;

    color: #333;
    font-weight: 300;
    height: 15px;
    padding: 20px;
    line-height: 1 1;
    border-right: 0;


    font-family: 'Roboto', sans-serif;

    background: #fff;
    border: 1px solid #e7e7e7; 
}

.subscribe_input::placeholder {
    color: #ccc;
    
}

.subscribe_input:focus {
    outline: 0;
    border-color: #95e1d3;
}


.subscribe_btn {
    width: 40%;
    margin-left: 0;
    height: 40px;
    padding: 12px 30px;
    line-height: 1 1;
  
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background-color: #95e1d3;
    border: 0;
    cursor: pointer;
    text-transform: uppercase;

    transition: background .2s linear;

}
.subscribe_btn:hover {
    background-color: #65948bd8;
}

.subscribe_btn:focus {
    outline: 0;
}

.blogs {
    padding-inline-start: 0%;
    margin-bottom: 40px;


}

.blogs_item {
  
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    
    
}

.blogs_img {

    width: 150px;
    height: 80px;
}

.blogs_content {
    padding-left: 20px;
}

.blogs_text {
    display: block;
    font-size: 12px;
    margin-bottom: 5px;

    line-height: 1.5;
    text-transform: uppercase;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;

}

.blogs_text:hover {
    text-decoration: underline;
}

.blogs_date {
    font-style: 13px;
    max-width: 380px;
    font-style: italic;
    font-weight: 300;
}

/* copyright */

.copyright {
    padding-top: 40px;
    text-align: center;
    font-size: 14px;
    color: #333;

    
    margin-bottom: 30px;
    border-top: 1px solid #e5e5e5;
    
}

.copyright span{
    color: #f4a4a4;
}

.instagram_text {
    font-size: 13px;
    font-style: italic;
    font-family: 'Roboto', sans-serif;
    margin-top: 22px;
}

@media screen and (max-device-width: 1230px) {

    /* intro */
    .intro_suptitle {
        font-size: 52px;
    }
    .intro_title{
        font-size: 120px;
    }

    /* reviews */
    .reviews_text {
        font-size: 20px;
    }

       /* card */
       .card {
        display: flex;
        
        margin-top: 50px;
        width: 100%;
        justify-content: center;

    }


    .card_item {
        width: 100%;
        max-width: 300px;
        margin-bottom: 40px;
        margin-left: 30px;
       
    }

    .card_item:last-child {
        margin-bottom: 0;
    }

 
    .blog_foto {
        max-width: 100%;
    }

    
}


@media screen and (max-device-width: 990px) {
    /* intro */
    .intro_suptitle {
        font-size: 32px;
        justify-content: center;
    }
    .intro_title{
        font-size: 80px;
        justify-content: center;
    }

 
  /* 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;
  }

  /* services */

.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: 175px;
 }

 /* clients */
 .clients {
    max-width: 800%;
    margin: 0 auto;
    
 }

 .clients_content {

     width: 100%;
     /* padding: 10px;
     margin-right: 0; */

 }
   


 .clients_item {
    width: 100%;
    /* padding-right: 0; */
 }
 .clients_text {
    font-size: 15px;

 }

 .clients_item:last-child {
    margin-bottom: 0;
 }

 /* .blog */

 .blog_foto {
    max-width: 100%;
}
 .blog_date {
   width: 30%;
   height: 50px;
 }
 .blog_date-day{
    font-size: 20px;
 }


 /* footer */

 .footer_col--first {
  width: 100%;
 }
 .footer_col--second,
 .footer_col--third {
   width: 50%;
 }

 /* instagram  */
 .instagram {
    width: 100%;
    justify-content: flex-start;

    height: auto;
 }

 .instagram_item {
    width: auto;
    border-right: 1px solid white;
    
    height: auto;
 }

 .instagram_text {
    margin-left: 80px;
    margin-top: 40px;
 }

}



@media screen and (max-device-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 {
        justify-content: center;
        margin-top: 50px;
        width: 100%;
        
    }


    .card_item {
        width: 100%;
        max-width: 410px;
        margin-bottom: 40px;
        margin-left: 30px;
        
    }

    .card_item:last-child {
        margin-bottom: 0;
    }


    /* slider */
    .slider_text {
        display: none;
    }
    .slider_item.activ:before {
        width: 50%;
    }

    /* services */
    .services{
    justify-content: center;
    }

    .services_item {
        width: 100%;
        max-width: 400px;
        padding-left: 55px;
    }

    .services_icon{
        left: 0;
    }

    /* devices */
    .devices{
        max-width: 320px;
    }
    .devices_item--iphone{
        width: 180px;
        bottom: -50px;
        right: -80px;
    }
    /* 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_col {
        flex: none;
        width: 100%;
    }

    /* .clients */
    .clients_item{
        
        /* margin-bottom: 10px; */
        padding-left: 0;
        text-align: center;

    }

    .clients_photo {
        position: static;
        width: 50px;
        height: 50px;
    }
    .clients_text:before {
        margin: 10px center;
    }
    .clients_text:before {
        margin: 15px auto;
    }


    .clients_text {
        font-size: 13px;
    }

    /* .clients_content {
        max-width: 150%;

    } */

    .section_title{
        margin-bottom: 10px;

    }
    /* 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--first,
     .footer_col--second,
     .footer_col--third {
      max-width: 100%;
 } */
   
 }



@media screen and (max-device-width: 575px) {
      /* intro */

 

    .intro_suptitle {
        font-size: 22px;
        justify-content: center;
    }
    .intro_title{
        font-size: 40px;
        justify-content: center;
    }
      /* 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: 0;
 }

 .stat_coun {
    font-size: 52px;

 }

 /* 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  */
    .works_col {
       width: 100%;
    }

    .works__item:hover, .works__image {
        width: 100%;
       }

 /* clients */ 

 .clients_photo {
    position: static;
 }

 .clients_item {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    height: 50%;
 }

 .clients_text:before {
    margin: 15px auto;
 }
   /* blogs */
   .blogs_img {
    width: 80px;
    height: 50px;
   }

   .blog_titl {
    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%;
 }

     /* footer */
   
     .footer_col--first {
      max-width: 100%;
 }
    .footer_col--second,
    .footer_col--third {
        max-width: 50%;
     }

     .instagram_text{
        margin: auto;
     }
} 

