.elementor-24 .elementor-element.elementor-element-19612d6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(min-width:768px){.elementor-24 .elementor-element.elementor-element-19612d6{--content-width:1440px;}}/* Start custom CSS *//* ==================== ROOT ПЕРЕМЕННЫЕ ==================== */
:root {
    --black: #1D1D1D;
    --mobile-gap: 15px;
    --red: #BB2639;
}

/* ==================== ОСНОВНЫЕ СТИЛИ ФУТЕРА ==================== */

footer .container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: flex-start;
    grid-template-areas: 'logo menus search' 'logo menus contacts' 'copyright subscribe contacts';
    row-gap: 50px;
    overflow: hidden;
    
    border-top: 2px solid #000;
    padding: 40px 0 100px;
}

footer .container:before, 
footer .container:after {
    display: none;
}

/* ==================== ЛОГОТИП ==================== */
.footer_logo-wrapper {
    grid-area: logo;
}

.footer_explanation {
    font-size: 20px;
    margin: 50px 0 0 0;
}

/* ==================== МЕНЮ КАТАЛОГА ==================== */
.footer-col__catalog {
    grid-area: menus;
    font-size: 23px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}

.footer-col__catalog-item {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 100%;
    gap: 1em;
}

.footer-col__catalog-item li {
    font-family: 'Decima Nova Pro';
    display: flex;
}

.footer-col__link {
    color: #000;
    text-decoration: none;
}

.footer-col__link:hover {
    color: #c03;
}

/* ==================== ФОРМА ПОИСКА ==================== */
.footer_search-form {
    grid-area: search;
    position: relative;
}

.footer_search-form input {
    width: 100%;
    border: 1px solid #e4e4e4;
    line-height: 1;
    padding: 5px 10px 3px;
    border-radius: 4px;
}

.footer_search-form button {
    background: url(../images/i-search.svg) center no-repeat;
    width: 17px;
    height: 17px;
    border: none;
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
}

/* ==================== КОНТАКТЫ ==================== */
.footer_contacts {
    grid-area: contacts;
    text-align: center;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.footer-col__social-top {
    margin: 40px 0 0 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.footer-col__social {
    margin: auto 0 0 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* ==================== СОЦИАЛЬНЫЕ ИКОНКИ ==================== */
.footer_social-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: inherit;
    text-decoration: none;
}

.footer_social-item :where(img, svg) {
    width: 30px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.footer_social-item-big {
    display: flex;
}

.footer_social-item-big :where(img, svg) {
    width: 40px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

/* ==================== ТЕЛЕФОН ==================== */
.footer-col__phone {
    background: url(../images/i-phone-bug.svg) left no-repeat;
    font-family: "Decima Nova Pro";
    font-size: 33px;
    color: var(--black);
    text-decoration: none;
    padding-left: 24px;
    width: fit-content;
}

.footer_work-hours {
    margin: 35px 0 0 0;
}

/* ==================== КОПИРАЙТ ==================== */
.footer_copyright {
    grid-area: copyright;
    max-width: 100%;
    align-self: center;
}

/* ==================== ФОРМА ПОДПИСКИ ==================== */
.footer_subscribe-form {
    grid-area: subscribe;
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer_subscribe-form__input {
    font-size: 16px;
    padding: 1em;
    line-height: 1em;
    background: #F7F7F7;
    border-radius: 6px;
    border: none;
    width: 286px;
    min-width: 0;
    max-width: 100%;
}

.footer_subscribe-form__send {
    background: var(--black);
    color: white;
    font-size: 16px;
    padding: 1em 1.25em;
    border-radius: 6px;
    flex-shrink: 0;
    border: none;
    line-height: 1em;
}

/* ==================== АДАПТИВНОСТЬ ФУТЕРА ==================== */
@media (max-width: 1280px) {
    footer .container {
        grid-template-columns: 100%;
        grid-template-areas: 'menus' 'search' 'contacts' 'subscribe';
    }
    
    .footer_logo-wrapper {
        display: none;
    }
    
    .footer_copyright {
        display: none;
    }
}

@media (max-width: 992px) {
    .footer {
        align-items: center;
        flex-direction: column;
    }
    
    .footer-col:nth-child(1) {
        display: none;
    }
    
    .footer-col:nth-child(4) {
        width: 100%;
        text-align: center;
    }
    
    .footer-col:nth-child(4) input {
        padding: 15px 10px 13px;
    }
    
    .footer-col:nth-child(4) button {
        width: 37px;
        height: 37px;
    }
    
    .footer-col__phone {
        font-size: 34px;
    }
    
    .footer-col__catalog-item {
        list-style-type: none;
        text-align: center;
    }
    
    .footer-col {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-col2 {
        width: 70%;
        margin: 0 10px 0 0;
    }
    
    .footer-col__catalog {
        gap: 20px;
    }
    
    .footer_search-form {
        width: 100%;
    }
    
    .footer-col .footer-col__social, 
    .contacts-col__social {
        justify-content: center;
    }
    
    .footer-col .footer-col__social a, 
    .contacts-col__social a {
        margin: 0 15px;
    }
}

@media (max-width: 480px) {
    footer .container {
        row-gap: 0;
    }
    
    .footer_search-form {
        margin: 10px 0 0 0;
    }
    
    .footer-col__catalog {
        font-size: 14px;
    }
    
    .footer_contacts {
        margin: 40px 0 0 0;
    }
    
    .footer-col__social-top {
        margin: 30px 0 0 0;
    }
    
    .footer_subscribe-form {
        display: grid;
        grid-template-columns: 100%;
        gap: 10px;
        margin: 20px 0 0 0;
    }
    
    .footer_subscribe-form__input {
        width: 100%;
    }
    
    .footer-col__social {
        margin: 30px 0 0 0;
        gap: 70px;
    }
    
    .footer_work-hours {
        margin: 25px 0 0 0;
        font-size: 14px;
    }
    
    .footer-col__phone {
        font-size: 32px;
    }
    
    .footer_social-item {
        font-size: 14px;
    }
    
    .footer_social-item :where(img, svg) {
        width: 20px;
    }
    
    .footer_social-item-big :where(img, svg) {
        width: 30px;
    }
}

/* ==================== ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ СОЦИАЛЬНЫХ ССЫЛОК ==================== */
.footer-col__social a:hover svg .fill-hover, 
.contacts-col__social a:hover svg .fill-hover, 
.top-search:hover svg path {
    fill: #c03;
}

.footer-col__social-top a:hover, 
.footer-col__social-top a:hover svg path, 
.contacts-col__social-top a:hover, 
.contacts-col__social-top a:hover svg path {
    fill: #c03;
    color: #c03;
    text-decoration: none;
}

.contacts-col__social {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.contacts-col__social-top, 
.contacts-col__social {
    justify-content: flex-start;
}

.contacts-col__social a {
    position: relative;
}

.contacts-col__social a .star {
    color: #c03;
    font-size: 24px;
    position: absolute;
    top: -8px;
    right: -3px;
    font-weight: 900;
}

.social-warning {
    color: #c03;
    margin-top: 5px;
}

@media (max-width: 900px) {
    .contacts-col__social {
        gap: 0;
    }
}

@media (max-width: 600px) {
    .contacts-col__social-top {
        justify-content: center;
    }
}

.footer-col2 {
    width: 50%;
    font-size: 14px;
    font-family: 'Decima Nova Pro';
}/* End custom CSS */