footer {
    padding: 50px 0;
    background-color:#3b3b4b;
    position: relative;
    z-index:1;
}
footer .footer-logo.figure{
    width: 280px;
}

footer .row {
    align-items: end;
}

footer .row .col-lg-6:nth-child(1) {
    position: relative;
}

footer .row .col-lg-6:nth-child(1)::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 60px;
    background-color: var(--white);
    right: 15px;
    bottom: 0;
}

footer h2 {
    /* font-family: 'Poppins', sans-serif; */
    font-weight: bold;
    /* letter-spacing: 3px; */
    font-size: 24px;
    position: relative;
    margin-bottom: 30px;
    color: var(--white);
}

footer h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--orange);
    left: 0;
    bottom: -10px;
}

footer .location {
    display: flex;
    gap: 10px;
    align-items: end;
}
footer .location img{
    filter:invert(1) brightness(10);
}
footer a {
    color: var(--white);
    margin-bottom: 20px;
}

footer p {
    color: var(--white);
}

footer .phone a:nth-child(2) {
    font-weight: 600;
}

footer .branches {
    padding-left: 65px;
    padding-top: 40px;
    display: flex;
    gap: 1rem;
}

footer .branches h2 {
    margin-bottom: 0;
    color: var(--orange);
    font-size: 22px;
}

footer .branches h2::after {
    display: none;
}

footer .branches ul {
    display: flex;
    gap: 30px;
}

footer .branches ul li {
    position: relative;
}

footer .branches ul li:not(:last-child)::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 70%;
    background-color: var(--white);
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
}

footer .branches ul li a {
    color: var(--white);
    font-weight: bold;
    font-size: 20px;
    transition: all .5s ease-in-out;
}

footer .branches ul li a:hover {
    color: var(--orange);
}

.copyright {
    background-color: var(--orange);
    color: var(--white);
    padding: 1rem 0;
}

.copyright .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    font-size: 15px;
}

.copyright ul {
    display: flex;
    gap: 6px;
}

.copyright ul i {
    width: 35px;
    height: 35px;
    background-color: var(--white);
    /* border-radius: 50%; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    clip-path: polygon(0 20%, 50% 0, 100% 20%, 100% 80%, 50% 100%, 0 80%);
}

.footer_orange_bg {
    background-color: var(--copy_bg);
    padding: 10px 0;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    font-size: 18px;
    background-color: var(--orange);
    color: var(--white);
    cursor: pointer;
    padding: 10px 15px;
    border: solid 2px var(--white);
    z-index: 999;
    border-radius: 20px 0 0 0;
    transition: 0.5s all ease-in-out;
    border-bottom: 0;
    border-right: 0;
}

#myBtn:hover {
    background-color: var(--white);
    border: solid 2px var(--orange);
    color: var(--orange);
    border-bottom: 0;
    border-right: 0;
}
.footer_location_links1 {
    display: none;
}

.footer_location_links {
    display: block;
}

@media(max-width:1152px){
    footer h2{
        font-size:22px;
    }
    .phone p{
        font-size:16px;
    }
    .phone a{
        font-size:16px;
    }
    footer .branches ul li a{
        font-size:16px;
    }
    footer .branches,
    footer .branches ul{
        align-items: center;
    }
    footer .branches h2{
        font-size:20px;
    }
    .location_ancr_i img,
    .location_map_i img{
        width:40px;
        position: relative;
        bottom:40px;
    }
    .location_ancr_i img{
        bottom:8px;
    }
    footer .row{
        align-items: unset;
    }
    footer .row .col-lg-6:nth-child(1)::after {
        height: 90px;
        right: 8px;
        bottom: 0;
    }
    .copyright ul i{
        width:30px;
        height:30px;
    }


}

@media(max-width:1024px){
        .footer_logo{
        width:80%;
    }
    footer .col-lg-4{
        text-align: center;
    }
}
@media(max-width:991px){
    
    footer .col-lg-4{
        text-align: unset;
    }
    footer .row{
        position: relative;
        row-gap: 30px;
        align-items: center;
    }
    footer .branches ul li:not(:last-child)::after{
        display: none;
    }
    footer .branches ul{
        display: block;
    }
    footer .branches, footer .branches ul{
        display: block;
        padding:0;
    }
    .footer_location_links{
        display: none;
    }
    .footer_location_links1{
        display: block;
        text-align: center;
    }
    footer .row .col-lg-6:nth-child(1)::after {
        height: 60px;
        right: 2px;
        bottom: 0;
    }
    .location_ancr_i img, .location_map_i img{
        bottom:13px;
    }
    .copyright p {
        font-size: 14px;
        margin: 0px 3px;
    }
    footer .figure {
    width: auto;
}
}
@media(max-width:600px){
     footer .col-lg-4{
        width:50%;
    }
    .footer_location_links1{
        width:50%;
    }
    footer .row .col-lg-6:nth-child(1)::after{
        display: none;
    }
    .phone a{
        display: block;
        margin-bottom: 0;
    }
    .copyright{
        text-align: center;
    }
    .copyright .container{
        display: block;
    }
    .copyright ul{
        justify-content: center;
    }
}
@media(max-width:432px){
    /*.footer_logo {*/
    /*    width: 100%;*/
    /*}*/
}
@media(max-width:385px){
.footer_logo {
    width: 65%;
}
}
@media(max-width:320px){
    footer .row{
        align-items: unset;
    }
}