@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #FFF;
}

body {
    color: #FFF;
    font-family: 'Montserrat';
    font-style: normal;
    font-size: 16px;
    background-color: #5420D8;
}

body.lock {
    overflow: hidden;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
    background-color: #5420D8;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30 ;
    /* position: fixed; */
}

.header-wrapper {
    margin: 0 auto;
    width: 80%;
    display: flex;
    justify-content: space-around;
}

.header-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-logo span {
    cursor: pointer;
}

.header-menu-wrapper.mobile {
    /*position: fixed;*/
    /*width: 100%;*/
}

.links {
    display: flex;
    position: fixed;
    right: calc(-100% - 25px);
    top: 80px;
    height: 100%;
    width: 100%;
    justify-content: flex-end;
    padding-top: 30px;
    padding-right: 25px;
    background-color: #5420D8;
    transition: all 0.3s ease 0s;
}

.links.active {
    right: 0;
}

.links_list {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.links_list .materials {
    font-weight: 700;
}

.links_list li {
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.burger {
    width: 30px;
    height: 20px;
    position: relative;
}

.burger:before, .burger:after {
    content: '';
    background-color: #FFF;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease 0s;
}

.burger:before {
    top: 0;
}

.burger:after {
    bottom: 0;
}

.burger.active:before {
    transform: rotate(45deg);
    top: 9px;
}

.burger.active:after {
    transform: rotate(-45deg);
    bottom: 9px;
}

.burger.active span {
    transform: scale(0);
}

.burger span {
    position: absolute;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #FFF;
    top: 9px;
    transition: all 0.3s ease 0s;
}

.logo-name {
    font-size: 24px;
    font-weight: 800;
}

.logo-text {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    text-transform: uppercase;
}
.header-menu-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    text-transform: uppercase;
}

.header-menu li:not(:first-child) {
    margin-left: 20px;
}

.header-menu li {
    cursor: pointer;
}

.header-menu .materials {
    font-weight: 700;
}

.header-menu .materials.active {
    color: #FF006C;
}

.header-contacts-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-contacts {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
}

.header-contacts li:not(:first-child) {
    margin-left: 20px;
}

.contacts-tel {
    font-size: 20px;
    font-weight: 700;
}

.contacts-inst {
    line-height: calc(100% - 14px);
}

.main {
    width: 100%;
    min-height: 200px;
    background: url(/img/bg-image3.png) no-repeat;
    background-position-y: 1000px;
    background-size: contain;
    padding-top: 80px;
}

.picture.materials, .picture.label {
    padding-top: 200px;
    /* background: url(/img/bg-image4.png) no-repeat; */
    background-size: 100%;
}

.picture.materials h2, .picture.label h2 {
    text-align: center;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.picture.materials p, .picture.label p {
    max-width: 640px;
    margin: 0 auto 74px;
    font-size: 24px;
    text-align: center;
}
.picture.materials span, .picture.label span {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-size: 18px;
    width: 170px;
    height: 50px;
    margin: 0 auto;
    border-radius: 33px;
    background-color: #FF006C;
}
.main.material {
    background: none;
}
.material_info {
    margin-top: 200px;
    position: relative;
}
.material_info .info {
    max-width: 360px;
}
.material_info .info p {
    font-size: 18px;
    text-align: left;
}
.info_comb {
    display: flex;
    justify-content: space-around;
}
.material_info .img {
    position: absolute;
    top: 0;
    margin: 0 auto;
    width: 50%;
    left: 30%;
}
.material_info .img img {
    max-width: 625px;
    height: auto;
}
.material_info .info .recommend {
    font-size: 14px;
}
.material_info .info1 {
    margin-left: 20%;
}
.material_info .info2 {
    margin-top: 90px;
}
.material_info .info3 {
    margin-top: 100px;
}
.material_info .info3 p {
    margin-bottom: 20px;
}

.picture img {
    width: 100%;
    height: auto;
}

.download {
    text-transform: uppercase;
    font-size: 18px;
    width: max-content;
    margin: 20px auto 0;
}

.download span {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 386px;
    height: 50px;
    border-radius: 33px;
    border: 3px solid #FF006C;
}

.catalog {
    width: 100%;
    padding-top: 300px;
    background: url(/img/bg-image3.png) no-repeat;
    background-size: 100%;
}

.catalog_title {
    width: max-content;
    margin: 0 auto 50px;
}

.catalog_list {
    width: 70%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 0 auto;
}

.catalog_list_item {
    overflow: hidden;
    position: relative;
    width: 480px;
    min-width: 270px;
    height: 310px;
    min-height: 260px;
    border-radius: 40px;
    background-color: #FFF;
    margin-bottom: 20px;
}

.catalog_list_item .rectangle {
    position: absolute;
    top: 40px;
    width: 207px;
    height: 276px;
}

.item_inner {
    margin-left: 200px;
    margin-top: 34px;
}

.item_inner .title {
    font-size: 24px;
    font-weight: 700;
    color: #5420D8;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.item_inner .description {
    display: flex;
}

.item_inner .price {
    color: #FF006C;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.description .title {
    margin-right: 20px;
    text-transform: none;
}

.description span {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #0C0A0E;
}

.description span.mobile {
    display: none;
}

.order span {
    width: 170px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-size: 18px;
    margin-top: 18px;
    background-color: #FF006C;
    border-radius: 33px;
    cursor: pointer;
}

.brands {
    width: 100%;
    background-color: #FFF;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 200px;
}

.brands_wrapper {
    width: 90%;
    display: flex;
    align-items: center;
    margin: 0 auto;
    justify-content: space-around;
}

.brands_wrapper .item:first-child {
    width: 60%;
}

.brands_wrapper .item:last-child {
    width: 40%;
}

.brands_wrapper .item {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

/* .brands_wrapper img {
    margin-left: 80px;
}

.m0 {
    margin: 0 !important;
} */

.brands_wrapper img {
    width: 100%;
    height: auto;
}

 .brands_wrapper .img1 img {
     max-height: 93px;
}

.brands_wrapper .img2 img {
    max-height: 50px;
}

.brands_wrapper .img3 img {
    max-height: 90px;
}

.brands_wrapper .img4 img {
    max-height: 80px;
}

.brands_wrapper .img5 img {
    max-height: 32px;
}

.catalog h2 {
    font-size: 64px;
    text-transform: uppercase;
}

.calendar {
    width: 80%;
    margin: 0 auto;
    position: relative;
}

.calendar img {
    position: absolute;
    left: -10%;
    width: 70%;
    height: auto;
}

.calendar_info {
    display: flex;
    max-width: 1200px;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    text-transform: uppercase;
}

.calendar_title_wrapper {
    width: max-content;
}

.calendar_title {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.calendar_title .title {
    font-size: 64px;
    font-weight: 700;
}

.calendar_title .year {
    font-size: 36px;
    color: #C5C5C5;
}

.calendar_sticker {
    width: 310px;
    margin-left: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 83px;
    border-radius: 68px;
    transform: rotate(-11deg);
    background-color: #FF006C;
}

.calendar_sticker span {
    text-transform: uppercase;
    font-size: 36px;
    font-weight: 700;
}

.calendar_list {
    font-size: 24px;
    margin-left: 650px;
    margin-top: 30px;
}

.calendar li:not(:last-child) {
    margin-bottom: 15px;
}

.calendar_list li {
    color: #FF006C;
}

.calendar_list li span {
    color: #FFF;
}

.calendar_ps {
    font-size: 12px;
    max-width: 238px;
    text-transform: none;
    margin-left: 650px;
    margin-top: 120px;
}

.info {
    height: auto;
}

.info_wrapper {
    background-size: cover;
    background-position-y: -150px;
}

.info_about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70%;
    margin: 200px auto 178px;
}

.info_wrapper h2 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.text_about {
    text-align: center;
    margin-bottom: 40px;
}

.benefit img {
    max-width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.benefit_list {
    display: flex;
}

.benefit_list li {
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.benefit_list li span {
    text-transform: uppercase;
    text-align: center;
}

.our_products {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70%;
    margin: 0 auto 178px;
}

.our_products_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.our_products_list li {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: calc(100% / 6);
    position: relative;
}

.our_products_list img {
    max-height: 120px;
    width: auto;
    border-radius: 50%;
    margin-bottom: 15px;
}

.our_products_list li span {
    font-size: 24px;
    cursor: pointer;
    text-transform: uppercase;
    text-align: center;
}

.samo_materials {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70%;
    margin: 0 auto 178px;
}

.samo_materials h2 {
    text-align: center;
}

.samo_materials h2.mobile {
    display: none;
}

.picture.materials h2.mobile, .picture.label h2.mobile {
    display: none;
}

.mat_info {
    width: 50%;
}

.mat_info p {
    margin-bottom: 40px;
}

.mat_info span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-transform: uppercase;
    width: 195px;
    height: 50px;
    border-radius: 33px;
    background-color: #FF006C;
}

.mat_picture.mobile {
    display: none;
    width: 100%;
}

.mat_picture.mobile img {
    position: unset;
}

.mat_picture {
    position: relative;
    width: 50%;
}

.mat_picture img {
    height: auto;
    width: 100%;
    position: absolute;
    top: -160px
}

.samo_materials_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 12px;
}

.footer-inner {
    width: 100%;
}

.footer_contacts {
    width: 70%;
    margin: 0 auto 160px;
}

.contacts_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.contacts_wrapper .item {
    max-width: 270px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contacts_wrapper .item p {
    font-size: 20px;
    margin-bottom: 40px;
}

.contacts_wrapper .item img {
    position: absolute;
    width: 24px;
    left: -44px;
    height: auto;
}

.img_address {
    top: 0;
}

.img_mail {
    top: 6px;
}

.img_phone {
    top: 4px;
}

.img_work {
    top: 2px;
}

.relative {
    position: relative;
}

.footer .map {
    width: 100%;
    max-height: 500px;
}

.footer .footer_contacts h2 {
    text-align: center;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.footer_info {
    text-align: center;
    display: block;
    margin: 40px auto;
}

.footer .footer_contacts h3 {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer.materials {
    padding-top: 180px;
    /* background: url(/img/bg5.png) no-repeat; */
    background-size: 100%;
    background-position-y: -120px;
    overflow: hidden;
}

.mobile {
    display: none;
}

.phone_mobile {
    display: none;
}

.inst_mobile {
    display: none;
}

.popup_overflow{
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(33,33,33,.75);
    z-index: 200;
}
.close {
    position: absolute;
    top: 50px;
    right: 50px;
    cursor: pointer;
}
.close img {
    width: 28px;
    height: 28px;
}
.form {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: 80px auto;
}
.form .title {
    margin: 0 auto;
    font-size: 36px;
    font-weight: 700;
    color: #5420D8;
    text-transform: uppercase;
    margin-bottom: 50px;
}
.form input {
    border: 1px solid #C5C5C5;
    border-radius: 35px;
    margin: 0 auto;
    width: 80%;
    height: 50px;
    margin-bottom: 20px;
    padding-left: 30px;
}

.form input.is-invalid {
    border-color: #ff0000;
    border-block-width: 2px;
}

.invalid-feedback {
    color: #ff0000;
    margin: 0 auto 10px;
    width: 80%;
    font-size: 14px;
}

.form button {
    margin: 20px auto 0;
    width: 70%;
    height: 50px;
    background: #FF006C;
    border-radius: 33px;
    text-transform: uppercase;
    border: none;
    color: #FFF;
    font-size: 18px;
    font-family: 'Montserrat';
    cursor: pointer;
}

.form button .mobile {
    display: none;
}
.popup {
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    box-shadow: 0 14px 25px rgb(0 0 0 / 16%);
    width: 60%;
    height: 560px;
    border-radius: 30px;
}

#scrollup {
    height: 40px;
    width: 40px;
    background-color: #5420D8;
    border-radius: 50%;
    position: fixed;
    bottom: 100px;
    right: 30px;
    cursor: pointer;
}

#scrollup:before, #scrollup:after {
    content: '';
    position: absolute;
    height: 50%;
    width: 2px;
    border-radius: 2423177px;
    background-color: #FFF;
    top: 20%;
}

#scrollup:before {
    transform: rotate(30deg);
    left: 36%;
}

#scrollup:after {
    transform: rotate(-30deg);
    right: 36%;
}

.our_products_list li {
    overflow: hidden;
}

.our_products_list li.active {
    overflow: visible;
}

.our_products_list li.active p {
    top: 100%;
    opacity: 1;
    z-index: 2;
}

.our_products_list p {
    transition: all 0.5s ease 0s;
    font-size: 15px;
    text-align: center;
    position: absolute;
    top: -100%;
    margin-top: 15px;
    padding: 20px 5px 30px 5px;
    /*padding-top: 20px;*/
    /*padding-bottom: 30px;*/
    background-color: #160527;
    box-shadow: 8px 4px 23px rgb(61 43 51 / 29%);
    border-radius: 40px;
    opacity: 0;
}

.label_section {
    max-width: 1190px;
    padding-left: 45px;
    padding-right: 45px;
}

.slider_container {
    /* width: 100%; */
    margin: 0 auto;
    display: flex;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #434394;
}

.slider_container .column {
    width: 50%;
    position: relative;
    min-height: 1px;
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
    padding-top: 30px;
}

.slider_container .text {
    
}

.slider_container .buttons {
    display: flex;
    justify-content: space-around;
}

.slider_container .buttons div {
    width: 40%;
    padding: 10px;
    display: flex;
    /* justify-content: center; */
    transition: background .3s,border .3s,border-radius .3s,box-shadow .3s,transform var(--e-transform-transition-duration,.4s);
    cursor: pointer;
    text-align: center;
}

.slider_container .buttons .price {
    font-size: 23px;
    font-weight: 500;
    fill: #FFFFFF;
    color: #FFFFFF;
    background-color: #5420D8;
    border-style: solid;
    border-color: #5420D8;
    border-radius: 5px 5px 5px 5px;
}

.slider_container .buttons .print {
    font-size: 23px;
    font-weight: 500;
    fill: #FFFFFF;
    color: #5420D8;
    background-color: #FFFFFF;
    border-color: #5420D8;
    border-style: solid;
    border-radius: 5px 5px 5px 5px;
}

@media (max-width: 1400px) {
    .catalog_list {
        width: 80%;
    }
    
}

@media (max-width: 1200px) {
    .catalog_list_item {
        width: 440px;

    }
    .catalog_list_item .rectangle {
        left: -50px;
    }
    .item_inner {
        margin-left: 150px;
    }
    .contacts-tel {
        font-size: 15px;
    }
    .logo-name {
        font-size: 20px;
    }
    .calendar_title .title {
        font-size: 44px;
    }

    .calendar_title .year {
        font-size: 26px;
    }
    .calendar_sticker {
        height: 63px;
        width: 260px;
    }
    .calendar_sticker span {
        font-size: 28px;
    }
    .calendar_ps {
        margin-top: 80px;
        margin-left: 600px;
    }
    .picture.materials h2, .picture.label h2 {
        font-size: 44px;
    }
    .picture.materials p, .picture.label p {
        font-size: 20px;
    }
    .material_info .info1 {
        margin-left: 10%;
    }
    .info_wrapper h2 {
        font-size: 44px;
        text-align: center;
    }
    .material_info {
        margin-top: 150px;
    }
    .info_about {
        margin-bottom: 138px;
    }
    .our_products {
        margin-bottom: 138px;
    }
    .our_products_list li {
        width: calc(100% / 4)f
    }
    .samo_materials {
        margin-bottom: 138px;
    }
    .footer .footer_contacts h2 {
        font-size: 44px;
    }
    .footer_contacts {
        margin-bottom: 100px;
    }
}

@media (max-width: 1100px) {
    .catalog_list {
        width: 90%;
    }
}

@media (max-width: 1000px) {
    .header-logo {
        display: none;
    }
    .header-menu-wrapper {
        display: none;
    }
    .mobile {
        display: block;
    }
    .material_info .img {
        left: 50%;
    }
    .material_info .info2 {
        margin-top: 0;
    }
    .catalog_list_item {
        width: 270px;
        height: 260px;
    }
    .catalog_list {
        width: 80%;
    }
    .catalog_list_item .rectangle {
        left: -90px;
        top: 0;
    }
    .item_inner {
        margin-top: 20px;
        margin-left: 100px;
    }
    .description span {
        color: #0C0A0E;
        font-size: 15px;
    }
    .description span.desk {
        display: none;
    }
    .description span.mobile {
        display: block;
    }
    .order span {
        font-size: 15px;
        width: 133px;
        height: 46px;
    }
    .item_inner span.mobile {
        display: block;
    }
    .item_inner span.desk {
        display: none;
    }
    .item_inner .title {
        margin-bottom: 0;
    }
    .item_inner .price {
        font-size: 15px;
    }
    .item_inner .title:first-child {
        font-size: 18px;
    }
    .brands_wrapper {
        flex-direction: column;
    }
    .brands_wrapper .item:first-child {
        width: 90%;
        margin-bottom: 20px;
    }
    .brands_wrapper .item:last-child {
        width: 70%;
    }
}

@media (max-width: 900px) {
    body {
        font-size: 12px;
    }
    .main {
        background-position-y: 800px;
        background-size: 100%;
    }
    .calendar_info {
        align-items: unset;
    }
    .calendar_title_wrapper {
        margin: 0 auto;
    }
    .calendar_list {
        margin-left: 70%;
    }
    .calendar_sticker {
        margin-left: 60%;
    }
    .our_products {
        margin-bottom: 100px;
    }
    .calendar_ps {
        margin-left: 0;
    }
    .our_products_list li {
        width: calc(100% / 3)
    }
    .info_about {
        margin-top: 70px;
        max-width: 90%;
    }
    .brands_wrapper {
        flex-wrap: wrap;
    }
}

@media (max-width: 700px) {
    .contacts_wrapper .item {
        align-items: center;
    }
    .material_info .img {
        position: unset;
        width: 70%;
    }
    .material_info .info1 {
        margin: 0;
    }
    .picture.materials p, .picture.label p {
        text-align: center;
        margin-bottom: 0;
    }
    .material_info .info3 {
        margin-top: 30px;
    }
    .material_info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .info_comb {
        flex-direction: column;
    }
    .material_info .info .recommend {
        margin-top: 5px;
    }
    .picture.materials p:first-child, .picture.label p:first-child {
        margin-bottom: 50px;
    }
    .zakaz {
        margin-top: 50px !important;
    }
    .brands_wrapper .item:first-child {
        width: 100%;
        margin-bottom: 20px;
        justify-content: space-between;
    }
    .brands_wrapper .item:last-child {
        width: 80%;
        justify-content: space-between;
    }
    .brands_wrapper img {
        max-height: 70px !important;
    }
}

@media (max-width: 600px) {
    .form {
        margin-top: 60px;
        width: 80%;
    }
    .form .title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .popup {
        border-radius: 35px;
        height: 420px;
        width: 80%;
    }
    .close {
        top: 30px;
        right: 30px;
    }
    .form button {
        margin-top: 10px;
        width: 133px;
    }
    .form button .mobile {
        display: block;
    }
    .form button .desk {
        display: none;
    }
    .material_info {
        margin-top: 100px;
    }
    .catalog {
        padding-top: 200px;
    }
    .samo_materials {
        margin-bottom: 60px;
    }
    .samo_materials .desk {
        display: none;
    }
    .picture.materials .desk, .picture.label .desk {
        display: none;
    }
    .samo_materials h2.mobile {
        display: block;
    }
    .picture.materials h2.mobile, .picture.label h2.mobile {
        display: block;
    }
    .catalog h2 {
        font-size: 44px;
    }
    .header-contacts-wrapper {
        display: none;
    }
    .header-menu-wrapper.mobile {
        display: flex;
        width: 110px;
        justify-content: space-between;
    }
    .header {
        height: 60px;
    }
    .links {
        top: 60px;
    }
    .main {
        padding-top: 60px;
    }
    .header-wrapper {
        justify-content: space-between;
        width: 90%;
    }
    .phone_mobile {
        display: block;
    }
    .inst_mobile {
        display: block;
    }
    .calendar_title .title {
        font-size: 36px;
    }
    .calendar_title .year {
        font-size: 18px;
    }
    .calendar_sticker {
        margin-left: 50%;
        width: 140px;
        height: 35px;
    }
    .calendar_sticker span {
        font-size: 16px;
    }
    .calendar_ps {
        max-width: 135px;
        margin-top: 100px;
    }
    .calendar img {
        top: 160px;
        left: -50px;
        width: 370px;
    }
    .calendar_list {
        font-size: 16px;
        margin-left: 60%;
    }
    .our_products_list li {
        width: calc(100% / 2);
    }
    .samo_materials_wrapper {
        flex-direction: column;
    }
    .mat_picture img {
        position: unset;
    }
    .mat_info p {
        font-size: 16px;
        text-align: center;
    }
    .mat_info a {
        display: flex;
        justify-content: center;
        margin-bottom: 50px;
    }
    .mat_info, .mat_picture {
        width: 100%;
    }
    .mat_info p:first-child {
        display: none;
    }
    .benefit_list {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    .benefit_list li:nth-child(1) {
        margin-bottom: 20px;
    }
    .benefit_list li:nth-child(2) {
        margin-bottom: 20px;
    }
    .benefit_list li span {
        max-width: 150px;
    }
    .contacts_wrapper .item {
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .contacts_wrapper .item img {
        left: unset;
    }
    .img_address {
        top: -100%;
        left: 30px !important;
    }
    .img_mail {
        top: -80%;
        left: 30px !important;
    }
    .img_phone {
        top: -100%;
        left: 50px !important;
    }
    .img_work {
        top: -100%;
        left: 95px !important;
    }
    .contacts_wrapper .item p {
        margin-bottom: 70px;
    }
    .info_about {
        margin-bottom: 80px;
    }
    .info_wrapper h2 {
        margin-bottom: 20px;
    }
    .our_products {
        margin-bottom: 80px;
    }
    .footer_contacts {
        margin-bottom: 10px;
    }
    .footer .footer_contacts h2 {
        margin-bottom: 70px;
    }
    .our_products {
        width: 90%;
    }
    .download span {
        text-align: center;
        width: 228px;
        height: 64px;
        font-size: 15px;
    }
}

@media (max-width: 400px) {
    .info_about {
        width: 100%;
    }
}