.iterior-background{
    background-image: url('/static/img/interior/interior_background_img_sixth.jpg');
    /* background-image: url('/static/img/interior/main-img-new1.JPG'); */
    /* background-image: url('/static/img/interior/main-img-new2.JPG'); */
    /* background-image: url('img/other/BB1_8249-HDR(5).jpg'); */
    /* background-image: url('/static/img/other/BB1_8269-HDR(5).jpg'); */
    
    
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-bottom: 40px;
}

.footer{
    background-color: #FFFFFF;
}

.footer *{
    color: #333
}

.footer-right p{
    color: grey;
}

.uvisible{
    display: none;
}



                                                    /*HEADER*/
.header-panelCcontainer {
    position: relative;
}

.header{
    margin-bottom: 150px;
}

.header-nav{
    display: flex;
    height:80px;
    align-items: center;
    padding:10px 20px 0 20px;
}

.header-logo{
    height: 80px;
    margin-right: auto  ;
}

.header-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.header-list li a {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    font-size: 18px;
    position: relative;
    transition: color 0.3s ease;
}

.header-list li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 1);
    transition: width 0.3s ease;
}

.header-list li a:hover::after {
    width: 100%;
}

.showMore,
.CloseButton {
    cursor: pointer;
    display: none;
}

.showMore img,
.CloseButton img {
    filter: brightness(0) invert(1);
}

.panelInformation {
    display: none;
    padding: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 1);
    width: 100%;
    box-sizing: border-box;
}

.header-panelCcontainer.panel-open .panelInformation {
    display: block !important;
}

.panelInformation p,
.panelInformation address,
.panelInformation a {
    color: #333333 !important;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.panelInformation address {
    font-style: normal;
}

.panelInformation-tgLogo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.panelInformation-tgLogo p {
    margin: 0;
}

.panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
}

.panel-overlay.active {
    display: block;
}

body.panel-open {
    overflow: hidden;
}



                                         /* FOOTER */

.footer{
    padding:30px 40px;
}                                        

.footer-content{
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
}

.footer-right{
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.footer-right p{
    line-height: 1.2;
    margin: 0;
    width:70px;
}

.footer-telegrammLink{
    width: 20px;
    height: 20px;
    margin-right: 20px;
}



@media (max-width: 1180px) {
    .showMore {
        display: block !important;
    }
    
    .header-list li:not(.showMore):not(.CloseButton) {
        display: none;
    }

    .header-panelCcontainer.panel-open .header-list {
        position: fixed;
        top: 0;
        right: 0;
        width: 200px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 1);
        z-index: 999;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 10px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        display: flex;
        overflow-y: auto;
    }
    
    .header-panelCcontainer.panel-open .header-list li {
        display: block !important;
    }
    
    .header-panelCcontainer.panel-open .header-list li a {
        color: #333333 !important;
        font-size: 18px;
    }
    
    .header-panelCcontainer.panel-open .header-list li a::after {
        background-color: #333333;
    }

    .header-panelCcontainer.panel-open .showMore {
        display: none !important;
    }
    
    .header-panelCcontainer.panel-open .CloseButton {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 1000;
    }
    
    .header-panelCcontainer.panel-open .CloseButton img {
        filter: none;
    }

    .header-panelCcontainer.panel-open .panelInformation {
        display: block;
        margin-top: auto;
        width: 200px;
        padding:0
    }

    .header-panelCcontainer.panel-open {
        position: static;
    }
}

@media (max-width: 768px) {
    .header-nav{
        padding:0 20px;
    }
}



@media (max-width: 480px) {
    .header-panelCcontainer.panel-open .header-list {
        width: 150px;
        right: 0;
    }
}