* {
    margin: 0;
    padding: 0;
}


.footer_box {
    width: 100%;
   background-color: #111111;
   padding-top: calc(10px + 4rem);
   padding-bottom: calc(10px + 2rem);
}

.footer_box .footer {
    max-width: 1600px;
    width: 90%;
    margin: auto;
    display: flex;
   justify-content: space-between;
   border-bottom: 1px #5f5f5fbb solid;
   padding-bottom: calc(10px + 4rem);
}
.footer_logo img{
    width: calc(50px + 5rem);
}
.footer_text{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(15px + 0.5rem);
    margin-top: calc(10px + 1rem);
}
.footer_text .p1{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(2px + 0.25rem);
}
.footer_text .p1 p{
    font-size: calc(4px + 0.5rem);
    color: #9c9c9c;
}
.footer_right{
    display: flex;
    justify-content: flex-end;
    gap: calc(76px + 5rem);
}

.footer_right_nav .p1{
    font-size: calc(8px + 0.5rem);
    font-weight: 700;
    color: #ffffff;
}

.footer_nav{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(0px + 1rem);
    margin-top: calc(4px + 1rem);
}

.footer_nav_item{
    font-size: calc(4px + 0.5rem);
    color: #9c9c9c;
    transition: .3s;
}

.footer_nav_item:hover{
    color: #175cb1;
}

.copyright{
    max-width: 1600px;
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: calc(8px + 1.5rem);
}
.copyright p{
    color: #9c9c9c;
    font-size: calc(4px + 0.5rem);
}

@media screen and (max-width: 1100px){
    .footer_box .footer{
        flex-direction: column;
        justify-content: flex-start;
        gap: calc(10px + 2rem);
    }
    .footer_logo{
        margin: auto;
    }
    .footer_left{
        display: flex;
        flex-direction: column;
        align-items: flex-start
    }
    .footer_logo img {
        width: calc(80px + 8rem);
    }
    .footer_text .p1 p{
        font-size: calc(10px + 1rem);
    }
    .footer_text .p1:nth-of-type(1) p:nth-of-type(2){
        font-size: calc(16px + 1rem) !important;
    }
    .footer_right{
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: calc(10px + 3rem);
    }
    .footer_right_nav{
        width: 100%;
    }
    .footer_right_nav .p1{
        font-size: calc(12px + 1rem);
    }
    .footer_nav_item{
        width: 30%;
        font-size: calc(10px + 1rem);
    }
    .footer_nav {
        gap: calc(8px + 1rem);
        margin-top: calc(10px + 1rem);
        flex-direction: row;
        flex-wrap: wrap;
    }
    .copyright{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: calc(10px + 1rem);
    }
    .copyright p{
        text-align: center;
        font-size: calc(10px + 1rem);
    }
}