.desktop-megamenu-container {
    display: flex;
    background: #000;
    border-radius: 1rem;
    padding: 1.5rem 2.5rem;
}

.desktop-megamenu-cta {
    position: relative;
    padding: 1.1875rem 1.5rem;
    box-sizing: content-box;
    text-align: center;
    background: #000;
    border-radius: 1rem;
}

.megamenu-heading {
    color: #FFF;
    text-align: center;
    font-family: "Teko", Sans-serif;
    font-size: 4.0625rem;
    font-style: normal;
    font-weight: 500;
    line-height: 90%;
    text-transform: uppercase;
    
    margin: 0;
}

.megamenu-subheading {
    color: #FFF;
    text-align: center;
    font-family: "Teko", Sans-serif;
    font-size: 2.625rem;
    font-style: normal;
    font-weight: 300;
    line-height: 90%; /* 2.25rem */
    text-transform: uppercase;

    margin: 0 0 1rem 0;
}

a.megamenu-btn {
    display: flex;
    padding: 1rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    align-self: stretch;
    white-space: nowrap;
    width: 100%;

    color: #FFF;
    font-family: "Teko", Sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 60%!important;
    text-transform: uppercase;
    background: #560591;
    border-radius: 0.5rem;
    border: 1px solid #FFF!important;
    transition: 0.2s ease;
}

a.megamenu-btn:hover {
    background: #450474!important;
}

.desktop-megamenu-links {
    display: flex;
    flex: 2;
    padding: 1.5rem 0;
}  

.desktop-megamenu-links ul {
    list-style: none;
    flex: 1;
}

.desktop-megamenu-links ul:first-of-type {
    border-right: 1px solid #FFF;
    padding: 0 0 0 2rem;
}

.desktop-megamenu-links ul li {
    margin-bottom: 0.825rem;
    font-size: initial;
}

.desktop-megamenu-links ul li:last-of-type {
    margin-bottom: 0;
}

.desktop-megamenu-links ul:last-of-type {
    padding: 0 0 0 3.5rem;
}

.desktop-megamenu-container .desktop-megamenu-links ul li a {
    color: #FFF;
    font-family: "Roboto";
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0;
    border-color: transparent;
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: padding-left 0.3s ease;
}

.desktop-megamenu-container .desktop-megamenu-links ul li a:hover {
    background: none;
    border-color: transparent;
    padding-left: 24px;
}

.desktop-megamenu-links svg {
    position: absolute;
    left: 0;
    width: 16px;
    opacity: 0;
    transform: none;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.desktop-megamenu-links ul li a svg {
    transform: none!important;
}

.desktop-megamenu-container .desktop-megamenu-links ul li a:hover svg {
    opacity: 1;
}