footer{
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    width: 100%;
}

footer .bottom_footer{
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .bottom_footer a{
    color: #404040;
    font-size: 16px;
}   

footer .top_footer{
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 30px;
    border-bottom: 1px solid #DFDFDF;
}

footer .col{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

footer a{
    color: #404040;
    font-size: 16px;
    font-weight: 500;
}

footer a:hover{
    text-decoration: underline;
    color: #60A4A2;
    transition: 0.3s;
}
footer .icons{
    display: flex;
    gap: 15px;
}
footer .icons svg:hover{
  rotate: 5deg;
}

footer .phone{
    font-size: 18px!important;
    font-weight: 700!important;
}

footer .email{
    font-size: 18px!important;
    font-weight: 700!important;
    color: #60A4A2!important;
}

footer .callback{
     color: #60A4A2!important;
     position: relative;
     width: auto!important;
}

footer .callback::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    border-bottom: 2px dotted #6b9d9d;
}

@media screen and (max-width:600px) {
    footer .bottom_footer, footer .top_footer {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        width: 100%;
        text-align: center;
    }
    footer .top_footer .col{
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    footer .top_footer .col:first-child{
       justify-content: center;
    }
    footer a{
        font-size: 14px;
    }

    footer .phone, footer .email, footer .callback{
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    footer .callback{
        margin: 0 auto;
        font-size: 16px;
        margin-bottom: 20px;
    }
    footer .icons{
        justify-content: center;
        width: 100%;
    }
}
