.footer_container{
    background-color: rgb(7,53,91);
}



.footer{
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px;
    width: 100%;
}

.beakon_logo{
    width:300px;
    max-width: 100%;
    height: auto;
}

.about_brand_row{
    display: flex;
}

.col_1, .col_2{
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 30%;
}

.col_2{
    flex: 40% !important;
}

.col_text{
    font-size: 14px;
    font-weight: 500;
    color: #ffff;
    letter-spacing: 0.5px;
    display: flex;
    gap: 20px;
}

/* PAYMENT LOGO ROW */
.logo_row{
    display: flex;
    align-items: center;
}

.payment_col, .verified_col{
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 30%;
}

.verified_col{
    flex: 40% !important;
}

.payment_col p, .verified_col p{
    color: #ffff;
}

.payment_col .payment_row{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.payment_img{
    width: 90px;
    height: 50px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 3px;
}

.payment_img img{
    width: 80% ;
    object-fit: scale-down;
}

.verified_col .verified_row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.verified_row .veri_img{
    width: 140px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid #ccc; */
}

.verified_row .veri_img img{
    width: 100% ;
    object-fit: cover;
}

.left_img_box{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.left_img_box .veri_img{
    width: 120px;
}

.vertical-line {
    width: 2px; /* Width of the line */
    height: 50px; /* Height of the line */
    background-color: #a0a0a0; /* Color of the line (black in this case) */
  }



/* copyright contianer starts here */

.copyright{
    background-color: #001E3E;
    padding: 10px;
    display: flex;
    justify-content: space-between;
}

/* left text */

.left_copyright p, .left_copyright a{
    color: #ffff;
    font-size: 14px;
}

.left_copyright span{
    background-color: #e6e6e6;
    padding: 0px 5px;
    border-radius: 2px;
    transition: 0.5s;
}

.left_copyright span a{
    color: var(--primary);
}

.left_copyright span:hover{
    background-color: var(--primary);
}

.left_copyright span a:hover{
    color: #ffff;
}

/* right text */
.right_copyright, .left_copyright{
    display: flex;
}
.right_copyright p, .right_copyright a{
    color: #ffff;
    font-size: 14px;
}

/*  footer mobile responsive */
  @media (max-width: 768px) {

    .footer{
        /* padding: 40px 0px; */
    }

    .beakon_logo{
        width: 180px;
    }

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

    .logo_row{
        flex-direction: column;
        align-items: normal;
        gap: 20px;
    }

    .payment_row{
        gap: 10px;
    }

    .payment_img{
        width: 60px;
        height: 40px;
    }

    .left_img_box .veri_img{
        width: 80px;
    }

    .right_img_box .veri_img{
        width: 80px;
    }

    .copyright{
        flex-direction: column;
        gap: 10px;
        padding: 20px 10px;
    }
    

    .right_copyright, .left_copyright{
        flex-direction: column;
        align-items: center;
    }

    .right_copyright a, .left_copyright a{
        font-size: 12px;
    }

    .left_copyright{
        gap: 5px;
    }

    .left_copyright p{
        font-size: 12px;
    }

    .separator{
        display: none;
    }

  }
