:root {
    --primarydark: #3e3033;
    --primarylight: #eaddf3;
    --primarylight2: lemonchiffon;
    --tertiary: #484848;
    --white1: #ffffff;
    --white2: #fbf7f5;
    --mutedgray1: #f0f0f0;
    --mutedgray2: #a9a9a9;
    --mutedgray3: #5a5a5a;
    --red1: red;
    --black1: #000000;
    --black2: rgba(0, 0, 0, 0.5);
    --purplish-blue: #5050e6;

    --sidebarwidth: 275px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--tertiary);
    text-decoration: none;
}

.spndr-logo {
    font-family: "Fugaz One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

html {
    font-size: 20px;
    overflow-x: hidden;
}

li {
    list-style-type: none;
}

textarea, input {
    all: unset;
    border: 1px solid var(--primarydark);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
}

label {
    all: unset;
    font-size: 0.6rem;
    font-weight: 600;
}

button {
    all: unset;
    background-color: var(--primarydark);
    color: var(--white1);
}

body {
    overflow-x: hidden;
    min-height: 100vh;
    max-width: 100vw;
}

svg {
    display: block;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2.5rem;
}

h4 {
    font-size: 2rem;
}

h5 {
    font-size: 1.5rem;
}

h6 {
    font-size: 1rem;
}

main {
    padding-top: 25px;
    padding-bottom: 25px;
    gap: 100px;
}

/* footer {
    height: 100%;
} */

.all-content {
    max-width: 70vw;
    width: 100%;
    margin-inline: auto;
}

.footer-content {
    max-width: 1300px;
    width: 100%;
    margin-inline: auto;
}

.image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.bg-white1 {
    background-color: var(--white1);
}

.bg-primarylight {
    background-color: var(--primarylight);
}

.bg-primarydark {
    background-color: var(--primarydark);
}

.font-color-white1 {
    color: var(--white1);
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}

.flex-jc-space-between {
    justify-content: space-between;
}

.flex-jc-space-evenly {
    justify-content: space-evenly;
}

.flex-jc-center {
    justify-content: center;
}

.flex-al-i-center {
    align-items: center;
}

.flex-al-i-flex-start {
    align-items: flex-start;
}

.flex-gap-a {
    gap: 20px;
}

.flex-gap-b {
    gap: 15px;
}

.flex-gap-c {
    gap: 10px;
}

.flex-gap-d {
    gap: 5px;
}

.flex-wrap-wrap {
    flex-wrap: wrap;
}

.flex-grow-1 {
    flex-grow: 1;
}

.flex-shrink-1 {
    flex-shrink: 1;
}

.border-radius-a {
    border-radius: 20px;
}

.border-radius-b {
    border-radius: 15px;
}

.border-radius-c {
    border-radius: 10px;
}

.border-radius-d {
    border-radius: 5px;
}

.border-radius-right-c {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.padding-a {
    padding: 20px;
}

.padding-b {
    padding: 15px;
}

.padding-c {
    padding: 10px;
}

.padding-d {
    padding: 5px;
}

.text-align-center {
    text-align: center;
}

.height-fit-content {
    height: fit-content;
}

.width-fit-content {
    width: fit-content;
}

.width-100pc {
    width: 100pc;
}

.width-100vw {
    width: 100vw;
}

.width-auto {
    width: auto;
}

.margin-inline-0 {
    margin-inline: 0;
}

.margin-inline-auto {
    margin-inline: auto;
}

.box-shadow1 {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

.mobile {
    display: none;
}

.font-color-purplish-blue {
    color: var(--purplish-blue);
}

.font-size-x2-5 {
    font-size: 2.5rem;
}

.font-size-x1-5 {
    font-size: 1.5rem;
}

.font-size-x0-8 {
    font-size: 0.8rem;
}

.font-weight-700 {
    font-weight: 700;
}

.text-animate-underline {
    position: relative;
}

.text-animate-underline::after {
    content: '';
    position: absolute;
    bottom: 0; /* Position it at the bottom of the text */
    left: 0;
    width: 0; /* Initially, the underline is hidden */
    height: 2px; /* Thickness of the underline */
    transition: width 0.3s ease; /* Smooth animation */
}

.text-animate-underline-black::after {
    background-color: var(--black1);
}

.text-animate-underline-white::after {
    background-color: var(--white1);
}

.text-animate-underline:hover::after {
    width: 100%;
}

.sidebar {
    position: absolute;
    top: 0;
    right: 0;
    display: none;
}

@media screen and (max-width: 1280px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.75rem;
    }
}

@media screen and (max-width: 1200px) {
    .all-content {
        max-width: 100vw;
    }
}

@media screen and (max-width: 786px) {
    html {
        font-size: 18px;
    }
    .hide-mobile {
        display: none;
    }
    .mobile {
        display: initial;
    }
    main {
        padding-top: 80px;
        padding-bottom: 80px;
        gap: 80px;
    }
}

@media screen and (max-width: 550px) {
    html {
        font-size: 16px;
    }
    h1 {
        font-size: 2.75rem;
    }
    h2 {
        font-size: 2.5rem;
    }
    label {
        font-size: 0.8rem;
    }
    main {
        padding-top: 25px;
        padding-bottom: 25px;
        gap: 50px;
    }
}