* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Anta", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    scroll-behavior: smooth;
}

:root {

    --section_spacing: 15rem;

    /* Colors */
    --brand-blue_1: rgb(42, 40, 104);
    --brand-blue_2: rgb(56, 52, 181);
    --brand_gray: rgb(71, 71, 78, .8);
    --brand-gradient: linear-gradient(45deg, var(--brand-blue_2), var(--brand-blue_1));

    /* Fonts */
    --sm-font: 1rem;
    --md_font: 1.5rem;
    --lg-font: 2rem;

    /* Font Weights */
    --font-bold: 700;

    /* Border Radius */
    --nice-radius: 20px;

    /* Transition  */
    --nice-transition: .2s;


}

header {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    position: sticky;
    inset: 0;
    z-index: 1;
    background: whitesmoke;
}


/* Logo */
header div:first-child,
header div:first-child span {
    font-size: var(--md_font);
    font-weight: var(--font-bold);
    color: var(--brand-blue_1);
}

header div:first-child span {
    color: var(--brand-blue_2);
    font-weight: var(--font-bold);
}

header ul {
    list-style: none;
    display: flex;
    gap: var(--lg-font);
    align-items: center;
    margin-inline-start: 3rem;
    margin-block-start: .2rem;
}

header ul li a {
    font-weight: var(--font-bold);
    text-decoration: none;
    color: var(--brand-blue_1);
    transition-duration: var(--nice-transition);
}

header ul li a:hover {
    color: var(--brand-blue_2);
}

#get_started_btn {
    margin-left: auto;
    padding: 1rem 2.5rem;
    border-radius: calc(var(--nice-radius) + 20px);
    background: var(--brand-gradient);
    color: whitesmoke;
    font-weight: var(--font-bold);
    text-decoration: none;
}

/* Mobile menu icon */
#menu_icon {
    width: 30px;
    cursor: pointer;
    display: none;
}

/* Mobile Navigation */
#mobile_nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: whitesmoke;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 10;
}

#mobile_nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

#mobile_nav ul li {
    border-bottom: 1px solid #ddd;
}

#mobile_nav ul li a {
    display: block;
    padding: 1rem;
    text-decoration: none;
    color: var(--brand-blue_1);
    font-weight: var(--font-bold);
    transition: background-color var(--nice-transition);
}

#mobile_nav ul li a:hover {
    background-color: var(--brand-blue_2);
    color: whitesmoke;
}

/* Hero Section */
main {
    max-width: 800px;
    margin: 7rem auto;
    text-align: center;
    position: relative;
}

main::before {
    content: '';
    position: absolute;
    background: var(--brand-blue_2);
    height: 320px;
    width: 320px;
    filter: blur(250px);
    border-radius: 0 50% 50% 0;
    inset: 50px 0 0 -50%;
}

main h1 {
    font-family: 'Michroma';
    color: var(--brand-blue_1);
    font-size: calc(var(--lg-font) + 1rem);
}

main h1 span {
    color: var(--brand-blue_2);
}

main h2 {
    margin-block-start: 1.6rem;
    font-weight: calc(var(--font-bold) - 100);
    color: var(--brand-blue_1);
    font-size: calc(var(--sm-font) + .3rem);
}

/* CTA Buttons */
main aside:last-child {
    margin: 1.5rem auto;
    max-width: 500px;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

main aside:last-child a {
    padding: 1rem 2rem;
    border-radius: calc(var(--nice-radius) + 20px);
    text-decoration: none;
    height: fit-content;
    transition-duration: var(--nice-transition);
}

main aside:last-child a:first-of-type {
    background: var(--brand-blue_1);
    color: whitesmoke;
    outline: 2.5px solid var(--brand-blue_1);
    outline-offset: 3px;
}

main aside:last-child a:last-of-type {
    font-weight: var(--font-bold);
    color: var(--brand-blue_1);
    outline: 2px solid var(--brand-blue_1);
    display: flex;
    gap: .5rem;
    align-items: center;
    justify-content: center;
}

main aside:last-child a:last-of-type:hover {
    background: var(--brand-gradient);
    color: whitesmoke;
}

main aside:last-child a:last-of-type img {
    width: 20px;
}


/* Section Two */
#section_2_head {
    margin-block-start: var(--section_spacing);
    font-size: calc(var(--lg-font) + .5rem);
    max-width: 1024px;
    margin-inline: auto;
    color: var(--brand-blue_1);
    display: flex;
    align-items: center;
    gap: .5rem;
}

#section_2_head img {
    width: 50px;
}

#section_2 {
    max-width: 1024px;
    margin: 2rem auto;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto 200px;
}

#section_2 div {
    padding: var(--md_font);
    border-radius: var(--nice-radius);
    box-shadow: 0 0 10px 2px gray;
    transition-duration: var(--nice-transition);
    position: relative;
    overflow: hidden;
}

#section_2 div::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-100px);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: loading 2s infinite;
}

@keyframes loading {

    0%,
    55% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}



#section_2 div:hover {
    scale: 1.02;
}

#section_2 div:first-child {
    font-size: calc(var(--lg-font) + .5rem);
    font-weight: var(--font-bold);
    grid-column: span 3;
    display: flex;
    align-items: center;
    background: var(--brand-blue_2);
    color: whitesmoke;
}

#section_2 div:nth-child(2) {
    background: var(--brand-blue_1);
    color: whitesmoke;
    font-weight: var(--font-bold);
    font-size: calc(var(--sm-font) + .2rem);
    grid-row: span 2;
}

#section_2 div:nth-child(3) {
    grid-row: span 2;
    background: var(--brand-gradient);
    color: whitesmoke;
    font-size: calc(var(--sm-font) + .2rem);
}

#section_2 div:nth-child(4) {
    grid-column: span 2;
    font-size: var(--md_font);
    background: #c8c8c880;
    font-weight: var(--font-bold);
}

#section_2 div:nth-child(5) {
    font-size: calc(var(--md_font) + .3rem);
    grid-column: 2/2;
    color: var(--brand-blue_1);
    font-weight: var(--font-bold);
}

#section_2 div:last-child {
    grid-area: 3/3/3/5;
    background: var(--brand-blue_2);
    color: whitesmoke;
    font-size: var(--md_font);
}


/* Third Section */
#section_3 {
    padding-block-start: 2rem;
    margin: var(--section_spacing) auto;
    max-width: 1024px;
    border-top: 2px solid var(--brand-blue_1);
    position: relative;
}

#section_3_head {
    font-size: calc(var(--lg-font) + .5rem);
    color: var(--brand-blue_1);
    text-align: center;
}

#section_3_head+p {
    margin: var(--md_font) auto;
    max-width: 800px;
    color: var(--brand_gray);
    font-size: calc(var(--lg-font) - .8rem);
    text-align: center;
    font-weight: calc(var(--font-bold) - 100);
}

#section_3_head+p b {
    color: var(--brand-blue_1);
    display: block;
    margin-block-start: .5rem;
    font-size: calc(var(--sm-font) + .3rem);
}


#products_wrapper {
    margin-block-start: calc(var(--section_spacing) - 5rem);
    width: 100%;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

#products_wrapper div {
    border-radius: inherit;
    flex: 1;
    padding: 1rem;
    position: relative;
    box-shadow: 0 0 20px 1px var(--brand-blue_2);
}

#products_wrapper div:nth-child(2) h1 {
    margin-block-start: 2rem;
    width: fit-content;
    padding: 1.5rem 1rem;
    border-radius: calc(var(--nice-radius) + 50px);
    background: transparent;
    text-align: center;
    color: whitesmoke;
    font-weight: var(--font-bold);
    font-size: calc(var(--lg-font) + .3rem);
}

#products_wrapper div:not(div:nth-child(2)) h1 {
    text-align: center;
    margin-block-start: 2rem;
    width: 100%;
    color: whitesmoke;
    font-weight: var(--font-bold);
}

#products_wrapper div:not(div:nth-child(2)) h1+p {
    margin-block-start: 1rem;
}

#products_wrapper div h1+p {
    color: whitesmoke;
    text-align: center;
}

#products_wrapper div h1+p+h2 {
    color: lime;
    font-size: calc(var(--lg-font) + .5rem);
    text-align: center;
    margin-block-start: 1rem;
}

#products_wrapper div h1+p+h2+h3 {
    color: whitesmoke;
    width: fit-content;
    border-radius: calc(var(--nice-radius) + 10px);
    text-align: center;
    width: fit-content;
    border: 3px solid gray;
    padding: .5rem 1.5rem;
    align-content: center;
    font-size: var(--sm_font);
    margin-inline: auto;
    margin-block-start: .5rem;
}

#products_wrapper div ul {
    margin-block-start: 1rem;
    list-style: none;
    background: var(--brand-blue_2);
    color: whitesmoke;
    border-radius: inherit;
    padding: 1rem;
    display: flex;
    gap: .5rem;
    flex-direction: column;
}

#products_wrapper div ul li {
    position: relative;
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-block-end: 1rem;
}

#products_wrapper div ul li {
    border-bottom: 1px solid gray;
}

#products_wrapper div ul li span {
    width: 20px;
    aspect-ratio: 1;
    background: var(--brand-blue_1);
    border-radius: 50%;
    display: flex;
    align-items: center;
}

#products_wrapper div a:last-child {
    height: auto;
    width: fit-content;
    padding: 1rem 4rem;
    color: whitesmoke;
    font-weight: var(--font-bold);
    font-size: calc(var(--md_font) - .3rem);
    border-radius: calc(var(--nice-radius) + 20px);
    display: block;
    margin-block-start: 1rem;
    text-decoration: none;
    margin-inline: auto;
    position: relative;
    overflow: hidden;
    border: 2px solid whitesmoke;

}


#products_wrapper div a:last-child::after {
    content: '';
    position: absolute;
    left: -2px;
    top: -2px;
    border-radius: calc(var(--nice-radius) + 10px);
    background: linear-gradient(45deg, var(--brand-blue_2), rgb(48, 148, 48));
    background-size: 400%;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: steam 10s linear infinite;
    mix-blend-mode: screen;
}

@keyframes steam {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}


#products_wrapper div::before {
    position: absolute;
    inset: -50px 0 0 50%;
    translate: -50%;
    width: 230px;
    height: 70px;
    border-radius: calc(var(--nice-radius) + 50px);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(17, 25, 40, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.125);
}

#products_wrapper div:nth-child(2)::before {
    content: "50% off";
    font-size: calc(var(--md_font) + .3rem);
    font-weight: var(--font-bold);
    color: var(--brand-blue_1);
    text-align: center;
    align-content: center;
}

#products_wrapper div:nth-child(2) {
    background: var(--brand-blue_1);
    height: fit-content;
    border-radius: calc(var(--nice-radius) - 5px);
}

#products_wrapper div:not(div:nth-child(2)) {
    height: fit-content;
    background: var(--brand-blue_2);
    border-radius: calc(var(--nice-radius) - 5px);
}

#products_wrapper div:not(div:nth-child(2)) ul {
    background: var(--brand-blue_1);
}

#products_wrapper div:first-child::before,
#products_wrapper div:last-child::before {
    content: "30% off";
    font-size: var(--md_font);
    font-weight: var(--font-bold);
    color: var(--brand-blue_2);
    text-align: center;
    align-content: center;
}

#products_wrapper div:last-child::before {
    content: "40% off";
}


/* Section 3 */
#section_3_head {
    text-align: center;
    width: fit-content;
    margin-inline: auto;
    padding-inline: .3rem;
}

#section_3_head+section {
    max-width: 900px;
    margin-inline: auto;
    margin-block-start: 3rem;
}

#courses_carousel {
    box-shadow: 0 0 20px 5px rgba(200, 200, 200, .85);
    white-space: nowrap;
    overflow: scroll;
    border-radius: calc(var(--nice-radius) - 5px);
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-block-end: 1rem;
    padding: 1rem;
}

#courses_carousel::-webkit-scrollbar {
    display: none;
}

#courses_carousel{
    padding-inline: 1rem;
}

#courses_carousel li {
    scroll-snap-align: center;
    display: inline-block;
    background: var(--brand-blue_1);
    list-style: none;
    width: 322px;
    height: auto;
    padding: 1rem;
    border-radius: inherit;
    color: whitesmoke;
}

#courses_carousel li:not(li:first-child) {
    margin-inline-start: 1rem;
}

#courses_carousel li h3 {
    text-wrap: wrap;
}

#courses_carousel li h3+p {
    text-wrap: wrap;
    margin-block-start: 1rem;
}

#courses_carousel li h3+p+a {
    background: var(--brand-blue_2);
    margin-block-start: 1rem;
    display: block;
    border-radius: calc(var(--nice-radius) + 10px);
    color: white;
    text-align: center;
    padding: 1rem;
    font-weight: var(--font-bold);
}

#nav_courses {
    border-radius: calc(var(--nice-radius) + 10px);
    display: flex;
    margin-block-start: 1rem;
    position: relative;
    inset-block-start: -150px;
}

#nav_courses div {
    background: var(--brand-blue_2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px 2px gray;
}

#nav_courses div:hover {
    scale: 1.05;
}

#nav_courses div img {
    width: 40px;
    filter: invert(100%);
    position: relative;
    cursor: pointer;
}

#nav_courses div:first-child img {
    rotate: 90deg;
    inset-inline-end: .2rem;
}

#nav_courses div:last-child {
    margin-left: auto;
}

#nav_courses div:last-child img {
    rotate: -90deg;
    inset-inline-start: .2rem;
}


/* Section_4 */
#section_4 {
    margin: var(--section_spacing) auto;
    max-width: 1024px;
    border-radius: calc(var(--nice-radius) - 10px);
    box-shadow: 0 0 20px 5px rgba(200, 200, 200, .85);
    padding: 3rem 1rem 1rem 1rem;
}

#section_4_head {
    margin: 0 auto;
    text-align: center;
    font-size: calc(var(--lg-font) + .4rem);
    color: var(--brand-blue_1);
    max-width: 700px;
}

#carousel_testimonials {
    white-space: nowrap;
    overflow: scroll;
    max-width: 1024px;
    margin-block-start: 3rem;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    border-radius: inherit;
    padding-block-end: 1rem;
}

#carousel_testimonials div {
    scroll-snap-align: center;
    display: inline-grid;
    gap: 1rem;
    grid-template-rows: repeat(2, auto);
    width: 320px;
    border-radius: calc(var(--nice-radius) - 5px);
}

#carousel_testimonials div:not(div:first-child) {
    margin-inline-start: 1rem;
}

#carousel_testimonials::-webkit-scrollbar {
    display: none;
}

#carousel_testimonials div>p {
    font-weight: var(--font-bold);
    padding: 1rem;
    text-wrap: balance;
    background: rgba(200, 200, 200, .5);
    color: var(--brand-blue_2);
    border-radius: calc(var(--nice-radius) - 10px);

}

#carousel_testimonials div span {
    background: rgba(200, 200, 200, .5);
    padding: 1rem;
    display: flex;
    gap: .5rem;
    align-items: center;
    border-radius: calc(var(--nice-radius) + 10px);
    color: var(--brand-blue_1);
    box-shadow: 0 0 10px .5px gray;
}

#carousel_testimonials div span>img {
    width: 20px;
}

#nav_testimonial {
    border-radius: calc(var(--nice-radius) + 10px);
    display: flex;
    margin-block-start: 1rem;
    position: relative;
    inset-block-start: -150px;
}

#nav_testimonial div {
    background: var(--brand-blue_1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px 2px gray;
}

#nav_testimonial div:hover {
    scale: 1.05;
}

#nav_testimonial div img {
    width: 40px;
    filter: invert(100%);
    position: relative;
    cursor: pointer;
}

#nav_testimonial div:first-child img {
    rotate: 90deg;
    inset-inline-end: .2rem;
}

#nav_testimonial div:last-child {
    margin-left: auto;
}

#nav_testimonial div:last-child img {
    rotate: -90deg;
    inset-inline-start: .2rem;
}








/* Footer */
footer {
    height: fit-content;
    width: 100%;
    display: flex;
    gap: 7rem;
    padding-inline: 1rem;
    padding-block-start: 4rem;
    border-block-start: 2px solid slategray;
}

footer+section {
    padding: 1rem;
    background: var(--brand-blue_1);
    text-align: center;
    color: whitesmoke;
}

footer+section a {
    color: lime;
}

/* Logo */
#logo_btm,
#logo_btm span {
    font-size: var(--md_font);
    font-weight: var(--font-bold);
    color: var(--brand-blue_1);
}

#logo_btm span {
    color: var(--brand-blue_2);
    font-weight: var(--font-bold);
}

footer ul h4 {
    color: var(--brand-blue_1);
}

footer ul:nth-child(2) li a {
    text-decoration: none;
    font-weight: var(--font-bold);
    color: var(--brand-blue_2);
}

footer ul:nth-child(2) li a:hover {
    text-decoration: underline;
}

footer ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

footer ul:first-child {
    gap: 2rem;
    padding-block-end: 10rem;
}

footer ul:first-child li>p {
    width: 500px;
    font-weight: var(--font-bold);
    line-height: calc(var(--sm-font) + .5rem);
}

footer ul:first-child li:nth-child(3) {
    display: flex;
    gap: 1.3rem;
}

footer ul:first-child li:nth-child(3) img {
    cursor: pointer;
    border-radius: 5px;
    transition-duration: var(--nice-transition);
}

footer ul:first-child li:nth-child(3) img:hover {
    scale: 1.3;
    outline: 2px solid var(--brand-blue_1);
}

footer ul:first-child li:last-child {
    display: flex;
    align-items: center;
    gap: .5;
    border: 3px solid var(--brand_gray);
    padding: .5rem 2rem;
    width: fit-content;
    border-radius: calc(var(--nice-radius) - 10px);
    background: var(--brand-blue_2);
}

footer ul:first-child li:last-child img {
    rotate: -180deg;
    filter: invert(100%);
    position: relative;
    inset-block-start: -.1rem;
}

footer ul:first-child li:last-child span {
    color: whitesmoke;
}

footer ul:first-child li:last-child a {
    text-decoration: none;
    font-weight: var(--font-bold);
}

footer ul:last-child li {
    color: var(--brand-blue_2);
    display: flex;
    gap: .5rem;
    align-items: center;
}

footer ul:last-child li img {
    width: 25px;
}

footer ul li>img {
    width: 30px;
}

/* Responsive Design */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    :root {
        --section_spacing: 10rem;
    }

    header {
        padding: 0.5rem 1rem;
    }

    header ul {
        gap: 1rem;
        margin-inline-start: 2rem;
    }

    #get_started_btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    main {
        margin: 5rem auto;
        padding: 0 1rem;
    }

    main h1 {
        font-size: calc(var(--lg-font) + 0.5rem);
    }

    main h2 {
        font-size: calc(var(--sm-font) + 0.2rem);
    }

    main aside:last-child {
        flex-direction: column;
        gap: 1rem;
    }

    #section_2 {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto auto auto;
        gap: 0.8rem;
    }

    #section_2 div:first-child {
        grid-column: span 2;
    }

    #section_2 div:nth-child(2) {
        grid-row: span 1;
    }

    #section_2 div:nth-child(3) {
        grid-row: span 1;
    }

    #section_2 div:nth-child(4) {
        grid-column: span 1;
    }

    #section_2 div:nth-child(5) {
        grid-column: span 1;
    }

    #section_2 div:last-child {
        grid-area: 4/1/4/3;
    }



    footer {
        gap: 3rem;
        padding-inline: 2rem;
    }

    footer ul:first-child li>p {
        width: 400px;
    }
}

/* Mobile Styles (up to 767px) */
@media (max-width: 767px) {
    :root {
        --section_spacing: 5rem;
    }

    header {
        padding: 0.5rem;
        justify-content: space-between;
    }

    header div:first-child {
        font-size: var(--md_font);
    }

    header ul {
        display: none;
    }

    #get_started_btn {
        display: none;
    }

    #menu_icon {
        display: block;
    }

    main {
        margin: 3rem auto;
        padding: 0 1rem;
    }

    main h1 {
        font-size: calc(var(--lg-font) + 0.2rem);
    }

    main h2 {
        font-size: var(--sm-font);
    }

    main aside:last-child {
        flex-direction: column;
        gap: 1rem;
    }

    main aside:last-child a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    #section_2_head {
        font-size: calc(var(--lg-font) + 0.2rem);
        text-align: center;
        margin-block-start: 10rem;
    }

    #section_2_head img {
        width: 40px;
        display: none;
    }

    #section_2 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
        padding-inline: 1rem;
    }

    #section_2 div:first-child {
        grid-column: span 1;
    }

    #section_2 div:nth-child(2),
    #section_2 div:nth-child(3),
    #section_2 div:nth-child(4),
    #section_2 div:nth-child(5),
    #section_2 div:last-child {
        grid-column: span 1;
        grid-row: span 1;
    }

    #section_3_head {
        font-size: calc(var(--lg-font) + 0.2rem);
    }

    #section_3_head+p {
        font-size: calc(var(--lg-font) - 1rem);
    }

    #products_wrapper {
        flex-direction: column;
        gap: 2rem;
        margin-block-start: calc(var(--section_spacing) - 3rem);
        padding-inline: 1rem;
    }

    #products_wrapper div {
        width: 100%;
        max-width: 100%;
        padding: 0.8rem;
    }

    #products_wrapper div {
        margin-block-start: 5rem;
    }

    #products_wrapper div h1 {
        font-size: calc(var(--lg-font) + 0.1rem);
    }

    #products_wrapper div h1+p+h2 {
        font-size: calc(var(--lg-font) + 0.3rem);
    }

    #products_wrapper div ul {
        padding: 0.8rem;
    }

    #products_wrapper div a:last-child {
        padding: 0.8rem 2rem;
        font-size: calc(var(--md_font) - 0.4rem);
    }

    #section_4 {
        margin: var(--section_spacing) 1rem;
        padding: 2rem 1rem 1rem 1rem;
    }

    #section_4_head {
        font-size: calc(var(--lg-font) + 0.1rem);
    }

    #carousel_testimonials div {
        width: 280px;
    }

    #nav_testimonial {
        inset-block-start: -120px;
    }

    #courses_carousel li {
        width: 280px;
    }

    #nav_courses {
        inset-block-start: -120px;
    }

    footer {
        flex-direction: column;
        gap: 2rem;
        padding-inline: 1rem;
        padding-block-start: 2rem;
    }

    footer ul:first-child {
        order: 1;
        padding-block-end: 2rem;
    }

    footer ul:first-child li>p {
        width: 100%;
    }

    footer ul:nth-child(2) {
        order: 2;
    }

    footer ul:last-child {
        order: 3;
    }

    footer ul {
        align-items: start;
    }

    footer ul:first-child li:nth-child(3) {
        justify-content: center;
    }

    footer ul:first-child li:last-child {
        justify-content: center;
    }

    footer+section {
        margin-block-start: 5rem;
    }
}