@font-face {
    font-family: "Gotham";
    src: local("Gotham Bold"), local("Gotham-Bold"),
    url("../fonts/Gotham-Bold.woff") format("woff"),
    url("../fonts/Gotham-Bold.woff") format("woff"),
    url("../fonts/Gotham-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Gotham";
    src: local("Gotham Medium"), local("Gotham-Medium"),
    url("../fonts/Gotham-Medium.woff") format("woff"),
    url("../fonts/Gotham-Medium.woff") format("woff"),
    url("../fonts/Gotham-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Gotham";
    src: local("Gotham Book"), local("Gotham-Book"),
    url("../fonts/Gotham-Book.woff") format("woff"),
    url("../fonts/Gotham-Book.woff") format("woff"),
    url("../fonts/Gotham-Book.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}
body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    font-family: "Gotham";
    font-weight: 400;
    color: #123244;
    font-size: 16px;
    overflow-x: hidden;
}
a {
    display: block;
    text-decoration: none;
}
.container {
    width: 1640px;
    margin: 0 auto;
}
.mobile-top {
    display: none;
}
.burger {
    display: none;
}
.bg--white {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 140px;
    height: 100%;
    z-index: -1;
    background-color: white;
}
.header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 5;
}
.header-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.header-fix {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.header-left {
    width: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: white;
}
.header-left,
.header-right {
    padding: 13px 0px;
}
.header-right {
    width: 63%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.header-right a {
    color: white;
}
.header-right--bg {
    width: 60.8%;
    z-index: -1;
    height: 100%;
    background-color: #ec3337;
    right: 0px;
    position: absolute;
}
.logo {
    width: 220px;
    height: 50px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.logo img {
    height: 100%;
    width: 100%;
}
.header-form {
    width: 100%;
    margin: 0px 2rem;
    position: relative;
    font-size: 20px;
}
.header-form input {
    width: 100%;
    background-color: #ec3337;
    outline: none;
    padding: 0.4rem 0.6rem;
    padding-right: 30px;
    color: white;
    border: 0px;
}
.header-form button {
    position: absolute;
    width: 30px;
    cursor: pointer;
    height: 97%;
    background-color: #ec3337;
    background-image: url(../img/svg/search.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60%;
    right: 0px;
    top: 1px;
    border: 0px;
    outline: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-form button:hover {
    background-color: #076f9f;
}
.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 80%;
    height: 3rem;
    padding-left: 2rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.menu__item {
    font-weight: 500;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.menu__item a {
    text-transform: uppercase;
}
.menu__item:not(:first-child) {
    margin-right: 1rem;
}
.menu__item:last-child {
    margin-left: 2rem;
}
.menu__item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: white;
    top: 230%;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.menu__item:hover::after {
    opacity: 1;
}
.location {
    width: 19%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-transform: uppercase;
}
.location-imager {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    margin-right: 0.3rem;
}
.location-imager img {
    height: 100%;
    width: 100%;
}
.extra-menu {
    cursor: pointer;
}
.content-extra-menu {
    position: absolute;
    width: 100%;
    padding-top: 76px;
    z-index: -4;
    top: 0px;
    left: 0px;
    background-color: #f7f8fa;
    max-height: 100vh;
    -webkit-transform: translateX(-300%);
    transform: translateX(-300%);
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    overflow: auto;
}
.content-extra-menu.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.extra-block {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}
.close-extra {
    position: absolute;
    width: 20px;
    height: 15px;
    top: 1.5rem;
    cursor: pointer;
    left: -5px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.close-extra svg {
    width: 100%;
    height: 100%;
}
.extra-block__item {
    width: 33%;
    padding: 2.5rem;
}
.extra-block__item ul li {
    list-style: none;
}
.extra-block__item:nth-child(2) {
    padding: 2.5rem 4.5rem;
    border-left: 1px solid rgba(55, 52, 53, 0.09);
    border-right: 1px solid rgba(55, 52, 53, 0.09);
}
::-webkit-scrollbar {
    width: 5px;
}
/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: #076f9f;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #076f9f;
}
.extra__title {
    color: #123244;
    font-weight: 700;
    font-size: 18px;
}
.extra__title,
.extra-block__item ul li {
    margin-bottom: 1rem;
}
.extra-block__item ul li a {
    font-size: 16px;
    color: #123244;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.extra-block__item ul li a:hover {
    color: #ec3337;
}
.footer {
    margin-top: auto;
    position: relative;
    color: #ffffff;
}
.footer a[href]:hover {
    color: #ec3337;
}
.footer-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.footer-logo {
    width: 22%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: auto;
}
.footer-bg-left {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 23%;
    height: 100%;
    z-index: -1;
    background-color: #ec3337;
    border-top: 1px solid white;
}
.footer-bg-right {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 77%;
    height: 100%;
    z-index: -2;
    background-color: #123244;
}
.footer-content {
    width: 75%;
}
.footer-logo-imager {
    width: 255px;
    height: 70px;
}
.footer-logo-imager img {
    width: 100%;
    height: 100%;
}
.footer-content {
    padding: 5rem 0rem 2rem 4rem;
}
.footer-content-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 3rem;
}
.footer-content-top .footer-copy {
    display: none;
}
.footer-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 500;
}
.footer-menu a {
    color: #ffffff;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.footer-menu__item:not(:first-child) {
    margin-left: 2rem;
}
.footer-telephone {
    margin: 0px auto;
}
.footer-telephone a {
    color: #ffffff;
}
.footer-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: 400;
    font-size: 16px;
    color: #a5acb8;
}
.footer-bottom .footer-lacation {
    display: none;
}
.footer-web {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.footer-web a {
    margin-left: 5px;
    color: #ffffff;
    font-weight: 400;
}
.footer_extra {
    cursor: pointer;
}
.footer_extra:hover {
    color: #ec3337;
}
.footer_extra:hover a {
    color: #ec3337;
}
/* about.html styles start */
.page {
    min-height: 100vh;
    padding-bottom: 100px;
}
.about {
    background-color: #ec3337;
    position: relative;
}
.about-top {
    position: relative;
    height: 400px;
    margin-top: 74px;
}
.about-img {
    position: absolute;
    width: 87.5%;
    top: 0px;
    right: 0px;
    z-index: 0;
    height: 100%;
}
.about-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.about__title {
    text-transform: uppercase;
    font-size: 150px;
    padding-top: 6rem;
    font-weight: 700;
    color: white;
    position: relative;
}
.about-parent {
    width: 100%;
    margin-top: 2.5rem;
}
.about__subtitle {
    line-height: 130%;
    max-width: 850px;
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
}
.about__text {
    margin-top: 1.5rem;
    color: #ffffff;
    font-weight: 400;
    max-width: 600px;
    line-height: 140%;
    font-size: 14px;
}
.about-bottom {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.about-doc {
    width: 340px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.about-doc span {
    width: 100%;
    height: 2px;
    margin: 0px 1rem;
    background-color: #ffffff;
}
.about-doc-downloader {
    cursor: pointer;
    width: 20px;
    height: 30px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.about-doc-downloader svg {
    width: 100%;
    height: 100%;
}
.about-doc-downloader path {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.about-doc-downloader:hover path {
    fill: #123244;
}
.about-doc__title {
    font-weight: 500;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 20px;
    color: #ffffff;
}
.about-vector {
    position: absolute;
    width: 74%;
    height: 204px;
    left: 12%;
    top: -6rem;
    z-index: 0;
}
.about-vector svg {
    width: 100%;
    height: 100%;
}
.about-request {
    width: 470px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 1rem;
    height: 100%;
    border-bottom: 1px solid white;
}
.about-request__title {
    font-weight: 500;
    font-size: 18px;
    color: white;
}
.about-request-btn {
    padding: 1rem;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: white;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.about-request-btn:hover {
    background-color: #123244;
}
.about-request-btn:hover path {
    fill: #ffffff;
}
.about-request-btn path {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.about-bottom {
    margin-top: 5rem;
}
.section {
    padding: 65px 0px;
}
.section__title {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 36px;
}
.section__title.white {
    color: #ffffff;
}
.documents-parent {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 49% 10px 49%;
    grid-template-columns: repeat(2, 49%);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    grid-gap: 30px 10px;
    margin-top: 2.5rem;
}
.documents__item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.documents__icon {
    width: 36px;
    height: 30px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.documents__icon svg {
    width: 100%;
    height: 100%;
}
.document__line {
    width: 100%;
    margin: 0px 0.5rem;
    height: 1.5px;
    background-color: #82a0b0;
}
.document__name {
    max-width: 72%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-weight: 500;
    margin-left: 0.8rem;
}
.document__downloader {
    width: 23px;
    height: 18px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.document__downloader svg {
    width: 100%;
    height: 100%;
}
.document__downloader svg path {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    fill: #123244;
}
.document__downloader:hover path {
    fill: #ec3337;
}
.youtube {
    background-color: #076f9f;
}
.youtube-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.youtube-explainer {
    width: 36%;
}
.youtube-iframe-parent {
    width: 60%;
}
.youtube-explainer .section__title,
.youtube__subtitle {
    margin-bottom: 1.5rem;
}
.youtube__subtitle {
    font-weight: 500;
    color: #f1f1f1;
    max-width: 80%;
    line-height: 140%;
}
.youtube-iframe {
    width: 100%;
    height: 500px;
}
.youtube-iframe iframe {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@-webkit-keyframes arrawBorder {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    25% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    75% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes arrawBorder {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    25% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    75% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.link-youtube-btn {
    text-transform: uppercase;
    color: white;
    font-size: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.link-youtube-btn .link-youtube-svg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 1rem;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    margin-left: 1rem;
}
.link-youtube-btn .link-youtube-svg:hover svg {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}
.link-youtube-btn .link-youtube-svg svg {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.link-youtube-btn .link-youtube-svg .circle-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    border-top: 1px solid white;
    border-right: 0px solid white;
    border-bottom: 0px solid white;
    border-radius: 50%;
    border-left: 1px solid white;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-animation-name: arrawBorder;
    animation-name: arrawBorder;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
}
.request {
    background-color: #ec3337;
}
.request-form {
    margin-top: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.request-input {
    max-width: 500px;
    width: 100%;
    position: relative;
    margin-right: 0.5rem;
}
.request-input input {
    font-weight: 400;
    padding: 0.6rem 0rem;
    padding-top: 1rem;
    background-color: transparent;
    color: white;
    font-size: 16px;
    border: 0px;
    outline: none;
    border-bottom: 1px solid white;
    width: 100%;
    display: block;
}
.request-input input::-webkit-input-placeholder {
    color: white;
    font-weight: 400;
    font-size: 14px;
    font-family: "Gotham";
}
.request-input input::-moz-placeholder {
    color: white;
    font-weight: 400;
    font-size: 14px;
    font-family: "Gotham";
}
.request-input input:-ms-input-placeholder {
    color: white;
    font-weight: 400;
    font-size: 14px;
    font-family: "Gotham";
}
.request-input input::-ms-input-placeholder {
    color: white;
    font-weight: 400;
    font-size: 14px;
    font-family: "Gotham";
}
.request-input input::placeholder {
    color: white;
    font-weight: 400;
    font-size: 14px;
    font-family: "Gotham";
}
.request-input span {
    display: block;
    font-size: 12px;
    position: absolute;
    top: 0px;
    left: 0px;
    color: white;
}
.btn {
    background-color: transparent;
    outline: none;
    border: 0px;
    font-weight: 500;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-transform: uppercase;
    font-size: 18px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.btn svg,
.btn path {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.btn.white {
    color: white;
}
.btn.white:hover .btn-svg {
    background-color: white;
}
.btn.white:hover svg path {
    fill: #123244;
}
.btn.white:hover svg {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.btn .btn-svg {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 0.4rem;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    position: relative;
}
.btn .btn-svg .btn-circle {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    border-top: 1px solid white;
    border-right: 0px solid white;
    border-bottom: 0px solid white;
    border-radius: 50%;
    border-left: 1px solid white;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-animation-name: arrawBorder;
    animation-name: arrawBorder;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
}
.youtube-mobile-link {
    display: none;
}
/* about.html styles end */
/* catalog.html styles start */
.catalog {
    background-color: #f7f8fa;
}
.one {
    padding-top: 74px;
    padding-bottom: 75px;
    min-height: 100vh;
}
.breadcrumbs {
    padding-top: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: -8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.breadcrumbs li {
    display: block;
    list-style: none;
    margin-top: 8px;
    margin-right: 1rem;
}
.breadcrumbs li a {
    color: #076f9f;
}
.breadcrumbs li:not(:last-child) {
    color: #123244;
    font-size: 14px;
    padding-right: 1.2rem;
    margin-top: 0.8rem;
    position: relative;
}
.breadcrumbs li:not(:last-child)::after {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    top: 40%;
    right: 0px;
    background-color: #82a0b0;
}
.breadcrumbs li:last-child {
    font-weight: 700;
    font-size: 36px;
}
.catalog-wrapper {
    margin-top: 1.8rem;
}
.catalog-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.catalog-filters {
    width: 16%;
}
.cards-wrapper {
    width: 82%;
}
.catalog-filter {
    background-color: #ffffff;
    margin-bottom: 1.5rem;
}
.catalog-filter__name {
    padding: 1.5rem;
    font-weight: 500;
    color: #123244;
    font-size: 18px;
    border-bottom: 1px solid #e5e5e5;
}
.filter-choice {
    padding: 1rem;
}
.filter-choice-wrapper {
    max-height: 300px;
    overflow: auto;
}
.filter-choice__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.filter-choice__item:not(:last-child) {
    margin-bottom: 1rem;
}
.filter-choice__item input {
    width: 18px;
    display: block;
    height: 18px;
    cursor: pointer;
    margin-right: 0.4rem;
}
.cards {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    grid-gap: 30px 10px;
}
.catalog-cards {
    -ms-grid-columns: (24%) [4];
    grid-template-columns: repeat(4, 24%);
}
.card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #ffffff;
}
.cards-img {
    width: 100%;
    height: 170px;
    overflow: hidden;
}
.cards-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.cards-img:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.card-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
    background-color: #ffffff;
}
.card-top {
    padding: 1rem;
}
.card__title {
    font-weight: 500;
    font-size: 16px;
    color: #123244;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.card__title:hover {
    color: #ec3337;
}
.card__text {
    margin-top: 1rem;
    font-size: 14px;
}
.card-bottom {
    margin-top: auto;
    border-top: 1px solid rgba(130, 160, 176, 0.35);
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.card-price {
    font-weight: 700;
    font-size: 30px;
    color: #ec3337;
}
.card-price span {
    font-size: 16px;
    font-weight: 500;
}
.card__more {
    width: 20px;
    height: 20px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.card__more:hover {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
}
.card__more:hover path {
    fill: #ec3337;
}
.card__more svg {
    width: 100%;
    height: 100%;
}
.card__more svg path {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.pagiation {
    margin-top: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.pagiation li {
    list-style: none;
    display: block;
}
.pagiation li.active a {
    background-color: #ec3337;
    color: white;
}
.pagiation li.active a path {
    fill: white;
}
.pagiation li:not(:last-child) {
    margin-right: 0.6rem;
}
.pagiation li a {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0.3rem;
    background-color: #ffffff;
    border-radius: 10px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.pagiation li a:hover {
    background-color: #ec3337;
    color: white;
}
.pagiation li a:hover path {
    fill: white;
}
.pagiation li a svg {
    width: 80%;
}
.pagiation li a path {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.catalog-filter__name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.catalog-filter-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    padding-left: 1rem;
}
.catalog-filters-btn__item {
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.catalog-filters-btn__item svg {
    width: 100%;
    height: 100%;
}
.filter-down {
    display: none;
}
/* catalog.html styles end */
/* catalog__inner.html styles start */
.product-block {
    margin-top: 2rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.product-img {
    width: 40%;
    min-height: 300px;
    max-height: 420px;
}
.product-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.products-option {
    width: 58%;
    padding: 1.5rem;
    background-color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.catalog__inner {
    background-color: #f7f8fa;
}
.product__title {
    color: #123244;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0.8rem;
}
.product__text {
    line-height: 140%;
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: 16px;
}
.product-bottom {
    margin-top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid #a5acb8;
    padding-top: 1rem;
}
.product__price {
    font-size: 70px;
    color: #ec3337;
    font-weight: 700;
}
.product__price span {
    margin-left: -1rem;
    margin-top: auto;
    font-size: 30px;
}
.btn.red {
    color: #ec3337;
    font-weight: 500;
}
.btn.red path {
    fill: #ec3337;
}
.btn.red .btn-circle {
    border-color: #ec3337 !important;
}
.btn.red:hover .btn-svg {
    background-color: #b1b5bd;
}
.product-tabs {
    margin-top: 2.5rem;
}
.product-topics {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: -1rem;
    margin-left: -1rem;
}
.product-topic__item {
    margin-left: 1rem;
    min-width: 220px;
    cursor: pointer;
    padding: 0.6rem;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    text-transform: uppercase;
    background-color: #82a0b0;
    color: #ffffff;
    text-align: center;
    margin-top: 1rem;
    line-height: 140%;
}
.product-topic__item.active {
    background-color: #ec3337;
}
.product-topic__item:hover {
    background-color: #ec3337;
}
.product-tabs-body {
    padding: 1.5rem;
    background-color: #ffffff;
}
.product-tabs-body__item {
    line-height: 150%;
    display: none;
}
.product-tabs-body__item.active {
    display: block;
}
.product-tabs-body__item strong {
    color: #123244;
    font-size: 20px;
}
.others {
    background-color: #f7f8fa;
    padding-top: 0px !important;
}
.others-cards {
    margin-top: 2rem;
    -ms-grid-columns: (24%) [4];
    grid-template-columns: repeat(4, 24%);
}
.others-cards .cards-img {
    height: 220px;
}
/* catalog__inner.html styles end */
/* contacts.html styles start */
.contacts-section {
    background-color: #076f9f;
    position: relative;
    margin-top: 76px;
}
.contacts-main {
    width: 40%;
    padding: 3.4rem 0px;
}
.contacts-block {
    margin-top: 4rem;
}
.contacts__item {
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 500;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.contacts__item:not(:first-child) {
    margin-top: 3rem;
}
.contact__img {
    width: 45px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 45px;
    margin-right: 0.6rem;
}
.contact__img svg {
    width: 100%;
    height: 100%;
}
.contacts-section .section__title {
    font-weight: 700;
}
.contact__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.contact__title {
    margin-bottom: 0.4rem;
}
.map {
    position: absolute;
    top: 0;
    height: 100%;
    width: 60%;
    right: 0;
}
.map iframe {
    display: block;
    width: 100%;
    height: 100%;
}
/* contacts.html styles end */
/* index.html styles start */
.main {
    position: relative;
    min-height: 100vh;
    padding-bottom: 75px;
    background-color: #ec3337;
}
.main-slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-top: -64px;
}
.main-slider__item {
    margin-top: 64px;
    position: relative;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.main-slider__item .container {
    position: relative;
}
.slider-img {
    position: absolute;
    width: 60.5%;
    height: 100%;
    top: 0px;
    right: 0;
}
.slider-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.slider__title {
    font-weight: 700;
    font-size: 180px;
    text-transform: uppercase;
    color: #ffffff;
}
.slider__subtitle {
    font-size: 19px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 140%;
    color: #ffffff;
}
.slider__option {
    max-width: 37%;
    font-size: 14px;
    color: #ffffff;
    margin-top: 1rem;
}
.buttons-wrapper {
    position: absolute;
    width: 100%;
    left: 0px;
    top: 40%;
}
.buttons-wrapper .container {
    position: relative;
}
.relative {
    position: relative;
}
.buttons-slider {
    position: absolute;
    right: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.buttons-slider .btn .btn-svg {
    padding: 1.2rem;
}
.buttons-slider .slick_prev {
    margin-bottom: 1rem;
}
.buttons-slider .slick_next {
    margin-top: 1rem;
}
.dots-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 0.6rem;
}
.dots-container .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.dots-container .slick-dots li {
    list-style: none;
    margin-top: 1rem;
}
.dots-container .slick-dots li button {
    outline: none;
    width: 12px;
    height: 12px;
    border: 1px solid white;
    background-color: transparent;
    border-radius: 50%;
    color: transparent;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    cursor: pointer;
}
.dots-container .slick-dots li.slick-active button {
    background-color: white;
}
.bg-left {
    position: relative;
}
.bg-left::after {
    content: "";
    width: 40%;
    left: 0;
    top: 0;
    height: 100%;
    background-color: #ec3337;
}
.popular {
    background-color: #f7f8fa;
    padding-bottom: 6rem;
}
.popular .card {
    margin-top: 2rem;
}
.popular-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.section__title.rel {
    position: relative;
}
.section__title.rel::before {
    position: absolute;
    content: "";
    width: 50%;
    right: 86.5%;
    top: -150%;
    height: 300%;
    background-color: #ec3337;
}
.section__title.rel span {
    position: relative;
    color: white;
}
.about-company {
    background-color: #076f9f;
}
.about-company-block {
    margin-top: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.about-company__text {
    width: 37%;
    line-height: 140%;
    color: white;
    margin: 0px 2rem;
}
.about-company-img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 45%;
}
.about-company-img img {
    width: 100%;
    height: 100%;
}
.about-company {
    padding: 6rem 0px;
}
.section__title.ler::before {
    background-color: #076f9f;
    top: -160%;
    right: 84%;
}
.adventages-block {
    margin-top: 3rem;
}
.adventages-block {
    display: -ms-grid;
    display: grid;
    width: 100%;
    -ms-grid-columns: 24% 10px 24% 10px 24% 10px 24%;
    grid-template-columns: repeat(4, 24%);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    grid-gap: 30px 10px;
}
.adventages__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*-webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;*/
}
.adventages__number {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 44px;
    color: #066f9e;
    margin-right: 0.4rem;
}
.adventages__title {
    font-size: 18px;
    font-weight: 500;
    color: #ec3337;
}
.adventages__text {
    margin-top: 0.6rem;
    font-size: 14px;
}
.adventages__item:nth-child(2) .adventages__content {
    max-width: 214px;
}
/* index.html styles end */
/* fixed elements  start */
.fixed-elements {
    width: 70px;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    right: 1rem;
    bottom: 0;
    z-index: 4;
}
.fix-email {
    background-color: #ec3337;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: white;
    padding: 0.4rem 0.8rem;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.fix-email svg {
    width: 25px;
    height: 25px;
    margin-right: 1rem;
}
.fix-whatsaap {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #2aa300;
    border-radius: 50%;
    padding: 0.7rem;
    margin-bottom: 0.3rem;
    transition: all 0.4s ease;
}

#jvlabelWrap {
    right: 90px !important;
}
.fix-whatsaap:hover {
    background-color: #e55b1a;
}

.fix-whatsaap svg {
    width: 100%;
    height: 100%;
}
/* fixed elements end */
/* form styles start */
.form--block {
    text-align: center;
    width: 550px;
    color: #323232;
    padding: 35px 30px;
}
.form--block input {
    font-size: 16px;
    padding: 0.6rem 2rem;
    width: 100%;
    border-radius: 14px;
    border-color: #00abb6;
    outline: none;
    margin-top: 15px;
}
.form--btn {
    margin-top: 15px;
    width: 100%;
}
.form--title {
    font-size: 24px;
    font-weight: 700;
}
.form--subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    line-height: 130%;
    cursor: pointer;
}
.form--btn {
    color: #ec3337;
    border: 1px solid #ec3337;
    padding: 0.6rem 2rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.form--btn:hover {
    background-color: #ec3337;
    color: #fff;
}
#filter-submit1,
#filter-submit2 {
    display: none !important;
}
/* form styles end */
.alert--fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 0px;
    left: 0px;
    z-index: 10;
}
.alert--error,
.alert--warning,
.alert--active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.alert--width {
    width: 400px;
}
.alert--img__item svg {
    width: 80px;
    height: 80px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.alert--img__item {
    display: none;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.alert--active .active {
    display: block;
}
.alert--warning .warning {
    display: block;
}
.alert--error .error {
    display: block;
}
.alert--content {
    position: relative;
    z-index: 12;
    border-radius: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: white;
    padding: 30px;
    color: #333333;
    margin-bottom: 10%;
}
.alert--bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.6;
    z-index: 11;
    top: 0px;
    left: 0px;
}
.alert-text {
    margin-top: 15px;
    text-align: center;
}
.alert--active .active path {
    fill: #4ad395;
}
.alert--warning .warning path {
    fill: #e5e75d;
}
.alert--error .error path {
    fill: #f81919;
}
.alert--title {
    font-size: 28px;
    font-weight: 500;
}
.alert--subtitle {
    font-weight: 400;
    font-size: 20px;
    padding-top: 8px;
    margin-top: 8px;
    border-top: 1px solid #ccbbbb;
}
.alert--x {
    position: absolute;
    width: 30px;
    height: 30px;
    padding: 8px;
    right: 10px;
    top: 10px;
    cursor: pointer;
}
.alert--x svg {
    width: 100%;
    height: 100%;
}
.alert--x svg path {
    fill: #968787;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.alert--x:hover path {
    fill: black;
}
.pagiation li a {
    color: #123244;
}

.youtube-iframe iframe {
    pointer-events: none;
}
.youtube-iframe {
    cursor: pointer;
}
.youtube-iframe img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.youtube-wrapper .slick-dots li {
    list-style: none;
    width: 100px;
    height: 2px;
    position: relative;
}
.youtube-wrapper .slick-dots li button {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    cursor: pointer;
    color: transparent;
    width: 100%;
    height: 100%;
    /*border-radius: */
    border: 0px;
    outline: none;
    /*background-color: red;*/
}
.youtube-wrapper .slick-dots li.slick-active button {
    background-color: #ec3337;
}

.youtube-wrapper .slick-dots {
    display: inline-flex;
    background-color: #ffffff;
    /*width: */
    /*align-items: center;*/
    justify-content: center;
    margin: 0px auto;
    /*margin-top: -3px;*/
    height: 0px;
}
.youtube-iframe-parent {
    overflow: hidden;
    text-align: center;
}

.product-tabs-body__item tr {
    /*border-radius: */
    border: 1px solid black;
}
.product-tabs-body__item tr td {
    padding: 0.6rem;
}

.product-tabs-body__item tr:nth-child(odd) {
    background-color: #f2f2f2;
}
@media screen and (max-width: 1800px) {
    .container {
        width: 1500px;
    }
}
@media screen and (max-width: 1700px) {
    .container {
        width: 1450px;
    }
}
@media screen and (max-width: 1500px) {
    .container {
        width: 1300px;
    }
    .logo {
        width: 185px;
    }
    .header-left {
        width: 36%;
    }
    .header-right {
        width: 70%;
    }
    .header-right--bg {
        width: 64.8%;
    }
    .footer-bg-left {
        width: 27%;
    }
    /* about.html styles starts */
    .about-top {
        height: 345px;
    }
    .about__title {
        font-size: 130px;
    }
    .about-img {
        width: 85.5%;
    }
    .about__subtitle {
        font-size: 22px;
    }
    .about-vector {
        height: 180px;
        width: 66%;
        left: 16%;
    }
    /* about.html styles end */
    /* catalog__inner.html styles start */
    .product__price {
        font-size: 60px;
    }
    .product__price span {
        font-size: 25px;
    }
    .product__title {
        font-size: 22px;
    }
    /* catalog__inner.html styles end */
    /* contacts.html styles start */
    .map {
        width: 55%;
    }
    /* contacts.html styles end */
    /* index.html styles start */
    .slider-img {
        width: 64%;
    }
    .slider__title {
        font-size: 142px;
    }
    .slider__subtitle {
        font-size: 15px;
    }
    .slider__option {
        max-width: 29%;
    }
    .adventages__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    /* index.html styles end */
}
@media screen and (max-width: 1420px) {
    .about-img {
        width: 87.5%;
    }
}
@media screen and (max-width: 1350px) {
    .container {
        width: 1150px;
    }
    .logo {
        width: 155px;
    }
    .header-right {
        font-size: 14px;
    }
    .header-left {
        width: 33%;
    }
    .header-right--bg {
        width: 68.8%;
    }
    .footer-logo-imager {
        width: 190px;
    }
    .extra-block__item:nth-child(2) {
        padding: 2.5rem 3.5rem;
    }
    .menu__item::after {
        top: 252%;
    }
    .extra__title {
        font-size: 16px;
    }
    .extra-block__item ul li a {
        font-size: 15px;
    }
    /* about.html styles start */
    .about__title {
        font-size: 110px;
    }
    .about-img {
        width: 85.5%;
    }
    .about-top {
        height: 310px;
    }
    .about__subtitle {
        font-size: 20px;
    }
    .about-vector {
        height: 121px;
        width: 41%;
        left: 28%;
        top: -4rem;
    }
    .request-input {
        max-width: 350px;
    }
    .youtube-iframe {
        height: 440px;
    }
    .section__title {
        font-size: 32px;
    }
    /* abput.html styles end */
    /* catalog.html styles start */
    .catalog-cards {
        -ms-grid-columns: (33%) [3];
        grid-template-columns: repeat(3, 33%);
    }
    .cards-wrapper {
        width: 77%;
    }
    .catalog-filters {
        width: 21%;
    }
    /* catalog.html styles end */
    /* index.html styles start */
    .slider-img {
        width: 65.2%;
    }
    .slider__title {
        font-size: 119px;
    }
    .slider__subtitle {
        max-width: 30%;
        line-height: 140%;
    }
    .section__title.ler::before {
        top: -169%;
        height: 310%;
    }
    /* index.html styles end */
}
@media screen and (max-width: 1280px) {
    .about-img {
        width: 87.5%;
    }
    .slider-img {
        width: 66.2%;
    }
}
@media screen and (max-width: 1200px) {
    .container {
        width: 1050px;
    }
    .logo {
        width: 135px;
    }
    .header-form {
        margin: 0px 1rem;
    }
    .menu {
        padding-left: 1rem;
    }
    .location {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .location-imager {
        width: 30px;
        height: 25px;
        margin-bottom: 0.3rem;
    }
    .menu__item:last-child {
        margin-left: 1rem;
    }
    .header-right--bg {
        width: 66.8%;
    }
    /* about.html styles start */
    .about__title {
        font-size: 91px;
        margin-top: 5rem;
    }
    .about-img {
        width: 86.5%;
    }
    .about-top {
        height: 285px;
    }
    .about-request {
        width: 370px;
    }
    .about-vector {
        height: 115px;
        width: 45%;
    }
    .about__title {
        margin-top: 1rem;
    }
    /* about.html styles end */
    /* index.html styles start */
    .slider__title {
        font-size: 108px;
    }
    .about-company-img {
        width: 37%;
    }
    .about-company__text {
        width: 40%;
        font-size: 15px;
    }
    .section__title.ler::before {
        height: 350%;
    }
    .adventages-block {
        -ms-grid-columns: 49% 10px 49%;
        grid-template-columns: repeat(2, 49%);
    }
    .adventages__text {
        margin-top: 0.4rem;
    }
    .adventages__title {
        font-size: 17px;
    }
    .adventages__number {
        font-size: 38px;
    }
    /* index.html styles end */
    .alert--width {
        width: 370px;
    }
    .alert--content {
        padding: 25px;
    }
    .alert--img__item svg {
        width: 75px;
        height: 75px;
    }
    .alert-text {
        margin-top: 10px;
    }
    .alert--title {
        font-size: 24px;
    }
    .alert--subtitle {
        font-size: 18px;
    }
}
@media screen and (max-width: 1180px) {
    .about-img {
        width: 87.5%;
    }
}
@media screen and (max-width: 1140px) {
    .about-img {
        width: 88.5%;
    }
}
@media screen and (max-width: 1100px) {
    .container {
        width: 950px;
    }
    .header-left .header-form {
        display: none;
    }
    .header-left {
        width: 16%;
    }
    .header-right {
        width: 82%;
    }
    .header-right--bg {
        width: 81.8%;
    }
    .footer-logo-imager {
        width: 155px;
    }
    .footer-logo {
        width: 17%;
    }
    .footer-content {
        width: 85%;
    }
    .footer-bg-left {
        width: 24%;
    }
    /* about.html styles start */
    .about__title {
        font-size: 82px;
    }
    .about-img {
        width: 86%;
    }
    .about-top {
        height: 250px;
    }
    .about__subtitle {
        font-size: 18px;
    }
    .about__text {
        max-width: 520px;
    }
    .about-doc__title {
        font-size: 18px;
    }
    .about-doc {
        width: 295px;
    }
    .about-request__title {
        font-size: 16px;
    }
    .about-request-btn {
        padding: 0.6rem;
        width: 40px;
        height: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .about-request-btn svg {
        width: 100%;
        height: 100%;
    }
    .section__title {
        font-size: 28px;
    }
    .document__name {
        font-size: 14px;
    }
    .youtube-explainer {
        width: 49%;
    }
    .youtube-iframe-parent {
        width: 50%;
    }
    .youtube-iframe {
        height: 340px;
    }
    /* about.html styles end   */
    /* catalog.html styles start */
    .catalog-filter__name {
        font-size: 16px;
        padding: 1rem;
    }
    .filter-choice__item input {
        width: 15px;
        height: 15px;
    }
    .filter-choice__item {
        font-size: 14px;
    }
    .card-price {
        font-size: 24px;
    }
    /* catalog.html styles end */
    /* catalog__inner.html styles start */
    .product__title {
        font-size: 20px;
    }
    .product__text {
        font-size: 15px;
    }
    .product__price {
        font-size: 48px;
    }
    .product__price span {
        font-size: 22px;
    }
    .product-bottom .btn {
        font-size: 16px;
    }
    .product-tabs-body__item strong {
        font-size: 18px;
    }
    .product-tabs-body__item {
        font-size: 14px;
    }
    .others-cards .cards-img {
        height: 160px;
    }
    /* catalog__inner.html styles start */
    .contact__img {
        width: 40px;
        height: 40px;
    }
    .contact__body {
        font-size: 15px;
    }
    .contacts-block {
        margin-top: 2rem;
    }
    /* catalog__inner.html styles end  */
    .slider-img {
        width: 63.2%;
    }
    .slider__subtitle {
        max-width: 34%;
    }
    .slider__option {
        max-width: 32%;
    }
    .padding {
        padding: 50px 0px;
    }
    /* index.html styles start */
}
@media screen and (max-width: 1070px) {
    .about-img {
        width: 87%;
    }
}
@media screen and (max-width: 1000px) {
    .container {
        width: 800px;
    }
    .burger {
        display: block;
        width: 30px;
        height: 30px;
        position: relative;
        margin-left: 2rem;
        cursor: pointer;
    }
    .burger::after,
    .burger::before {
        position: absolute;
        width: 100%;
        height: 2.25px;
        border: 0px;
        content: "";
        background-color: #ffffff;
    }
    .burger::before {
        top: 0px;
        left: 0px;
    }
    .burger::after {
        bottom: 0px;
        left: 0px;
    }
    .burger span {
        position: relative;
        width: 100%;
        height: 2.25px;
        top: 14px;
        left: 0px;
        background-color: #ffffff;
        display: block;
    }
    .burger::after,
    .burger::before,
    .burger span {
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }
    .burger.active::after,
    .burger.active::before {
        top: 14px;
        left: 0px;
        bottom: auto;
    }
    .burger.active::after {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .burger.active::before {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .burger.active span {
        opacity: 0;
    }
    .location {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        width: 151px;
        margin-left: auto;
    }
    .location-imager {
        margin: 0px;
        margin-right: 0.5rem;
    }
    .header-right--bg {
        width: 43.8%;
    }
    .header-left .header-form {
        display: block;
    }
    .header-left {
        width: 60%;
    }
    .header-right {
        width: 40%;
    }
    .header-form {
        margin: 0px 2rem;
    }
    .header-left,
    .header-right {
        padding: 6px 0px;
    }
    .extra__title,
    .extra-block__item ul li {
        margin-bottom: 0.6rem;
    }
    /* menu styles start */
    .menu {
        position: absolute;
        width: 100%;
        top: 0px;
        right: 0px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: 100vh;
        z-index: 6;
        margin: 0px;
        padding: 0px;
        background-color: #dbdbe1;
        width: 260px;
        padding: 1rem;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-transition: all 0.8s ease;
        transition: all 0.8s ease;
        -webkit-transform: translateX(200%);
        transform: translateX(200%);
    }
    .menu.active {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    .menu__item a {
        color: #123244;
    }
    .mobile-top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 3.5rem;
    }
    .mobile-top .burger,
    .mobile-top .header-form {
        margin: 0px;
        padding: 0px;
    }
    .mobile-top .burger {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        -webkit-transition: all 1s ease;
        transition: all 1s ease;
    }
    .mobile-top .burger::after,
    .mobile-top .burger::before,
    .mobile-top .burger span {
        background-color: #123244;
        -webkit-transition: all 1s ease;
        transition: all 1s ease;
    }
    .mobile-top .burger span {
        height: 3px;
    }
    .mobile-top .header-form {
        margin-right: 1rem;
    }
    .header-form button {
        height: 94%;
    }
    .menu__item:not(:first-child),
    .menu__item:last-child {
        margin-left: 1.5rem;
    }
    .menu__item:not(:first-child) {
        margin-bottom: 1.5rem;
    }
    /* menu styles end */
    .extra-block__item {
        padding: 2.5rem 1rem;
    }
    .extra-block__item:nth-child(2) {
        padding: 2.5rem 1.5rem;
    }
    .extra-block__item {
        width: 33.33%;
    }
    .close-extra {
        top: 1.1rem;
    }
    .menu__item::after {
        top: 100%;
    }
    .footer-content {
        padding: 3rem 0rem 2rem 3rem;
    }
    .footer-content-top {
        margin-bottom: 1rem;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .footer-lacation {
        margin-top: 1rem;
    }
    /* about.html styles start */
    .about__title {
        margin-top: 0px;
        padding-top: 5rem;
        font-size: 70px;
    }
    .about-top {
        margin-top: 55px;
    }
    .about-img {
        width: 84%;
    }
    .about-top {
        height: 215px;
        padding-top: 1rem;
    }
    .about-vector {
        display: none;
    }
    .about-request {
        width: 310px;
        margin-bottom: 1rem;
    }
    .about-bottom {
        margin-top: 2rem;
    }
    .youtube-iframe {
        height: 300px;
    }
    .link-youtube-btn {
        font-size: 16px;
    }
    .btn {
        font-size: 15px;
    }
    .request-input {
        max-width: 240px;
    }
    /* about.html styles end */
    /* catalog.html styles start */
    .catalog-filters {
        width: 30%;
    }
    .cards-wrapper {
        width: 68%;
    }
    .catalog-cards {
        -ms-grid-columns: (49%) [2];
        grid-template-columns: repeat(2, 49%);
    }
    /* catalog.html styles end */
    /* catalog__inner.html styles start */
    .others-cards {
        -ms-grid-columns: (49%) [2];
        grid-template-columns: repeat(2, 49%);
    }
    .others-cards .cards-img {
        height: 220px;
    }
    /* catalog__inner.html styles end */
    /* contacts.html styles start */
    .contacts-section {
        margin-top: 62px;
    }
    /* contacts.html styles end */
    /* index.html styles start */
    .slider-img {
        width: 42%;
    }
    .slider__title {
        font-size: 100px;
    }
    .slider__subtitle {
        max-width: 65%;
    }
    .slider__option {
        width: 57%;
    }
    .section__title.rel::before {
        width: 60%;
    }
    .about-company-block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .about-company__text {
        margin: 0px;
        margin-top: 1rem;
        width: 100%;
        margin-bottom: 1.5rem;
    }
    /* index.html stlyes end */
}
@media screen and (max-width: 940px) {
    .about-img {
        width: 86%;
    }
}
@media screen and (max-width: 880px) {
    .container {
        width: 760px;
    }
    .footer-bg-left {
        width: 23%;
    }
    .footer-bottom,
    .footer-lacation,
    .footer-telephone,
    .footer-menu {
        font-size: 14px;
    }
    /* about.html styles start */
    .about-top {
        padding-top: 0px;
        height: 190px;
    }
    .about__title {
        padding-top: 4rem;
        font-size: 60px;
    }
    .about-doc__title {
        font-size: 16px;
    }
    .about-img {
        width: 87%;
    }
    .section__title {
        font-size: 26px;
    }
    .documents-parent {
        -ms-grid-columns: 100%;
        grid-template-columns: repeat(1, 100%);
    }
    /* about.html styles end */
    /* index.html styles start */
    .about-company-img {
        width: 50%;
    }
    .slider__title {
        font-size: 82px;
    }
    .slider__option {
        width: 100%;
        max-width: 56%;
    }
    /* index.html styles end */
}
@media screen and (max-width: 850px) {
    .about-img {
        width: 88%;
    }
}
@media screen and (max-width: 825px) {
    .about-img {
        width: 89%;
    }
}
@media screen and (max-width: 808px) {
    .about-img {
        width: 90%;
    }
}
@media screen and (max-width: 780px) {
    .container {
        width: 670px;
    }
    .footer {
        position: relative;
    }
    .footer-logo {
        position: absolute;
        width: 200px;
        height: 80px;
    }
    .footer-bg-left {
        width: 30%;
        height: 100px;
    }
    .footer-bg-right {
        width: 100%;
    }
    .footer-content {
        width: 100%;
    }
    .footer-content {
        margin-top: 40px;
        padding: 0px;
        padding-bottom: 10px;
    }
    .footer-menu {
        margin-left: 270px;
    }
    .footer-logo-imager {
        margin-top: 25px;
    }
    .footer-telephone {
        margin: 0px;
        margin-right: 1rem;
        margin-top: 1rem;
        margin-left: auto;
    }
    .footer-menu {
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .footer-content-top {
        margin-bottom: 2rem;
    }
    /* about.html styles start */
    .about__title {
        font-size: 50px;
    }
    .about-img {
        width: 87%;
    }
    .about-bottom {
        margin-top: 3rem;
    }
    .about__text {
        margin-top: 2.5rem;
    }
    /* about.html styles end */
    /* catalog__inner.html styles start */
    .product-block {
        display: block;
    }
    .product-img {
        width: 100%;
        max-height: none;
        min-height: 0px;
    }
    .products-option {
        margin-top: 1.5rem;
        width: 100%;
    }
    /* catalog__inner.html styles end */
    /* contacts.html styles start */
    .contacts-main {
        width: 70%;
    }
    .map {
        width: 100%;
        height: 340px;
        position: static;
    }
    .contacts-main {
        padding: 2.4rem 0px;
    }
    /* contacts.html styles end */
}

.location {
    position: relative;
    color: white;
}
.location--cityes {
    position: absolute;
    top: 110%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    left: 0;
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
    background-color: white;
    transition: all 0.2s ease;
}
.location:hover .location--cityes {
    opacity: 1;
    visibility: visible;
}
.location--cityes__item {
    padding: 0.4rem;
    color: #333333;
    cursor: pointer;
    transition: all 0.2s ease;
}
.location--cityes__item:hover {
    background-color: #ec3337;
    color: white;
}
@media screen and (max-width: 750px) {
    .about-img {
        width: 88%;
    }
}
@media screen and (max-width: 730px) {
    .about-img {
        width: 89%;
    }
}
@media screen and (max-width: 715px) {
    .about-img {
        width: 90.5%;
    }
}
@media screen and (max-width: 680px) {
    .container {
        width: 550px;
    }
    .extra-block {
        display: block;
        padding-bottom: 1rem;
    }
    .extra-block__item {
        width: 100%;
        padding: 0rem;
    }
    .extra-block__item:nth-child(2) {
        padding: 0px;
        border: 0px;
    }
    .extra-block__item:first-child {
        padding-top: 3rem;
    }
    .close-extra {
        right: 0px;
        left: auto;
    }
    .extra-block__item:not(:last-child) {
        border-bottom: 1px solid #e3e7ea;
        padding-bottom: 1rem;
    }
    .extra-block__item:not(:first-child) {
        padding-top: 1rem;
    }
    .footer-bg-left {
        width: 38%;
    }
    .footer-menu {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-left: 230px;
    }
    .footer-menu__item:not(:first-child) {
        margin-left: 0px;
    }
    .header-left .header-form {
        display: none;
    }
    .header-right {
        width: 50%;
    }
    .header-right--bg {
        width: 58.8%;
    }
    /* about.html styles start */
    .about-img {
        width: 83.5%;
    }
    .about__text {
        margin-top: 1.5rem;
    }
    .about-bottom {
        margin-top: 1.5rem;
    }
    .about-bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .about-vector {
        position: relative;
        top: 0px;
        left: 0px;
        display: block;
        width: 70%;
        height: 125px;
        margin-top: 2rem;
    }
    .about-request {
        margin-top: 2rem;
        width: 100%;
    }
    .page {
        padding-bottom: 65px;
    }
    .section {
        padding: 50px 0px;
    }
    .section__title {
        font-size: 24px;
    }
    .youtube-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .youtube-explainer {
        width: 100%;
    }
    .youtube-explainer .link-youtube-btn {
        display: none;
    }
    .youtube__subtitle {
        max-width: 100%;
        width: 100%;
    }
    .youtube-iframe-parent {
        width: 100%;
    }
    .youtube-mobile-link {
        display: block;
        margin-top: 2rem;
    }
    .youtube-mobile-link .link-youtube-btn {
        font-size: 20px;
    }
    .request-form {
        margin-top: 1rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .request-input {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    .form-btn {
        -ms-flex-item-align: end;
        align-self: flex-end;
    }
    /* about.html styles end */
    /* catalog.html styles start */
    .catalog-wrapper {
        display: block;
    }
    .catalog-filters {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .catalog-filter {
        width: 49%;
        position: relative;
    }
    .filter-choice {
        z-index: 1;
        position: absolute;
        top: 100%;
        left: 0px;
        width: 100%;
        background-color: #ffffff;
        -webkit-transition: all 1s ease;
        transition: all 1s ease;
        height: 0;
        padding: 0;
        opacity: 0;
        overflow: hidden;
    }
    .filter-choice.active {
        height: auto;
        padding: 1rem;
        overflow: auto;
        opacity: 1;
    }
    .filter-down {
        display: block;
        width: 18px;
        height: 18px;
        cursor: pointer;
        -webkit-transition: all 0.4s ease;
        transition: all 0.4s ease;
        margin-left: auto;
    }
    .filter-down.active {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    .filter-down svg {
        width: 100%;
        height: 100%;
    }
    .catalog-filters-btn__item {
        width: 24px;
        height: 24px;
    }
    .catalog-filter__name {
        height: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .cards-wrapper {
        width: 100%;
    }
    .filter-choice-wrapper {
        max-height: 130px;
    }
    .catalog-cards {
        width: 100%;
    }
    .breadcrumbs {
        padding-top: 1.5rem;
    }
    .breadcrumbs li:last-child {
        font-size: 30px;
    }
    /* catalog.html styles end */
    /* index.html styles start */
    .slider-img {
        width: 46.4%;
    }
    .slider__title {
        font-size: 66px;
    }
    .slider__subtitle {
        max-width: 100%;
    }
    .slider__option {
        max-width: 100%;
    }
    .buttons-slider {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .dots-container .slick-dots {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        margin: 0px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .buttons-slider .slick_prev {
        margin: 0px;
    }
    .buttons-slider .slick_next {
        margin: 0px;
    }
    .buttons-wrapper {
        top: auto;
        bottom: 15%;
    }
    .buttons-slider {
        left: -60%;
    }
    .buttons-slider .slick_next {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
        margin-top: 1rem;
    }
    .dots-container .slick-dots {
        padding: 0px 1rem;
    }
    .dots-container .slick-dots li {
        margin-right: 1rem;
    }
    .buttons-slider .slick_prev {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
        margin-top: 1rem;
    }
    .section__title.rel::before {
        height: 260%;
    }
    .section__title.ler::before {
        top: -176%;
        height: 350%;
    }
    .others-cards {
        margin-top: 1rem;
    }
    /* index.html styles end */
    /* fixed elements start */
    /*.fixed-elements {
      width: 330px;
  }*/
    .fix-email svg {
        width: 20px;
        height: 20px;
    }
    .fix-email {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 13px;
    }
    .fix-email {
        padding: 0.2rem 0.4rem;
    }
    .fix-whatsaap {
        width: 35px;
        height: 35px;
    }
    .fix-whatsaap {
        padding: 0.5rem;
    }
    /*.fixed-elements {
      width: 280px;
  }*/
    .fixed-elements {
        right: 0px;
    }
    /* fixed elements end */
    .fixed-elements {
        bottom: 90px;
    }
}
@media screen and (max-width: 650px) {
    .about-img {
        width: 85.5%;
    }
    .youtube-wrapper .slick-dots li {
        width: 50px;
    }
}
@media screen and (max-width: 610px) {
    .about-img {
        width: 87.5%;
    }
    .breadcrumbs li:last-child {
        font-size: 22px;
    }
}
@media screen and (max-width: 570px) {
    .container {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    .header-left {
        width: 42%;
    }
    .footer-menu {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .footer-menu__item {
        width: 50%;
        margin-bottom: 1rem;
    }
    .footer-bottom .footer-copy {
        display: none;
    }
    .footer-bottom .footer-lacation {
        display: block;
    }
    .footer-content-top .footer-lacation {
        display: none;
    }
    .footer-content-top .footer-copy {
        display: block;
        margin-top: 1rem;
        font-weight: 400;
        color: #a5acb8;
    }
    .footer-lacation {
        margin-top: 0px;
        color: #f1f1f1;
    }
    .footer-telephone {
        margin-right: 0px;
    }
    .footer-menu__item {
        text-align: right;
    }
    .footer-bottom,
    .footer-lacation,
    .footer-telephone,
    .footer-menu,
    .footer-content-top .footer-copy {
        font-size: 14px;
    }
    /* about.html styles start */
    .about-top {
        height: 175px;
    }
    .about__subtitle {
        font-size: 16px;
    }
    .about-parent {
        margin-top: 1.5rem;
    }
    .about__text {
        margin-top: 1rem;
    }
    .about-doc__title {
        font-size: 14px;
    }
    .about-doc-downloader {
        width: 18px;
        height: 28px;
    }
    .about-vector {
        width: 85%;
        height: 122px;
        -webkit-transform: rotate(20deg);
        transform: rotate(20deg);
        margin-top: 0px;
    }
    .about-request {
        margin-top: 1rem;
    }
    .page {
        padding-bottom: 40px;
    }
    .section__title {
        font-size: 22px;
    }
    .documents-parent {
        margin-top: 1.5rem;
    }
    .document__name {
        max-width: 60%;
    }
    .youtube-iframe {
        height: 250px;
    }
    .youtube-mobile-link .link-youtube-btn {
        font-size: 18px;
    }
    .request-input input {
        font-size: 14px;
    }
    .request-input input {
        padding-bottom: 0.6rem;
    }
    /* about.html styles end */
    .breadcrumbs li:last-child {
        font-size: 18px;
    }
    .products-option {
        margin-top: 1rem;
    }
    .products-option {
        padding: 1rem;
    }
    .product__title {
        font-size: 18px;
    }
    .product__text {
        font-size: 14px;
    }
    .product__price {
        font-size: 38px;
    }
    .product__price span {
        margin-left: -0.6rem;
    }
    .product-tabs {
        margin-top: 2.5rem;
    }
    .product-topics {
        margin-top: -0.6rem;
    }
    .product-topics {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .product-topic__item {
        min-width: 0px;
        width: 46.5%;
        margin-top: 0.6px;
    }
    .product-tabs-body {
        padding: 1rem;
    }
    .product-tabs-body__item strong {
        font-size: 16px;
    }
    .others-cards .cards-img {
        height: 165px;
    }
    /* catalog__inner.html styles end */
    /* contacts.html styles start */
    .map {
        height: 270px;
    }
    .contact__img {
        width: 35px;
        height: 35px;
    }
    .contact__body {
        font-size: 14px;
    }
    .contact__title {
        margin-bottom: 0.2rem;
    }
    /* contacts.html styles end */
    /* index.html styles start */
    .padding {
        padding: 30px 0px;
    }
    .section__title.rel::before {
        height: 240%;
    }
    .section__title.ler::before {
        height: 330%;
    }
    .popular .card {
        margin-top: 0px;
    }
    .slider-img {
        width: 57.4%;
    }
    .buttons-slider {
        left: -51%;
    }
    .adventages-block {
        -ms-grid-columns: 100%;
        grid-template-columns: repeat(1, 100%);
    }
    .slider__title {
        font-size: 62px;
    }
    .header-left {
        width: 38%;
    }
    .header-right--bg {
        width: 62%;
    }
    .slider-img {
        width: 61%;
    }
    .popular-top .btn {
        display: none;
    }
    .section__title.rel::before {
        height: 295%;
    }
    .section__title.ler::before {
        height: 320%;
    }
    .bg-left .cards {
        margin-top: 2.5rem;
    }
    /* index.html styles end */
}
@media screen and (max-width: 520px) {
    .about-img {
        width: 86.5%;
    }
    .slider__title {
        font-size: 58px;
    }
    .alert--content {
        width: 92%;
    }
    .alert--img__item svg {
        width: 60px;
        height: 60px;
    }
    .alert--title {
        font-size: 22px;
    }
}
@media screen and (max-width: 500px) {
    .footer-bg-left {
        width: 44%;
    }
    .footer-menu {
        margin-left: 170px;
    }
    /* about.html styles start */
    .about-img {
        width: 85.5%;
    }
    .about-bottom,
    .about-parent {
        margin-top: 1rem;
    }
    .about-doc {
        width: 260px;
    }
    /* about.html styles end */
    /* catalog.html styles start */
    .card-bottom,
    .card-top {
        padding: 0.6rem;
    }
    .card__title {
        font-size: 15px;
    }
    .card__text {
        margin-top: 0.6rem;
        font-size: 13px;
    }
    .card-price {
        font-size: 22px;
    }
    .card-price span {
        font-size: 14px;
    }
    .card__more {
        width: 16px;
    }
    .catalog-filter__name {
        font-size: 15px;
    }
    .cards-img {
        height: 150px;
    }
    .breadcrumbs {
        padding-top: 1rem;
    }
    .breadcrumbs li:not(:last-child) {
        margin-top: 0.5rem;
    }
    .catalog-filter__name {
        padding: 0.6rem;
        font-size: 14px;
    }
    .pagiation li a {
        width: 32px;
        height: 32px;
        padding: 0.7rem;
    }
    /* catalog.html styles end */
    /* catalog__inner.html styles start */
    /* contacts.html styles start */
    .map {
        height: 245px;
    }
    .contacts__item:not(:first-child) {
        margin-top: 2rem;
    }
    .slider__title {
        font-size: 56px;
    }
    /* contacts.html styles end */
}
@media screen and (max-width: 480px) {
    .product-topic__item {
        width: 100%;
        margin-top: 0.4rem;
    }
    .product__price {
        margin-right: 1.2rem;
        font-size: 30px;
    }
    .product__price span {
        font-size: 18px;
    }
    .product-bottom .btn {
        font-size: 14px;
    }
    .product-bottom .btn-svg {
        width: 40px;
        height: 40px;
        padding: 0.7rem;
    }
    .contacts-main {
        width: 100%;
    }
    /* index.html styles start */
    .slider__title {
        font-size: 54px;
    }
    .adventages-block {
        margin-top: 2rem;
    }
    /* index.html styles end */
}
@media screen and (max-width: 460px) {
    .slider__title {
        font-size: 51px;
    }
    .buttons-slider {
        left: -43%;
    }
    .buttons-wrapper .btn .btn-svg {
        width: 36px;
        height: 36px;
        padding: 0.8rem !important;
    }
    .buttons-slider {
        left: -48%;
    }
    .buttons-wrapper {
        top: 80%;
    }
    .slider__title {
        font-size: 46px;
    }
    .slider-img {
        width: 63%;
    }
}
@media screen and (max-width: 450px) {
    .logo {
        width: 116px;
    }
    .header-right {
        width: 65%;
    }
    .header-right--bg {
        width: 68%;
    }
    .footer-bottom,
    .footer-lacation,
    .footer-telephone,
    .footer-menu,
    .footer-content-top .footer-copy {
        font-size: 13px;
    }
    .footer-logo-imager {
        width: 125px;
        margin-top: 30px;
    }
    .footer-menu {
        margin-left: 145px;
    }
    /* about.html styles start */
    .documents__icon {
        width: 29px;
        height: 30px;
    }
    /* about.html styles end */
    /* catalog__inner.html styles start */
    .others-cards {
        -ms-grid-columns: (100%) [1];
        grid-template-columns: repeat(1, 100%);
    }
    .others-cards .cards-img {
        height: 190px;
    }
    .product__title {
        font-size: 16px;
    }
    .product__price {
        font-size: 22px;
    }
    .product__price span {
        font-size: 14px;
        margin-left: -0.4rem;
    }
    /* catalog__inner.html styles end */
}
@media screen and (max-width: 425px) {
    .slider-img {
        width: 62%;
    }
}
@media screen and (max-width: 415px) {
    .footer-copy,
    .footer-telephone,
    .footer-web,
    .footer-lacation,
    .footer-content-top .footer-copy {
        font-size: 12px;
    }
    /* about.html styles start */
    .about__title {
        font-size: 40px;
    }
    .about-top {
        height: 162px;
    }
    .about__subtitle {
        font-size: 15px;
    }
    .about__text {
        font-size: 13px;
    }
    .document__name {
        font-size: 13px;
    }
    .document__name {
        max-width: 64%;
    }
    .youtube-mobile-link .link-youtube-btn {
        font-size: 16px;
    }
    .link-youtube-btn .link-youtube-svg {
        width: 40px;
        height: 40px;
        padding: 0.6rem;
    }
    .section__title {
        font-size: 20px;
    }
    .youtube-explainer .section__title,
    .youtube__subtitle {
        margin-bottom: 1rem;
    }
    .youtube__subtitle {
        font-size: 14px;
    }
    .youtube-iframe {
        height: 200px;
    }
    /* about.html styles end */
    /* catalog.html styles start */
    .breadcrumbs li:last-child {
        font-size: 22ppx;
    }
    .catalog-filters {
        display: block;
    }
    .catalog-filter {
        width: 100%;
    }
    .catalog-filter {
        margin-bottom: 0.8rem;
    }
    .catalog-cards {
        -ms-grid-columns: (100%) [1];
        grid-template-columns: repeat(1, 100%);
    }
    .cards-img {
        height: 170px;
    }
    .card-bottom,
    .card-top {
        padding: 1rem;
    }
    #first-catalog {
        z-index: 2;
    }
    .filter-choice.active {
        -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
    }
    /* catalog.html styles end */
    /* index.html styles start */
    .slider__title {
        font-size: 44px;
    }
    /* index.html styles end */
}
@media screen and (max-width: 400px) {
    .slider__title {
        font-size: 42px;
    }
    .padding {
        padding: 30px 0px !important;
    }
}
@media screen and (max-width: 385px) {
    .footer-bottom,
    .footer-telephone,
    .footer-menu {
        font-size: 12px;
    }
    .footer-copy,
    .footer-telephone,
    .footer-web,
    .footer-lacation,
    .footer-content-top .footer-copy {
        font-size: 10px;
    }
    .burger {
        margin-left: 1rem;
    }
    .header-right {
        font-size: 12px;
    }
    .location-imager {
        width: 25px;
    }
    .header-right--bg {
        width: 62%;
    }
    .footer-bg-left {
        width: 46%;
    }
    /* about.html styles start */
    .about-img {
        width: 84%;
    }
    .section {
        padding: 40px 0px;
    }
    .document__line {
        height: 2px;
    }
    .document__name {
        font-size: 12px;
    }
    /*  about.html styles end */
    .slider__title {
        font-size: 39px;
    }
    .slider__title {
        font-size: 36px;
    }
    .slider__subtitle {
        font-size: 14px;
    }
    .slider__option {
        font-size: 12px;
    }
    .buttons-slider {
        left: -35%;
    }
}
@media screen and (max-width: 350px) {
    .location {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .header-right--bg {
        width: 66%;
    }
    .header-left {
        width: 41%;
        padding-right: 0.5rem;
    }
    .logo {
        width: 100%;
    }
    .bg--white {
        width: 90px;
    }
    .footer-logo-imager {
        width: 101px;
    }
    .footer-bg-left {
        width: 41%;
    }
    .footer-menu {
        margin-left: 120px;
    }
    /* about.html styles start */
    .about__title {
        font-size: 35px;
    }
    .about-top {
        height: 156px;
    }
    /* about.html styles end */
    /* catalog__inner.html styles start */
    .product-bottom {
        display: block;
    }
    .slider-img {
        width: 65%;
    }
    .slider__title {
        font-size: 30px;
    }
    .slider__subtitle {
        font-size: 12px;
    }
    /* catalog__inner.html styles end */
}
