* {
    box-sizing: border-box;
    margin: 0;
    font-family: "Proximanova", sans-serif;
    text-decoration: none;
    color: white;
}

body {
    background-color: #ffffff;
}

.btn-style-one {
    padding: .635rem 1.365rem;
    background-color: #fff;
    color: black;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
}

.alert-bar-1 {
    width: 100%;
    background-color: #000;
    min-height: 20px;
    position: sticky;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .625rem .935rem;
    border-bottom: 1px solid #fff;
    top: 0px;
}

#alert-txt {
    color: white;
    font-size: .625rem;
}

.global-header {
    width: 100%;
    background-color: #000;
    min-height: 40px;
    padding: .625rem .935rem;

    position: sticky;
    display: flex;
    align-items: center;
    top: 35px;
}

.logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo a {
    font-family: "NewYork";
}

.nav {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.nav a {
    text-transform: uppercase;
    font-size: .635rem;
}

.cart {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cart span {
    margin-right: 5px;
}

.cart svg {
    width: 1.5em;
    color: white;
}

.hero-content {
    width: 99%;
    height: 70vh;
    background-color: #000;
    margin: 5px auto;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.hero-content-items {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

#hero-content-items-main-txt {
    font-size: 3rem;
    font-family: "NewYork";
}

.sub-content {
    width: 99%;
    height: 60vh;
    background-color: transparent;
    margin: 5px auto;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.sub-content-cards {
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.sub-content-items {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.sub-content-items-main-txt {
    font-size: 2rem;
    font-family: "NewYork";
}

.global-footer {
    width: 100%;
    height: 50vh;
    background-color: #000;
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 10px;
}

.left-footer-content {
    width: 60%;
    height: 100%;
}

.footer-logo {
    width: 100%;
    height: 20%;
    background-color: #000;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
}

.footer-logo a {
    font-family: "NewYork";
    font-size: 2rem;
}

.footer-nav {
    width: 100%;
    height: 50%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.footer-nav a {
    font-size: 1.5rem;
    text-transform: uppercase;
}

.footer-socials {
    width: 100%;
    height: 30%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}