* {
    vertical-align: baseline;
    font-weight: inherit;
    font-family: inherit;
    font-style: inherit;
    font-size: 100%;
    border: 0 none;
    outline: 0;
    padding: 0;
    margin: 0;
}

@font-face {
    font-family: "SusanBold";
    src: url("../assets/fonts/SusanBold-Regular.eot") format("eot"),
    url("../assets/fonts/SusanBold-Regular.ttf") format("ttf"),
    url("../assets/fonts/SusanBold-Regular.woff") format("woff"),
    url("../assets/fonts/SusanBold-Regular.woff2") format("woff2");
}

@font-face {
    font-family: "SusanBook";
    src: url("../assets/fonts/SusanBook-Regular.eot") format("eot"),
    url("../assets/fonts/SusanBook-Regular.ttf") format("ttf"),
    url("../assets/fonts/SusanBook-Regular.woff") format("woff"),
    url("../assets/fonts/SusanBook-Regular.woff2") format("woff2");
}

@font-face {
    font-family: "SusanSansBook";
    src: url("../assets/fonts/SusanSansBook-Regular.eot") format("eot"),
    url("../assets/fonts/SusanSansBook-Regular.ttf") format("ttf"),
    url("../assets/fonts/SusanSansBook-Regular.woff") format("woff"),
    url("../assets/fonts/SusanSansBook-Regular.woff2") format("woff2");
}

@font-face {
    font-family: "Roboto";
    src: url("../assets/fonts/Roboto-Regular.eot") format("eot"),
    url("../assets/fonts/Roboto-Regular.ttf") format("ttf"),
    url("../assets/fonts/Roboto-Regular.woff") format("woff"),
    url("../assets/fonts/Roboto-Regular.woff2") format("woff2");
}

html {
    scroll-behavior: smooth;
}

header {
    width: 100%;
    height: 120px;
    position: relative;
}

.header-wrapper {
    display: flex;
    max-width: 1485px;
    flex-direction: row;
    justify-content: space-between;
    margin: 20px auto 0 auto;
    align-items: center;
}

nav {
    display: flex;
}

section {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
}

.nav-header {
    display: flex;
    position: relative;
    max-width: 685px;
    align-items: center;
}

.nav-header div {
    display: flex;
    align-items: center;
    max-height: 40px;
    /*padding-top: 20px;*/
}

.nav-header div a {
    font-family: SusanSansBook, sans-serif;
    margin-right: 35px;
    text-decoration: none;
    color: #474747;
    font-size: 16px;
    font-weight: 400;
    z-index: 5;
}

.last a {
    color: #FF6F00 !important;
    display: none;
}

.other-btns {
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: center;
}

.other-btns a {
    text-decoration: none;
}

.number-phone {
    display: flex;
    font-family: Roboto, sans-serif;
    margin-right: 40px;
    font-size: 20px;
    font-weight: 600;
    color: #FF6F00;
    text-decoration: none;
}

.header-ic {
    display: none;
    width: 50px;
    min-width: 50px;
    height: 50px;
    z-index: 5;
}

a.header-ic:hover > svg,
button.header-ic:hover > svg {
    fill: #f68a1f
}

.hamburger {
    cursor: pointer;
    position: relative;
}

.hamburger span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: #FF6F00;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: background-color .15s;
    -o-transition: background-color .15s;
    -moz-transition: background-color .15s;
    transition: background-color .15s
}

.hamburger span::after,
.hamburger span::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: .2s;
    -o-transition: .2s;
    -moz-transition: .2s;
    transition: .2s;
    -webkit-transition-delay: .1s, .1s, .1s, 0s;
    -moz-transition-delay: .1s, .1s, .1s, 0s;
    -o-transition-delay: .1s, .1s, .1s, 0s;
    transition-delay: .1s, .1s, .1s, 0s;
    -webkit-transition-property: top, bottom, width, -webkit-transform;
    -o-transition-property: top, bottom, width, -o-transform;
    -moz-transition-property: top, bottom, width, transform, -moz-transform;
    transition-property: top, bottom, width, transform;
    transition-property: top, bottom, width, transform, -webkit-transform, -moz-transform, -o-transform
}

.hamburger span::before {
    background: #FF6F00;
    top: -6px
}

.hamburger span::after {
    background: #FF6F00;
    bottom: -6px
}

.hamburger.active span {
    background-color: transparent
}

.hamburger.active span::after,
.hamburger.active span::before {
    width: 20px;
    -webkit-transition-delay: 0s, 0s, 0s, .1s;
    -moz-transition-delay: 0s, 0s, 0s, .1s;
    -o-transition-delay: 0s, 0s, 0s, .1s;
    transition-delay: 0s, 0s, 0s, .1s
}

.hamburger.active span::before {
    top: 0;
    -webkit-transform: translateX(-50%) rotate(-45deg);
    -moz-transform: translateX(-50%) rotate(-45deg);
    -ms-transform: translateX(-50%) rotate(-45deg);
    -o-transform: translateX(-50%) rotate(-45deg);
    transform: translateX(-50%) rotate(-45deg)
}

.hamburger.active span::after {
    bottom: 0;
    -webkit-transform: translateX(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) rotate(45deg);
    -o-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg)
}

/*Animations buttons and other*/
.nav-btn a,
.other-btns a,
.buttons-group a,
form button,
.block-request a,
.footer-link,
.official-link a {
    transition: all 0.4s ease;
}

.nav-btn a:hover {
    color: #FF6F00;
}

.other-btns .number-phone:hover {
    color: #efefef;
}

.other-btns .request:hover {
    color: #FF6F00;
    background: #efefef;
}

.buttons-group .button-request-send:hover {
    background: #efefef;
    color: #FF6F00;
}

.buttons-group .button-communicate-whats:hover {
    color: #58B409;
}

.form button[type="submit"]:hover {
    background: #FF6F00;
    color: #efefef;
    border: 1px solid #efefef;
}

.block-request a:hover {
    background: #efefef;
    color: #FF6F00;
}

.footer-link:hover,
.official-link a:hover {
    color: #efefef;
}

.notification-form-success,
.notification-form-error {
    display: flex;
    /*display: none;*/
    position: sticky;
    font-family: SusanSansBook, sans-serif;
    font-size: 18px;
    width: 80%;
    top: 0;
    justify-content: center;
    align-items: center;
    height: auto;
    opacity: 0.7;
    z-index: 3;
    margin: 0 auto;
    padding: 0 10px 0 10px;
}

.notification-form-success {
    background: #58B409;
}

.notification-form-error {
    background: #C50000;
}

.notification-text-success,
.notification-text-error {
    margin: 0 auto;
    color: #FFFFFF;
    padding-top: 10px;
    padding-bottom: 10px;
}

.close-notification {
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2px;
    width: 45px;
    height: 45px;
    cursor: pointer;
}

.request {
    display: flex;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    color: #FFFFFF;
    background-color: #FF6F00;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 47px;
    border-radius: 25px;
    cursor: pointer;
}

.wrapper {
    display: flex;
    position: relative;
    max-width: 1485px;
    flex-direction: column;
    margin: 0 auto;
}

section {
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    flex-direction: row;
}

.presentation {
    /*background-image: url("../img/bg-main.png");*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
    /*background-position: center center;*/
    height: 715px;
}

.presentation .wrapper {
    flex-direction: column;
    align-items: center;
}

.presentation .presentation__upper-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 530px;
    margin-bottom: 50px
}

.presentation .block-content {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 45%;
}

.presentation-image {
    width: 48%;
    height: 80%;
}

.presentation-image img {
    width: 100%;
    height: 100%;
}

.presentation .block-content .text {
    display: flex;
    max-width: 88%;
    font-family: SusanBold, sans-serif;
    font-size: 43px;
    font-weight: 500;
    color: #000000;
    line-height: 1.1;
    margin-bottom: 20px;
}

.small-text {
    font-family: SusanBold, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #3B505F;
    line-height: 1.6;
    max-width: 85%;
}

.buttons-group {
    display: flex;
    flex-direction: row;
    margin-top: 30px;
    align-items: center;
}

.button-request-send {
    display: flex;
    font-family: SusanBold, sans-serif;
    font-size: 20px;
    color: #ffffff;
    background-color: #FF6F00;
    align-items: center;
    justify-content: center;
    width: 40%;
    height: 70px;
    border-radius: 10px;
    margin-right: 15px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.element-or {
    display: flex;
    font-family: SusanBold, sans-serif;
    font-size: 18px;
    color: #000000;
    opacity: 0.6;
    align-items: center;
    justify-content: center;
}

.button-communicate-whats {
    display: flex;
    font-family: SusanBold, sans-serif;
    font-size: 20px;
    color: #000000;
    align-items: center;
    justify-content: center;
    width: 40%;
    height: 70px;
    border-radius: 10px;
    margin-left: 5px;
    cursor: pointer;
    text-decoration: none;
}

.block-images {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45%;
}

.advantages-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    justify-content: space-between;
}

.advantages-item {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.advantages-image {
    display: flex;
    height: auto;
    width: auto;
    margin-right: 20px;
}

.advantages-text {
    display: flex;
    width: 200px;
    height: auto;
    font-family: SusanBook, sans-serif;
    font-weight: 300;
    color: #3B505F;
}

/*.block-images img {*/
/*    max-width: 100%;*/
/*    max-height: 100%;*/
/*}*/

.block-images .device img {
    position: relative;
    z-index: 1;
}

.block-images .blue-dots {
    position: absolute;
    z-index: 0;
    left: 59%;
}

.block-images .params {
    position: absolute;
    z-index: 2;
    left: 73%;
    top: 68%
}

.universal-card {
    display: flex;
    position: relative;
    flex-direction: column;
    margin-top: 50px;
    margin-bottom: 50px;
    height: auto;
    width: 100%;
}

.universal-card .title {
    position: relative;
    font-family: SusanBold, sans-serif;
    display: flex;
    width: 100%;
    height: auto;
    font-size: 43px;
    text-align: center;
    margin-top: 50px;
}

.universal-card .title p {
    margin: 0 auto;
    color: #272D4E;
}

.card-information {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 90%;
    margin: 70px auto 0 auto;
    justify-content: space-around;
    align-items: center;
}

.card-information .block-image {
    display: flex;
    width: 25%;
    height: 30%;
    flex-direction: column;
}

.orange-text {
    color: #FF6F00;
}

.decoration__orange-round {
    z-index: 0;
    position: absolute;
    top: -5%;
    left: -5%;
    width: 262px;
    height: 262px;
    background-image: url("../assets/images/elements/big_orange_ring.png");
}

.card-information .block-image img {
    height: 100%;
    width: 100%;
    z-index: 1;
}

.buttons-card {
    display: flex;
    width: 100%;
    justify-content: space-between;
    height: auto;
    flex-wrap: wrap;
    margin-top: 20px;
}

.buttons-card p {
    font-family: SusanSansBook, sans-serif;
    font-size: 16px;
}

.image-phys {
    display: flex;
    width: 30%;
    height: 100%;
    justify-content: center;
}

.card-information .block-content {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 55%;
    margin-top: 30px;
}

.card-information .block-content .text {
    font-family: Roboto, sans-serif;
    font-size: 18px;
    color: #272D4E;
    opacity: 0.8;
    font-weight: 400;
    text-indent: 20px;
    text-align: justify;
    line-height: 160%;
}

.card-information .block-items {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
    margin-top: 30px;
}

.block-items .item {
    display: flex;
    flex-direction: row;
    width: 42%;
    margin: 0 50px 30px 0;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    color: #272D4E;
    opacity: 0.8;
}

.block-items .item img {
    max-width: 36px;
}

.block-items .item p {
    margin-left: 20px;
}

.slider {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
}

.slider .title {
    display: flex;
    position: relative;
    text-align: center;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
    font-weight: 700;
}

.slider .title p {
    color: #272D4E;
    font-size: 32px;
    margin: 0 auto;
    font-family: SusanBook, sans-serif;
}

.slider .slider-items {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.card-information .block-content {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 57%;
    margin-top: 30px;
}

.universal-card .card-information .block-content .text {
    font-family: SusanBook, sans-serif;
    font-size: 24px;
    color: #272D4E;
    opacity: 0.8;
    font-weight: 500;
    text-align: justify;
    line-height: 160%;
}

.universal-card .card-information .block-items {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex-wrap: wrap;
    margin-top: 30px;
}

.universal-card .block-items .item {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 72%;
    margin: 0 50px 30px 0;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    color: #272D4E;
    opacity: 0.8;
}

.universal-card .card-information .block-content .text {
    text-indent: 0;
}

.universal-card .buttons-group {
    display: flex;
    position: relative;
    justify-content: space-between;
    width: 70%;
    margin: 130px auto 0 auto;
    text-align: center;
}

.universal-card .buttons-group .button-communicate-whats {
    color: #FF6F00;
}

.how-work {
    margin-bottom: 50px
}

.how-work .wrapper {
    display: flex;
}

.how-work .title {
    color: #272D4E;
    font-size: 43px;
    font-family: SusanBook, sans-serif;
    margin: 25px auto 60px auto;
    font-weight: 700;
}

.how-work .items-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: 600px;
}

.items-container .item__how {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 385px;
    height: auto;
}

.item__how .item-image {
    width: 100%;
    height: auto;
}

.item__how .item-image img {
    width: 100%;
    height: 100%;
}

.item__how .title-block {
    font-size: 28px;
    color: #323B46;
    font-family: SusanBold, sans-serif;
    margin: 0 auto 20px auto;
    width: 90%;
    transition: ease color 0.4s;
    cursor: default;
}

.item__how:hover .title-block {
    color: #FF6F00;
}

.item__how .text-block {
    width: 90%;
    font-size: 16px;
    font-family: SusanBook, sans-serif;
    margin: 0 auto;
    color: #3B505F;
}

.item__how.first {
    align-self: flex-start;
}

.item__how.second {
    align-self: center;
}

.item__how.third {
    align-self: flex-end;
}

.how-work .buttons-group {
    display: flex;
    flex-direction: row;
    width: 55%;
    height: auto;
    margin: 50px auto 0 auto;
    justify-content: space-between;
}

.button a {
    text-decoration: none;
    color: #FF6F00;
}

.button-download a,
.button-request a {
    text-decoration: none;
    color: #ffffff;
}

.how-work .buttons-group .button {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    background-color: #FF6F00;
    font-family: SusanBold, sans-serif;
    padding: 10px 45px;
    border-radius: 15px;
    cursor: pointer;
    transition: ease all 0.4s;
}

.how-work .buttons-group .button:hover {
    background-color: #c75c0a;
}

.section_slider {
    background-color: #F7F7F7
}

.section_who-suits {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}

.section_who-suits .wrapper {
    justify-content: center;
    align-items: center;
}

.section_who-suits .title {
    display: flex;
    margin: 0 auto 50px auto;
    color: #272D4E;
    font-size: 43px;
    font-family: SusanBook, sans-serif;
    font-weight: 700;
}

.content-container.who-suits {
    background-image: url("../assets/images/elements/bg_who-suits.svg");
    background-position: center;
    display: flex;
    flex-direction: column;
    min-height: 1934px;
    position: relative;
    height: auto;
}

.suits_item {
    display: flex;
    position: relative;
    flex-direction: row;
    width: 95%;
    height: auto;
    min-height: 548px;
    margin-bottom: 60px;
    align-items: center;
}

.suits_item.right-position {
    justify-content: flex-end;
    max-width: 70%;
}

.suits_item img {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 430px;
    max-height: 548px;
    z-index: 1;
}

.suits_item .information-block {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    max-width: 50%;
    height: 80%;
    margin-left: 60px;
}

.suits_item .title-text {
    position: relative;
    font-size: 32px;
    font-family: SusanBold, sans-serif;
    max-width: 90%;
    color: #ffffff;
    margin-bottom: 30px;
}

.suits_item .sub-text {
    position: relative;
    font-size: 16px;
    font-family: Roboto, sans-serif;
    max-width: 70%;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.4;
}

.suits_item .button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    color: #FF6F00;
    padding: 22px 38px;
    max-width: 200px;
    border-radius: 15px;
    box-shadow: 0px 9px 20px -3px rgba(255, 255, 255, 0.4);
    transition: ease all 0.3s;
    border: 1px solid #FF6F00;
    cursor: pointer;
}

.suits_item .button:hover {
    color: #ffffff;
    background-color: #FF6F00;
    border: 1px solid #ffffff;
}

.suits_item .button:hover a {
    color: #ffffff;
}

.suits_item .button span {
    font-family: Roboto, sans-serif;
}

.suits_image {
    max-width: 45%;
    height: auto;
    position: relative;
}

.decoration__small-round {
    z-index: 0;
    position: absolute;
    top: 30%;
    left: -15%;
    width: 65px;
    height: 65px;
    background-image: url("../assets/images/elements/first_small.svg");
}

.decoration__big-round {
    z-index: 0;
    position: absolute;
    top: 45%;
    left: -20%;
    width: 401px;
    height: 401px;
    background-image: url("../assets/images/elements/first_big.svg");
}

.decoration-first_dots-round {
    z-index: 0;
    position: absolute;
    bottom: -60%;
    left: -8%;
    width: 213.76px;
    height: 472px;
    background-image: url("../assets/images/elements/first_dots.svg");
}

.decoration__second-round {
    z-index: 0;
    position: absolute;
    top: -7%;
    right: -25%;
    width: 262px;
    height: 262px;
    background-image: url("../assets/images/elements/second_round.svg");
}

.decoration-second_dots-round {
    z-index: 0;
    position: absolute;
    bottom: 28%;
    right: -40%;
    width: 472px;
    height: 213.76px;
    background-image: url("../assets/images/elements/second_dots.svg");
}

.decoration-third-round {
    z-index: 0;
    position: absolute;
    bottom: -5%;
    left: -10%;
    width: 401px;
    height: 401px;
    background-image: url("../assets/images/elements/third_round.svg");
}


.section_prices {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin-bottom: 100px;
}

.section_prices .wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.section_prices .title {
    display: flex;
    margin: 0 auto 50px auto;
    color: #272D4E;
    font-size: 43px;
    font-family: SusanBook, sans-serif;
    font-weight: 700;
}

.prices-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.container-information-prices {
    display: flex;
    position: relative;
    flex-direction: column;
    min-height: 926px;
    height: 100%;
    width: 32.5%;
    margin: 0 25px;
}

.good-prices {
}

.container-information-prices_title {
    display: flex;
    margin: 0 auto 30px auto;
    color: #272D4E;
    font-size: 28px;
    font-family: Roboto, sans-serif;
    font-weight: 700;
    justify-content: center;
    width: 90%;
}

.container-information-prices_title p {
    text-align: center;
}

.block-information {
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #ffffff;
    box-shadow: 0px 8px 15px 6px rgba(0, 0, 0, 0.035);
    border-radius: 5px;
}

.block-information-prices_image {
    position: relative;
    width: 100%;
    height: 25%;
}

.block-information-prices_image img {
    width: 100%;
    height: 100%;
}

.block-information-prices_text-block {
    padding: 30px 36px;
    min-height: 610px;
}

.text-block_list {
    list-style: none;
}

.text-block_list li {
    margin-bottom: 20px;
    font-size: 18px;
    font-family: SusanBook, sans-serif;
    line-height: 1.4;
}

.bad-prices {
    color: #272D4E;
}

.good-prices {
    color: #FF6F00;
}

.prices_bad-icon {
    z-index: 0;
    position: absolute;
    top: 50%;
    left: -60%;
    width: 174.74px;
    height: 174.87px;
    background-image: url("../assets/images/elements/bad.svg");
    color: #999ebe;
}

.prices_good-icon {
    z-index: 0;
    position: absolute;
    top: 50%;
    right: -60%;
    width: 238.06px;
    height: 178px;
    background-image: url("../assets/images/elements/good.svg");
}

.bg-video {
    width: 100%;
    height: auto;
}

.choice-product {
    margin-top: 100px;
    flex-direction: column;
}

.choice-product .title {
    display: flex;
    position: relative;
    font-family: SusanBold, sans-serif;
    font-size: 40px;
    color: #272D4E;
    opacity: 0.8;
    width: 100%;
}

.choice-product .title p {
    margin: 0 auto;
    text-align: center;
}

.choice-product .block-content {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 60%;
    height: auto;
    justify-content: center;
    align-items: center;
    margin: 40px auto 0 auto;
}

.choice-product .block-content .item {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    margin-bottom: 50px;
}

.choice-product .block-content .item p {
    font-family: Roboto, sans-serif;
    font-size: 22px;
    font-weight: 300;
    color: #474747;
    opacity: 0.8;
    margin-left: 40px;
    line-height: 160%;
}

.reviews {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF5E4 29.69%, #FFF1DB 47.4%,
    rgba(255, 228, 184, 0.43) 76.56%,
    rgba(255, 228, 184, 0) 100%);
    margin-top: 50px;
    flex-direction: column;
    min-height: 1000px;
}

.reviews .title {
    display: flex;
    position: relative;
    font-family: SusanBold, sans-serif;
    font-size: 40px;
    color: #272D4E;
    opacity: 0.8;
    width: 100%;
}

.reviews .title p {
    margin: 0 auto;
    text-align: center;
}

.reviews .block-content {
    display: flex;
    position: relative;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 60px auto 0 auto;
}

.reviews .cards-reviews {
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 730px;
    max-height: 450px;
}

.reviews-brands {
    position: relative;
    width: 100%;
    height: auto;
    margin: 20px auto;
    text-align: center;
    display: flex;
    flex-direction: row;
}

.reviews-brands img {
    display: flex;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.reviews-brands .solo-image {
    display: flex;
    width: 100%;
    max-width: 120px;
    margin: 0;
}

.cards-reviews .card-item {
    display: flex;
    position: relative;
    width: auto;
    height: 315px;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 38px 72px 38px 72px;
    background: #FFFFFF;
    box-shadow: 0px 18px 52.8537px rgba(215, 228, 249, 0.5);
    border-radius: 5px;
    z-index: 3;
}

.cards-reviews .card-item p {
    font-size: 22px;
    line-height: 39px;
    color: #272D4E;
    font-family: SusanSansBook, sans-serif;
    margin-top: 10px;
}

.buttons-reviews {
    display: flex;
    position: absolute;
    z-index: 0;
    bottom: -32%;
    right: 10%;
    width: 120px;
    height: 40px;
    justify-content: space-between;
    align-items: center;
}

.buttons-reviews svg path {
    transition: ease all 0.3s;
}

.buttons-reviews .next-review {
    cursor: pointer;
    height: 100%;
}

.buttons-reviews .prev-review {
    cursor: pointer;
}

.buttons-review .next-review:hover .svg-path {
    fill: #FF6F00;
}

.decoration-abb {
    z-index: 0;
    position: absolute;
    top: 10%;
    left: -50%;
    width: 148px;
    height: 148px;
    background-size: contain;
    background-image: url("../assets/images/companies/abb_logo.png");
}

.decoration-borge {
    z-index: 0;
    position: absolute;
    bottom: 30%;
    right: -45%;
    width: 148px;
    height: 148px;
    background-size: contain;
    background-image: url("../assets/images/companies/borge_logo.png");
}

.decoration-henkel {
    z-index: 0;
    position: absolute;
    top: -25%;
    left: -25%;
    width: 148px;
    height: 148px;
    background-image: url("../assets/images/companies/henkel_logo.png");
    background-size: contain;
}

.decoration-mcdonalds {
    z-index: 0;
    position: absolute;
    bottom: -50%;
    right: -40%;
    width: 210px;
    height: 210px;
    background-image: url("../assets/images/companies/mcdonalds_logo.png");
    background-size: contain;
}

.decoration-pepsico {
    z-index: 0;
    position: absolute;
    bottom: -55%;
    left: -45%;
    width: 210px;
    height: 210px;
    background-image: url("../assets/images/companies/pepsico_logo.png");
    background-size: contain;
}

.decoration-rgs {
    z-index: 0;
    position: absolute;
    top: -35%;
    right: -30%;
    width: 148px;
    height: 148px;
    background-image: url("../assets/images/companies/rgs_logo.png");
    background-size: contain;
}

.decoration-in-card {
    z-index: 0;
    position: absolute;
    top: 15%;
    left: 34%;
    width: 234px;
    height: 168px;
    background-image: url("../assets/images/elements/bg_reviews.svg");
    background-size: contain;
}

.reviews .buttons-group {
    display: flex;
    justify-content: right;
    margin-top: 70px;
    align-items: center;
}

.reviews .buttons-group .back-review {
    margin-right: 25px;
}

.cards-reviews .background-card {
    position: absolute;
    width: 80%;
    height: 70%;
    padding: 38px 45px 38px 45px;
    background: #FFFFFF;
    box-shadow: 0px 18px 52.8537px rgba(215, 228, 249, 0.5);
    border-radius: 5px;
    z-index: 2;
    left: 3%;
    bottom: -7%;
}

.cards-reviews .background-card-2 {
    position: absolute;
    width: 74.5%;
    height: 70%;
    padding: 38px 45px 38px 45px;
    background: #FFFFFF;
    box-shadow: 0px 18px 52.8537px rgba(215, 228, 249, 0.5);
    border-radius: 5px;
    z-index: 1;
    left: 6%;
    bottom: -13%;
}

.swiper-brands {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    text-align: center;
}

.swiper-brands img {
    margin: 25px 50px 25px 0;
}

.brands-title__bottom {
    display: flex;
    margin: 50px auto;
    text-align: center;
    font-family: SusanBook, sans-serif;
    color: #3B505F;
}

.swiper-reviews {
    display: flex;
    flex-direction: row;
    width: 99%;
    height: 300px;
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
}

.swiper-reviews .swiper-button-next {
    position: absolute;
    right: 2%;
    z-index: 100;
    top: 42%;
}

.swiper-reviews .swiper-button-prev {
    position: absolute;
    left: 2%;
    z-index: 100;
    top: 42%;
}

.swiper-wrapper {
    max-width: 70%;
}

.swiper-slide {
    text-align: center;
}

.swiper-slide img {
    width: 99%;
    max-width: 120px;
    height: 75%;
}

.swiper-button-next {
    position: absolute;
    right: 2%;
    z-index: 100;
}

.swiper-button-prev {
    position: absolute;
    left: 2%;
    z-index: 100;
}

.cards-reviews .red-dots {
    position: absolute;
    left: 53%;
    top: 2%;
    z-index: 0;
}

.cards-reviews .green-dots {
    position: absolute;
    right: 52%;
    bottom: -13%;
    z-index: 0;
}

.sending-request {
    padding-top: 100px;
    margin-bottom: 100px;
}

.sending-request .form-block {
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 980px;
    height: 474px;
    margin: 0 auto;
    box-shadow: 0px 8px 15px 6px rgba(0, 0, 0, 0.035),
    0px 8.14815px 6.51852px rgba(0, 0, 0, 0.0274815);
    border-radius: 20px;
}

.sending-request .form-block .check {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 49%;
}

.sending-request .form-block .check img {
    width: 80%;
    height: 80%;
}

.sending-request .form-block .form {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    font-family: SusanSansBook, sans-serif;
    width: 50%;
    background: #FF6F00;
    height: 100%;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 0 40px 0 40px;
}

.form-block .form label {
    font-size: 43px;
    color: #FFFFFF;
    font-weight: 700;
}

.form-block .form input {
    display: flex;
    position: relative;
    width: 85%;
    height: 50px;
    border-radius: 20px;
    background: none;
    border: 1px solid #FFFFFF;
    font-size: 20px;
    color: #FFFFFF;
    padding: 0 30px 0 30px;
}

input::-moz-placeholder {
    opacity: 1;
    color: #FFFFFF;
}

input::-webkit-input-placeholder {
    opacity: 1;
    color: #FFFFFF;
}

input::placeholder {
    opacity: 1;
    color: #FFFFFF;
}

.form-block .form button {
    display: flex;
    position: relative;
    width: 100%;
    height: 50px;
    border-radius: 20px;
    background: #FFFFFF;
    font-size: 20px;
    color: #FF6F00;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-bottom: 20px;
}

.about-company {
    flex-direction: column;
    margin-top: 100px;
}

.about-company .title {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-family: SusanBook, sans-serif;
    font-size: 43px;
    color: #272D4E;
    font-weight: 700;
}

.about-company .block-content {
    display: flex;
    flex-direction: row;
}

.about-company .block-content .text {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45%;
    font-family: SusanSansBook, sans-serif;
    color: #66686A;
    font-size: 32px;
    line-height: 160%;
    text-align: justify;
}

.about-company .block-content .text span {
    color: #FF6F00;
}

.about-company .results {
    display: flex;
    position: relative;
    width: 45%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.results .block-items {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 76%;
    margin: 30px auto 0 auto;
}

.results .block-items .item hr {
    color: #000000;
    background-color: #000000;
    border: 0 none;
    height: 4px;
}

.results .block-items .item {
    display: flex;
    flex-direction: column;
    height: 30%;
    width: 100%;
}

.about-company .results .block-items .item img {
    max-height: 71px;
    max-width: 132px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.results .block-items .item p {
    margin-left: 0;
}


.results .block-items .item .item-nums {
    font-family: SusanBook, sans-serif;
    font-size: 68px;
    font-weight: bold;
    color: #FF6F00;
}

.results .block-items .item .item-text {
    font-family: SusanSansBook, sans-serif;
    font-size: 42px;
    color: #000000;
}

footer {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: auto;
    background: #FF6F00;
    color: #FFFFFF;
    margin-top: 30px;
}

.footer-wrapper {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 1485px;
    margin: 50px auto 0 auto;
}

.footer-wrapper .block-content {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 80%;
    margin-top: 80px;
}

.footer-wrapper .block-content .block-request {
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    align-self: end;
    width: 80%;
    margin-right: 70px;
}

.footer-wrapper .block-content .block-request p {
    font-family: SusanSansBook, sans-serif;
    font-size: 34px;
    color: #FFFFFF;
    max-width: 70%;
}

.footer-wrapper .block-content .block-request .button-request-send {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 207px;
    height: 72px;
    border: 1px solid #FFFFFF;
    max-width: 20%;
    cursor: pointer;
}

.footer-wrapper .block-items {
    display: flex;
    flex-direction: row;
    position: relative;
    margin-top: 50px;
    margin-left: 230px;
    width: 60%;
    justify-content: space-between;
}

.footer-wrapper .block-items .item {
    opacity: 1;
}

.footer-wrapper .block-items p {
    font-family: SusanBook, sans-serif;
    font-size: 20px;
    color: #FFFFFF;
}

footer .politics {
    position: relative;
    margin: 50px auto 20px auto;
}

footer .politics a {
    text-decoration: none;
    color: #FFFFFF;
    font-family: SusanSansBook, sans-serif;
    font-size: 16px;
}

.socials {
    display: none;
}

.official-link {
    display: none;
}

@media screen and (max-width: 1485px) {
    .header-wrapper {
        max-width: 100%;
        padding: 0 20px 0 20px;
    }

    .wrapper {
        max-width: 100%;
        padding: 0 20px 0 20px;
    }

    .decoration-abb {
        top: 10%;
        left: -30%;
        width: 148px;
        height: 148px;
    }

    .decoration-borge {
        bottom: 30%;
        right: -25%;
        width: 148px;
        height: 148px;
    }

    .decoration-henkel {
        top: -25%;
        left: -18%;
        width: 148px;
        height: 148px;
    }

    .decoration-mcdonalds {
        bottom: -50%;
        right: -25%;
        width: 148px;
        height: 148px;
    }

    .decoration-pepsico {
        bottom: -55%;
        left: -25%;
        width: 148px;
        height: 148px;
    }

    .decoration-rgs {
        top: -35%;
        right: -10%;
        width: 148px;
        height: 148px;

    }
}

@media screen and (max-width: 1485px) {
    .block-items .item {
        width: 100%;
    }

    .footer-wrapper .block-content .block-request {
        width: 70%;
        align-self: center;
    }

    .buttons-card .button {
        margin: 15px auto 0 auto;
    }
}

@media screen and (max-width: 1159px) {
    .nav-header div a {
        font-size: 14px;
        max-width: 260px;
        margin-left: 10px;
        margin-right: 15px;
    }

    .number-phone {
        font-size: 14px
    }

    .presentation .block-content {
        width: 60%;
    }

    .presentation-image {
        height: auto;
    }

    .how-work {
        margin-top: 50px;
        min-height: 280px;
        height: auto;
    }

    .how-work .title {
        font-size: 43px;
        font-family: SusanBook, sans-serif;
        margin: 25px auto 25px auto;
        text-align: center;
    }

    .how-work .block-items {
        display: flex;
        flex-direction: column;
        margin-top: 50px;
    }

    .section_prices {

    }

    .container-information-prices_title {
        font-size: 22px;
    }

    .container-information-prices {
        width: 45%;
    }

    .prices_good-icon {
        display: none;
    }

    .prices_bad-icon {
        display: none;
    }

    .text-block_list li {
        font-size: 16px;
    }

    .block-information-prices_text-block {
        min-height: 540px;
    }

    .how-work .block-items .item {
        margin-left: 20px;
        margin-top: 10px;
        justify-content: center;
        max-width: 95%;
    }

    .how-work .block-items .item .block-content {
        width: 70%;
    }

    .how-work .block-items .item .block-content .item-title {
        margin-bottom: 10px;
    }

    .sending-request {
        padding-top: 30px;
    }

    .sending-request .form-block {
        width: 100%;
        border-radius: 15px;
        height: auto;
    }

    .sending-request .form-block .check {
        display: none;
    }

    .sending-request .form-block .form {
        width: 100%;
        height: 350px;
        border-radius: 15px;
    }

    .about-company {
        margin-top: 50px;
    }

    .about-company .title {
        font-size: 24px;
    }

    .about-company .block-content {
        display: flex;
        flex-direction: column-reverse;
        width: 60%;
        margin: 0 auto;
    }

    .about-company .block-content .text {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 90%;
        height: auto;
        font-family: SusanSansBook, sans-serif;
        color: #66686A;
        font-size: 16px;
        line-height: 160%;
        text-align: justify;
        margin: 20px auto;
    }

    .about-company .results {
        display: flex;
        position: relative;
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: center;
    }

    .results .block-items {
        display: flex;
        position: relative;
        flex-direction: column;
        width: 76%;
        margin: 30px auto 0 auto;
    }

    .results .block-items .item .item-nums {
        font-family: SusanBook, sans-serif;
        font-size: 48px;
        font-weight: bold;
        color: #FF6F00;
    }

    .results .block-items .item .item-text {
        font-family: SusanSansBook, sans-serif;
        font-size: 20px;
        color: #000000;
    }

    footer {
        width: 100%;
        height: auto;
    }

    .footer-wrapper {
        width: 100%;
        margin: 0;
    }

    .footer-wrapper .block-content {
        margin-top: 40px;
        width: 100%;
        height: auto;
    }

    .footer-wrapper .block-content .block-request {
        margin: 0;
        flex-direction: column;
        width: 100%;
    }

    .footer-wrapper .block-content .block-request p {
        font-size: 18px;
        font-weight: 600;
        width: 100%;
        max-width: 85%;
        height: auto;
        text-align: center;
        margin: 0 auto;
    }

    .footer-wrapper .block-content .block-request .button-request-send {
        width: 40%;
        max-width: 100%;
        height: 50px;
        margin: 30px auto 0 auto;
    }

    .footer-wrapper .block-items {
        margin: 10px 30px 0 0;
        width: 100%;
        flex-direction: column;
    }

    .footer-wrapper .block-items .item {
        margin: 30px auto 0 auto;
        width: 28%;
    }

    .footer-wrapper .block-items .item p {
        font-size: 16px;
        max-width: 100%;
    }

    .footer-wrapper .block-items .item img {
        width: 41px;
        height: 41px;
    }

    .socials {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin: 50px auto 0 auto;
        width: 100px;
    }

    .official-link {
        display: block;
        font-family: SusanSansBook, sans-serif;
        width: 100%;
        text-align: center;
        margin-top: 20px;
        font-weight: 200;
        font-size: 16px;
    }

    .official-link a {
        text-decoration: none;
        color: #FFFFFF;
    }

    .politics p {
        text-align: center;
        margin: 30px auto;
        padding: 0 5px;
    }

    .politics p a {
        font-size: 16px;
    }

    .decoration-abb {
        display: none;
    }

    .decoration-borge {
        bottom: -80%;
        right: 45%;
        width: 148px;
        height: 148px;
    }

    .decoration-henkel {
        top: -45%;
        left: -10%;
        width: 148px;
        height: 148px;
    }

    .decoration-mcdonalds {
        bottom: -90%;
        right: 5%;
        width: 148px;
        height: 148px;
    }

    .decoration-pepsico {
        bottom: -65%;
        left: 5%;
        width: 148px;
        height: 148px;
    }

    .decoration-rgs {
        top: -35%;
        right: -10%;
        width: 148px;
        height: 148px;
    }

    .items-container .item__how {
        width: 30%;
    }

    .how-work .buttons-group {
        width: 80%;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 1030px) {
    .advantages-container {
        justify-content: center;
        flex-wrap: wrap;
    }

    .advantages-item {
        margin: 20px;
    }

    .button-communicate-whats {
        margin-left: 25px;
        font-size: 18px;
    }

    .item__how .title-block {
        font-size: 20px;
    }

    .item__how .text-block {
        font-size: 14px;
    }

    .form-block .form label {
        font-size: 36px;
    }

    .presentation .block-content .text {
        font-size: 32px;
    }

    .small-text {
        font-size: 14px;
    }

    .button-request-send {
        height: 55px;
        font-size: 18px;
    }

    .suits_item .title-text {
        font-size: 28px;
    }

    .decoration__orange-round {
        top: 8%;
        left: -1%;
        width: 131px;
        height: 131px;
        background-size: contain;
    }

    .suits_item.right-position {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    header {
        width: 100%;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
        height: 85px;
        z-index: 5;
        padding: 0;
    }

    .header-wrapper {
        padding: 0;
    }

    header .logo {
        margin-left: 10px;
        z-index: 5;
    }

    nav {
        display: none;
        width: 100%;
        height: auto;
        position: absolute;
        justify-content: center;
        margin-top: 95px;
        z-index: 4;
    }

    nav.active {
        display: flex;
    }

    .nav-header {
        background: #FFFFFF;
        /*display: none;*/
        flex-direction: column;
        height: auto;
        position: absolute;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
        padding-bottom: 50px;
        padding-top: 50px;
        top: -20px;
        z-index: 3;
    }

    .nav-header div {
        margin-top: 30px;
        max-height: 100px;
        width: auto;
        text-align: center;
    }

    .nav-header div a {
        margin-right: 0;
        font-size: 24px;
        max-width: 260px;
    }

    .last a {
        display: flex;
    }

    .number-phone {
        font-size: 14px;
        margin-right: 0;
        z-index: 5;
    }

    .request {
        display: none;
    }

    .header-ic {
        display: block;
    }

    .wrapper {
        width: 96%;
        max-width: 100%;
        padding: 0;
    }

    section {
        flex-direction: column;
    }



    .universal-card {
        margin-top: 20px;
    }

    .universal-card .title {
        font-size: 22px;
        margin-top: 10px;
    }

    .buttons-card {
        justify-content: center;
    }

    .decoration-abb {
        display: none;
    }

    .decoration-borge {
        bottom: -80%;
        right: 45%;
        width: 74px;
        height: 74px;
    }

    .decoration-henkel {
        top: -45%;
        left: -10%;
        width: 74px;
        height: 74px;
    }

    .decoration-mcdonalds {
        bottom: -90%;
        right: 5%;
        width: 74px;
        height: 74px;
    }

    .decoration-pepsico {
        bottom: -65%;
        left: 5%;
        width: 74px;
        height: 74px;
    }

    .decoration-rgs {
        top: -35%;
        right: -10%;
        width: 74px;
        height: 74px;
    }

    .buttons-reviews {
        right: 23%;
    }

    .cards-reviews .background-card {
        width: 338px;
        height: 116px;
        padding: 0;
        left: 5%;
        bottom: -8%;
    }

    .cards-reviews .background-card-2 {
        width: 60%;
        height: 70%;
        z-index: 1;
        left: 8%;
        bottom: -13%;
    }

    .decoration__second-round {
        top: -7%;
        right: -9%;
        width: 132px;
        height: 132px;
        background-size: contain;
    }

    .decoration-second_dots-round {
        bottom: 28%;
        right: -10%;
        width: 256px;
        height: 115.76px;
        background-size: contain;
    }

    .buttons-card .button {
        /*margin-left: 15px;*/
    }

    .card-information .block-image .image-elect img {
        height: 80%;
    }

    .how-work {
        margin-top: 50px;
        margin-bottom: 100px;
        min-height: 280px;
        height: auto;
    }

    .how-work .title {
        font-size: 43px;
        font-family: SusanBook, sans-serif;
        margin: 105px auto 55px auto;
        text-align: center;
    }

    .how-work .block-items {
        display: flex;
        flex-direction: column;
        margin-top: 50px;
    }

    .how-work .block-items .item {
        margin-left: 20px;
        margin-top: 10px;
        justify-content: center;
        max-width: 95%;
    }

    .how-work .block-items .item .block-content {
        width: 70%;
    }

    .how-work .block-items .item .block-content .item-title {
        margin-bottom: 10px;
    }

    .card-information {
        flex-direction: column;
        margin: 0 auto;
    }

    .card-information .block-image {
        width: 100%;
    }

    .card-information .block-image img {
        margin: 20px auto 0 auto;
    }

    .card-information .block-content {
        width: 100%;
    }

    .card-information .block-items {
        flex-direction: column;
    }

    .card-information .block-items .item {
        width: 100%;
    }

    .universal-card .buttons-group {
        display: none;
    }

    .prices-container {
        flex-direction: column;
    }

    .container-information-prices {
        width: 70%;
        margin: 20px auto;
    }

    .block-information-prices_text-block {
        min-height: 450px;
    }

    .card-information .block-image {
        width: 35%;
    }

    .decoration__orange-round {
        left: 27%;
        top: 0;
    }

    .container-information-prices {
        min-height: 0;
    }

    .universal-card .title {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .universal-card .card-information .block-items {
        width: 50%;
        margin: 30px auto 0 auto;
    }

    .slider .title p {
        font-size: 24px;
    }

    .choice-product {
        margin-top: 50px;
    }

    .choice-product .title {
        font-size: 24px;
    }

    .choice-product .block-content {
        width: 90%;
    }

    .choice-product .block-content img {
        width: 65px;
        height: 65px;
    }

    .choice-product .block-content .item p {
        font-size: 16px;
        margin-left: 20px;
        margin-top: 40px;
        text-indent: 20px;
        font-weight: 400;
    }

    .choice-product .block-content .item .last {
        margin-top: 0;
    }

    .reviews .title {
        font-size: 24px;
    }

    .cards-reviews .card-item {
        padding: 10px 20px 10px 20px;
        width: 336px;
        height: 180px;
    }

    .reviews .cards-reviews .card-item p {
        font-size: 12px;
        line-height: 22px;
        word-break: break-word;
        margin-top: 24px;
    }

    .swiper-reviews {
        display: flex;
        flex-direction: row;
        width: 95%;
        height: 160px;
        box-sizing: border-box;
        overflow: hidden;
        text-align: center;
    }

    .cards-reviews .red-dots,
    .cards-reviews .green-dots {
        display: none;
    }

    .reviews-brands {
        margin-top: 20px;
        width: 100%;
        height: auto;
    }

    .reviews-brands img {
        width: 100%;
    }

    .reviews-brands .solo-image {
        display: none;
    }

    .suits_item .information-block {
        margin-left: 0;
    }

    .suits_item .sub-text {
        max-width: 100%;
        margin-right: 20px;
    }

    .suits_item .information-block {
        margin-left: 20px;
    }

    .suits_item.right-position {
        max-width: 85%;
    }

    .suits_item .title-text {
        font-size: 24px
    }

    .reviews {
        min-height: 600px;
    }

    .sending-request {
        padding-top: 30px;
    }

    .sending-request .form-block {
        width: 60%;
        border-radius: 5px;
        height: auto;
    }

    .sending-request .form-block .check {
        display: none;
    }

    .sending-request .form-block .form {
        width: 100%;
        height: 350px;
        border-radius: 5px;
    }

    .form-block .form label {
        font-size: 23px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .form-block .form input {
        width: 75%;
        border-radius: 30px;
        padding: 0 25px 0 25px;
        height: 45px;
        font-size: 18px;
    }

    .form-block .form button {
        width: 60%;
        height: 50px;
        border-radius: 40px;
        margin-top: 10px;
    }

    .about-company {
        margin-top: 50px;
    }

    .about-company .title {
        font-size: 24px;
    }

    .about-company .block-content {
        display: flex;
        flex-direction: column-reverse;
    }

    .about-company .block-content .text {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 90%;
        height: auto;
        font-family: SusanSansBook, sans-serif;
        color: #66686A;
        font-size: 16px;
        line-height: 160%;
        text-align: justify;
        margin: 20px auto;
    }

    .about-company .results {
        display: flex;
        position: relative;
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: center;
    }

    .results .block-items {
        display: flex;
        position: relative;
        flex-direction: column;
        width: 76%;
        margin: 30px auto 0 auto;
    }

    .results .block-items .item .item-nums {
        font-family: SusanBook, sans-serif;
        font-size: 48px;
        font-weight: bold;
        color: #FF6F00;
    }

    .results .block-items .item .item-text {
        font-family: SusanSansBook, sans-serif;
        font-size: 20px;
        color: #000000;
    }

    footer {
        width: 100%;
        height: auto;
    }

    .footer-wrapper {
        width: 100%;
        margin: 0;
    }

    .footer-wrapper .block-content {
        margin-top: 40px;
        width: 100%;
        height: auto;
    }

    .footer-wrapper .block-content .block-request {
        margin: 0;
        flex-direction: column;
        width: 100%;
    }

    .footer-wrapper .block-content .block-request p {
        font-size: 18px;
        font-weight: 600;
        width: 100%;
        max-width: 85%;
        height: auto;
        text-align: center;
        margin: 0 auto;
    }

    .footer-wrapper .block-content .block-request .button-request-send {
        width: 55%;
        max-width: 100%;
        height: 50px;
        margin-top: 30px;
    }

    .footer-wrapper .block-items {
        margin: 10px 30px 0 0;
        width: 100%;
        flex-direction: column;
    }

    .footer-wrapper .block-items .item {
        margin: 30px auto 0 auto;
        width: 43%;
        align-items: center;
    }

    .footer-wrapper .block-items .item p {
        font-size: 16px;
        max-width: 100%;
        height: 70%;
    }

    .footer-wrapper .block-items .item img {
        width: 41px;
        height: 41px;
    }

    .socials {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin: 50px auto 0 auto;
        width: 100px;
    }

    .official-link {
        display: block;
        font-family: SusanSansBook, sans-serif;
        width: 100%;
        text-align: center;
        margin-top: 20px;
        font-weight: 200;
        font-size: 16px;
    }

    .official-link a {
        text-decoration: none;
        color: #FFFFFF;
    }

    .politics p {
        text-align: center;
        margin: 30px auto;
        padding: 0 5px;
    }

    .politics p a {
        font-size: 16px;
    }
}

.thumb-wrap {
    position: absolute;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: 0;
}

.thumb-wrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-width: 0;
    outline-width: 0;
    z-index: 0;
}

@media screen and (max-width: 468px) {
    .presentation-image {
        display: none;
    }

    .header-wrapper {
        padding: 0;
    }


    header .logo {
        margin-left: 10px;
        z-index: 5;
    }

    nav {
        display: none;
        width: 100%;
        height: auto;
        position: absolute;
        justify-content: center;
        margin-top: 95px;
        z-index: 4;
    }

    nav.active {
        display: flex;
    }

    .nav-header {
        background: #FFFFFF;
        /*display: none;*/
        flex-direction: column;
        height: auto;
        position: absolute;
        width: 100%;
        margin: 0 auto;
        text-align: center;
        padding-bottom: 50px;
        padding-top: 25px;
        top: -20px;
        z-index: 3;
    }

    .nav-header div {
        margin-top: 30px;
        max-height: 100px;
        width: auto;
        text-align: center;
    }

    .nav-header div a {
        margin-right: 0;
        font-size: 24px;
        max-width: 260px;
    }

    .last a {
        display: flex;
    }

    .number-phone {
        font-size: 14px;
        margin-right: 0;
        z-index: 5;
    }

    .request {
        display: none;
    }

    .header-ic {
        display: block;
    }

    .wrapper {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    section {
        flex-direction: column;
    }

    .presentation {
        background-image: none;
        height: auto;
    }

    .presentation .block-content {
        width: 95%;
        margin: 0 auto;
        justify-content: center;
    }

    .presentation .block-content .text {
        font-size: 20px;
        margin: 0 auto 25px auto;
    }

    .small-text {
        margin: 0 auto;
    }

    .how-work .items-container {
        flex-direction: column;
        height: auto;
    }

    .suits_image {
        display: none;
    }

    .items-container .item__how {
        width: 100%;
        margin-bottom: 70px;
    }

    .how-work .buttons-group {
        justify-content: center;

    }

    .how-work .buttons-group .button {
        margin-bottom: 20px;
    }

    .universal-card {
        margin-top: 20px;
    }

    .universal-card .title {
        font-size: 22px;
        margin-top: 10px;
    }

    .buttons-card {
        justify-content: center;
    }

    .decoration-abb {
        display: none;
    }

    .decoration-borge {
        bottom: -100%;
        right: 45%;
        width: 74px;
        height: 74px;
    }

    .decoration-henkel {
        top: -33%;
        left: 5%;
        width: 74px;
        height: 74px;
    }

    .decoration-mcdonalds {
        bottom: -90%;
        right: 5%;
        width: 74px;
        height: 74px;
    }

    .decoration-pepsico {
        bottom: -65%;
        left: 5%;
        width: 74px;
        height: 74px;
    }

    .decoration-rgs {
        top: -43%;
        right: 1%;
        width: 74px;
        height: 74px;
    }

    .buttons-reviews {
        right: 23%;
    }

    .cards-reviews .background-card {
        width: 338px;
        height: 116px;
        padding: 0;
        left: 5%;
        bottom: -8%;
    }

    .about-company .block-content {
        width: 90%;
    }

    .cards-reviews .background-card-2 {
        width: 60%;
        height: 70%;
        z-index: 1;
        left: 8%;
        bottom: -13%;
    }

    .decoration__second-round {
        top: -7%;
        right: -9%;
        width: 132px;
        height: 132px;
        background-size: contain;
    }

    .decoration-second_dots-round {
        bottom: 28%;
        right: -10%;
        width: 256px;
        height: 115.76px;
        background-size: contain;
    }

    .buttons-card .button {
        /*margin-left: 15px;*/
    }

    .card-information .block-image .image-elect img {
        height: 80%;
    }

    .how-work {
        margin-top: 50px;
        min-height: 280px;
        height: auto;
    }

    .how-work .title {
        font-size: 36px;
    }

    .section_who-suits .title {
        font-size: 36px;
    }

    .how-work .block-items {
        display: flex;
        flex-direction: column;
        margin-top: 50px;
    }

    .how-work .block-items .item {
        margin-left: 20px;
        margin-top: 10px;
        justify-content: center;
        max-width: 95%;
    }

    .how-work .block-items .item .block-content {
        width: 70%;
    }

    .how-work .block-items .item .block-content .item-title {
        margin-bottom: 10px;
    }

    .card-information {
        flex-direction: column;
        margin: 0 auto;
    }

    .card-information .block-image {
        width: 100%;
    }

    .card-information .block-image img {
        margin: 20px auto 0 auto;
    }

    .card-information .block-content {
        width: 100%;
    }

    .card-information .block-items {
        flex-direction: column;
    }

    .card-information .block-items .item {
        width: 100%;
    }

    .universal-card .buttons-group {
        display: none;
    }

    .prices-container {
        flex-direction: column;
    }

    .container-information-prices {
        width: 95%;
        margin: 20px auto;
    }

    .block-information-prices_text-block {
        min-height: 450px;
    }

    .card-information .block-image {
        width: 35%;
    }

    .decoration__orange-round {
        left: 27%;
        top: 0;
    }

    .container-information-prices {
        min-height: 0;
    }

    .decoration-in-card {
        top: 15%;
        left: 34%;
        width: 136px;
        height: 98px;
    }

    .universal-card .title {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .section_prices .title {
        font-size: 36px;
    }

    .universal-card .card-information .block-items {
        width: 90%;
        margin: 30px auto 0 auto;
    }

    .universal-card .card-information .block-content .text {
        font-size: 18px;
    }

    .swiper-brands img {
        margin: 25px 10px 25px 10px;
    }

    .slider .title p {
        font-size: 24px;
    }

    .choice-product {
        margin-top: 50px;
    }

    .choice-product .title {
        font-size: 24px;
    }

    .choice-product .block-content {
        width: 90%;
    }

    .choice-product .block-content img {
        width: 65px;
        height: 65px;
    }

    .choice-product .block-content .item p {
        font-size: 16px;
        margin-left: 20px;
        margin-top: 40px;
        text-indent: 20px;
        font-weight: 400;
    }

    .choice-product .block-content .item .last {
        margin-top: 0;
    }

    .reviews .title {
        font-size: 24px;
    }

    .cards-reviews .card-item {
        padding: 10px 20px 10px 20px;
        width: 336px;
        height: 180px;
    }

    .reviews .cards-reviews .card-item p {
        font-size: 12px;
        line-height: 22px;
        word-break: break-word;
        margin-top: 24px;
    }

    .swiper-reviews {
        display: flex;
        flex-direction: row;
        width: 95%;
        height: 160px;
        box-sizing: border-box;
        overflow: hidden;
        text-align: center;
    }

    .cards-reviews .red-dots,
    .cards-reviews .green-dots {
        display: none;
    }

    .reviews-brands {
        margin-top: 20px;
        width: 100%;
        height: auto;
    }

    .reviews-brands img {
        width: 100%;
    }

    .reviews-brands .solo-image {
        display: none;
    }

    .suits_item .information-block {
        margin-left: 0;
    }

    .suits_item .sub-text {
        max-width: 100%;
        margin-right: 0;
    }

    .suits_item .information-block {
        margin-left: 0;
        width: 100%;
        max-width: 100%;
    }

    .suits_item,
    .suits_item.right-position {
        margin-bottom: 30px;
        min-height: 360px;
    }

    .suits_item.right-position {
        max-width: 100%;
    }

    .suits_item .button {
        margin: 0 auto;
    }

    .suits_item.right-position {
        max-width: 100%;
    }

    .suits_item .title-text {
        font-size: 20px;
        width: 100%;
    }

    .content-container.who-suits {
        min-height: 0;
    }

    .reviews {
        min-height: 600px;
    }

    .sending-request {
        padding-top: 30px;
    }

    .sending-request .form-block {
        width: 98%;
        border-radius: 5px;
        height: auto;
    }

    .sending-request .form-block .check {
        display: none;
    }

    .sending-request .form-block .form {
        width: 100%;
        height: 350px;
        border-radius: 5px;
    }

    .form-block .form label {
        font-size: 23px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .form-block .form input {
        width: 75%;
        border-radius: 30px;
        padding: 0 25px 0 25px;
        height: 45px;
        font-size: 18px;
    }

    .form-block .form button {
        width: 60%;
        height: 50px;
        border-radius: 40px;
        margin-top: 10px;
    }

    .about-company {
        margin-top: 50px;
    }

    .about-company .title {
        font-size: 24px;
    }

    .about-company .block-content {
        display: flex;
        flex-direction: column-reverse;
    }

    .about-company .block-content .text {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 90%;
        height: auto;
        font-family: SusanSansBook, sans-serif;
        color: #66686A;
        font-size: 16px;
        line-height: 160%;
        text-align: justify;
        margin: 20px auto;
    }

    .about-company .results {
        display: flex;
        position: relative;
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: center;
    }

    .results .block-items {
        display: flex;
        position: relative;
        flex-direction: column;
        width: 76%;
        margin: 30px auto 0 auto;
    }

    .results .block-items .item .item-nums {
        font-family: SusanBook, sans-serif;
        font-size: 48px;
        font-weight: bold;
        color: #FF6F00;
    }

    .results .block-items .item .item-text {
        font-family: SusanSansBook, sans-serif;
        font-size: 20px;
        color: #000000;
    }

    footer {
        width: 100%;
        height: auto;
    }

    .footer-wrapper {
        width: 100%;
        margin: 0;
    }

    .footer-wrapper .block-content {
        margin-top: 40px;
        width: 100%;
        height: auto;
    }

    .footer-wrapper .block-content .block-request {
        margin: 0;
        flex-direction: column;
        width: 100%;
    }

    .footer-wrapper .block-content .block-request p {
        font-size: 18px;
        font-weight: 600;
        width: 100%;
        max-width: 85%;
        height: auto;
        text-align: center;
        margin: 0 auto;
    }

    .footer-wrapper .block-content .block-request .button-request-send {
        width: 55%;
        max-width: 100%;
        height: 50px;
        margin-top: 30px;
    }

    .footer-wrapper .block-items {
        margin: 10px 30px 0 0;
        width: 100%;
        flex-direction: column;
    }

    .footer-wrapper .block-items .item {
        margin: 30px auto 0 auto;
        width: 85%;
    }

    .footer-wrapper .block-items .item p {
        font-size: 16px;
        max-width: 100%;
    }

    .footer-wrapper .block-items .item img {
        width: 41px;
        height: 41px;
    }

    .socials {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin: 50px auto 0 auto;
        width: 100px;
    }

    .official-link {
        display: block;
        font-family: SusanSansBook, sans-serif;
        width: 100%;
        text-align: center;
        margin-top: 20px;
        font-weight: 200;
        font-size: 16px;
    }

    .official-link a {
        text-decoration: none;
        color: #FFFFFF;
    }

    .politics p {
        text-align: center;
        margin: 30px auto;
        padding: 0 5px;
    }

    .politics p a {
        font-size: 16px;
    }

    .thumb-wrap {
        position: absolute;
        height: 100%;
        width: 100%;
        overflow: hidden;
        z-index: 0;
    }

    .thumb-wrap video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-width: 0;
        outline-width: 0;
        z-index: 0;
    }

    footer .politics {
        margin: 50px auto 0px auto;
    }
}