body {
    margin: 0;

    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #6c7279;
    -webkit-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: 100%;
    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: #57668f;
}

.header.fixed .header__inner {
    padding-top: 15px;
    padding-bottom: 15px;

    border-bottom: 0;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 0;

    border-bottom: 1px solid #515369;
}


/* Nav
===================*/

.nav {
    display: flex;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.nav__link {
    margin-left: 50px;

    color: #fff;
    text-decoration: none;
    opacity: .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;
    height: 600px;
    padding-top: 100px;

    background: #57668f url("img/background__inner.jpg") center no-repeat;
    background-size: cover;
}

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

    text-align: center;
}

.intro__title {
    margin: 0 0 30px;

    font-family: 'Open Sans', sans-serif;
    font-size: 65px;
    line-height: 1.1;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.intro__subtitle {
    margin-bottom: 60px;

    font-size: 15px;
    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: 'Raleway', sans-serif;
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;

    transition: background .1s linear;
}

.btn--red {
    background-color: #e84545;
}

.btn--red:hover {
    background-color: #dd3434;
}

.btn--long {
    min-width: 280px;
}



/* Features
===================*/
.features {
    display: flex;
    flex-wrap: wrap;
    margin: 95px 0;
}

.features__item {
    width: 33.33333%;
    padding: 0 40px;
    margin: 25px 0;

    text-align: center;
}

.features__icon {
    margin-bottom: 25px;
}

.features__title {
    margin-bottom: 20px;

    font-size: 14px;
    color: #2d3033;
    font-weight: 700;
    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 {
    width: 25%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.team__photo {
    display: block;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.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;
    line-height: 1.5;
    color: #6c7279;
}



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

.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 {
    margin-top: 95px;
    overflow: hidden;
    background-color: #20345e;
}

.reviews__slider {
    height: 500px;
    overflow: hidden;
}

.reviews__slider.slick-initialized {
    height: auto;
}

.reviews__item {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.reviews__photo {
    width: 50%;
    height: 500px;
    position: relative;
}

.reviews__img {
    position: absolute;
    width: 100%;
    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: 20px;
    line-height: 1.2;
    color: #fff;
}

.reviews__author {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0 0 10px;
    list-style: none;
    width: 50%;

    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.slick-dots li {
    margin: 0 5px;
}

.slick-dots button {
    width: 15px;
    height: 15px;
    padding: 0;

    background: #fff;
    border-radius: 50%;
    border: 0;
    opacity: .5;
    cursor: pointer;

    font-size: 0;
    color: transparent;
}

.slick-dots button:focus {
    outline: 0;
}

.slick-dots .slick-active button {
    opacity: 1;
}

/* Download
===================*/

.download {
    margin: 90px 0;

    text-align: center;
}

.download__title {
    margin-bottom: 10px;

    font-size: 28px;
    color: #2d3033;
    font-weight: 300;
}

.download__text {
    margin-bottom: 30px;

    font-size: 13px;
    color: #2d3033;
    font-weight: 700;
    text-transform: uppercase;
}



/* Footer
===================*/

.footer {
    background-color: #20345e;
}

.footer__inner {
    display: flex;
    flex-wrap: wrap;
    padding: 70px 0;
}

.footer__block {
    width: 33.33333%;
    padding: 0 15px;

    text-align: center;
}

.footer__title {
    margin-bottom: 10px;

    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.footer__address {
    font-size: 14px;
    line-height: 1.5;
    font-style: normal;
    color: rgba(255, 255, 255, .5);
}

.footer__text {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .5);
}

.footer__desc {
    font-size: 8px;

}


/* Copyright
===================*/

.copyright {
    padding: 20px 0;

    background-color: #313454;
}

.copyright__text {
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    color: #808080;
}

.copyright__text span {
    color: #fff;
}


/* Burger */
.burger {
    display: none;
    padding: 9px 2px;

    background: none;
    border: 0;
    cursor: pointer;
}

.burger__item {
    display: block;
    width: 28px;
    height: 3px;

    background-color: #fff;

    font-size: 0;
    color: transparent;

    position: relative;
}

.burger__item:before,
.burger__item:after {
    content: "";
    height: 100%;

    background-color: #fff;

    position: absolute;
    right: 0;
    z-index: 1;
}

.burger__item:before {
    width: 30px;
    top: -8px;
}

.burger__item:after {
    width: 26px;
    bottom: -8px;
}

/* Pens
===================*/

.feather__background {
    width: 100%;
    margin-bottom: 50px;
}

.technologies {
    text-align: center;
}

.technologies__title {
    margin-top: 30px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    font-size: 50px;
}

.logo {
    position: absolute;
    width: 300px;
    margin-left: 350px;
}

.technologies__desc {
    margin-left: 186px;
    font-family: 'Roboto', sans-serif;
    line-height: 27px;
    margin-left: 20px;
}

.about__tech {
    height: 250px;
    margin-top: 10px;
    margin-bottom: 20px;
    position: relative;
}

.size {
    text-align: center;
}


.size__title {
    margin-top: 30px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    font-size: 50px;
}

.size__desc {
    position: absolute;
    margin-left: 150px;
    font-family: 'Roboto', sans-serif;
    line-height: 27px;
}

.about__pen__info {
    margin-top: -120px;
    height: 250px;
    margin-left: 370px;
    position: absolute;
}

.pen__size {
    position: absolute;
    margin-top: -14px;
    height: 80px;
    margin-left: 200px;
}

.size__info__weight {
    margin-top: 50px;
    margin-left: 217px;
    line-height: 15px;
    font-size: 12px;
}

.netto {
    margin-left: 15px;
}

.char {
    text-align: center;
}

.char__title {
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    font-size: 50px;
}

.logo__char {
    position: absolute;
    width: 300px;
    margin-left: 350px;
    margin-top: -100px;
}

.char__desc {
    font-family: 'Roboto', sans-serif;
    line-height: 27px;
    font-weight: bold;
    margin-bottom: 10px;
}

.recycled__paper {
    font-family: 'Roboto', sans-serif;
    line-height: 27px;
    color: #0d7979;
    font-size: 20px;
    font-weight: bold;
    margin-left: 150px;
    text-align: left;
}

.recycled__paper--desc {
    color: black;
    font-size: 12px;
}

.printed__surface {
    font-family: 'Roboto', sans-serif;
    line-height: 27px;
    color: #0d7979;
    font-size: 20px;
    font-weight: bold;
    margin-left: 150px;
    text-align: left;
}

.printed__surface--desc {
    color: black;
    font-size: 12px;
}

.packaging {
    font-family: 'Roboto', sans-serif;
    line-height: 27px;
    color: #0d7979;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    margin-left: 150px;
}

.packaging--desc {
    color: black;
    font-size: 12px;
}

.nontoxic {
    font-family: 'Roboto', sans-serif;
    line-height: 27px;
    color: #0d7979;
    font-size: 20px;
    font-weight: bold;
    margin-left: 150px;
    text-align: left;
}

.nontoxic--desc {
    color: black;
    font-size: 12px;
}

.costumerfocus {
    font-family: 'Roboto', sans-serif;
    line-height: 27px;
    color: #0d7979;
    font-weight: bold;
    font-size: 20px;
    margin-left: 150px;
    text-align: left;
}

.costumerfocus--desc {
    color: black;
    font-size: 12px;
}

.longuse {
    font-family: 'Roboto', sans-serif;
    line-height: 27px;
    color: #0d7979;
    font-size: 20px;
    font-weight: bold;
    margin-left: 150px;
    text-align: left;
}


.longuse--desc {
    color: black;
    font-size: 12px;
}

.example {
    width: 100%;
}

.feather__bcg {
    width: 100%;
    margin-bottom: 20px;
    margin-top: 50px;
}

.feather__bg__size {
    width: 100%;
    margin-bottom: 20px;
    margin-top: 220px;
}
.production {
    text-align: center;
}

.production__title {
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    font-size: 50px;
}

.prod__logo {
    position: absolute;
    width: 300px;
    margin-left: 350px;
    margin-top: -100px;
}

.art__title {
    margin-left: 85px;
    font-family: 'Roboto', sans-serif;
    line-height: 27px;
    color: #0d7979;
    position: relative;
    margin-top: 90px;
    text-align: left;
}

.art__desc {
    font-family: 'Roboto', sans-serif;
    line-height: 27px;
    position: relative;
    margin-top: 30px;
    margin-left: -500px;
}

.literature__title {
    margin-left: 85px;
    text-align: left;
    font-family: 'Roboto', sans-serif;
    line-height: 27px;
    color: #0d7979;
    position: relative;
    margin-top: 30px;
}

.literature__desc {
    margin-left: -500px;
    font-family: 'Roboto', sans-serif;
    line-height: 27px;
    position: relative;
    margin-top: 30px;
}

.culture__title {
    margin-left: 85px;
    text-align: left;
    font-family: 'Roboto', sans-serif;
    line-height: 27px;
    color: #0d7979;
    position: relative;
    margin-top: 30px;
}

.culture__desc {
    margin-left: -500px;
    font-family: 'Roboto', sans-serif;
    line-height: 27px;
    position: relative;
    margin-top: 30px;
}

.prod__img {
    position: relative;
    width: 356px;
    height: 502px;
    margin-top: -450px;
    margin-left: 1060px;
}


.prod__down {
    width: 100%;
}

.example__bg {
    width: 100%;
    margin-bottom: -43px;
}


.logofb {
    width: 70%;
    margin-top: 80px;
}

.for_business {
    text-align: center;
}

.for_business__title {
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    font-size: 35px;
    color: #ffffff;
}

.for_business__desc {
    position: relative;
    font-family: 'Roboto', sans-serif;
    line-height: 27px;
    margin-top: 50px;
    color: #ffffff;
}

.for_business_scene__title {
    margin-top: 30px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    font-size: 35px;
    color: #ffffff;
}

.for_business_scene__desc {
    font-family: 'Roboto', sans-serif;
    line-height: 27px;
    color: #ffffff;
}

.example_for_business {
    width: 100%;
}

.plumo__grava {
    background-color: black;
    width: 100%;
    height: 900px;
    text-align: center;  
    margin-top: 10px;
}

.black__logo {
    width: 70%;
    margin-top: 80px;
}


.plumo__grava__title {
    margin-top: 40px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    font-size: 50px;
    color: #ffffff;
    padding-top: 100px;
}

.plumo__grava__desc {
    margin-top: 50px;
    font-family: 'Roboto', sans-serif;
    line-height: 27px;
    color: #ffffff;
    font-size: 18px;
}

.plumo__black--footer {
    width: 100%;
    margin-top: -450px;
}

.luxury__bookmarks {
    width: 100%;
    background-color: black;
    height: 220px;
    margin-top: -4px;
}


.luxury__bookmarks__title {
    
    margin-left: 790px;
    position: absolute;
    margin-top: 80px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    font-size: 35px;
    color: #ffffff;
}

.little {
    margin-top: 74px;
    width: 450px;
    margin-left: 150px;
}

.luxury__bookmarks__desc {
    margin-top: 95px;
    margin-bottom: 10px;
    margin-left: 150px;
    font-family: 'Roboto', sans-serif;
    line-height: 27px;
}

.bookmarks__photo {
    margin-top: -175px;
    margin-left: 620px;
}

.luxury__paper {
    margin-top: -260px;
    position: relative;
    margin-left: 990px;
    font-family: 'Roboto', sans-serif;
    line-height: 27px;
}

.white__surface {
    margin-top: 150px;
    background-color: black;
    width: 100%;
    height: 300px;
}


.white__surface__title {
    margin-left: 150px;
    position: absolute;
    margin-top: 60px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    font-size: 35px;
    color: #ffffff;
}

.white__surface__desc {
    position: absolute;
    margin-top: 150px;
    margin-left: 150px;
    font-family: 'Roboto', sans-serif;
    line-height: 27px;
    color: #ffffff;
}

.white__surface__example {
    width: 30%;
    margin-left: 150px;
    margin-top: 240px;
}

.plumo__white__surface {
    width: 50%;
    margin-left: 100px;
}

.black__surface {
    width: 100%;
    height: 300px;
}

.black__surface__title {
    margin-left: 150px;
    position: absolute;
    margin-top: 60px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    font-size: 35px;
    color: black;
}

.black__surface__desc {
    position: absolute;
    margin-top: 150px;
    margin-left: 150px;
    padding-right: 100px;
    font-family: 'Roboto', sans-serif;
    line-height: 27px;
    color: black;
}

.black__surface__example {
    width: 30%;
    margin-left: 150px;
    margin-top: 265px;
}

.plumo__black__surface {
    width: 50%;
    margin-left: 100px;
}


.simple__pen {
    margin-top: 50px;
    background-color: black;
    width: 100%;
    height: 230px;
}

.simple__pen__title {
    margin-left: 790px;
    margin-top: -90px;
    position: absolute;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    font-size: 35px;
    color: #ffffff;

}

.under {
    margin-top: 74px;
    width: 450px;
    margin-left: 150px;

}

.simple__pen__desc {
    position: relative;
    margin-left: 150px;
    font-family: 'Roboto', sans-serif;
    line-height: 27px;
    margin-top: 20px;
}

.plumo__pen {
    position: relative;
    margin-top: -180PX;
    margin-left: 671px;
    width: 48%;
}

.mettalic__foil {        
    background-color: black;
    width: 100%;
    height: 360px;
}



.mettalic__foil__title {
    margin-left: 150px;
    position: absolute;
    margin-top: 121px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    font-size: 35px;
    color: #ffffff;
}

.mettalic__foil__desc {
    position: absolute;
    margin-top: 190px;
    margin-left: 150px;
    font-family: 'Roboto', sans-serif;
    line-height: 27px;
    color: #ffffff;
    font-size: 18px;
}

.shine__border {
    position: absolute;
    width: 8px;
    height: 80px;
    margin-top: 105px;
    margin-left: 1000px;
    background: red;
}

.shine__title {
    margin-left: 1030px;
    position: absolute;
    margin-top: 121px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    font-size: 35px;
    color: #ffffff;
}

.shine__desc {
    position: absolute;
    margin-top: 190px;
    margin-left: 1030px;
    font-family: 'Roboto', sans-serif;
    line-height: 27px;
    color: #ffffff;
    padding-right: 100px;
    font-size: 18px;
}

.pen__horizontal {
    margin-top: 35px;
    width: 100%;
}

/* Media
===================*/

@media (max-width: 1300px) {
    /* Works */
    .works__item {
        width: 50%;
    }
}

@media (max-width: 991px) {

    /* Nav */
    .nav {
        display: none;
        width: 100%;
        flex-direction: column;

        background-color: #31344e;
        text-align: right;

        position: absolute;
        top: 100%;
        right: 0;
    }

    .nav.show {
        display: flex;
    }

    .nav__link {
        padding: 9px 15px;
    }

    /* Burger */
    .burger {
        display: block;
    }

    /* Intro */
    .intro__title {
        font-size: 40px;
    }

    /* Features */
    .features__item {
        width: 50%;
    }

    /* Team */
    .team__item {
        width: 50%;

        text-align: center;
    }

    .team__photo {
        margin-left: auto;
        margin-right: auto;
    }

    /* Team */
    .social {
        justify-content: center;
    }

    /* Reviews */
    .reviews__photo {
        width: 100%;
        margin: 15px 0 40px;
        overflow: hidden;
    }

    .reviews__content {
        width: 100%;
        padding-left: 0;
        padding-bottom: 40px;
    }
}


@media (max-width: 767px) {

    /* Intro */
    .intro {
        height: auto;
        padding-top: 130px;
        padding-bottom: 30px;
    }

    .intro__title {
        font-size: 30px;
    }

    .intro__subtitle {
        margin-bottom: 30px;

        font-size: 16px;
    }

    /* Features */
    .features {
        margin: 40px 0;
    }

    .features__item {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    /* Works */
    .works__item {
        width: 100%;
        height: 300px;
    }

    /* Team */
    .team {
        margin: 60px 0 30px;
    }

    .team__item {
        width: 100%;
    }

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

    /* Btn */
    .btn--long {
        min-width: 260px;
    }

    /* Download */
    .download {
        margin: 50px 0;
    }

    .download__title {
        font-size: 24px;
    }

    /* Footer */
    .footer__inner {
        padding: 30px 0;
    }

    .footer__block {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 30px;
    }

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


@media (max-width: 414px) {

    /* Reviews */
    .reviews__img {
        right: -100px;
    }
}

