body {
    margin: 0;

    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #6c7279;
    -wedkit-font-smoothing: antialiased;

    background-color: #fff;
}

*,
*:before,
*:after {
    box-sizing: border-box;

}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

p {
    margin: 0 0 10px;
}

/*Container
==================*/
.container {
    width: auto;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


/* HEADER
================*/



.header {
    width: 100%;
    height: 100px;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header.fixed {
    height: auto;

    position: fixed;

    background-color: #31344e;
}

.header.fixed .header__inner {
    padding: 15px 0;
    border-bottom: 0;
}

.header__inner {
    padding: 35px 0;
    display: flex;
    justify-content: space-between;
    align-content: center;

    border-bottom: 1px solid #515369;
}

/* Nav
================*/

.nav {
    display: flex;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
/*    align-items: center;*/
}

.nav__link {
    margin-left: 50px;

    color: #fff;
    text-decoration: none;

    opacity: 0.75;
    transition: opacity .1s linear;


}

.nav__link:first-child {
    margin-left: 0;
}

.nav__link:hover {
    opacity: 1;
}

/* Intro
================*/


.intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 100px;
    height: 750px;

    background: #31344e url(../img/intro-bg.jpg) center no-repeat;
    background-size: cover;
}

.intro__inner {
    max-width: 970px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.intro__title {
    margin: 0 0 30px;

    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 65px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;

}

.intro__subtitle {
    margin-bottom: 60px;

    font-size: 22px;
    color: #fff;
    line-height: 1.5;
    font-weight: 400;
}

/* Button
================*/

.btn {
    display: inline-block;
    vertical-align: top;
    padding: 14px 40px;

    border-radius: 2px;
    border: 0;
    cursor: pointer;

    font-family: inherit;
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;

    transition: background .1s linear;

}

.btn--red {
    background: #e84545;
}

.btn--red:hover {
    background: #bc3737;
}

.btn--long {
    min-width: 280px;
}

/* Features
================*/

.features {
    display: flex;
    flex-wrap: wrap;
    margin: 100px 0;
}

.features__item {
    margin: 25px 0;

    width: 33.33333%;
    text-align: center;
    padding: 0 40px;
}

.features__icon {
    margin-bottom: 25px;
}

.features__title {
    margin-bottom: 20px;

    font-size: 14px;
    font-weight: 700;
    color: #2d3033;
    text-transform: uppercase;
}

.features__text {
    font-size: 14px;
    line-height: 1.5;

    color: #6c7279;
}


/* Works
================*/
.works {
    display: flex;
    flex-wrap: wrap;
}

.works__item {
    width: 25%;
    height: 350px;

    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;

    position: relative;
    overflow: hidden;
}

.works__item:hover .works__content {
    opacity: 1;
}

.works__photo {
    min-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;

    transform: translate3d(-50%, -50%, 0);
}

.works__content {
    display: flex;
    flex-direction:column;
    justify-content: center;
    width: 100%;
    height: 100%;

    background-color: rgba(232, 69, 69, .9);
    opacity: 0;

    text-align: center;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;

    transition: opacity .2s linear;
}

.works__title {
    margin-bottom: 5px;

    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.works__text {
    font-size: 14px;
    color: #fff;
}


/* Team
================*/
.team {
    margin: 100px 0 70px;
}

.team__inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.team__item {
    margin-bottom: 30px;
    width: 25%;
    padding: 0 15px;
}

.team__photo {
    margin-bottom: 20px;
    display: block;
    max-width: 100%;
    height: auto;
}

.team__name {
    margin-bottom: 8px;

    font-size: 22px;
    color: #2d3033;
}

.team__prof {
    margin-bottom: 15px;
    font-size: 13px;
    color: #e84545;
    text-transform: uppercase;
}

.team__text {
    margin-bottom: 20px;

    font-size: 14px;
    color: #6c7279;
    line-height: 1.5;
}


/* Social
================*/

.social {
    display: flex;
}

.social--footer {
    justify-content: center;
}

.social__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-right: 4px;

    background-color: #fff;
    border: 1px solid #e8ecee;

    transition: background .1s linear;
}

.social__item:hover {
    background-color: #e8ecee;
}

.social__item:hover .social__icon {
    fill: #000000;
}

.social--footer .social__item {
    background-color: transparent;
    border-width: 2px;
    border-color: #fff;
    border-radius: 2px;
}

.social--footer .social__item:hover {
    background-color: #fff;
}

.social__icon {
    display: block;
    height: 18px;

    fill: #c6cacc;

    transition: fill .1s linear;
}

.social--footer .social__icon {
    fill: #fff;
}



/* Reviews
================*/

.reviews {
    background-color: #53354a;
    overflow: hidden;
}

.reviews__item {
    display: flex;
    flex-wrap: wrap;
    color: #fff;
}

.reviews__photo {
    width: 50%;
    height: 500px;
    position: relative;
}

.reviews__img {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 1;

    transform: translateY(-50%);
}

.reviews__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    padding-left: 80px;
}

.reviews__text {
    margin-bottom: 25px;

    font-family: 'Cardo', sans-serif;
    font-style: italic;
    font-size: 36px;
    line-height: 1.2;
}

.reviews__author {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}


/* Download
================*/

.download {
    margin: 90px 0;

    text-align: center;
}

.download__title {
    margin-bottom: 10px;

    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 28px;
    color: #2d3033;
}

.download__text {
    margin-bottom: 30px;

    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #2d3033;
    text-transform: uppercase;
}

/* Footer
================*/

.footer {


    background-color: #3a3e64;
}


.footer__inner  {
    padding: 70px 0;
    display: flex;
    flex-wrap: wrap;
}

.footer__block {
    padding: 0 15px;
    width: 33.33333%;

    text-align: center;
}

.footer__title {
    margin-bottom: 10px;

    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
}


.footer__address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.5;

    color: rgba(255,255,255, .5);
}

.footer__text {
    font-size: 14px;
    line-height: 1.5;

    color: rgba(255,255,255, .5);
}

/* Copyright
================*/
.copyright {
    padding: 20px 0;

    background-color: #313454;
}

.copyright__text {
    text-align: center;
    line-height: 1.5;
    font-size: 14px;
    color: #808080;
}

.copyright__text span {
    color: #fff;
}

.burger {
    display: none;
    padding: 9px 0;

    background: none;
    border: 0px;
    cursor: pointer;
}

.burger__item {
    display: block;
    width: 30px;
    height: 3px;

    background-color: #fff;

    font-size: 0px;
    color: transparent;

    position: relative;
}

.burger__item:before,
.burger__item:after {
    content: "";
    width: 100%;
    height: 100%;

    position: absolute;
    left: 0;
    z-index: 1;

    background-color: #fff;
}

.burger__item:before {
    top: -8px;
}

.burger__item:after {
    bottom: -8px;
}


/* Media
================*/

@media (max-width: 1200px) {

     /* intro*/
    .intro__title {
        font-size: 40px;
    }
    /* Works*/
    .works__item {
        width: 50%;
    }


}

@media (max-width: 991px) {
    /* Nav */
    .nav {
        display: none;
        width: 100%;
        flex-direction: column;

        background-color: #313454;
        text-align: right;

        position: absolute;
        right: 0;
        top: 100%;
    }

    .nav.show {
        display: flex;
    }

    .nav__link {
        padding: 10px 15px;

    }

    /* Burger */
    .burger {
        display: block;
    }

    /*Features*/
    .features__item {
        width: 50%;
    }
    /*Team*/
    .team__item {
        width: 50%;

        text-align: center;
    }

    .team__photo {
        margin-left: auto;
        margin-right: auto;
    }

    .social {
        justify-content: center;
    }
     /*Reviews*/
    .reviews__photo {
        margin-top: 15px 0 40px;
        overflow: hidden;
        width: 100%;
    }
    .reviews__content {
        width: 100%;
        padding-left: 0;
        padding-bottom: 40px;
    }


}



@media (max-width: 767px) {
    /* Intro */
    .intro {
        padding-top: 130px;
        padding-bottom: 130px;

        height: auto;
    }
    .intro__title {
        font-size: 30px;
    }
    .intro__subtitle {
        margin-bottom: 30px;

        font-size: 16px;
    }
     /*Features*/
    .features {
        margin: 40px 0;
    }
    .features__item {
        width: 100%;
        padding: 0;

    }
    /* Works*/
    .works__item {
        width: 100%;
        height: 300px;
    }
        /*Team*/
    .team {
        margin: 60px 0 40px;
    }
    .team__item {
        width: 100%;
    }

    .reviews__text {
        font-size: 30px;
    }
    /* Download*/
    .download{
        margin: 50px 0;
    }
    .download__title {
        font-size: 24px;
    }

     .btn--long {
        min-width: 260px;
    }
    /* Footer */
    .footer__inner {
        padding: 30px 0;
    }

    .footer__block {
        margin-bottom: 30px;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .footer__block:last-child {
        margin-bottom: 0;
    }

}



@media (max-width: 575px) {
     /* Review */
    .reviews__img {
        right: -120px;
    }
}

