@import "../fonts/fonts.css";
@import "./vars.css";

div#not-found {
    padding-right: 10px;
    font-weight: 500;
    font-size: 20px;
}

.modal {
    width: 100%;
    height: 100%;
    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;
}

.modal-scroll {
    overflow-y: scroll;
    overflow-x: hidden;
}

.modal__close {
    position: absolute;
    top: 1.6rem;
    right: 1.6rem;
    cursor: pointer;
    width: 1.5rem;
    height: 1.5rem;
    border: none;
    transition: all 0.3s;
    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;
    opacity: 1;
    z-index: 2;
}

.modal__close svg {
    width: 100%;
    height: 100%;
}

.modal__close-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;
    cursor: pointer;
}

.modal__space-bottom {
    width: 100%;
    height: 5rem;
}

.modal__content {
    padding: 3.2rem;
}

.modal-wrap {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 500;
    top: 0;
    right: 0;
    background: rgb(0 0 0 / 65%);
}

.modal-wrap--scroll {
    overflow-y: scroll;
}

.modal-wrap--scroll .modal {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: unset;
}

.modal-wrap--scroll .modal__close-overlay {
    position: fixed;
}

.modal__text {
    margin: 35px 0 40px;
}

.modal__title {
    margin-bottom: 20px;
}

.modal__desc {
    color: rgba(248, 248, 248, 0.80);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.modal-wrap--big .modal__container {
    max-width: 105rem;
}

.modal-wrap--big .modal__close {
    top: 0;
    right: -5rem;
    width: 4rem;
    height: 4rem;
}

.modal-wrap--big .modal__content {
    padding: 1rem;
}

.modal-wrap--big .modal__container {
    max-width: 105rem;
}

.modal-dialog {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 24px 24px 32px;
    width: 520px;
}

.modal-header, .modal-body, .modal-footer {
    display: flex;
    justify-content: center;
}

.modal-header, .modal-body {
    margin-bottom: 24px;
}

.modal-header .modal-title {
    font-family: var(--solomon);
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    color: var(--blue);
    text-align: center;
}

.modal-body .modal-text {
    font-family: var(--solomon);
    font-weight: 400;
    font-size: 16px;
    color: var(--lightblue);
    text-align: center;
    max-width: 310px;
}

/*region cookies-notify */
.cookies-notify {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
    background: rgb(0 0 0 / 65%);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 1.25rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;

}

.cookies-notify.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookies-notify-content {
    display: flex;
    max-width: 1215px;
    background-color: #FFFFFF;
    color: var(--lightblue);
    padding: 1.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    justify-content: space-between;
    align-items: center;
}

.cookies-notify .cookies-notify__title {
    display: none;
    font-size: 1.25rem;
    color: var(--blue);
}

.cookies-notify .cookies-notify__text {
    margin: 0 1rem;
    flex: 1;
}

.cookies-notify a {
    color: var(--deepblue);
}

.cookies-notify a:hover {
    color: var(--accent);
}
/*endregion */

.roistat-multiwidget-pulsator-holder svg {
    max-width: none;
}

#body .b24-widget-button-position-bottom-right {
    right: 15px;
    bottom: 90px;
}

body.no-scroll {
    overflow: hidden;
    height: 100vh;
}


#body #header {
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 50 !important;
    width: 100%;
}

#header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--blue);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

#body.js-scroll #header::after {
    opacity: 1;
}

#header .container {
    position: relative;
}

.header-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    z-index: 50;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#header .header-wrapper {
    margin: 20px 0;
    transition: all 0.3s;
}

#header .header-wrapper.hidden {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

#header .header-wrapper > * {
    padding: 0 5px;
}

#header .socnetwork-item-link {
    width: 30px;
    height: 30px;
}

#header .socnetwork-item-link[data-type="phone"] {
    display: none;
}

#header .socnetwork-item-link img {
    width: 16px;
}

#header .header-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}


#header .header-contacts .phone-item {
    display: block;
    margin-bottom: 6px;
    font-family: var(--solomon);
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
}

#header .header-contacts .email-item {
    font-size: 17px;
    line-height: 21px;
}

#header .header-contacts :is(.phone-item, .email-item) {
    color: var(--blue);
}

#body.banner-page #header .header-contacts :is(.phone-item, .email-item),
#body.js-scroll #header .header-contacts :is(.phone-item, .email-item),
#header.js-mobile-menu-open  .header-contacts :is(.phone-item, .email-item) {
    color: #FFFFFF;
}

#header .header-contacts :is(.phone-item:hover, .email-item:hover),
#body.banner-page #header .header-contacts :is(.phone-item:hover, .email-item:hover) {
    color: var(--accent);
}

#header .header-button {
    padding: 16px 40px;
    font-weight: 500;
}

#header .header-logo img {
    display: block;
    width: 100%;
    min-width: 130px;
    max-width: 228px;
    transition: all .3s;
}

#header .header-logo .light {
    display: none;
    opacity: 0;
}

#header .header-logo .dark {
    display: block;
    opacity: 1;
}

#body.js-scroll #header .header-logo .light {
    display: block;
    opacity: 1;
}

#body.js-scroll #header .header-logo .dark {
    display: none;
    opacity: 0;
}

#body.banner-page #header .header-logo .light {
    display: block;
    opacity: 1;
}

#body.banner-page #header .header-logo .dark {
    display: none;
    opacity: 0;
}

#header.js-mobile-menu-open .header-logo .light {
    display: block;
    opacity: 1;
}

#header.js-mobile-menu-open .header-logo .dark {
    display: none;
    opacity: 0;
}

#mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    z-index: 10;
    padding: 140px 0 0;
    opacity: 0;
    background: #1E2353;
    background: linear-gradient(0deg, rgba(30, 35, 83, 1) 0%, rgba(67, 78, 185, 1) 100%);
    pointer-events: none;
    transform: translateY(-100%);
    transition: transform .6s ease, opacity .2s ease;;
}

#header.js-mobile-menu-open #mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}



#mobile-menu .mobile-menu-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: none;
    padding: 0 20px;
}

#mobile-menu .mobile-menu-wrapper > * {
    padding-bottom: 40px;
}

#mobile-menu .header-contacts.mobile {
    flex-direction: row;
    margin-top: auto;
}


nav.breadcrumbs {
    margin-top: 146px;
}

#body.banner-page nav.breadcrumbs {
    position: absolute;
    z-index: 1;
    margin-top: 0;
    top: 146px;
    width: 100%;
}

.promred-description {
    font-size: 22px;
    line-height: 28.6px;
    text-align: left;
    color: var(--lightblue);
}

/*region promred-table-wrapper */
.table-wrapper {
    overflow-y: auto;
    overflow-x: auto;
}
.table-wrapper table {
    width: 100%;
}
.promred-table-wrapper {
    overflow-y: auto;
    overflow-x: auto;
    margin-bottom: 40px;
    align-self: center;
    width: fit-content;
    max-width: 100%;
}

.promred-table-wrapper table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.promred-table-wrapper table thead {
    background-color: var(--bg2);
    position: sticky;
    top: 0;
    z-index: 1;
}

.promred-table-wrapper table thead td {
    text-align: center !important;
}

.promred-table-wrapper table tbody tr:nth-child(odd) {
    background-color: var(--bg2);
}

.promred-table-wrapper table:has(thead) tbody tr:nth-child(odd) {
    background-color: #FFFFFF;
}

.promred-table-wrapper table:has(thead) tbody tr:nth-child(even) {
    background-color: var(--bg2);
}



.promred-table-wrapper table td, .promred-table-wrapper table th {
    border-bottom: 1px solid var(--deepblue);
    padding: 16px 8px;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
}

.promred-table-wrapper table td:first-child, .promred-table-wrapper table th:first-child {
    text-align: left;
}

.promred-table-wrapper table td strong {
    color: var(--blue);
    font-family: var(--solomon);
    font-weight: 600;
}

.promred-table-wrapper p {
    margin: 0;
}
/*endregion*/

/*region page-404 */
.page-404-wrapper {
    display: flex;
    align-items: center
}

.page-404-item {
    flex: 1;
}

.page-404-item:first-child {
    margin-right: 150px;
}

.page-404-item-title {
    margin-bottom: 16px;
    font-size: 40px;
    font-family: var(--solomon);
    font-weight: 600;
    line-height: 48px;
    color: var(--blue);
}

.page-404-item-description {
    font-size: 18px;
    font-family: var(--solomon);
    font-weight: 400;
    line-height: 23px;
    text-align: left;
    color: var(--lightblue);
    margin-bottom: 40px;
}

.page-404-button {
    display: block;
    font-family: var(--solomon);
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    padding: 20px 50px;
    background-color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 5px;
    min-width: max-content;
    max-width: 312px;
}

.page-404-button:hover {
    background-color: #fff;
    color: var(--accent);
    transition: all .3s;
}

/*endregion*/

/*region page-reviews */
#main #video-reviews {
    margin-top: 100px;
}

/*endregion */

/*region company-page */
.description-wrapper .description-title {
    font-family: var(--solomon);
    font-weight: 700;
    font-size: 56px;
    line-height: 68px;
    text-align: left;
    color: var(--blue);
}

.description-wrapper .description-title span {
    color: var(--accent);
}

.description-wrapper .description-text {
    font-family: var(--solomon);
    font-weight: 400;
    font-size: 22px;
    line-height: 29px;
    text-align: left;
    color: var(--lightblue);
}

.description-wrapper .description-text span {
    font-family: var(--solomon);
    font-weight: 600;
}

.description-wrapper .advantages-title {
    font-family: var(--solomon);
    font-weight: 700;
    font-size: 22px;
    line-height: 29px;
    text-align: left;
    color: var(--blue);
}

.description-wrapper .description-advantages ul {
    margin-top: 16px;
}

.description-wrapper .description-advantages ul,
.description-wrapper .description-advantages ul li {
    list-style: disc;
}

.description-wrapper .description-advantages ul li {
    font-family: var(--solomon);
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    text-align: left;
    color: var(--lightblue);
    margin-left: 2%;
}

.description-wrapper .description-image {
    display: flex;
    justify-content: center;
}

.description-wrapper .description-image img {
    border-radius: 20px;
    width: 100%;
    max-height: 680px;
    object-fit: cover;
}

/*endregion*/


.about-block .about-block-wrapper {
    display: flex;
}

.about-block .about-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-block .about-content-text {

}

.about-block .about-content-subtitle {
    font-family: var(--solomon);
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
}

.about-block .about-image {
    width: auto;
    /*height: 680px;*/
    min-width: 400px;
    max-width: 710px;
    flex: none;
    border-radius: 30px;
    overflow: hidden;
}

.about-block .about-image img {
    object-fit: cover;
    display: block;
    height: 100%;
}

.about-block .about-content-description {
    font-size: 24px;
    line-height: 29px;
    color: #1E2353B2;
}

.about-block .about-content-description p {
    margin: 16px 0 24px;
}

.about-block .about-content-description :is(ul, ol) {
    margin: 16px 0 24px;
}

.about-block .about-content-description > :first-child {
    margin-top: 0;
}

.about-block .about-content-description > :last-child {
    margin-bottom: 0;
}

.about-block.reverse .about-block-wrapper {
    flex-direction: row-reverse;
}

.about-block.reverse .about-image img {
    object-fit: cover;
}

.company-page .about-block .about-image img {
    object-position: -90px 80px;
}

.about-block.reverse .about-image {
    background: linear-gradient(244.29deg, rgba(135, 165, 192, 0.6) 31.91%, rgba(255, 255, 255, 0.6) 98.15%);
}

.specs-block .specs-block-wrapper {
    display: flex;
    justify-content: space-between;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 70px 0;
}

.specs-block .specs-content-description ol {
    list-style-position: inside;
}

.specs-block .specs-content-description {
    margin: -5px 0;
    font-size: 24px;
    line-height: 29px;
    color: #1E2353B2;
}

.specs-block .specs-content-description > * {
    padding: 5px 0;
}

.specs-block .specs-content-description > p span {
    font-family: var(--solomon);
    font-weight: 700;
}

.specs-block .specs-item {
    max-width: 266px;
    min-width: 230px;
    margin-bottom: 70px;
}

.specs-block .specs-content .specs-item:nth-child(odd) {
    align-self: flex-end;
}

.specs-block .specs-content .specs-item:last-child {
    align-self: center;
}

.specs-block .specs-item-title {
    width: fit-content;
    font-family: var(--solomon);
    font-weight: 500;
    font-size: 32px;
    line-height: 39px;
    color: var(--accent);
}

.specs-block .specs-item-description {
    width: fit-content;
    font-size: 20px;
    line-height: 24px;
}

.specs-block .specs-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* quote */
.quote-block {
    background-color: #87A5C099;
}

.quote-block .quote-block-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 0;
    text-align: center;
    width: 94%;
}

.quote-block .quote-content {
    font-family: var(--solomon);
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
}

.quote-block .quote-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quote-block .quote-contact .quote-fio {
    font-family: var(--solomon);
    font-weight: 500;
    font-size: 32px;
    line-height: 39px;
    margin: 18px 0 6px;
}

.quote-block .quote-contact .quote-post {
    font-size: 18px;
    line-height: 21px;
    color: #1E235380;
}

.quote-block .quote-avatar {
    width: 195px;
    height: 195px;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 100%;
}

.quote-block .quote-avatar img {
    display: block;
    object-fit: cover;
}

.quote-block .quote-content span {
    color: var(--accent);
}

/* tags */
.articles-tags-content {
    margin-bottom: 20px;
}

.articles-tags-content .articles-tags {
    display: flex;
    flex-wrap: wrap;
    margin: -4px;
}

.articles-tags .articles-tag {
    font-family: var(--solomon);
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    text-align: left;
    padding: 8px 12px;
    margin: 4px;
    background-color: var(--bg2);
    border-radius: 100px;
    border: 1px solid var(--lightgray);
    cursor: pointer;
}

/* policy */
.policy-content p {
    font-family: var(--solomon);
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    text-align: left;
    color: var(--lightblue);
    margin: 16px 0;
}

.policy-content ul, .policy-content ul li {
    list-style: disc;
    margin: 16px 0;
}

.policy-content ul li {
    font-family: var(--solomon);
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    text-align: left;
    color: var(--lightblue);
    margin-left: 2%;
}

.policy-content ol, .policy-content ol li {
    list-style: decimal inside;
    margin: 16px 0;
}

.policy-content ol li {
    font-family: var(--solomon);
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    text-align: left;
    color: var(--lightblue);
    margin-left: 2%;
}

.policy-content a {
    color: var(--blue);
    transition: color .3s;
    font-family: var(--solomon);
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
}

.policy-content.reminder a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.policy-content a:hover {
    color: var(--accent);
    transition: color .3s;
}


.about-content ul,
.about-content ol {
    padding-bottom: 10px;
}

.about-content ul li,
.about-content ol li {
    position: relative;
    padding-left: 30px;
    padding-top: 10px;
}

.about-content ul li::before,
.about-content ol li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--lightblue);
    display: inline-block;
    position: absolute;
    left: 12px;
    top: 20px
}

.about-content ol li {
    list-style: none;
    counter-increment: item 1;
}

.about-content ol li:before {
    content: counter(item) ". ";
    background: none;
    top: 10px;
    left: 6px;
}

/*region details */
.details .details-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: -20px;
}

.details .details-top > * {
    margin: 20px;
}

.details table td, .details table th {
    text-align: left;
}

.details table td:first-child, .details table th:first-child {
    min-width: 440px;
}
/*endregion*/

/*region pay-and-delivery */
.calc {
    display: flex;
    justify-content: space-between;
}

.map-wrapper img {
    width: 100%;
}
/*endregion*/

.show-more-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 40px;
}

/* footer */
#footer {
    background: #1E2353;
}

.footer-flex-top {
    display: flex;
    margin: 0 -20px;
    padding: 56px 0 0px 0;
}

.footer-flex-top > div {
    padding: 0 25px;
}

.footer-flex-bottom {
    display: flex;
    color: #fff;
    border-top: 1px solid #FFFFFF1A;
    margin-top: 32px;
    padding-top: 32px;
    padding-bottom: 56px;
    justify-content: space-between;
}

.footer-flex-bottom .footer-copy {
    opacity: 0.5;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
    text-align: left;
}

.footer-flex-top .footer-flex-logo {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.footer-flex-top .footer-slogan {
    font-family: var(--solomon);
    font-weight: 400;
    font-size: 16px;
    line-height: 19.36px;
    text-align: left;
    color: #F5F5F5;
    padding: 24px 0;
    width: 65%;
}

.footer-flex-contacts .contact-item {
    display: flex;
    align-items: center;
    padding-bottom: 24px;
}

.footer-flex-contacts .contact-item a,
.footer-flex-contacts .contact-item span {
    font-size: 18px;
    font-weight: 500;
    line-height: 21.78px;
    text-align: left;
    color: #fff;
}

.footer-flex-bottom .footer-menu a {
    transition: 0.4s;
    padding: 0 20px;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.36px;
    text-align: left;
    color: #FFFFFF80;
}

.footer-flex-bottom .footer-menu {
    margin: 0 -20px;
}

.footer-flex-bottom .footer-menu a:hover {
    color: #FD0805;
}

.footer-flex-contacts .contact-item svg {
    min-width: 40px;
    margin-right: 16px;
}

.footer-flex-top .footer-flex-menu {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0;
}

.footer-flex-top .footer-flex-contacts {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.footer-flex-top .header-logo img {
    max-width: 152px;
}

.container-inner .container-inner {
    padding: 0;
}



.faq-wrapper {
    /*margin: 0px 0 100px 0;*/
}

.faq-wrapper [data-role="content"] {
    display: none;
    border-radius: 0px 0px 7px 7px;
    padding: 0px 16px 16px 16px;
    border-top: none;
    font-size: 16px;
    line-height: 19.36px;
    text-align: left;
    color: #1E2353;
    max-width: 850px;
}

.faq-wrapper [data-action="toggle"] {
    padding: 16px 16px 16px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-family: var(--solomon);
    font-weight: 700;
    font-size: 24px;
    line-height: 29.05px;
    text-align: left;
    color: #1E2353;
    transition: 0.4s;
}

.faq-wrapper [data-role="item"] {
    border-bottom: 1px solid #2A73FF;
    transition: 0.4s;
}

.faq-wrapper [data-expanded="true"] [data-action="toggle"] {
    color: #2A73FF;
}

.faq-wrapper [data-role="item"][data-expanded="true"] {
    border-color: #6D7897;
}

.request-open-form {
    background: linear-gradient(244.29deg, #87A5C0 31.91%, #FFFFFF 98.15%);
    border-radius: 30px;
    position: relative;
    margin: 100px 0;
}

.request-open-form.blue {
    background: var(--blue);
    overflow: hidden;

}

.request-open-form .request-image {
    /*background-image: url(/images/standartny_s_polym_valom_novy.png);*/
    background-image: url(/images/request-form.png);
    top: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    width: 45%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.request-open-form.blue .request-image {
    width: 40%;
}

.request-open-form .request-content {
    width: 50%;
    padding: 70px;
}

.request-open-form.blue .request-content {
    width: 60%;
}

.request-open-form.blue .request-content .request-title {
    color: #FFFFFF;
    font-size: 56px;
    font-weight: 500;
    line-height: normal;
    width: 65%;
}

.request-open-form .request-content .description-txt {
    font-size: 22px;
    line-height: 28.6px;
    text-align: left;
    color: #6D7897;
    padding: 16px 0 40px;
}

.request-open-form.blue .request-content .description-txt {
    color: var(--lightgray);
    padding: 16px 0;
}

.request-open-form .request-content .request-btn {
    padding: 18px 30px;
}

.request-open-form.blue .request-content .request-btn {
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
}

* {
    padding: 0;
    margin: 0;
    border: none;
}

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

html, body {
    scroll-behavior: smooth;
}

*:target {
    scroll-margin-top: 150px;
}

/* Links */

a:hover {
    transition: all .4s;
}

a, a:link, a:visited, a:hover {
    text-decoration: none;
    transition: all .4s;
}

a.email-item {
    word-break: break-all;
}

/* Common */

aside, nav, footer, header, section, main {
    display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
    font-weight: inherit;
}

h1.page-title {
    font-family: var(--solomon);
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    text-align: left;
    color: var(--blue);
}

ul, ul li {
    list-style: none;
}

section ul li {
    position: relative;
}

img {
    vertical-align: top;
}

img, svg {
    max-width: 100%;
    height: auto;
}

address {
    font-style: normal;
}

/* Form */

input, textarea, button, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
    display: none;
}

button, input[type="submit"] {
    display: block;
    box-shadow: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

label {
    cursor: pointer;
}

legend {
    display: block;
}

body {
    font-family: var(--solomon);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: var(--blue);
}

body.no-scroll {
    overflow: hidden;
}

.normal-position {
    object-position: center center !important;
}

.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.tags-wrapper .tag {
    margin-bottom: 10px;
    margin-right: 10px;
}

.tag {
    display: block;
    padding: 10px 16px;
    width: fit-content;
    min-width: max-content;
    border-radius: 30px;
    font-family: var(--solomon);
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    background: #F3F8FC;
    color: var(--blue);
}

#main > :is(div, section):not(:first-child),
#main > :is(div, section):only-child {
    margin: 150px 0;
}

.company-page > #main > :is(div, section):not(:first-child),
.another-page > #main > :is(div, section):not(:first-child),
.another-page > #main > :is(div, section):only-child {
    margin: 100px 0;
}

.mb24 {
    margin-bottom: 24px;
}

.mb40 {
    margin-bottom: 40px;
}

.mt24 {
    margin-top: 24px;
}

.mt40 {
    margin-top: 40px;
}

.mr24 {
    margin-right: 24px;
}

.ml24 {
    margin-left: 24px;
}

.h2-title {
    font-family: var(--solomon);
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    color: var(--blue);
}

.h2-title > span {
    color: var(--accent);
}

.h3-title {
    font-family: var(--solomon);
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: var(--deepblue);
}

.h3-title.dark {
    color: var(--blue);
}

.container {
    max-width: 1560px;
    min-width: 280px;
    width: 100%;
    margin: 0 auto;
}

.container-inner {
    padding: 0 20px;
}

.button {
    transition: all .3s;
}
.button svg {
    width: 24px;
    height: 24px;
    margin: auto 10px;
}

.main-button {
    display: block;
    font-family: var(--solomon);
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    cursor: pointer;
    padding: 20px 50px;
    background-color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 5px;
    width: fit-content;
    min-width: max-content;
    color: #fff;
    transition: all .3s;
}

.main-button:hover {
    background-color: #fff;
    color: var(--accent);
    transition: all .3s;
}

.second-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 40px;
    min-width: max-content;
    width: fit-content;
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    font-family: var(--solomon);
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #fff;
    cursor: pointer;
    transition: all .3s;
}

.second-button:hover {
    transition: all .3s;
    background-color: #fff;
    color: var(--accent);
}

#body.another-page .second-button,
#mobile-menu .second-button {
    color: var(--accent);
    background-color: #fff;
    border: 1px solid var(--accent);
}

#body.another-page .second-button:hover,
#mobile-menu .second-button:hover {
    color: #fff !important;
    background-color: var(--accent);
}

.transparent-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 40px;
    min-width: max-content;
    width: fit-content;
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    font-family: var(--solomon);
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #fff;
    cursor: pointer;
    transition: all .3s;
}

.transparent-button:hover {
    color: var(--accent);
    border: 1px solid var(--accent);
}

.white-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 30px;
    min-width: max-content;
    width: fit-content;
    border: 1px solid var(--accent);
    border-radius: 5px;
    font-family: var(--solomon);
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: var(--accent);
    background: #FFFFFF;
    cursor: pointer;
    transition: all .3s;
}

.white-button:hover {
    color: #FFFFFF;
    background: var(--accent);
}

.mobile-show {
    display: none;
}

.delimiter-prom {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.mobile-menu-burger {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 50;
    width: 30px;
    height: 18px;
    cursor: pointer;
    margin-left: 60px;
}

.mobile-menu-burger span {
    height: 2px;
    width: 100%;
    background-color: var(--blue);
    transform: scale(1);
    transition: all .3s ease 0s;
}

#body.banner-page .mobile-menu-burger span,
#body.js-scroll .mobile-menu-burger span,
#header.js-mobile-menu-open .mobile-menu-burger span {
    background-color: #FFFFFF;
}

.mobile-menu-burger::before,
.mobile-menu-burger::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: var(--blue);
    transition: all .3s ease 0s;
}

#body.banner-page .mobile-menu-burger::before,
#body.banner-page .mobile-menu-burger::after,
#body.js-scroll .mobile-menu-burger::before,
#body.js-scroll .mobile-menu-burger::after,
#header.js-mobile-menu-open .mobile-menu-burger::before,
#header.js-mobile-menu-open .mobile-menu-burger::after {
    background-color: #FFFFFF;
}

.mobile-menu-burger::before {
    top: 0;
}
.mobile-menu-burger::after {
    bottom: 0;
}

.mobile-menu-burger.active span {
    transform: scale(0);
}

.mobile-menu-burger.active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0, -50%);
}
.mobile-menu-burger.active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0, 50%);
}

.scroll-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    z-index: 9999;
    transition: all .3s;
}

@media all and (max-width: 1480px) {
    #header .header-logo img {
        max-width: 158px;
    }
}

@media all and (max-width: 1280px) {
    .mobile-show {
        display: block;
    }

    #header .header-contacts:not(.mobile) {
        display: none;
    }

    #header .header-callback:not(.mobile) {
        display: none;
    }

    #header .socnetwork-item-link {
        width: 54px;
        height: 54px;
    }

    #header .socnetwork-item-link[data-type="phone"] {
        display: flex;
    }

    #header .socnetwork-item-link img {
        width: 24px;
    }

    nav.breadcrumbs {
        margin-top: 115px;
    }

}

@media all and (max-width: 1200px) {
    .about-block .about-image {
        max-width: 50%;
    }
}

@media all and (min-width: 1025px) {
    .specs-block .specs-block-wrapper .specs-text {
        max-width: 50%;
    }

    .specs-block .specs-content {
        margin-right: 100px;
    }

    .about-block:not(.reverse) .about-image {
        margin-right: 100px;
    }

    .about-block.reverse .about-content {
        margin-right: 100px;
    }
}

@media all and (max-width: 1024px) {
    .company-page > #main > :is(div, section):not(:first-child),
    .another-page > #main > :is(div, section):not(:first-child),
    .another-page > #main > :is(div, section):only-child {
        margin: 40px 0;
    }

    .container-inner {
        padding: 0 40px;
    }

    h1.page-title {
        font-size: 32px;
        line-height: 39px;
    }


    .main-button {
        padding: 18px 30px;
        font-size: 18px;
    }

    /*region promred-table-wrapper */
    .promred-table-wrapper table td, .promred-table-wrapper table th {
        font-size: 16px;
        line-height: 20px;
    }
    /*endregion*/

    /*region details */
    .details table td:first-child, .details table th:first-child {
        min-width: 320px;
    }
    /*endregion*/

    /* 404 */
    .page-404-item:first-child {
        margin-right: 40px;
    }

    .page-404-item:last-child img {
        height: 500px;
    }

    /* about-block */
    .about-block .about-block-wrapper {
        flex-direction: column !important;
    }

    .company-page .about-block .about-image img {
        object-position: center center;
    }

    .about-block .about-image {
        max-width: 50%;
        min-width: 100%;
        margin-bottom: 100px;
        width: 100%;
        height: auto;
    }

    .about-block .about-content-description {
        font-size: 20px;
        line-height: 24px;
    }

    /* contacts */
    #main > .contacts {
        margin-top: 40px !important;
    }

    /* footer */
    .footer-flex-top {
        margin: 0;
        flex-direction: column;
    }

    .footer-flex-top > div {
        padding: 0;
    }

    .footer-flex-top .footer-flex-menu,
    .footer-flex-top .footer-flex-contacts {
        max-width: 100%;
        margin-top: 50px;
    }

    .footer-flex-top .footer-slogan {
        width: 100%;
    }

    /* specs-block */
    .specs-block .specs-block-wrapper {
        flex-direction: column-reverse;
        background-position: -85% 100%;
        background-size: 120%;
        padding: 0;
    }

    .specs-block .specs-content {
        margin-top: 40px;
    }

    .specs-block .specs-item {
        margin-bottom: 100px;
    }

    .specs-block .specs-content .specs-item:nth-child(odd) {
        align-self: center;
    }

    .specs-block .specs-content .specs-item:nth-child(odd):not(:first-child) {
        margin-left: 30%;
    }

    .specs-block .specs-content .specs-item:last-child {
        margin-right: 30%;
    }

    .request-open-form.blue .request-content .request-title {
        font-size: 40px;
        width: 100%;
    }


}

@media all and (max-width: 768px) {

    .about-block .about-image {
        margin-bottom: 40px;
    }
    .container-inner {
        padding: 0 20px;
    }

    h1.page-title {
        font-size: 30px;
        line-height: 34px;
    }

    /*region promred-table-wrapper */
    .promred-table-wrapper table td, .promred-table-wrapper table th {
        font-size: 14px;
        line-height: 18px;
    }
    /*endregion*/

    /*region details */
    .details .details-top {
        margin: -10px;
    }

    .details .details-top > * {
        margin: 10px;
    }

    .details table td:first-child, .details table th:first-child {
        min-width: unset;
    }
    /*endregion*/

    /* about-block */
    .about-block .about-image img {
        height: 680px;
    }

    /* specs-block */
    .specs-block .specs-block-wrapper {
        background-position: -20% 105%;
        background-size: 150%;
    }

    .specs-block .specs-content {
        flex-wrap: wrap;
        justify-content: normal;
    }

    .specs-block .specs-item {
        max-width: 35%;
    }

    .specs-block .specs-content .specs-item:nth-child(odd) {
        align-self: flex-end;
    }

    .specs-block .specs-content .specs-item:nth-child(odd):not(:first-child) {
        margin-left: 0;
    }


    /* company-page */
    .description-wrapper .description-title {
        font-size: 32px;
        line-height: 39px;
    }

    .request-open-form .request-image {
        width: 50%;
        background-size: contain;
        background-position: right;
    }

    .request-open-form.blue .request-image {
        background-size: cover;
        background-position: center;
    }

    .request-open-form.blue .request-content {
        padding: 50px;
    }


    /*region cookies-notify */
    .cookies-notify {
        height: 100%;
    }

    .cookies-notify-content {
        flex-direction: column;
    }

    .cookies-notify-content > *:not(:last-child) {
        margin: 0 0 1rem;
    }

    .cookies-notify-content .cookies-notify__title {
        display: flex;
    }

    .cookies-notify-content .cookies-notify__description {
        text-align: center;
    }

    .cookies-notify-content .cookies-notify__button {
        width: 100%;
        padding: 0.75rem;
    }
    /*endregion */
}

@media all and (max-width: 640px) {
    .modal__content {
        padding: 1.2rem;
    }

    .specs-block .specs-block-wrapper {
        background-position: -20% bottom;
        background-size: 250%;
    }

    .specs-block .specs-item {
        max-width: 50%;
    }

    .mobile-menu-burger {
        margin-left: 20px;
    }

    #header .socnetwork-item-link {
        width: 40px;
        height: 40px;
    }
}

@media all and (max-width: 530px) {


    .modal-dialog {
        width: 440px;
    }
}

@media all and (max-width: 479px) {
    .modal-dialog {
        width: 338px;
    }

    .modal-header .modal-title {
        font-size: 28px;
    }
}

@media all and (max-width: 1435px) {
    #header .header-contacts .phone-item {
        font-size: 20px;
        line-height: 23px;
    }

    #header .header-contacts .email-item {
        font-size: 16px;
        line-height: 18px;
    }

    .second-button {
        padding: 13px 25px;
        font-size: 16px;
        line-height: 19px;
    }
}

@media all and (max-width: 640px) {
    .request-open-form {

    }

    .request-open-form .request-content {
        width: 100%;
        padding: 70px 30px;
    }

    .request-open-form .request-content .request-btn {
        width: 100%;
        text-align: center;
    }

    .request-open-form .request-image {
        width: 100%;
        position: static;
        padding-bottom: 100%;
        margin-bottom: -20%;
    }

    .request-open-form.blue .request-content,
    .request-open-form.blue .request-image {
        width: 100%;
    }
}

@media all and (max-width: 560px) {
    .h2-title {
        font-size: 32px;
        line-height: 38.73px;
    }
}

@media all and (max-width: 480px) {
    .header-wrapper {
        align-items: center;
    }

    .modal__content {
        padding: 0.2rem;
    }

    .tags-wrapper .tag {
        min-width: fit-content;
    }

    .main-button {
        text-align: center;
        width: 100%;
        padding: 20px 0;
    }

    h1.page-title {
        font-size: 28px;
        line-height: 30px;
    }

    /* footer */
    .footer-flex-bottom {
        flex-direction: column;
    }

    .footer-flex-bottom .footer-menu {
        margin: 0;
    }

    .footer-flex-bottom .footer-menu a {
        padding: 30px 0 0;
        width: 100%;
    }

    /* 404 */
    .page-404-wrapper {
        flex-direction: column-reverse;
    }

    .page-404-item:first-child {
        margin: 16px 0 0;
    }

    .page-404-item:last-child img {
        height: 270px;
    }

    .page-404-button {
        max-width: 100%;
    }

    /* quote */
    .quote-block .quote-content {
        font-size: 32px;
        line-height: 39px;
    }

    /* specs-block */
    .specs-block .specs-content .specs-item:last-child {
        align-self: flex-start;
    }

    .specs-block .specs-block-wrapper {
        background-position: -10% bottom;
        background-size: 400%;
    }

    /* about-block */
    .about-block .about-content-description {
        font-size: 16px;
        line-height: 20px;
    }

    .about-block .about-image img {
        height: 360px;
    }

    .request-open-form.blue .request-content {
        padding: 40px 15px;
    }

    .request-open-form.blue .request-content .request-title {
        font-size: 30px;
    }
}

/*
@media all and (max-width:460px) {
	.main-button {
		text-align: center;
		width: 100%;
	}
}*/
@media all and (max-width: 360px) {
    .container-inner {
        padding: 0 10px;
    }

    .scroll-to-top {
        right: 10px;
    }

    .about-block .about-image img {
        height: 250px;
    }
}