/* ============================= */
/*          Fonts + Variables    */
/* ============================= */


@font-face {
    font-family: 'OverusedGrotesk-bold';
    src: url('/fonts/OverusedGrotesk-Bold-BF64eeac1756b57.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'OverusedGrotesk-light';
    src: url('/fonts/OverusedGrotesk-Light-BF64eeac17cade6.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'OverusedGrotesk-roman';
    src: url('/fonts/OverusedGrotesk-Roman-BF64eeac17dee17.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'HelloParis';
    src: url('./fonts-logo/Hello\ Paris\ Sans\ Medium.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* ============================= */
/*          Root Variables       */
/* ============================= */
:root {
    /* Base colors */
    --color-black: rgb(51, 51, 51);
    --color-white: rgb(255, 255, 255);
    --color-gray: rgba(179, 179, 179, 1);

}

/* ============================= */
/*          Preloader            */
/* ============================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #222222;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ============================= */
/*          Base Styles          */
/* ============================= */
body {
    margin: 0;
    font-family: 'OverusedGrotesk', sans-serif;
    background: #fff;
    color: var(--color-black);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ============================= */
/*          Header               */
/* ============================= */
.header {
    position: relative;
    min-height: auto;
    width: 100%;
    padding: 30px 0;
}

.header__logo a {
    font-family: 'HelloParis', sans-serif;
    font-weight: 400;
    line-height: 24px;
    display: block;
    text-decoration: none;
    color: var(--color-black);
    text-align: center;
    font-size: 40px;
}

.header_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Burger menu */
.burger {
    position: relative;
    width: 50px;
    height: 35px;
    cursor: pointer;
}

.burger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: var(--color-black);
    border-radius: 8px;
    transition: 0.3s ease;
}

.burger span:nth-of-type(1) {
    top: 0;
}

.burger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}

.burger span:nth-of-type(3) {
    top: 100%;
    transform: translateY(-100%);
}

.burger.open span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 10px;
}

.burger.open span:nth-of-type(2) {
    opacity: 0;
}

.burger.open span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 10px;
}

/* Burger menu container */
.burger_nav_back {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    transition: left 0.9s ease-in-out;
    z-index: 999;
}

.burger_nav_back.active {
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
}

.burger_nav {
    margin: 40px 0;
    padding: 0;
}

.burger_nav_text_wrapper {
    margin-top: 100px;
}

.burger_nav_container {
    margin-top: 40px;
}

.burger_nav_container ul {
    padding: 0 20px;
}

.burger_nav_container li {
    margin-top: 20px;
    list-style-type: none;
}

.burger_nav_container li>a {
    font-family: 'OverusedGrotesk-light';
    text-decoration: none;
    color: var(--color-black);
    font-size: 25px;
    text-transform: uppercase;
}

.burger_nav_button {
    font-family: 'OverusedGrotesk-roman';
    display: inline-block;
    width: auto;
    margin-left: 16px;
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 14px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 30px;
    text-transform: uppercase;
}


.burger_nav_closed {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 10px;
    top: 25px;
    cursor: pointer;
}

.burger_nav_closed img {
    width: 100%;
}
/* ============================= */
/*          Main Content         */
/* ============================= */

.privacy_wrapper {
    color: var(--color-black);
    margin-top: 50px;
}

.privacy-title {
    font-size: 30px;
    text-transform: uppercase;
}

.privacy_wrapper-items {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.privacy-subheading {
    margin: 10px 0;
}

.privacy-subheading h3 {
    margin: 10px 0;
}

.privacy-content p {
    margin-top: 5px;
    font-size: 16px;
    word-break: break-word;
    overflow-wrap: break-word;
    word-wrap: break-word;
}



/* ============================= */
/*          Footer               */
/* ============================= */
.footer {
    margin-top: 50px;
    padding: 45px 0;
    border-top: 1px solid var(--color-gray);
    border-bottom: 1px solid var(--color-gray);
}

.footer_wrapper {
    display: flex;
    gap: 40px;
}

.footer_list h1 {
    font-size: 15px;
    text-transform: uppercase;
    color: var(--color-black);
}

.footer_link_list ul {
    padding: 0;
}

.footer_link_list li {
    list-style-type: none;
    margin-top: 10px;
}

.footer_link_list li>a {
    text-decoration: none;
    font-size: 15px;
    color: rgba(183, 183, 183, 1);
    text-transform: uppercase;
    transition: 0.3s ease-in;
}

.footer_link_list li>a:hover {
    color: rgb(135, 135, 135);
}

.footer_bottom_wrapper {
    padding: 20px 0;
}

.footer_bottom_wrapper p {
    display: block;
    margin-top: 30px;
    color: var(--color-black);
    font-size: 12px;
}

.footer_bottom_list a {
    text-decoration: none;
    color: var(--color-black);
    font-size: 15px;
    transition: 0.3s ease-in;
}

.footer_bottom_list a:hover {
    color: rgb(100, 100, 100);
}

.footer_bottom_list a:last-child {
    margin-left: 20px;
}

@media (max-width: 600px) {
    .privacy_wrapper {
        color: var(--color-black);
        margin-top: 50px;
    }

    .privacy-title {
        font-size: 20px;
        text-transform: uppercase;
    }

    .privacy_wrapper-items {
        margin-top: 50px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .privacy-subheading {
        margin: 10px 0;
    }

    .privacy_wrapper-items h3{
        font-size: 20px;
    }
    .privacy-subheading h3 {
        font-size: 20px;
        margin: 10px 0;
    }

    .privacy-content p {
        margin-top: 5px;
        font-size: 14px;
    }
}