body{
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color:#6c7279;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}


*,
*:before,
*:after {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

p {
    margin: 0 0 10px 0;
}

/*Container*/

.container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15PX;
}


/*Header*/

.header {
    position: absolute;
    width: 100%;
    height: 100px;
    top: 0;
    left: 0;
    z-index: 100;

}


.header__inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 0;

    border-bottom: 2px solid #4d5065;
    
}


/*NAV*/

.nav {
    display: flex;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    
}

.nav__link{
    color:#fff;
    text-decoration: none;
    opacity: 0.75;
    margin-left: 50px;

    transition: opacity .4s linear;
    
    
}

.nav__link:hover {
    text-decoration: underline;
    opacity: 1;
    
}


.nav__link:first-child{
    margin-left: 0;
}


/*Intro*/

.intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 750px;
    padding-top: 100px;
    background: #31344e url(img/intro-bg.jpg)center no-repeat;
    background-size: cover;
    text-align: center;
}

.intro__tittle {
    margin: 0 0 30px 0;
    font-family: 'Open sans', sans-serif;
    font-weight: 700;
    font-size: 65px;
    line-height: 1.1;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    
    

}

.intro__inner {
    width: 100%;
    max-width: 970px;
    margin: 0 auto;
}

.intro__subtitle {
    font-size: 22px;
    color: #fff;
    line-height: 1.5;
    font-weight: 400;
    text-align: center;

    margin-bottom: 60px;
}

/*Button*/

.button {
    display: inline-block;
    vertical-align: top;

    border-radius: 2px;
    border: 0;
    cursor: pointer;

    font-family: inherit;

    font-size: 13px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 40px;

    text-align: center;


    transition: background 0.4s;
}

.btn--red {
    background-color: #e84545;
}


.btn--red:hover {
    background-color: #410707;
}

.btn--long {
    min-width: 280px;
}


/*Feature*/

.feature {
    display: flex;
    margin: 95px 0;
    flex-wrap: wrap;
}

.feture__item {
    width: 33.33333%;
    text-align: center;
    padding: 0 40px;
    margin: 25px 0;
}

.feature__img {
    margin-bottom: 25px;
}

.feature__inner {
    font-size: 14px;
    font-weight: 700;
    color: #2d3033;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.feature__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #6c7279;
    
}

/*works*/

.works {
    display: flex;
    flex-wrap: wrap;
}

.works__item {
    width: 25%;
    height: 350px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
}

.works__item:hover .works__content{
    opacity: 1;

}

.works__photo {
    position: absolute;
    left: 50%;
    top: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 0.4s linear;
}

.works__title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.works__text {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}



/*Team*/

.team {
    margin: 100px 0 70px;
}


.team__inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}


.team__item {
    width: 25%;
    padding: 0 15px;
    margin-bottom: 30px;
}


.team__photo {
    display: block;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.team__name {
    font-size: 22px;
    color: #2d3033;
    margin-bottom: 8px;
}


.team__coo {
    font-size: 13px;
    color: #e84545;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.team__text {
    font-size: 14px;
    color: #6c7279;
    line-height: 1.5;
    margin-bottom: 25px;
}


/*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 .4s linear;
}


.social__icon {
    display: block;
    height: 18px;
    fill: #c6cacc;
    
    transition: fill .4s linear;
}

.social__item:hover .social__icon{
    fill: #e84545;
}
.social__item:hover{
    background-color:#c6cacc;
}

.social--footer .social__item {
    background-color: transparent;
    border-width: 2px;
    border-color: #fff;
    border-radius: 2px;
}

.social--footer .social__icon {
    fill: #fff;
}

.social--footer .social__item:hover {
    background-color: #fff;
}

/*review*/

.review {
    overflow: hidden;
    background-color:#53354a ;
}
.review__item {
    display: flex;
    flex-wrap: wrap;
}

.review__photo {
    width: 50%;
    height: 500px;
    position: relative;
}

.review__img {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 1;
    transform: translateY(-50%);
}

.review__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    padding-left: 80px;
}

.review__text {
    font-family: 'Cardo', sans-serif;
    font-style: italic;
    font-size: 36px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 25px;
}


.review__autor {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
}


/*Download*/

.download {
    margin: 90px 0;
    text-align: center;
}

.download__title {
    font-size: 28px;
    font-weight: 300;
    color: #2d3033;
    margin-bottom: 10px;
}


.download__text {
    font-size: 13px;
    color: #2d3033;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
}


/*Footer*/

.footer {

    
    background-color: #3a3e64;
}

.footer__iner {
    padding: 70px 0;
    display: flex;
    flex-wrap: wrap;
}


.footer_block{
    width: 33.33333%;
    text-align: center;
    padding: 0 15px;
}


.footer__title {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.footer_adress {
    font-size: 14px;
    font-style: normal;
    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*/


.copiright {
    background-color: #313454;
    padding: 20px 0;
}

.copiright__text {
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    color: #808080;
}

.copiright__text span {
    color:#fff;
}