.header_top {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}
.header_top.container{
    padding: 10px 15px;
}
.header_top-logo-image {
    max-width: 115px;
}

.header_top-lk {
    display: flex;
    gap: 20px;
}

.btn {
    cursor: pointer;
    padding: 14px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: .5s;
}

.btn_outline {
    border: 1px solid #2b47a9;
    color: #b42533;
}

.btn_blue {
    background: #2b47a9;
    color: #fff;
}
.btn_blue:hover {
    background: #b42533;
}

.header_bot {
    padding: 10px 0;
    background: #f8f8f8;
}

.header_bot .container{
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.header_catalog {
    max-width: 170px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.header_list {
    display: flex;
    align-items: center;
    gap: 50px;
}

.header_link {
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #262626;
    transition: .3s;
}
.header_link.active, .header_link:hover {
    color: #b42533;
}

.header_city-block {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header_city-item {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}
.btn_block-header{
    display: flex;
    align-items: center;
    gap: 20px;
}
.header_city-link{
    color: #262626;
}

.footer_top {
    padding: 60px 0;
    background: #f8f8f8;
}

.footer_top .container {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.footer_top-info {
    max-width: 370px;
}

.footer_top-info-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #2b47a9;
    margin-bottom: 23px;
}

.footer_top-info-desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: #262626;
}

.footer_top-block {
    display: flex;
    align-items: start;
    gap: 10px;
    justify-content: space-between;
    max-width: 534px;
    width: 100%;
}

.footer_top-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #262626;
    margin-bottom: 24px;
}

.footer_top-nav-list {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.footer_top-nav-link {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: #262626;
}

.footer_top-address-list {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.footer_top-address-link{
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: #262626;
    display: flex;
    align-items: start;
    gap: 5px;
}
.footer_top-address-link a{
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: #262626;
}

.footer_bot p{
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.02em;
    color: #2b47a9;
    padding: 24px 0;
}
.contacts_block-item {
    border: 1px solid rgba(225, 225, 225, 0.35);
    border-radius: 12px;
    box-shadow: -4px 8px 14px 0 rgba(38, 38, 38, 0.16);
    padding: 20px 10px 8px 38px;
}

.contacts_block_item-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 159%;
    color: #2b47a9;
    margin-bottom: 30px;
    cursor: pointer;
}

.contacts_block_item-info {
    display: flex;
    align-items: start;
    gap: 5px;
}

.contacts_block_item-info-title {
    text-transform: capitalize;
    color: #262626;
    font-weight: 600;
    font-size: 16px;
    line-height: 159%;
    margin-bottom: 30px;
    max-width: 75px;
    width: 100%;
}

.contacts_block_item-info-phone a{
    text-transform: lowercase;
    color: #262626;
    font-size: 16px;
    line-height: 159%;
    margin-bottom: 30px;
    font-weight: 400;
}

.header_city-hover{
    background: #fff;
    display: none;
    position: absolute;
    z-index: 10;
    top: 20px;
    width: 325px;
    left: -115px;
    padding: 15px;
}
.header_city-item:hover .header_city-hover{
    display: block;
}
.header_lang{
    margin: 0 10px;
    cursor: pointer;
}
.burger_show{
    display: none;
    height: 50px;
}
.header{
    position: fixed;
    top: 0;
    background: #ffffff;
    width: 100%;
    z-index: 100;
}
.wrapper{
    padding-top: 180px;
}
.burger_wrapper{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(32, 31, 31, 0.55);
    z-index: 1000;
    display: none;
}
.burger_body{
    display: none;
    position: fixed;
    top: 10px;
    right: 10px;
    left: 10px;
    z-index: 1001;
    background: #fff;
    border-radius: 6px;
}
.burger_body .header_top-lk{
    display: flex;
}
.burger_close{
    padding-bottom: 20px;
    padding-right: 30px;
}

.login_popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.54);
    z-index: 100;
}

.login_body {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 600px;
    width: 100%;
    background: #ffffff;
    border-radius: 6px;
    padding: 80px 100px;
}

.login_close {
    position: absolute;
    right: 20px;
    top: 0;
    font-size: 50px;
    font-weight: 200;
}

.login_form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login_form-label{
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
}
.login_form-label span{
    font-size: 12px;
    line-height: 140%;
    color: #2b47a9;
    padding-left: 15px
}

.login_form-input{
    border: 1px solid #b9b9b9;
    border-radius: 6px;
    padding: 7px 15px;
    font-size: 12px;
    line-height: 140%;
    color: #212121;
}

.login_form-label svg{
    position: absolute;
    right: 20px;
    top: 30px;
    cursor: pointer;
}

.login_form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.remember_me_login{
    font-size: 16px;
    line-height: 140%;
    text-transform: capitalize;
    color: #262626;
}

.login_form-send {

}

.header_top-login{
    display: flex;
    align-items: center;
    gap: 15px;
}

@media  (max-width: 1100px){
    .contacts_block_item-title{
        margin-bottom: 10px;
        font-size: 14px;
    }
    .contacts_block-item{
        padding: 15px;
    }
    .contacts_block_item-info-title{
        margin-bottom: 0;
        font-size: 14px;
    }
    .contacts_block_item-info-phone a{
        font-size: 14px;
    }
    .header_bot, .header_top-lk{
        display: none;
    }
    .burger_show{
        display: block;
    }
    .burger_bottom{
        display: flex;
        align-items: start;
        gap: 10px;
        justify-content: space-around;
        padding-bottom: 40px;
    }
    .catalog_main{
        font-weight: 600;
        font-size: 32px;
        line-height: 130%;
        color: #262626;
        margin-bottom: 30px;
        display: block;
    }
    .burger_link{
        font-weight: 600;
        font-size: 32px;
        line-height: 130%;
        text-transform: uppercase;
        color: #262626;
    }
    .burger_list{
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-bottom: 30px;
    }
    .burger_body .header_top{
        margin-bottom: 30px;
    }
    .burger_catalog{
        width: 100%;
        max-width: 380px;
    }
    .burger_catalog-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .burger_catalog-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-weight: 400;
        font-size: 16px;
        line-height: 140%;
        text-transform: capitalize;
        color: #262626;
        margin-bottom: 10px;
    }

    .burger_catalog-item{
        border-bottom: 1px solid #000;
    }

    .burger_catalog-item-wrapper{
        display: none;
    }

    .burger_catalog-item-items {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding-bottom: 15px;
    }

    .burger_catalog-items-link {
        font-weight: 400;
        font-size: 16px;
        line-height: 140%;
        text-transform: capitalize;
        color: #262626;
    }
    .burger_catalog-title svg{
        transition: 0.3s;
    }
    .burger_catalog-title.active svg{
        transform: rotate(45deg);
    }
    .burger_catalog-title.active svg path{
        stroke: #b42533;
    }
    .header_lang{
        display: none;
    }
    .burger_body .header_lang{
        display: flex;
    }
    .wrapper{
        padding-top: 145px;
    }
}

@media (max-width: 800px) {
    .header_city-block{
        flex-direction: column;
        align-items: start;
    }
    .burger_body .header_top-logo-image{
        max-width: 60px;
    }
    .burger_catalog{
        max-width: 250px;
    }
    .burger_show{
        padding: 10px;
        height: 40px;
    }
    .footer_top .container{
        gap: 60px;
        flex-direction: column-reverse;
        text-align: center;
        align-items: center;
    }
    .footer_top-block{
        gap: 60px;
        flex-direction: column;
        align-items: center;
    }
    .footer_top-address-link{
        flex-direction: column;
        align-items: center;
    }
    .footer_bot p{
        text-align: center;
    }
}

@media (max-width: 540px) {
    .header_top-logo-image{
        max-width: 60px;
    }
    .burger_bottom{
        justify-content: space-between;
    }
    .burger_link, .catalog_main{
        font-size: 20px;
    }
    .burger_catalog-title, .burger_catalog-items-link{
        font-size: 14px;
    }
    .burger_catalog{
        max-width: 150px;
    }
    .burger_close{
        padding-right: 0;
        position: absolute;
        right: 10px;
        top: 10px;
        width: 15px;
    }
    .burger_body .header_top-lk{
        gap: 5px;
        padding-right: 15px;
    }
    .burger_body .btn{
        font-size: 12px;
        padding: 10px;
    }
    .burger_body .header_top{
        gap: 3px;
    }
}
