@charset "UTF-8"; /* Указание кодировки */

@font-face {
    font-display: swap;
    font-family: "RT Font";
    font-style: normal;
    font-weight: 400;
    src: url("font/BasisGrotesquePro-Regular-Web.woff2") format("woff2"),
         url("font/BasisGrotesquePro-Regular-Web.woff") format("woff");
}
@font-face {
    font-display: swap;
    font-family: "RT Font";
    font-style: normal;
    font-weight: 500;
    src: url("font/BasisGrotesquePro-Medium-Web.woff2") format("woff2"),
         url("font/BasisGrotesquePro-Medium-Web.woff") format("woff");
}
@font-face {
    font-display: swap;
    font-family: "RT Font";
    font-style: normal;
    font-weight: 600;
    src: url("font/BasisGrotesquePro-Bold-Web.woff2") format("woff2"),
         url("font/BasisGrotesquePro-Bold-Web.woff") format("woff");
}

/* Общие стили */
* {
    outline: 0;
    margin: 0; /* Сокращено margin-block-start и margin-block-end */
    padding: 0; /* Добавлено для полного сброса */
    box-sizing: border-box; /* Добавлено для лучшего управления размерами */
}

.s { fill: #777; }

.br {
    border-radius: 4px;
}

.opacity-img {
    opacity: 0.8;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: "RT font", Verdana, Arial, Helvetica, sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #101828;
    line-height: 1.6; /* Добавлено для лучшей читаемости текста */
}

p {
    margin-bottom: 1em;
}

a {
    color: #e65100;
    text-decoration: none;
    transition: color 0.3s ease; /* Добавлено плавное изменение цвета */
}

a:hover {
    color: #cc4100; /* Немного затемненный цвет при наведении */
    text-decoration: underline; /* Добавлено подчеркивание при наведении */
}

/* HEADER */
.wrap {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
}

.head-logo {
    order: 2;
    flex-grow: 1;
    display: inline-flex;
    font-size: 0;
}

.head-logo-inner {
    position: relative;
    display: inline-block;
    color: #333;
    text-decoration: none;
}

.head-logo-sp {
    display: inline-block;
    position: relative;
    z-index: 65;
    color: inherit;
    font-size: 16px;
    line-height: 15px;
    text-decoration: none;
    width: 270px;
    height: 58px;
    padding-bottom: 1px;
    text-indent: -1000px;
    background: url('../images/logo.svg') no-repeat;
	background-size: contain;
}

#header .planka-top {
    padding: 10px;
    text-align: center;
    background: #ff615d;
    color: #fff;
    display: none;
}

#header .header-inner-main-page {
    position: absolute;
    z-index: 3;
    top: -10px;
    left: 0;
    width: 100%;
    color: #666;
}

#header .header-inner {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header .header-top {
    padding-top: 32px;
    margin-bottom: 26px;
    text-rendering: optimizespeed;
    font-size: 0.9em;
}

#header .header-logo img {
    width: 270px;
    height: auto;
}

#header .header-phone__main-phone::before {
    content: "\e80a";
    font-family: FontAwesome;
    color: #e65100;
}

#header .header-slogan {
    color: #8495ad;
}

#header .header-phone {
    font-weight: 500;
    position: relative;
    text-align: right;
    line-height: 1.2em;
}

#header .header-phone__main-phone {
    display: inline-block;
}

#header .header-phone > svg {
    position: absolute;
    right: -10px;
    top: 50%;
    width: 7px;
    height: 4px;
}

#header .header-phone__main-phone:hover .header-phone__popup {
    display: block;
}

#header .header-phone__link {
    text-decoration: none;
    color: #424242;
}

#header .header-phone__popup {
    position: absolute;
    z-index: 3;
    top: 28px;
    right: -10px;
    display: none;
    border: 1px solid #ccc;
    min-width: 198px;
    min-height: 30px;
    padding: 10px;
    background: #fff;
    color: #222;
    white-space: nowrap;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
    animation: spoiler 0.3s ease;
}

#header .header-phone__popup-item {
    border-bottom: 1px solid #dadada;
}

#header .header-phone__popup-item:last-child {
    border-bottom: none;
}

#header .header-phone__popup-link-phone {
    color: #222;
    text-decoration: none;
}

#header .header-phone__popup-link-phone > p {
    display: block;
    font-size: 0.6em;
    margin-top: 2px;
    color: #008aa4;
}

#header .header-phone__popup-link-email {
    font-size: 0.8em;
    color: #222;
}

#header .header-phone__popup-link-email:hover {
    text-decoration: none;
}

#header .header-btn-callback {
    text-align: right;
}

#header .header-btn-callback__link {
    margin-right: 3px;
    font-size: 0.85em;
    text-decoration: none;
    border-bottom: 1px dotted #8495ad;
    color: #8495ad;
    font-family: "Source Sans Pro", Helvetica, sans-serif;
}

#header .header-btn-callback__link:hover {
    border: none;
}

#header .header-btn-zayvka__link {
    padding: 10px 20px;
}

#header .menu-line-main-page {
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
}

#header .menu-line {
    border-top: 1px solid #efefef;
}

#header .header-form {
    position: relative;
    width: 100%;
}

#header .header-form__inner {
    position: absolute;
    right: 30px;
    margin-top: calc(50vh - 258px);
}

#header .header-slider {
    position: relative;
}

#header .header-slider__img {
    background-position: center;
    background-size: cover;
    height: 100%;
    width: 100%;
}

#header .header-slider__shadow {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#header .header-slider__inner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 660px;
}

#header .header-slider__offer {
    position: absolute;
    z-index: 3;
    top: 33%;
    left: 0;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 5px;
}

#header .header-slider__title {
    font-size: 2.8em;
    margin: 0 0 10px 0;
}

#header .header-slider__desc {
    line-height: 1.4;
    margin: 0 0 20px 0;
    font-size: 1.1em;
}

#header .header-slider__price {
    margin: 0 auto;
    font-size: 2.2em;
}

#header .header-slider__btn {
    display: flex;
    margin-top: 30px;
}
/* wrapper */
.wrapper {
    padding: 50px 0 0 0;
}

.wrapper-main-page {
    padding: 30px 0;
}

.wrapper-inner {
    display: flex;
}

/* SIDEBAR */
#sidebar {
    margin-right: 60px;
    width: 270px;
    min-width: 270px;
}

/* CONTENT */
.content-box {
    width: 100%;
}

.content-box p,
.content-box ul,
.content-box ol {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.content-box p {
    margin: 0 0 10px;
    text-align: justify;
}

.content-box ul,
.content-box ol {
    margin: 10px 0 20px 5%;
}

.content-box ul {
    list-style: square;
}

.content-box ol {
    list-style: decimal;
}

.content-box ul li,
.content-box ol li {
    line-height: 1.5;
}

.content-box img {
    max-width: 100%;
    height: auto;
}

.content-box b,
.content-box strong {
    font-weight: 600;
}

.content-box sup {
    position: relative;
    top: -0.5em;
    font-size: small;
}

.content-box sub {
    position: relative;
    top: 0.5em;
}

.content-box .note {
    //font-family: TheinhardtPanMedium-Regular, "Source Sans Pro", Helvetica, sans-serif;
    font-size: 1.1rem;
    margin: 25px 0 10px 25px;
}

.content-box blockquote {
    font-size: 0.85em;
    text-align: justify;
    margin: 10px 0 20px;
    padding: 0.85em 20px;
    position: relative;
    color: #606770;
    border-left: 4px solid #f2360c;
    background: #f9f9f9;
    line-height: 1.5em;
}

.content-box .img-fluid {
    margin: 20px 0;
}

/* h1-h6 */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #101828;
    letter-spacing: 0.01em;
}

.content-box h1,
.content-box h2,
.content-box h3,
.content-box h4,
.content-box h5 {
    font-weight: 600;
    font-variant-caps: all-petite-caps;
}

.content-box .left {
    float: left;
    margin: 6px 20px 12px 0;
    border: 3px solid #999;
}

.content-box .right {
    float: right;
    margin: 6px 0 12px 20px;
    border: 3px solid #999;
}

.index {
    text-align: center;
    border: none;
}

.content-box h1 {
    font-size: 30px;
    margin: 20px 0;
}

.content-box h2 {
    font-size: 28px;
    margin: 27px 0 20px;
}

.content-box h3 {
    font-size: 26px;
    margin: 27px 0 20px;
}

.content-box h4 {
    font-size: 24px;
    margin: 27px 0 20px;
}

.content-box h5 {
    font-size: 20px;
    color: #a22829;
    margin-top: 40px;
    text-align: center;
}

/* Таблицы */
.content-box table {
    width: 100%;
    font-size: 0.9em;
    margin: 20px 0;
    border-collapse: collapse; /* Добавлено для схлопывания границ */
}

.content-box th,
.content-box td {
    border: 1px solid #dedede;
    padding: 0.6rem 0.2rem;
    text-align: center;
    vertical-align: middle;
}

.content-box th {
    text-transform: uppercase;
    background: #5c6684;
    color: #fff;
    font-size: 0.9em;
    letter-spacing: 0.05em;
    padding: 15px 5px;
}

.content-box tr:nth-child(odd) {
    background: #f9f9f9;
}

.content-box tr:hover {
    background-color: #f1f1f1;
}

.content-box td:hover {
    background: #e65100;
    color: #fff;
}

.content-box table td:first-child {
    text-align: center;
    padding-left: 5px;
}

.content-box tr > .sample {
    padding: 10px;
    width: 120px;
    background: #fff;
    vertical-align: middle;
}

td span::before {
    margin-left: 3px;
    content: "\f158";
    font-family: FontAwesome;
    font-size: 0.9em;
    color: #8d97b5;
}

/* BREADCRUMBS */
.content-box .breadcrumb {
    font-weight: 200;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #ececec;
    list-style: none; /* Добавлено для удаления стилей списка */
    padding: 0; /* Добавлено для удаления отступов списка */
    margin: 0; /* Добавлено для удаления отступов списка */
}

.content-box .breadcrumb li,
.content-box .breadcrumb a {
    text-decoration: none;
    color: #e65100;
}

.content-box .breadcrumb a:hover {
    color: #999;
}

.content-box .breadcrumb li + li::before { /* Изменено на ::before */
    content: "/";
    padding: 0 10px;
    color: #bbb;
}

.content-box .breadcrumb li,
.content-box .breadcrumb .active,
.content-box .breadcrumb > * {
    color: #999;
}

/* FOOTER */
#footer .footer__top {
    padding: 50px 0 40px;
    background: #122b3c;
    background-size: cover;
}

#footer .footer__top .stl {
    padding: 0 40px;
}

#footer .footer__logo img {
    height: auto;
    margin: 15px 0;
}

#footer .footer__text {
    margin-bottom: 17px;
    color: #adb2b6;
    font-size: 0.9em;
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: 0.02em;
    text-align: center;
}

#footer .footer__hr {
    width: 100%;
    height: 2px;
    margin-bottom: 32px;
    background: #969ba5;
}

#footer .footer__phone {
    font-size: 1.5em;
    text-align: center;
}

#footer .footer__phone a {
    color: #969ba5;
    text-decoration: none;
}

#footer .header-phone__link,
#footer .header-phone__popup-link-email {
    display: none;
}

.footer__item3 {
    margin-top: 15px;
    font-size: 0.85em;
    text-align: center;
}

#footer .footer__mail {
    margin-bottom: 2px;
}

#footer .footer__mail a {
    color: #969ba5;
    text-decoration: none;
}

#footer .footer__mail a::before { /* Изменено на ::before */
    content: "\e801";
    font-family: FontAwesome;
    font-size: 0.9em;
    margin-right: 8px;
}

#footer .footer__address {
    color: #969ba5;
}

#footer .footer__address::before { /* Изменено на ::before */
    content: "\e802";
    font-family: FontAwesome;
    margin-right: 3px;
    font-size: 1.1em;
}

#footer .footer__menu-title {
    margin: 20px 0;
    font-size: 1.2em;
    text-transform: uppercase;
    color: #fff;
}

#footer .footer__menu-title::after { /* Изменено на ::after */
    content: "";
    width: 40px;
    height: 2px;
    background: #969ba5;
    display: block;
    margin: 15px 0;
}

#footer .footer__menu a {
    display: block;
    font-size: 0.9em;
    margin-bottom: 17px;
    color: #adb2b6;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 0.025em;
}

#footer .footer__menu a:hover {
    color: #fff;
}

#footer .footer__bottom {
    padding: 30px 0;
    background: #191f26;
}

#footer .footer__social ul {
    display: flex;
    list-style: none; /* Добавлено для удаления стилей списка */
    padding: 0; /* Добавлено для удаления отступов списка */
    margin: 0; /* Добавлено для удаления отступов списка */
}

#footer .footer__social ul li {
    padding-left: 25px;
}

#footer .footer__social a {
    color: #728089;
    font-size: 1.5em;
}

#footer .footer__social a:hover {
    color: #727888;
}

#footer .footer__copyright {
    color: #adb2b6;
    font-size: 0.8em;
    line-height: 1.3;
}

#footer .footer__copyright a {
    color: #728089;
}

.footer__social {
    margin: 5px 0;
}

/* BITRIX */
[id^="bx_incl"] {
    display: inline;
}

#footer .footer_logo {
    width: 100%;
    display: flex;
    overflow: auto;
    font-size: 0;
}

#footer .footer_logo_inner {
    margin: auto;
}

#footer .footer_logo_white {
    width: 285px;
    height: 37px;
    margin: 17px auto;
    display: block;
    background: url('../images/footer-logo.svg') no-repeat;
	background-size: contain;
}

/* Gradient footer */
.footer::before { /* Изменено на ::before */
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 6px;
    background-image: linear-gradient(to right, #6fbe2e 19%, #00bbd6 43%, #0f61a9 57%, #5a39a0 81%);
}

.form-elements {
    background: #f9f9f9;
    border: 1px solid #ccc;
    outline: 0;
}

.btn-shadow {
    background-size: 200% 100%, auto, 100% 2px, 100% 2px, 100% 1px, 100% 1px;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
    background-repeat: no-repeat;
    background-position: -200% 0, 0 0, 0 0, 0 100%, 0 4px, 0 calc(100% - 4px);
    animation: shine 5s ease reverse infinite;
    box-shadow: 0 9px 40px 0 rgba(50, 50, 50, 0.9);
}

.section-main-page {
    margin-bottom: 100px;
}

.section-main-page-title {
    margin-bottom: 40px;
    text-align: center;
    font-size: 2em;
}

.section-link-all {
    position: sticky;
    z-index: 2;
    bottom: 5px;
    right: 0;
}