footer {
    background: #182138;
    padding: 40px 0;
}
footer .content-wrapper {
    display: flex;
    gap: 40px;
}
footer .col-1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 25%;
}
footer .col-2 {
    width: 15%;
}
footer .col-3 {
    width: 25%;
}
footer .col-4 {
    width: 15%;
}
footer .col-5 {
    width: 20%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-end;
}
img.footer-logo {
    width: 139px;
}
.copyright p {
    color: #fff;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 126%;
}
footer .menu-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    line-height: 128%;
    color: #FFFFFF;
    margin: 0 0 20px;
}
.footer-menu {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap:10px;
}
.footer-menu li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.5s ease;
}
.footer-menu li a:hover {
    color: #F9B000;
    transition: all 0.5s ease;
}
a.crafted {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    line-height: 100%;
    margin: 0;
    padding: 0;
    font-size: 13px;
}
a.crafted:hover {
    color: #f9b000;
}
img.prod-logo {
    width: 20px;
}
.footer-soc {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}
a.soc-icon {
    text-decoration: none;
    transition: all 0.5s ease;
}
a.soc-icon:hover {
    transform: scale(0.95);
    transition: all 0.5s ease;
}
a.soc-icon img{
    width:51px;
    height: 51px;
}
@media screen and (max-width:475px) {
footer .content-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
}
footer .col {
    width: 100%;
}
footer .col-1 {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    row-gap: 30px;
    order:1;
}
img.footer-logo {
    width: 127px;
}
footer .col-4, footer .col-2 {
    width: calc(50% - 15px);
}
footer .col-2 {
    order:2;
}
footer .col-3 {
    order:4;
}
footer .col-4 {
    order:3;
}
footer .col-5 {
    order: 5;
    align-items: flex-start;
}
a.crafted {
    font-weight: 500;
}
}