body {
    font-family: 'Roboto Condensed', sans-serif;
    margin: 0;

    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

/* Page */
.page {
    overflow: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1230px;
    padding: 0 15px;
    margin: 0 auto;
}

.scrollup {
  position: fixed;
  bottom: 5%;
  right: 3%;
  color: #fff;
  width: 70px;
  height: 70px;
  background: linear-gradient(130deg, #2d2722 50%, #398a99 50%);
  background-size: 300%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 50px;
  border-radius: 5px;
  transition: .5s;
  z-index: 2000;
}

.scrollup:hover {
    background-position: 100% 0;
  }

/* Intro */
.intro {
    width: 100%;
    height: 100vh;
    min-height: 820px;
    position: relative;

    background-color: #c9a66b;
    z-index: 0;

}

.intro__bg {
    position: absolute;
    width: 100%;
    height: 100vh;
    min-height: 820px;
    
    background:
    url("../images/introbg.jpg") center no-repeat;
    background-size: cover;
    opacity: 0.5;
    z-index: 1;
}

.intro__inner {
    height: 100vh;
    min-height: 820px;
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 100px;
}

.intro__left {
    width: 50%;
}

.intro__right {
    width: 50%;
}

.intro__title {
    color: #fff;
    font-size: 46px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.intro__text {
    color:#fff;
    font-weight: 300;
    font-size: 20px;
}

.intro__button {
    width: 215px;
    height: 42px;
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    margin-top: 25px;
    padding: 10px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    transition: 0.4s;
  }

.intro__button:hover {
      color: #000;
      font-size: 18px;
      background-color: #fff;
      border-color: 0;
      transition: 0.4s;
      cursor: pointer;
    }

.intro__logo {
    width: 400px;
    height: 400px;
}

/* Header */
.header {
    width: 100%;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color:rgba(0, 0, 0, 0.5);
    border-bottom: 3px solid #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    z-index: 10;
}
/* dasdad */
.header.fixed {
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #000;
    border: 0;
    box-shadow: none;
    z-index: 999;
}

.header.burger {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000;
    z-index: 1001;
}

.header__burger {
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000;
    border-top: 1px solid #fff;
    z-index: 1001;
}

.header__burger.active {
    display: block;
}

.nav--burger {
    z-index: 1002;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

.nav__link.burger {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 27px;
    border-bottom: 1px solid #fff;
}

.header__inner {
    align-items: center;
    padding-top: 25px;
    height: 70px;
    display: flex;
    justify-content: space-between;
}

.nav__btn {
    display: none;
    width: 50px;
    height: 50px;
}

.burger__btn {
    width: 50px;
    height: 50px;
}

/* Nav */
.logo {
    width: 100px;
    height: 100px;
}

.nav {
    margin-top: 5px;
}

.nav__link {
    margin: 0 15px;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.6s;
}

.nav__link:hover {
    color: #e7da06;
    font-size: 22px;
    transition: 0.6s;
}

/* Howto */
.howto {
    width: 100%;
    background-color: #42313a;
}

.howto__inner {
    display: flex;
    flex-wrap: wrap;
    padding-top: 30px;
}

.howto__item--left {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
    padding-left: 150px;
    margin-bottom: 30px;
}

.howto__item--right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 150px;
    margin-bottom: 100px;
}

.howto__item--right:last-child {
    margin-bottom: 50px;
}

.howto__name {
    color: #e5e5e5;
    font-size: 48px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 30px 0 60px;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

.howto__icon {
    font-size: 150px;
    color: #e5e5e5;
    text-align: center;
}

.howto__text {
    color: #e5e5e5;
    padding-left: 60px;
    padding-right: 60px;
}

.howto__title {
    font-size: 48px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #e5e5e5;
}

.howto__subtitle {
    color: #e5e5e5;
    font-size: 18px;
}

/* About */
.about {
    width: 100%;
    height: 100vh;
    min-height: 1000px;
    background-color: #f1ecc9;
}

.about__name {
    color: #000;
    font-size: 48px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 30px 0 60px;
    text-align: center;
    border-bottom: 1px solid #000;
    margin-bottom: 40px;
}

.about__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about__item {
    width: 30%;
    margin-bottom: 50px;
}

.about__title {
    color: #42313a;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.about__text {
    font-size: 18px;
    color: #000;
    font-weight: 400;
    font-style: italic;
}


/* Styles */
.styles {
    width: 100%;
    height: 170px;
}

.styles__name {
    color: #000;
    font-size: 48px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-align: center;
    padding: 30px 0 40px;
    border-bottom: 1px solid #000;
    margin-bottom: 40px;
}

.style__inner {
    height: 300px;
    position: relative;
    z-index: 2;
    padding-left: 80px;
    padding-right: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    border-bottom: 1px solid #fff;
}

/* LOFT */
.loft {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: #6e6702;
    z-index: 0;
    transition: 0.6s;
}

.loft.active {
    width: 100%;
    height: 900px;
    transition: 0.6s;
}

.loft__bg {
    position: absolute;
    width: 100%;
    height: 300px;
    background:
    url("../images/loftbg.jpg") center no-repeat;
    background-size: cover;
    opacity: 0.5;
    z-index: 1;
    transition: 0.6s;
}

.loft__bg.active {
    height: 900px;
    transition: 0.6s;
}

.loft__title {
    width: 50%;
    font-size: 90px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.loft__right {
    width: 50%;
}

.loft__text {
    font-size: 18px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-weight: 300;
}

.loft__button {
    width: 180px;
    height: 42px;
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    margin-top: 25px;
    padding: 10px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    transition: 0.4s;
}

.loft__button:hover {
    color: #000;
    font-size: 18px;
    background-color: #fff;
    border-color: 0;
    transition: 0.4s;
    cursor: pointer;
}

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

/* slider */
.slider__wrapper {
    visibility: hidden;
    display: flex;
    justify-content: center;
    padding-top: 40px;
}

.slider__wrapper.active {
    visibility: visible;
}

.slider {
    z-index: 3;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 700px;
    height: 450px;
}

.slide {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.slide__photo {
    display: none;
    width: 700px;
    height: 450px;
}

/* MODERN */
.modern {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: #f1dcc9;
    z-index: 0;
    transition: 0.6s;
}

.modern.active {
    width: 100%;
    height: 900px;
    transition: 0.6s;
}

.modern__bg {
    position: absolute;
    width: 100%;
    height: 300px;
    background:
    url("../images/modernbg.jpg") center no-repeat;
    background-size: cover;
    opacity: 0.5;
    z-index: 1;
    transition: 0.6s;
}

.modern__bg.active {
    height: 900px;
    transition: 0.6s;
}



.modern__title {
    width: 50%;
    font-size: 90px;
    color: #42313a;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.modern__right {
    width: 50%;
}

.modern__text {
    font-size: 18px;
    color: #42313a;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-weight: 300;
}

.modern__button {
    width: 180px;
    height: 42px;
    background-color: transparent;
    border: 2px solid #42313a;
    color: #42313a;
    margin-top: 25px;
    padding: 10px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    transition: 0.4s;
}

.modern__button:hover {
    color: #fff;
    font-size: 18px;
    background-color: #42313a;
    border-color: 0;
    transition: 0.4s;
    cursor: pointer;
}

.modern__slider {
    display: flex;
    justify-content: center;
    padding-top: 40px;
}

.modern__photo {
    width: 400px;
    height: 300px;
}

/* HI-TECH */
.hitech {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: #896e69;
    z-index: 0;
    transition: 0.6s;
}

.hitech.active {
    width: 100%;
    height: 900px;
    transition: 0.6s;
}

.hitech__bg {
    position: absolute;
    width: 100%;
    height: 300px;
    background:
    url("../images/hitechbg.jpg") center no-repeat;
    background-size: cover;
    opacity: 0.5;
    z-index: 1;
    transition: 0.6s;
}

.hitech__bg.active {
    height: 900px;
    transition: 0.6s;
}

.hitech__title {
    width: 50%;
    font-size: 90px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.hitech__right {
    width: 50%;
}

.hitech__text {
    font-size: 18px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-weight: 300;
}

.hitech__button {
    width: 180px;
    height: 42px;
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    margin-top: 25px;
    padding: 10px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    transition: 0.4s;
}

.hitech__button:hover {
    color: #000;
    font-size: 18px;
    background-color: #fff;
    border-color: 0;
    transition: 0.4s;
    cursor: pointer;
}

.hitech__slider {
    display: flex;
    justify-content: center;
    padding-top: 40px;
}

.hitech__photo {
    width: 400px;
    height: 300px;
}

/* MINIMALISM */
.minimalism {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: #ffa577;
    z-index: 0;
    transition: 0.6s;
}

.minimalism.active {
    width: 100%;
    height: 900px;
    transition: 0.6s;
}

.minimalism__bg {
    position: absolute;
    width: 100%;
    height: 300px;
    background:
    url("../images/minimalismbg.jpg") center no-repeat;
    background-size: cover;
    opacity: 0.5;
    z-index: 1;
    transition: 0.6s;
}

.minimalism__bg.active {
    height: 900px;
    transition: 0.6s;
}



.minimalism__title {
    width: 50%;
    font-size: 70px;
    color: #42313a;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.minimalism__right {
    width: 50%;
}

.minimalism__text {
    font-size: 18px;
    color: #42313a;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-weight: 300;
}

.minimalism__button {
    width: 180px;
    height: 42px;
    background-color: transparent;
    border: 2px solid #42313a;
    color: #42313a;
    margin-top: 25px;
    padding: 10px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    transition: 0.4s;
}

.minimalism__button:hover {
    color: #fff;
    font-size: 18px;
    background-color: #42313a;
    border-color: 0;
    transition: 0.4s;
    cursor: pointer;
}

.minimalism__slider {
    display: flex;
    justify-content: center;
    padding-top: 40px;
}

.minimalism__photo {
    width: 400px;
    height: 300px;
}

/* Accordion */
.accordion {
    z-index: 3;
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
}

.accordion__items {
    display: flex;
    flex-wrap: wrap;
    height: 350px;
}

.accordion__item {
    width: 30%;
    max-height: 300px;
}

.accordion_photo {
    width: 350px;
    height: 350px;
}

/* Works */
.works {
    width: 100%;
    min-height: 1900px;
    background-color: #f1dcc9;
    z-index: 5;
}

.works__inner {
    z-index: 5;
}

.works__name {
    color: #000;
    font-size: 48px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-align: center;
    padding: 30px 0 40px;
    border-bottom: 1px solid #000;
    margin-bottom: 40px;
}

.works__item {
    margin: 0 auto;
    width: 700px;
    margin-bottom: 40px;
}

.works__img {
    width: 700px;
    height: 500px;
}

/* Form */
.form {
    width: 100%;
    height: 700px;

    position: relative;

    background-color: #c9a66b;
    z-index: 0;
}

.form *{
    outline: none;
}

.form__bg {
    position: absolute;
    width: 100%;
    height: 700px;
    background:
    url("../images/formbg.jpg") center no-repeat;
    background-size: cover;
    z-index: 1;
    opacity: 0.4;
}

.form__inner {
    width: 100%;
    height: 640px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.form__in {
    z-index: 2;
    position: relative;
    width: 500px;
    height: 640px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 15px;
    margin: 0 auto;
    background-color: #e5e5e5;
    box-shadow: 0 0 15px #757575;
}

.form__item {
    margin-bottom: 20px;
}

.form__title {
    padding-left: 40px;
    font-size: 40px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.form__label {
    font-size: 18px;
    display: block;
}

.form__input {
    height: 40px;
    padding: 0px 20px;
    border-radius: 5px;
    border-color: #fff;
    width: 100%;
    transition: all 0.8s ease 0s;
}

.form__input.error {
    box-shadow: 0 0 15px red;
}

.form__input:focus {
    box-shadow: 0 0 15px #7a956b;
}

textarea.form__input {
    min-height: 120px;
    resize: vertical;
}

.form__button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
    background-color: #ffa577;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    border: 0px;
    border-radius: 20px;
    box-shadow: 0 5px 0 #855740;
    position: relative;
    top:0;
}

.form__button:hover {
    background-color: #d18966;
}

.form__button:active {
    top: 3px;
    box-shadow: 0 2px 0 #855740;
}

/* footer */
.footer {
    width: 100%;
    height: 200px;
    background-color: #000;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.footer__item {
    width: 30%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__icon {
    width: 200px;
    height: 200px;
}


@media (max-width: 1024px) {
    /* nav__link */
    .nav__link {
        font-size: 22px;
        margin: 0 10px;
    }
    
    /* intro */
    .intro__inner {
        padding: 0 45px;
    }

    .intro__logo {
        width: 280px;
        height: 300px;
    }

    .intro__title {
        font-size: 34px;
    }

    .intro__text {
        font-size: 17px;
    }

    /* About */
    .about {
        height: 1200px;
    }

    .about__items {
        padding: 0 25px;
    }

    .about__name {
        font-size: 42px;
        padding: 30px 0 30px;
    }

    .about__item {
        margin-bottom: 32px;
    }

    /* styles */
    .minimalism__inner {
        padding-left: 30px;
        padding-right: 30px;
    }

    .loft__title {
        font-size: 60px;
    }

    .loft__text {
        font-size: 16px;
    }

    .modern__text {
        font-size: 16px;
    }

    .modern__title {
        font-size: 60px;
    }

    .hitech__text {
        font-size: 16px;
    }

    .hitech__title {
        font-size: 60px;
    }

    .minimalism__text {
        font-size: 16px;
    }

    .minimalism__title {
        font-size: 60px;
    }
}

@media (max-width: 770px) {
    /* nav__link */
    .nav__link {
        font-size: 17px;
        margin: 0 10px;
    }

    /* intro */
    .intro__inner {
        padding: 0 45px;
    }

    .intro__logo {
        width: 250px;
        height: 270px;
    }

    .intro__text {
        font-size: 16px;
    }

    .intro__title {
        font-size: 28px;
    }
    
    /*about*/
    .about {
        height: 1085px;
    }

    .about__name {
        font-size: 30px;
    }

    .about__title {
        font-size: 20px;
    }

    .about__text {
        font-size: 16px;
    }

    .about__item {
        width: 40%;
        margin: 8px 15px;
    }

    /* how to */
    .howto__item--right {
        padding-right: 15px;
        margin-bottom: 15px;
    }

    .howto__item--left {
        padding-left: 40px;
        margin-bottom: 15px;
    }

    .howto__title {
        font-size: 40px;
    }

    .howto__subtitle {
        font-size: 16px;
    }

    /* styles */
    .styles__name {
        font-size: 32px;
        padding: 30px 0 30px;
    }

    .styles {
        height: 120px;
    }

    .style__inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .loft.active {
        height: 720px;
    }

    .loft__bg.active {
        height: 720px;
    }

    .loft__title {
        font-size: 40px;
    }

    .loft__text {
        font-size: 13px;
    }

    .modern.active {
        height: 720px;
    }

    .modern__bg.active {
        height: 720px;
    }

    .modern__title {
        font-size: 40px;
    }

    .modern__text {
        font-size: 13px;
    }

    .hitech.active {
        height: 720px;
    }

    .hitech__bg.active {
        height: 720px;
    }

    .hitech__title {
        font-size: 40px;
    }

    .hitech__text {
        font-size: 13px;
    }

    .minimalism.active {
        height: 720px;
    }

    .minimalism__bg.active {
        height: 720px;
    }

    .minimalism__title {
        font-size: 40px;
    }

    .minimalism__text {
        font-size: 13px;
    }

    /* slider */
    .slider {
        width: 550px;
    height: 350px;
    }

    .slide__photo {
        width: 550px;
    height: 350px;
    }

    /* Works */
    .works__name {
        padding: 30px 0 30px;
    }

    .works__item {
        width: 600px;
        height: 400px;
    }

    .works__img {
        width: 600px;
        height: 400px;
    }

    .works {
        min-height: 1500px;
    }
}

@media (max-width: 575px) {
    /* header */
    .nav {
        display: none;
    }

    .nav__btn {
        display: block;
    }

    .header {
        height: 70px;
    }

    .header.fixed {
        height: 70px;
    }
    
    .logo {
        width: 70px;
        height: 70px;
    }
    
    .header__inner {
        padding-top: 5px;
    }

    .header__burger {
        top: 70px;
    }
    
    /* intro */
    .intro__inner {
        padding: 0;
    }

    .intro__logo {
        width: 220px;
        height: 220px;
    }

    .intro__title {
        font-size: 25px;
    }
    
    /* about */
    .about {
        height: 1900px;
    }

    .about__item {
        width: 100%;
        margin-bottom: 15px;
    }

    /* howto */
    .howto__name {
        font-size: 34px;
        padding: 30px 0 30px;
    }

    .howto__icon {
        font-size: 100px;
    }

    .howto__title {
        font-size: 26px;
    }

    .howto__text {
        padding-left: 50px;
        padding-right: 25px;
        font-size: 14px;
    }

    .howto__item--left {
        margin-bottom: 30px;
    }

    .howto__item--right {
        margin-bottom: 30px;
    }

    /* styles */
    .style__inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .loft__title {
        font-size: 24px;
    }

    .loft__text {
        font-size: 10px;
    }

    .loft.active {
        height: 590px;
    }

    .loft__bg.active {
        height: 590px;
    }


    .modern__title {
        font-size: 24px;
    }

    .modern__text {
        font-size: 10px;
    }

    .modern.active {
        height: 590px;
    }

    .modern__bg.active {
        height: 590px;
    }


    .hitech__title {
        font-size: 24px;
    }

    .hitech__text {
        font-size: 10px;
    }

    .hitech.active {
        height: 590px;
    }

    .hitech__bg.active {
        height: 590px;
    }


    .minimalism__title {
        font-size: 24px;
    }

    .minimalism__text {
        font-size: 10px;
    }

    .minimalism.active {
        height: 590px;
    }

    .minimalism__bg.active {
        height: 590px;
    }

    .slide__photo {
        width: 350px;
        height: 185px;
    }

    .slider {
        width: 350px;
        height: 185px;
    }

    /* works */
    .works__item {
        width: 430px;
        height: 240px;
    }

    .works__img {
        width: 430px;
        height: 240px;
    }

    .works {
        min-height: 1020px;
    }

    /* form */
    .form__in {
        width: 400px;
        height: 620px;
    }

    .form__title {
        font-size: 32px;
    }

    /* footer */
    .footer__icon {
        width: 150px;
        height: 150px;
    }
    
    .footer {
        height: 150px;
    }

    /* Scrollup */
    .scrollup {
        display: none;
    }
}

@media (max-width: 425px) {
    /* intro */
    .intro__inner {
        flex-direction: column;
        justify-content: center;
    }

    /* how to*/
    .howto__title {
        font-size: 22px;
    }

    .howto__text {
        padding-left: 50px;
        padding-right: 25px;
        font-size: 14px;
    }

    .howto {
        height: 2400px;
    }

    .slide__photo {
        width: 300px;
        height: 160px;
    }

    .slider {
        width: 300px;
        height: 160px;
    }

    .loft.active {
        height: 540px;
    }

    .loft__bg.active {
        height: 540px;
    }
    .modern.active {
        height: 540px;
    }

    .modern__bg.active {
        height: 540px;
    }
    .hitech.active {
        height: 540px;
    }

    .hitech__bg.active {
        height: 540px;
    }

    .minimalism.active {
        height: 540px;
    }

    .minimalism__bg.active {
        height: 540px;
    }
    /* works */
    .works__item {
        width: 330px;
        height: 220px;
    }
    
    .works__img {
        width: 330px;
        height: 220px;
    }

    /* form */
    .form {
        height: 640px;
    }
    .form__bg {
        height: 640px;
    }

    .form__in {
        width: 330px;
        height: 580px;
    }

    .form__title {
        padding-left: 20px;
        font-size: 25px;
    }

    .form__label {
        font-size: 15px;
    }
}

@media (max-width: 380px) {
    .about {
        height: 2010px;
    }

    .howto {
        height: 2940px;
    }

    .howto__item--right {
        padding-right: 0px;
    }

    .styles__name {
        padding: 15px 0 30px;
    }

    .nav__link {
        font-size: 14px;
        margin: 0 10px;
    }
}