.fifth-container {
    margin: 0 80px;
    background: #f9f9f9;
    border-radius: 10px;
}

.fifth-title {
    color: #000;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    border-radius: 10px 10px 0 0;
    margin: 0 0 20px;
}

.fifth-inner {
    display: flex;
    justify-content: space-evenly;
    gap: 30px;
    border-radius: 0 0 10px 10px;
}

.fifth-footer {
    padding: 0 20px;
    margin: 30px 0;
}

.fifth-footer .footer-desc {
    text-align: left;
    color: #7a7a7a;
    font-size: 15px;
}

.fifth-inner .fifth-item-desc {
    text-align: left;
    font-size: 16px;
    margin-bottom: 10px;
    color: #000;
}

.fifth-item-desc a {
    text-decoration: none;
    color: #000;
    transition: all .3s ease-in-out;
}

.fifth-item-desc a:hover {
    color: #0088cc;
}

@media (max-width: 1000px) {
    .fifth-container {
        margin: 0 15px;
    }
}

@media (max-width: 800px) {
    .fifth-title {
        line-height: 1.3;
    }
    
    .fifth-inner {
        flex-direction: column;
        gap: 0;
    }

    .fifth-inner .fifth-item-desc {
        text-align: center;
        margin-bottom: 0;
    }
}

@media (max-width: 600px) {
    .fifth-title {
        font-size: 28px;
    }
}

@media (max-width: 500px) {
    .fifth-title {
        font-size: 25px;
    }
}

@media (max-width: 400px) {
    .fifth-title {
        font-size: 22px;
    }
}
