.my-prefooter {
    background-color: var(--secondary_color);
    display: flex;
    flex-direction: row;
    padding: 64px 0 64px 0;
    width: 100%;
    align-items: center;
    /* border-radius: var(--border_radius) var(--border_radius) 0 0; */
    position: relative;
    z-index: 9;
}

.my-prefooter-container {
    display: flex;
    gap: 24px;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

.my-prefooter-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: left;
    justify-content: flex-start;
    box-sizing: border-box;
}


.my-prefooter-item p,
.my-prefooter-item li,
.my-prefooter-item a {
    font-size: 14px !important;
    color: var(--white) !important;
    line-height: 110% !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
}

.my-prefooter-item a {
    text-decoration: none;
}

.my-prefooter-item a:hover {
    color: var(--primary_color_hover) !important;
    border-bottom: none;
}

.my-prefooter-item h1 {
    font-size: 18px !important;
    margin-bottom: 0;
    font-weight: 700;
    color: var(--third_color) !important;
    letter-spacing: 0.5px;
}

.my-prefooter-item i {
    font-size: 24px;
}

.my-footer {
    background-color: var(--secondary_color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
    border-radius: 0 0 var(--border_radius) var(--border_radius);
    border-top: 1px solid #1e3053;
}

.my-footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 24px;
}

.my-footer-container p,
.my-footer-container li,
.my-footer-container a
{
    font-size: 13px;
    line-height: 150%;
    color: var(--white);
    font-weight: 500;
}

.my-footer-container a {
    text-decoration: none;
}

.my-footer-container a:hover {
    border-bottom: none;
    color: var(--secondary_color);
}

.my-footer-inline .item {
    flex: 1;
}

.my-footer-inline {
    display: flex;
    gap: 32px;
}

@media (max-width: 1024px) {
    .my-footer {
        padding: 48px 0;
    }
}

@media (max-width: 768px) {
    .my-prefooter-item {
        flex: 0 0 calc(50% - 24px);
    }

    .my-prefooter-item p,
    .my-prefooter-item li,
    .my-prefooter-item a {
        line-height: 140% !important;
    }

    .my-prefooter-item h1 {
        line-height: 170%;
    }

    .my-prefooter-container {
        gap: 48px;
    }

    .my-prefooter {
        padding: 48px 32px;
    }

    .my-footer-container {
        gap: 32px;
        flex-direction: column;
    }
}

@media (max-width: 1550px) {
    .my-prefooter,
    .my-footer
    {
        padding: 32px;
    }
}