* {
    margin: 0;
    padding: 0;
}


.footer_box {
    width: 100%;
    background: #F4F3F1;

}

.footer {
    max-width: 1400px;
    width: 85%;
    margin: auto;
    border-top: 1px #E1DDD6 solid;
    border-bottom: 1px #E1DDD6 solid;
    padding-top: calc(34px + 5rem);
    padding-bottom: calc(25px + 5rem);
    display: flex;
    justify-content: space-between;
}

.footer_logo {
    width: calc(24px + 10rem);
}

.footer_logo img {
    width: 100%;
}

.footer_title {
    font-family: Helvetica_bold;
    font-weight: bold;
    font-size: calc(2px + 1rem);
    color: #333333;
    line-height: 1;
}

.footer_nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(9px + 1.5rem);
    margin-top: calc(9px + 2rem);
}

.footer_nav .footer_nav_item {
    font-family: Helvetica_roman;
    font-weight: normal;
    font-size: calc(8px + 0.5rem);
    color: #333333;
    line-height: 1;
}

.footer_contact {
    width: calc(118px + 10rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(4px + 1.5rem);
    margin-top: calc(9px + 2rem);
}

.footer_contact_item .p1 {
    font-family: Helvetica_roman;
    font-weight: normal;
    font-size: calc(6px + 0.5rem);
    color: #838383;
    line-height: 1;
}

.footer_contact_item .p2 {
    font-family: Helvetica_roman;
    font-weight: normal;
    font-size: calc(8px + 0.5rem);
    color: #333333;
    line-height: calc(4px + 1rem);
    margin-top: calc(2px + 0.5rem);
}

.footer_contact_item:nth-of-type(1) .p2 {
    font-family: Helvetica_bold;
    font-weight: bold;
    font-size: calc(4px + 1rem);
    color: #EC6629;
    line-height: 1;
}
.footer_link{
    display: flex;
    justify-content: flex-start;
    gap: calc(7px + 0.5rem);
    margin-top: calc(10px + 2rem);
}
.footer_link_item{
    width: calc(6px + 2rem);
height: calc(6px + 2rem);
background: #3F3F3F10;
border-radius: calc(2px + 0.1rem);
border: 1px solid #4A4B5010;
transition: .3s;

}
.footer_link_item:hover{
    background-color: #EC6629;
}
.footer_link_item a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer_link_item:hover img:nth-of-type(1){
    display: none;
}
.footer_link_item:hover img:nth-of-type(2){
    display: block;
}

.copyright{
      max-width: 1400px;
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(2px + 1.5rem) 0;
}
.copyright p{
font-family: Helvetica_roman;
font-weight: normal;
font-size: calc(8px + 0.5rem);
color: #666666;
line-height: 1;
}
.footer_link_item img{
    display: none;
    height: calc(8px + 0.5rem);
}
.footer_link_item img:nth-of-type(1){
    display: block;
}

@media screen and (max-width: 1100px){
    .footer{
        flex-direction: column;
        justify-content: flex-start;
        gap:calc(10px + 5rem);
    }
    .footer_logo {
        width: calc(24px + 30rem);
    }
    .footer_title{
        font-size: calc(12px + 1rem)
    }
    .footer_nav{
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .footer_nav .footer_nav_item{
        width: 30%;
        font-size: calc(10px + 1rem);
    }
    .footer_contact{
        width: 100%;
    }
    .footer_contact_item .p1{
        font-size: calc(10px + 1rem);
    }
    .footer_contact_item .p2{
        font-size: calc(10px + 1rem) !important;
        line-height: 1.5;
    }
    .footer_contact_item:nth-of-type(1) .p2{
        font-size: calc(14px + 1rem) !important;
        line-height: 1.5;
    }
    .footer_link_item {
        width: calc(24px + 2rem);
        height: calc(24px + 2rem);
    }
    .copyright p{
        font-size: calc(9px + 1rem);
        line-height: 1.5;
    }
    .copyright{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: calc(10px + 1rem);
    }
    .footer_link_item img {
        height: calc(12px + 0.5rem);
    }
}