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,h6{
    margin: 0;
}

hr{
    display: block;
    width: 100%;
    height: 1px;
    margin: 40px 0;
    border: 0;
    background-color: #e5e5e5;
}

/* Container */

.container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Intro */

.intro{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100vh;

    background: url("../images/intro.jpg")
    center no-repeat;
    background-size: cover;
}

.intro__title{
    font-size: 85px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
}

.intro__title::after{
    content: "";
    display: block;
    width: 60px;
    height: 3px;

    background-color: #fff;
    margin: 60px auto;
}

.intro__suptitle{
    font-size: 62px;
    color: #fff;
    font-family: 'Kaushan Script' , cursive;
    text-align: center;
    margin-bottom: 15px;
}

.intro__inner{
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
}

/* header */
.header{
    padding-top: 30px;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
}

.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 0.1s linear;

}

.nav__link:after{
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    opacity: 0;
    background-color: #fce38a;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;

    transition: opacity 0.1s;
}

.nav__link:hover {
color: #fce38a;

}

.nav__link:hover:after,
.nav__link.active::after {
    opacity: 1;
}

.nav__link.active{
    color: #fce38a;
}

/* Button */

.btn{
    display: inline-block;
    vertical-align: top;
    border:  3px solid #fff;
    padding: 10px 15px;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    transition: background .1s linear , color .1s 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: 24%;
    padding: 20px 0;
    border-top: 3px solid #fff;

    font-size: 18px;
    color:#fff;
    text-transform: uppercase;
    opacity: 0.7;
    position: relative;
}

.slider__item.active{
    opacity: 1;
}

.slider__item.active::before{
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background-color: #f38181;
    position: absolute;
    top: -3px;
    left: 0;
    z-index: 1;
}

.slider__num{
    font-size: 24px;
    font-weight: 700;
}

/* Section */

.section{
    padding: 80px 0;
}

.section--gray{
    background-color: #f8f8f8;
}

.section--client{
    background: #f5f5f5 url("../images/clients-bg.jpg") center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.section--devices{
    padding-bottom: 0;
    background: url(../images/images/images/back_02.jpg)
center no-repeat;
background-size: cover;
margin-bottom: 60px;
}

.section--map{
    background: #e6e6e6 url(..//images/map-bg.jpg)
    center no-repeat;
background-size: cover;
}

.section__header{
    margin:0 auto 50px;
    width: 100%;
    max-width: 950px;
    text-align: center;
}

.section__suptitle{
    font-size: 24px;
    color: #333;
    font-family:'Kaushan Script' , cursive ;
}

.section__title{
    font-size: 30px;
    color: #333;
    font-weight: 700;
    text-transform: uppercase;
}
.section__title::after{
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #f38181;
    margin: 30px auto 30px;
}

.section__text{
    font-size: 15px;
    Color: #999;
    font-weight: bold;
}

/* About */

.about{
    display: flex;
    justify-content: space-between;
}

.about__item{
    width: 380px;
    background-color: #95e1d3;
    position: relative;
}

.about__item:hover .about__img img{
    opacity: .1;

}

.about__item:hover .about__img{
    transform: translate3d(-10px, -10px, 0);
}

.about__item:hover .about__text{
    opacity: 1;
}

.about__img{
    background: linear-gradient(to bottom, #f38181, #fce38a);
transition: transform .1s linear;
cursor: pointer;
}

.about__img img{
    transition: opacity .1s linear;
    display: block;
}

.about__text{
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 2;
    transform: translate3d(0, -50, 0);
    opacity: 0;
    transition: opacity .2s linear;
}

/* statistics */

.statistics{
    background-color: #95e1d3;
}

.stat{
    display: flex;
}

.stat__item{
    flex: 1 1 0;

    border-left: 1px solid #b5eae0;
    text-align: center;
    color: #fff;
    padding: 70px 25px;
}

.stat__item:last-child{
    border-right: 1px solid #b5eae0;
}

.stat__count{
    font-size: 72px;
    font-weight: bold;
}

.stat__text{
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Services */

.services{
    display: flex;
    
}

.services__item{
    flex: 1 1 0;
    padding-left: 85px;
    padding-right: 35px;
    position: relative;
}

.services__icon{
    position: absolute;
    top: 0;
    left: 28px;
    z-index: 1;
}

.services__title{
    text-transform: uppercase;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
   font-weight: bold;
}

.services__text{
    font-size: 15px;
    color: #999;
}

/* devices */

.devices{
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.devices__item{
    display: block;
    
}

.devices__item--iphone{
    position: absolute;
    bottom: -80px;
    right: 20px;
    
    z-index: 1;
}

/* wedo */

.wedo{
    display: flex;
}

.wedo__item{
    flex: 1 1 0;
}

/* Accordion */

.accordion__item{
    margin-top: 10px;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    
}

.accordion__item.first{
    margin-top: 0;

}

.accordion__item.active .accordion__content{
display: block;}


.accordion__item.active .accordion__header::after{
    transform:translateY(-50%) rotate(-45deg);
    margin-top: 5px;
}

.accordion__header{
    padding: 15px 20px 15px 60px;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}
.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__content{
    padding: 15px 20px;
    display: none;

    font-size: 15px;
    color: #999;
    font-style: italic;
    font-weight: 300;
}

.accordion__icon{
    position: absolute;
    top: 50%;
    left: 20px;
    z-index: 1;

    transform:translateY(-50%)
}

.accordion__title{
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    font-weight: bold;

}


/* Reviwes */
.reviews{
    padding: 0 110px;
    position: relative;

}

.reviews__item{
padding-left: 205px;
position: relative;
}

.reviews__item.circle{
    padding-left: 255px;
    
position: relative;
}

.reviews__photo{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.reviews__photo.circle{
    border-radius: 50%;
    
    border: 2px solid #95e1d3;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
   
}

.reviwes__text{
    font-size: 24px;
    font-style: italic;
    font-weight: bold;
    color: #999;
    margin-bottom: 15px;
}

.reviwes__author{
    font-size: 24px;
    color: #333;
    font-family: 'Kaushan Script';
    font-style: italic;
}


.reviwes__author::before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 60px;
    height: 3px;
    background-color: #f38181;
    margin-right: 10px;
}

.reviews__btn{
    position: absolute;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
    font-size: 0;
    color: transparent;
}

.reviews__btn::after{
content: "";
    display: block;

    width: 16px;
    height: 16px;

    border-top: 2px solid #ccc;
    border-left: 2px solid #ccc;
   

}

.reviews__btn--prev{
    left: 0;
    transform:rotate(-45deg);
}

.reviews__btn--next{
    right: 0;
    transform: rotate(135deg);
}

/* Social */

.social{
    display: flex;
    justify-content: center;
}

.social__item{
width: 55px;
height: 55px;

    padding: 12px 10px;
background-color: #fce38a;
border-right: 1px solid #f38181;

text-decoration: none;

color: #f38181;
font-size: 30px;
line-height: 1;

transition: background .1s linear,
color .1s linear;
}

.social__item.last{
border-right: none;
}

.social__item:hover{
    background-color: #f38181;
    color: #fff;
}

/* card */

.card{
    display: flex;
    justify-content: space-between;
}

.card__inner{
    position: relative;
    background-color: #95e1d3;

}

.card__item{
    width: 380px;
}

.card__item:hover .card__img img{
    opacity: .1;

}

.card__item:hover .card__img{
    transform: translate3d(-10px, -10px, 0);
}

.card__item:hover .card__text{
    opacity: 1;
}

.card__img{
    background: linear-gradient(to bottom, #f38181, #fce38a);
transition: transform .1s linear;
cursor: pointer;
}

.card__img img{
    transition: opacity .1s linear;
    display: block;
}

.card__text{
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 2;
    transform: translate3d(0, -50, 0);
    opacity: 0;
    transition: opacity .2s linear;
}


.card__info{
    margin-top: 20px;

    text-align: center;
}

.card__name{
    font-size: 14px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 5px;
}

.card__prof{
    font-size: 15px;
    font-style: italic;
    color: #999;
    font-weight: 300;
}

/* logo */

.logos{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Work */

.work{
    display: flex;
}

.work__col{
    flex: 1 1 0;
}

.work__item{
    position: relative;
    background: linear-gradient(to bottom, #f38181, #fce38a);
    

cursor: pointer;
}

.work__image{
    transition: opacity .2s linear;
    display: block ;
    max-width: 100%;
    height: auto;
}

.work__item:hover .work__image{
    opacity: .1;
}

.work__item:hover .work__info{
    opacity: 1;
}

.work__info{
width: 100%;
padding: 0, 15px;
text-align: center;
color: #fff;
opacity: 0;

    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;

    transform: translate3d(0, -50%, 0);
    transition: opasity .2s linear;
}

.work__title{
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
}

.work__text{
    font-size: 15px;
    font-weight: 300;
    font-style: italic;
}


/* Client */

.client{
    display: flex;
    flex-wrap: wrap;
    margin-top: 70px;
}

.client__item{
    width: 50%;
    padding: 0 45px 0 175px;
    position: relative;
    margin-bottom: 60px;
}

.client__photo{
    top: 0;
    left: 40px;
    z-index: 1;

    border-radius: 50%;

    width: 110px;
    height: 110px;

    position: absolute;

}


.client__name{
    text-transform: uppercase;
    font-size: 15px;
    color: #333;

    margin-bottom: 5px;
}

.client__prof{
    color: #333;
    font-size: 16px;
    font-style: italic;
    font-weight: 300;
}

.client__text{
    color: #999;
    font-size: 15px;
    
}

.client__text:before{
    content: "";
    display: block;
    height: 3px;
    width: 60px;

    margin: 15px 0;

    background-color:#f38181;
}


/* Blog */

.blog{
    display: flex;
    justify-content: space-between;
}

.blod__item{
    width: 31%;
}

.blog__header{
    position: relative;
}


.blog__photo{
    display: block;
    width: 100%;
    height: auto;
}


.blog__date{
padding: 10px 20px;

background-color: #95e1d3;
font-size: 15px;
color: #fff;

font-weight: 300;
text-align: center;
font-style: italic;

    position: absolute;
    bottom: 10px;
    left: -10px;
    z-index: 1;
}

.blog__date--day{
    line-height: 1;
    font-size: 30px;
    font-weight: 700;
    font-style: normal;
}

.blog__content{
    margin-bottom: 14px;
}

.blod__title{
    font-size: 14px;
    text-transform: uppercase;
    color: #333;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 15px;
}

.blod__title a{
    color: inherit;
    text-decoration: none;
}

.blod__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;
    font-weight: 300;
    font-style: italic;
    color: #999;
}

.blog-stat__item{
    display: inline-block;
    margin-right: 10px;
    vertical-align: top;
}

.blog-stat__item i{
    color: #95e1d3;
}


/* Map */

.map{
    text-align: center;
}
.map__item{
    color: red;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
}

.map__item a{
    color: inherit;
    text-decoration: none;
    text-transform: uppercase;
}

.map__item a:hover{
    text-decoration: underline;
}

.map__item::after{
content: "";
width: 60px;
height: 3px;
margin: 15px auto 0 ;
background-color: #f38181;
display: block;
}

/* footer */

.footer{
    padding-top: 65px;

    background-color: #f8f8f8;
}

.footer__col--first{
    width: 40%;
}

.footer__col--second{
    width: 29%;
}

.footer__col--third{
    width: 22%;
}

.footer__inner{
    padding-bottom: 65px;
    display: flex;
    justify-content: space-between;
}

.footer__logo{
    margin-bottom: 30px;
    font-size: 46px;
    color: #ccc;
    font-weight: bold;
}

.footer__text{
    margin-bottom: 30px;
    font-size: 14px;
    color: #999;
}

.footer__social-header{
    padding-bottom: 15px;
    font-size: 14px;
    color: #333;

    border-bottom: 1px solid #e5e5e5;
}

.footer__social-header b{
    font-size: 18px;
}

.footer__social-content{
    padding-top: 15px;
    font-size: 15px;
    font-weight: 300;
color: #999;
font-style: italic;
}

.footer__social{
    margin-bottom: 25px;
}

.footer__social-content a{
display: inline-block;
vertical-align: middle;
margin-left: 10px;


    color: #95e1d3;
    font-size: 18px;
    text-decoration: none;
}

.footer__title{
    color: #333;
    text-transform: uppercase;
    font-size: 14px;

    margin: 30px 0;
}

/* instagram */

.instagram{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.instagram__item{
    width: 32.33333%;
    border: 1px solid #fff;
}

.instagram__item img{
    display: block;
}

/* Blogs */

.blogs__item{
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.blogs__img{
    width: 120px;
    height: 80px;
}

.blogs__content{
    padding-left: 20px;
}

.blogs__title{
    text-transform: uppercase;
    text-decoration: none;
    color: #333;
    font-size: 12px;
}

.blogs__title:hover{
    text-decoration: underline;
}

.blogs__date{
    color: #999;
    font-style: italic;
    font-size: 13px;
    font-weight: 300;
}

/* subscribe */

.subscribe{
    width: 100%;
    max-width: 380px;
    display: flex;
}

.subscribe__input{
    width: 60%;
height: 40px;

    background: #fff;
    border: 1px solid #e7e7e7;

    font-size: 15px;
    font-weight: 300;
    font-style: italic;
    color: #333;

    padding: 12px;
    line-height: 1.1;
}

.subscribe__input::placeholder{
    color: #ccc;
}

.subscribe__btn{
    width: 40%;
    height: 40px;
    background-color:#95e1d3 ;
    border: 0;
    cursor: pointer;

    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;

    color: #fff;
    padding: 12px 30px;
    line-height: 1.1;
    transition:  background .2s linear;
}

.subscribe__btn:hover{
    background-color:#2a4b45 
}

/* copyright */

.copyright{
    text-align: center;
    color: #333;
    border-top: 1px solid #e5e5e5;
    font-size: 14px;
    padding: 20px 0;
}

.copyright span{
    color: #f38181;
}