/*@import url('https://fonts.googleapis.com/css2?family=Abel&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Oswald:wght@200..700&family=Poiret+One&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Abel&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Oswald:wght@200..700&family=Poiret+One&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Sofia+Sans+Extra+Condensed:ital,wght@0,1..1000;1,1..1000&display=swap');

:root {
    --accentColor: #D66C33;
    --accentColorDark: #B84E15;
    --accentColorLight: #EA9047;
    --accentColorLight2: #FFCE65;
    --accentColorLighter: #FDE3AA;
    --accentColorAlt: #D66C33;
    --primaryColor: #131718;
    --primaryColor2: #1D2122;
    --primaryColor3: #27282C;
    --navHoverBack: #220e1030;
    --backLightColor: #f8f8f8;
    --footerBackColor: var(--primaryColor);

    font-family: Roboto, sans-serif;
    --containerWidth: 1440px;
    --sectionPadding: 80px;
}

@media (max-width: 767px) {
    :root {
        --sectionPadding: 60px;
    }
}

a {
    text-decoration: none;
}

body {
    font-size: 16px;
    line-height: 1.4;
    overflow-wrap: normal !important;
    word-wrap: normal !important;
    color: var(--primaryColor);
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
    }
}

.entry-content {
    /* или overflow-wrap: normal; */
    /*word-wrap: normal!important; */
    /*white-space: normal!important;*/
    /*word-break: keep-all !important;*/
    /*hyphens: none !important;*/

    word-wrap: normal; /* или overflow-wrap: normal; */
    white-space: normal;
    word-break: keep-all;
    hyphens: none;

}

.entry-content a,
.comment-content a,
a {
    color: var(--primaryColor);
    /*text-decoration: underline;*/
}

.entry-content a:hover,
.comment-content a:hover,
a:hover {
    color: var(--accentColorDark);
}

.container {
    max-width: 100%;
    width: 100%;
}

@media (min-width: 1600px) {
    .container {
        max-width: var(--containerWidth);
    }
}

.section {
    padding-top: var(--sectionPadding);
    padding-bottom: var(--sectionPadding);
}

@media (max-width: 767px) {
    .section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.section-hero {
    background-color: var(--primaryColor);
    background-image: url(../images/hero-back.jpg);
    color: white;
    padding: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.section-hero.plastic {
    background-image: url(../images/plastic-hero-img.jpg);
}

@media (max-width: 767px) {
    .section-hero.plastic,
    .section-hero {
        background-image: none;
    }
}

.section-hero h1 {
    font-size: 3.4rem;
    line-height: 1.1;
    font-family: Montserrat, sans-serif;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.hero-content h3 {
    color: var(--accentColorLight);
    text-transform: uppercase;
    margin-bottom: 0;
}

@media (max-width: 1280px) {
    .section-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .section-hero h1 {
        font-size: 1.6rem;
    }
}

.section-hero ul li {
    color: white;
    font-size: 1rem;
    font-weight: 300;
}

.section-hero p {
    color: white;
}

.section-hero ul.cities {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
    padding: 0;
    margin-left: 0;
    margin-bottom: 30px;
}

.section-hero ul.cities li {
    background-color: #00000030;
    color: white;
    border-radius: 40px;
    padding: 6px 15px;
    list-style: none;
    display: flex;
    font-size: 1.125rem;
}

@media (max-width: 767px) {
    .section-hero ul.cities li {
        border-radius: 40px;
        padding: 4px 10px;
        font-size: 1rem;
    }
}

form button,
.buttons-row a,
.hero-buttons a,
.buttons-row button,
.hero-buttons button,
.section-hero a.button-accent,
.button-accent {
    padding: 12px 32px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    width: fit-content;
    background: linear-gradient(180deg, var(--accentColorDark), var(--accentColorLight));
    color: white;
    font-size: 1rem;
    border-radius: 0;
    text-decoration: none !important;
    /*box-shadow: 0 4px 16px #00000020, 0 2px 4px #00000030*/
    box-shadow: 0 4px 24px #68000020, 0 2px 8px #68000040;
}

@media (max-width: 767px) {
    form button,
    .buttons-row a,
    .hero-buttons a,
    .buttons-row button,
    .hero-buttons button,
    .section-hero a.button-accent,
    .button-accent {
        padding: 10px 20px;
    }
}

form button:hover,
.buttons-row a:hover,
.hero-buttons a:hover,
.buttons-row button:hover,
.hero-buttons button:hover,
.section-hero a.button-accent:hover,
.button-accent:hover {
    background: linear-gradient(180deg, var(--accentColor), var(--accentColorLight));
    text-decoration: none !important;
    color: white !important;
}

.buttons-row a:nth-child(2),
.hero-buttons a:nth-child(2),
.buttons-row button:nth-child(2),
.hero-buttons button:nth-child(2),
a.button-secondary,
.button-secondary {
    border: 2px solid transparent; /* Толщина рамки */
    background-image: linear-gradient(var(--primaryColor), var(--primaryColor)), /* Цвет фона */ linear-gradient(180deg, var(--accentColorDark), var(--accentColorLight)); /* Градиент рамки */
    background-origin: border-box;
    background-clip: content-box, border-box;
    padding: 0;
}

.buttons-row a:nth-child(2) span,
.hero-buttons a:nth-child(2) span,
.buttons-row button:nth-child(2) span,
.hero-buttons button:nth-child(2) span,
a.button-secondary span,
.button-secondary span {
    padding: 10px 30px;
}

@media (max-width: 767px) {
    .buttons-row a:nth-child(2) span,
    .hero-buttons a:nth-child(2) span,
    .buttons-row button:nth-child(2) span,
    .hero-buttons button:nth-child(2) span,
    a.button-secondary span,
    .button-secondary span {
        padding: 8px 28px;
    }
}

.buttons-row button:nth-child(2),
.buttons-row a:nth-child(2) {
    color: black !important;
    background-image: linear-gradient(#f8f8f8, #f8f8f8), /* Цвет фона */ linear-gradient(180deg, var(--accentColorDark), var(--accentColorLight)); /* Градиент рамки */
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.buttons-row a:nth-child(2):hover,
.hero-buttons a:nth-child(2):hover,
.buttons-row button:nth-child(2):hover,
.hero-buttons button:nth-child(2):hover,
a.button-secondary:hover,
.button-secondary:hover {
    border: 2px solid transparent; /* Толщина рамки */
    background-image: linear-gradient(var(--accentColor), var(--accentColorLight)), /* Цвет фона */ linear-gradient(180deg, var(--accentColor), var(--accentColorLight)); /* Градиент рамки */
    background-origin: border-box;
    background-clip: content-box, border-box;
    padding: 0;
    color: white !important;
}

.back-accent form button {
    background: var(--accentColorLighter);
    color: black;
    border: 0;
}

.back-accent form button:hover {
    background: white;
    color: black !important;
    border: 0;
}

.section-hero a {
    padding: 10px;
    background-color: white;
    border-radius: 50px;
}

.section-hero a img {
    width: 24px;
    height: 24px;
}

.button-accent img {
    width: 20px;
    height: 20px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 15px;
    row-gap: 10px;
}

@media (max-width: 767px) {
    .hero-buttons {
        column-gap: 10px;
    }
}

.site-main .sidebar-container {
    display: none;
}

.site {
    border: 0;
}

.site {
    max-width: 100%;
    width: 100%;
}

.site-main:has(> .main-page) .entry-header {
    /*max-width: var(--containerWidth);*/
    display: none;
}

.sidebar .entry-header, .sidebar .entry-content, .sidebar .entry-summary, .sidebar .entry-meta {
    /*max-width: var(--containerWidth);*/
    max-width: 720px;
    padding: 0;
}

.site-main:has(> .main-page) .entry-content,
.site-main:has(> .main-page) .entry-summary,
.site-main:has(> .main-page) .entry-meta {
    max-width: 100%;
    width: 100%;
    padding: 0 !important;
}

div:has(> .hero-img) {
    position: relative;
}

.hero-img {
    height: 243px !important;
    width: auto !important;
    object-fit: contain;
    object-position: bottom;
    position: absolute;
    bottom: -36px;
    right: 20px;
}

@media (max-width: 1280px) {
    .hero-img {
        height: 200px !important;
    }
}

@media (max-width: 991px) {
    .hero-img {
        height: 150px !important;
    }
}

@media (max-width: 767px) {
    .hero-img {
        height: 110px !important;
    }
}

.site-main:has(> .main-page) .breadcrumbs {
    display: none;
}

.site-main .site-content article {
    padding: 0;
}

.navbar {
    max-width: 100%;
    width: 100%;
}

.main-navigation {
    max-width: var(--containerWidth);
    width: 100%;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

header .contacts {
    max-width: var(--containerWidth);
    width: 100%;
}

header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
    row-gap: 10px;
}

.header-logo-area {
    display: flex;
    align-items: center;
}

.header-contacts {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

/*

@media (max-width: 1200px) {
    .header-contacts {
        width: 100%;
        justify-content: flex-end;
    }
}
*/

@media (max-width: 767px) {
    .header-contacts {
        column-gap: 10px;
    }
}

.header-contacts a img {
    width: 36px;
    height: 36px;
}

@media (max-width: 767px) {
    .header-contacts a img {
        width: 28px;
        height: 28px;
    }
}

header {
    background: var(--primaryColor2);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0 4px 16px #00000020;
}

header .container {
    /*display: block !important;*/
}

.badge-24-7 {
    margin-left: 40px;
}

header .header-contacts a {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    text-decoration: none;
    color: var(--accentColorLighter);
    font-size: 1.25rem;
    text-wrap: nowrap;
}

header .header-contacts a:hover {
    color: var(--accentColorLight);
}

@media (max-width: 767px) {
    header .header-contacts a {
        font-size: 1.125rem;
    }
}

header .contacts {
    display: none;
}

.main-navigation {
    margin: 0;
    max-width: 100%;
    position: relative;
    width: 100%;
}

ul.nav-menu ul a, .nav-menu ul ul a {
    color: #fff;
    margin: 0;
    width: 300px;
}

.navbar {
    display: flex;
    justify-content: center;
}

.site .navbar {
    padding: 0;
    background-color: var(--accentColor);
}

.nav-menu li > a, .nav-menu li a {
    font-size: 1.125rem;
    color: black !important;
    font-style: normal !important;
}

/*.nav-menu .current_page_item > a, .nav-menu .current_page_ancestor > a, .nav-menu .current-menu-item > a, .nav-menu .current-menu-ancestor > a {
    color: #bc360a;
    font-style: italic;
}*/

@media (max-width: 767px) {
    .nav-menu li > a, .nav-menu li a {
        font-size: 1rem;
    }

    .nav-menu li a {
        padding: 8px 10px;
    }
}

.nav-menu li:hover > a, .nav-menu li a:hover, .nav-menu li:focus > a, .nav-menu li a:focus {
    background-color: var(--navHoverBack);
    color: black;
}

.site .nav-menu .sub-menu,
.site .nav-menu .children {
    background-color: var(--accentColor);
    color: black;
    border: 0;
}

.site .nav-menu li:hover > a,
.site .nav-menu li a:hover,
.site .nav-menu li:focus > a,
.site .nav-menu li a:focus,
.site ul.nav-menu ul a:hover,
.site .nav-menu ul ul a:hover,
.site ul.nav-menu ul a:focus,
.site .nav-menu ul ul a:focus {
    background-color: var(--accentColorDark);
    color: black;
}

.site ul.nav-menu ul a,
.site .nav-menu ul ul a {
    color: black;
    line-height: 1.2;
}

.site ul.nav-menu > li:has(> ul) > a:after {
    content: "▾";
    font-size: 1.25rem;
    color: black;
    margin-left: 8px;
}

.site-main .post-navigation .nav-links {
    padding: 0;
    margin: 0;
    max-width: var(--containerWidth);
    width: 100%;
}

.site .site-content .navigation.post-navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site .site-content .navigation.post-navigation a {
    color: var(--primaryColor);
    text-decoration: none;
}

.site .site-content .navigation.post-navigation a:hover {
    color: var(--primaryColorAlt);
}

.services-block {
    height: 200px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
    width: 100%;
    overflow: hidden;
    text-decoration: none;
    margin-bottom: 15px;
}

.section .services-block h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    padding: 10px 20px;
    backdrop-filter: blur(5px);
    background-color: #00193280;
    width: 100%;
    margin: 0;
}

.services-block:hover {
    text-decoration: none;
}

.section .services-block:hover h3 {
    text-decoration: none;
    color: var(--accentColorAlt);
}

.buttons-row {
    display: flex;
    align-items: center;
    column-gap: 20px;
    row-gap: 10px;
}

@media (max-width: 767px) {
    .buttons-row {
        column-gap: 15px;
    }
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-family: Inter, sans-serif;
    font-weight: 500;
    line-height: 1.2;
    color: black;
}

h2 {
    font-weight: 800;
    /*text-transform: uppercase;*/
    color: var(--accentColorDark);
    font-size: 3rem;

    background: linear-gradient(180deg, var(--accentColorDark), var(--accentColorLight));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h3 {
    font-weight: 500;
    /* text-transform: uppercase; */
    color: var(--primaryColor);
    font-size: 1.75rem;
    font-family: Roboto, sans-serif;
}

h4 {
    font-weight: 500;
    font-size: 1.25rem;
    font-family: Roboto, sans-serif;
}

@media (max-width: 767px) {
    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.15rem;
    }
}

.back-light {
    background-color: var(--backLightColor);
}

.back-dark {
    background-color: var(--primaryColor3);
}

.back-accent {
    background-color: var(--accentColorDark);
}

.illustration-image img,
img.illustration-image {
    background-color: #f0f0f0;
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
    /*height: 100%;*/
    /*min-height: 180px;*/
    aspect-ratio: 1 / 1;
}

.section .row:has(.advantage-block) {
    row-gap: 30px;
}

.advantage-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    column-gap: 15px;
    /*margin-bottom: 20px;*/
    /*justify-content: center;*/
    height: 100%;
}

.advantage-block h5 {
    font-weight: bold;
    /*text-transform: uppercase;*/
    text-transform: none;
    margin: 0;
    font-size: 1.125rem;
    text-align: center;
    min-height: calc(1em * 1.2 * 2);
}

@media (max-width: 991px) {
    .advantage-block {
        display: flex;
        flex-direction: row;
        align-items: center;
        height: auto;
    }

    .advantage-block h5 {
        text-align: start;
        min-height: 1px;
    }
}

.advantage-block p {
    text-align: center;
    margin-bottom: 0;
}

header .search-form {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.advantage-block img {
    height: 106px;
    width: 106px;
    background: linear-gradient(180deg, var(--accentColorDark), var(--accentColorLight));
    padding: 20px;
    border-radius: 3px;
    box-shadow: 0 4px 24px #68000020, 0 2px 8px #68000040;
}

@media (max-width: 767px) {
    .advantage-block img {
        height: 64px;
        width: 64px;
        padding: 15px;
    }
}

.car-fleet {
    display: flex;
    align-items: flex-end;
    padding: 0;
    flex-wrap: wrap;
}

.car-fleet > * {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    font-weight: bold;
    padding: 10px 30px 15px 0;
    font-size: 1rem;
    width: 25%;
}

@media (max-width: 767px) {
    .car-fleet > * {
        padding: 10px 20px 15px 0;
        width: 50%;
        min-width: 50%;
    }
}

.car-fleet img {
    margin-bottom: 10px;
    width: 100%;
}

.car-classes {
    display: flex;
    align-items: flex-end;
    padding: 0;
}

.car-classes > * {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    font-weight: bold;
    padding: 10px 15px;
    font-size: 1rem;
}

.car-classes img {
    margin-bottom: 10px;
}

.car-classes-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-radius: 10px;
}

.car-classes-block h4 {
    text-align: center;
    padding: 10px 15px;
}

.car-classes-block img {
    height: 200px;
    width: 100%;
    object-fit: contain;
}

ol, ul {
    padding-left: 20px;
}

ul li h5 {
    margin-bottom: 0.5rem;
}


.back-illustration {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    min-height: 200px;
}

.header-logo-area a img {
    height: 68px;
}

@media (max-width: 767px) {
    .header-logo-area a img {
        height: 48px;
    }
}

@media (max-width: 500px) {
    .header-logo-area a img {
        height: 36px;
    }
}

@media (max-width: 600px) {
    .badge-24-7 {
        display: none;
    }
}

.section .row {
    row-gap: 15px;
}

.site-footer .section .row {
    row-gap: 30px;
}

@media (max-width: 767px) {
    .col-4:has(.illustration-image) {
        padding: 0 5px;
    }

    /*.row .col-4:first-of-type:has(.illustration-image) {
        padding: 0 5px 0 10px;
    }

    .row .col-4:nth-of-type(3):has(.illustration-image),
    .row .col-4:last-of-type:has(.illustration-image) {
        padding: 0 10px 0 5px;
    }*/
}

.site-footer {
    background-color: var(--footerBackColor);
    color: var(--primaryColor);
    font-size: 1rem;
    text-align: start;
    padding-top: 60px;
    padding-bottom: 60px;
}

.site-footer .footer-nav > ul {
    padding-left: 0;
}

.site-footer .footer-nav li {
    padding: 5px 0;
}

.site-footer .footer-nav li a {
    text-decoration: none;
    color: var(--primaryColor);
}

.site-footer .footer-nav li a:hover {
    text-decoration: none;
    color: var(--accentColorDark);
    padding: 5px 0;
}

a.phone-link,
.phone-link {
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    color: black;
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 15px;
}

.phone-link img {
    height: 24px;
    width: 24px;
}

.site-footer .phone-link img {
    height: 20px;
    width: 20px;
}

.phone-link:hover {
    color: var(--accentColorDark);
}

.site-main .breadcrumbs {
    max-width: 720px;
    margin: 0 auto;
    padding: 20px 20px;
}

.requisites {
    opacity: 0.4;
}

.site-footer h4 {
    font-weight: 800;
}

table td a {
    text-decoration: none;
}

table td span a,
table td a span {
    background-color: #f8f8f8;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    line-height: 1.2;
    width: fit-content;
}

@media (max-width: 767px) {
    table td span a, table td a span {
        background-color: transparent;
        padding: 5px 0;
        border-radius: 0;
        text-decoration: underline;
        display: flex;
        line-height: 1.2;
        width: fit-content;
    }
}

table td a span:after,
table td span a:after {
    content: '›';
    margin-left: 10px;
    font-size: 1em;
}

@media (max-width: 767px) {
    table td a span:after,
    table td span a:after {
        display: none;
    }
}

table td a:hover,
table td a:hover span,
table td span a:hover {
    text-decoration: none;
}

td {
    padding: 6px 10px 6px 10px;
}

@media (max-width: 767px) {
    td {
        padding: 5px 5px 5px 5px;
    }
}

table {
    line-height: 1.3;
}

.site .main-page .site-content .navigation.post-navigation {
    display: none;
}

table caption {
    padding-top: .25rem;
    padding-bottom: .25rem;
    color: black;
    text-align: left;
    caption-side: top;
}

header .logo {
    /*height: 39px;*/
    width: 240px;
    height: auto;
}

header .header-mobile .logo {
    height: auto;
    width: 100px;
}

header .header-mobile {
    height: 64px;
}

header .logo-block {
    padding: 10px 0;
}

.header-navigation {
    display: flex;
    align-items: center;
    /*column-gap: 40px;*/
    padding-left: 0;
    margin-bottom: 0;
    width: fit-content;
}

.header-navigation li {
    list-style: none;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 15px 20px;
}

.header-navigation li ul {
    display: none;
}

.header-navigation li:has(> ul) > a::after {
    content: url('https://planetlux.by/assets/images/icon-arrow-down-white.svg');
    margin: 0 0 0 5px;
}

.header-navigation li:hover > ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 3rem;
    background-color: var(--primaryColor3);
    left: 0;
    padding: 0;
    margin: 0;
}

.header-navigation a {
    font-size: 1rem;
    color: white;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
}

.header-navigation a:hover {
    color: var(--accentColorLight);
}

.service-row {
    padding-top: 20px;
    margin-bottom: 40px;
}

.column-centered {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    align-items: center;
    text-align: center;
}


.modal-photo {
    display: none;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    /*row-gap: 20px;*/
}

.footer-contacts a {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.footer-contacts a img {
    width: 28px;
    height: 28px;
}

.footer-menu ul {
    padding-left: 0;
}

.footer-menu ul li ul {
    padding-left: 20px;
}

.footer-menu ul li {
    list-style: none;
    line-height: 1;
    padding: 10px 0 0 0;
}

.contacts-phone-link {
    font-size: 1.125rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin-bottom: 15px;
}

@media (max-width: 1100px) {
    .header-contacts .messenger {
        display: none;
    }
}

.header-menu-btn {
    background-color: transparent;
    border: none;
    margin: 0 10px 0 10px;
    padding: 0;
    /*display: none;*/
}

.header-menu-btn span {
    background-color: white;
    width: 20px;
    height: 2px;
    display: block;
    margin-bottom: 4px;
    border-radius: 50px;
}

.header-menu-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-mobile {
    width: 100%;
    padding: 0 15px;
}

.btn-menu-close {
    background: none;
    width: 48px;
    height: 48px;
    border: 0;
    outline: none;
}

.aside-contacts {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

aside.off-canvas-wrapper .aside-contacts a,
.aside-contacts a {
    display: flex;
    align-items: center;
    column-gap: 15px;
    color: var(--accentColorLighter);
}

.aside-contacts a img {
    width: 24px;
    height: 24px;
}

.offcanvas-menu-nav ul {
    padding-left: 0;
    margin-left: 0;
}

.offcanvas-menu-nav ul li {
    list-style: none;
    padding: 8px 0;
}

.offcanvas-menu-nav a,
.offcanvas-menu-nav ul li a {
    font-size: 1.125rem;
}

footer .row {
    row-gap: 30px;
}

.wrapper {
    padding-top: 110px;
}

@media (max-width: 991px) {
    .wrapper {
        padding-top: 64px;
    }
}

.a-scroll-overhead.a-scroll-overhead {
    margin-top: -160px;
    padding-top: 160px;
}

.hero-services {
    display: flex;
    column-gap: 20px;
}

.hero-services > * {
    flex: 1;
}

.hero-services-2 {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
    row-gap: 8px;
    padding: 0;
}

.hero-services-2 > * {
    background-color: var(--primaryColor3);
    box-shadow: 0 4px 16px #00000080;
    padding: 4px 10px;
    border-radius: 50px;
    display: flex;
    list-style: none;
}

.hero-content {
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

@media (max-width: 767px) {
    .hero-content {
        padding: var(--sectionPadding) 0;
        row-gap: 20px;
    }
}

.hero-content > * {
    margin-bottom: 0 !important;
}

.header-top {
    height: 30px;
}

.header-middle {
    height: 80px;
}

.header-top-back {
    background-color: var(--primaryColor);
    width: 100%;
}

.header-area > * {
    width: 100%;
}

header p {
    margin-bottom: 0;
    font-weight: 300;
}

.header-contacts .contacts-col {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.hero-prices {
    display: flex;
    column-gap: 50px;
}

.hero-price {
    display: flex;
    flex-direction: column;
}

.hero-price h4 {
    color: var(--accentColorLight);
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 0;
    font-family: Montserrat, sans-serif;

    background: linear-gradient(180deg, var(--accentColor), var(--accentColorLight2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-price p {
    color: white;
    font-weight: 300;
    margin-bottom: 0;
}

.image-back {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 250px;
}

.back-dark .image-back {
    box-shadow: 8px 8px 12px #00000080;
}

.image-back::after {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    height: 101%;
    width: 20%;
    background-size: auto;
    background-repeat: no-repeat;
    background-color: white;
    clip-path: polygon(0 0, 100% 0, 0% 100%);
    pointer-events: none;
}

@media (max-width: 767px) {
    .image-back::after {
        display: none;
    }

    .row:has(.image-back) .col-12 {
        order: 1;
    }

    .row .col-12:has(.image-back) {
        order: 0;
    }
}

section.back-light .image-back::after {
    background-color: var(--backLightColor);
}

section.back-dark .image-back::after {
    background-color: var(--primaryColor3);
}

section.back-accent .image-back::after {
    background-color: var(--accentColorDark);
}

section.back-dark h2 {
    color: var(--accentColorLight);
}

section.back-accent h2 {
    color: white;
    background: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}

section p {
    font-weight: 300;
}

section.back-accent p,
section.back-dark p {
    color: white;
}

section.back-accent a,
section.back-dark a {
    color: white;
    font-weight: 500;
}

section.back-accent a:hover,
section.back-dark a:hover {
    color: var(--accentColorLighter);
}

.service-item {
    display: flex;
    column-gap: 20px;
    padding: 10px;
    background-color: white;
    box-shadow: 0 4px 16px #00000010;
    margin-bottom: 15px;
    align-items: center;
    border-radius: 3px;
}

a.service-item:hover {
    background-color: #fff8f4;
}

.service-item img {
    width: 56px;
    height: 56px;
}

.service-item h4 {
    margin-bottom: 0;
    color: var(--primaryColor3);
}

#section-calculation {
    position: relative;
}


*:has(> .calc-img) {
    position: relative;
}

*:has(> .calc-img) > * {
    z-index: 1;
    position: relative;
}

.calc-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    object-fit: contain;
    z-index: 0 !important;
    opacity: 0.1;
}

.request-form,
form {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.request-form input,
.request-form textarea,
form textarea,
form input {
    width: 100%;
    max-width: 330px;
    font-size: 1rem;
    color: black;
    background-color: white;
    border: 0;
    border-radius: 3px;
    box-shadow: 0 4px 16px #00000020;
    padding: 10px 10px 10px 40px;
}

form button {
    max-width: 330px;
}

.name-input,
.phone-input,
.email-input,
.file-input,
.message-input {
    position: relative;
}

.phone-input::before,
.email-input::before,
.file-input::before,
.message-input::before,
.name-input::before {
    position: absolute;
    top: 11px;
    left: 10px;
    width: 24px;
    height: 24px;
    z-index: 1;
}

.name-input::before {
    content: url("../images/icon-name-input.svg");
}

.phone-input::before {
    content: url("../images/icon-phone-input.svg");
}

.email-input::before {
    content: url("../images/icon-email-input.svg");
}

.message-input::before {
    content: url("../images/icon-message-input.svg");
}

.file-input::before {
    content: url("../images/icon-file-input.svg");
}

.custom-file {
    display: inline-block;
    padding: 10px 10px 10px 0;
    background: transparent;
    color: black;
    cursor: pointer;
}

.custom-file:hover {
    background: transparent;
    color: var(--accentColorDark);
}

#file {
    display: none;
}

#file-name {
    /*font-style: italic;*/
    color: #a0a0a0;
}

font input::placeholder {
    color: #a0a0a0;
}

.file-input {
    width: 100%;
    max-width: 330px;
    font-size: 1rem;
    color: black;
    background-color: white;
    border: 0;
    border-radius: 3px;
    box-shadow: 0 4px 16px #00000020;
    padding: 0 0 10px 40px;
    display: flex;
    flex-direction: column;
}

.section-contacts iframe {
    width: 100%;
    height: 300px;
    border-radius: 3px;
    box-shadow: 0 8px 16px #00000020, 0 2px 8px #00000030;
}

footer .logo {
    width: 240px;
}

footer h3 {
    color: var(--accentColorLight);
}

footer p,
footer h4,
footer a {
    color: white;
}

footer a:hover {
    color: var(--accentColorLighter);
}

.footer-nav {
    display: flex;
    flex-direction: column;
}

.footer-nav a {
    font-size: 1.125rem;
    margin-bottom: 10px;
    font-weight: 400;
}

.section-advantages2 .advantage-block {
    flex-direction: row;
    align-items: start;
    padding: 0 10px 10px 0;
    box-shadow: 8px 8px 16px -8px #00000010;
}

.section-advantages2 .advantage-block img {
    background: none;
    width: 48px;
    height: 48px;
    box-shadow: none;
    padding: 0;
}

.advantage-block div {
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: start;
}

.advantage-block div p {
    text-align: start;
    margin-bottom: 0;
}

.advantage-block div h5 {
    text-align: start;
    margin-bottom: 10px;
    min-height: 1px;
}

.metals img {
    height: 100px;
    width: 100%;
    object-fit: contain;
    object-position: center;
    background-color: white;
    border-radius: 3px;
    margin-bottom: 15px;
    box-shadow: 0 4px 16px #00000010;
}

.metals p strong {
    font-weight: bold;
    color: var(--accentColorDark);
}

.section-hero .illustration-image {
    height: 250px;
    background-size: cover;
    background-position: right;
}

aside.off-canvas-wrapper {
    background-color: var(--primaryColor3);
    color: white;
}

aside.off-canvas-wrapper p,
aside.off-canvas-wrapper a {
    color: white;
}

.section-about h3 {
    color: var(--accentColorLight);
}

.offcanvas-menu-nav li ul {
    padding-left: 1rem;
}