﻿
/*footer*/
.footerBg {
    display:none;
    position: absolute;
    right: 0;
    bottom: 62px;
}
.footerCover {
    background-color: black;
    padding: 28px 50px;
}

.footerWrapper {    
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.footerWrapper img{
    position:relative;
}
.footerBottomWrapper{
    margin-top:50px;
}
.footerBottom {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    align-items: center;
}
.footerBottomLeft {
    display: flex;
}
.footerBottomLeft ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
.footerBottomLeft ul li {
    margin-right: 40px;
}
    .footerBottomLeft ul li:last-child{
        margin-right: 0;
    }
.footerBottomLeft ul li a {
    text-decoration: none;
    color: white;
    font-size: 14px;
}

.footerBottomRight {
    display: flex;
    flex-direction: column;
}
.footerBottomLogo{
    width:300px;
    height:45px;
}
.copyright {
}

    .copyright p {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        letter-spacing: 0.0025em;
        color: #8B8B9D;
        text-align: left;
    }
    .copyright img {
        padding-left: 24px;
        max-width: 158px;
    }

.sitemapWrapper {
    position: relative;
    background-color: black;
    padding: 0 50px 28px 50px;
    overflow: hidden;
}
.sitemapBox {
    margin-top: 100px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menus {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:48px;
    float: left;
    
}
.menuBoxWrapper {
    display: flex;
}
.menuBox {
    color: white;
    display: flex;
    flex-direction: column;
    list-style: none;
    padding-left: 0;
    min-width: 200px;
    margin:0;
}
.mainMenuName {
    color: white;
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 20px;
    text-decoration: none;
    margin-left: 0px;
    margin-right: 10px;
}
    .mainMenuName img {
        width: 24px;
        height: 24px;
      
    }
.mainMenu {
    color: white;
    text-decoration: none;
}

.subMenus {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 14px;
    padding: 0;
}

    .subMenus li {
        list-style: none;
        font-weight: 500;
        line-height: 18px;
    }
.branchesWrapper{
    display:flex;
}
.subMenus li a {
    color: inherit;
    text-decoration: none;
    color: white !important;
    font-size: 15px;
    line-height: 18px;
    text-decoration: none;
    margin-right: 16px;
}
        .subMenus li p {
            color: inherit;
            text-decoration: none;
            color: white !important;
            font-size: 15px;
            line-height: 18px;
            text-decoration: none;
            padding-right: 16px; 
            margin:0;
        }
.sitemap-bold {   
    color: white !important;
    font-weight: 700;
    font-size: 20px;
    line-height: 18px;
    text-decoration: none;
    margin:0;
}
.social-media-icons{
    position: relative;
    display: flex;
    gap:32px;
    justify-content: flex-end;
}
.social-media-icons a {
    text-decoration: none;
}
.footerLogo {
}
/*sitemap f*/

@media screen and (max-width: 992px) {
    .sitemapWrapper {
        padding: 0 20px 28px 20px;
    }
    .sitemapBox {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .sitemap-bold{
        font-size:16px;
    }
    .subMenus li a{
        font-size:14px;
    }
}
@media screen and (max-width: 768px) {
    .footerBg {
        display: flex;
    }
        .footerLogo {
        width: 103px;
    }

    .social-media-icons {
        gap: 16px;
    }

        .social-media-icons a {
            transform: scale(0.8);
        }

    .menuBoxWrapper {
        flex-direction: column;
        gap: 30px;
    }

    .subMenus {
        gap: 5px;
    }
        .subMenus li p {
            font-size: 14px;
        }
        .sitemap-bold {
            font-size: 16px;
        }
    .footerBottomWrapper {
        margin-top: 30px;
    }
    .subMenus li a {
        font-size: 14px;
    }
    .footerBottomLeft ul {
        flex-direction: column;
        gap:5px;
    }
        .footerBottomLeft ul li {
            margin-right: 0px;
            line-height:100%;
        }
    .footerBottomLeft ul li a {
        font-size: 12px;
    }
    .footerBottom {
        flex-direction: row-reverse;
        justify-content: center;
        gap: 50px;
    }
    .copyright p{
        font-size:12px;
    }
    .footerBottomRight {
        width: 250px;
    }
    .footerBottomLogo {
        width: 250px;
        height: 40px;
    }
}
@media screen and (max-width: 480px) {
    .sitemapBox {
        flex-direction: column;
        align-items: baseline;
        gap: 30px;
    }

    .mainMenuName {
        margin-bottom: 15px;
    }
    .footerBottom {
        flex-direction: column-reverse;
        gap: 20px;
        padding-top:20px;
    }
    .footerBg {
        right: -30px;
        bottom: 76px;
    }
}

