footer {
    background-color: #ffffff;
    text-align: left;
}
.footer-wrapper {
    max-width: 1260px;
    margin: 0 auto;
    padding: 60px 24px;
    display: flex;
    align-items: start;
    box-sizing: border-box;
    justify-content: space-between;
}
.footer-section {
    width: 23%;
}

.footer-section h2 {
    margin: 0 0 44px;
    font-size: 32px;
    line-height: 1.5;
    font-weight: normal;
    color: #FD5C37;
}

.footer-section ul {
    list-style-type: disc;
    margin: 0;
    padding-left: 18px;
}

.footer-section ul li {
    margin-bottom: 16px;
}

.footer-section ul li a{
    color: #000;
    text-decoration: none;
    transition: all 0.5s;
}
.footer-section ul li a:hover{
    color: #FD5C37;
}

.footer-section ul li::marker {
    color: #FD5C37;
}
.social-media-rapper{
    display: flex;
    gap: 12px;
    width: 200px;
    margin: auto;
}
.social-media {
    font-size: 36px;
}
.social-media a {
    color: #FD5C37;
}
.copyrights {
    font-size: 14px;
    text-align: center;
}
.copyrights p{
    margin: 0 16px;
}
.copyrights span, .copyrights a{
    color: #FD5C37;
}
.footer-address, .footer-email, .footer-phone {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 16px;
}
.footer-address p, .footer-email p, .footer-phone p {
    margin:  0;
}
.footer-address a, .footer-email a, .footer-phone a {
    text-decoration: none;
    color: #000;
}
.footer-address a:hover, .footer-email a:hover, .footer-phone a:hover {
    color: #fd5c37;
}
.footer-address i, .footer-email i, .footer-phone i {
    font-size: 16px;
    color: #fd5c37;
    margin-top: 6px;
}
.footer-logo {
    width: 100%;
    margin-left: -30px;
}
@media (max-width: 768px) {
    .footer-wrapper {
        flex-wrap: wrap;
        text-align: center;
    }
    .footer-section {
        width: 100%;
        margin-bottom: 30px;
        padding: 0;
    }
    .footer-section ul {
        list-style-type: none;
    }
    .footer-section h2 {
        margin-bottom: 16px;
    }
    .social-media-rapper {
        justify-content: center;
    }
    .footer-address, .footer-email, .footer-phone {
        justify-content: center;
    }
}