/* footer */
footer {
    background: #092C4C;
    color: #fff;
}

footer .container12 {
    padding: 5rem 0;
    display: flex;
    justify-content: space-between;
}

.f_logo {
    max-width: 230px;
    margin-bottom: 20px;
}

.f_left p {
    font-size: 16px;    
    line-height: 2;
    font-weight: 400;
}
.f_left p br{
    display: none;
}
.f_left p:last-child {
    margin-top: 20px;
}

.f_right {
    text-align: end;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.f_right ul {
    font-size: 16px;
        font-weight: 700;
    opacity: 0.6;
}

.f_right ul li:not(:last-child) {
    margin-bottom: 10px;
}

@media (min-width: 0px) and (max-width: 1280px) {
  footer .container12 {
        flex-direction: column;
        gap: 3rem;
    }

    .f_right {
        flex-direction: row-reverse;
        align-items: end;
    }

    .f_right ul {
        display: flex;
        gap: 2rem;
    }
}

@media (min-width: 0px) and (max-width: 900px) {
  footer .container12 {
        padding: 5rem 0 5rem;
        gap: 50px;
    }

    .f_left p {
        font-size: 1.6rem;
    }

    /* .f_logo{display: none;} */
    .f_right {
        flex-direction: column;
        text-align: left;
        justify-content: left;
        /* flex-direction: row; */
        align-items: flex-start;
        gap: 20px;
        font-size: 18px;
    }

}
@media (min-width: 0px) and (max-width: 600px) {
   .f_logo {
        width: 60%;
    }
    .f_left p {
        font-size: 3.7vw;
    }

    .f_right ul {
        font-size: 4vw;
    }
    .f_left p br{
    display: block;
}
}