html {
/*     scroll-behavior: smooth; */
    font-size: 62.5%;
    width: 100%;
    height: 100%;
    /* overflow-x: hidden; */
}

body {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    height: 100%;
    background-color: black;
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.container {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
    /* width: 100vw; */
}

.bold {
    font-weight: 700;
}

.horizontal-scroll-wrapper {
    gap: 3rem;
    width: 100vw;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    touch-action: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: pan-y;
}

.horizontal-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.button {
    border-radius: 6rem;
    padding: 1.5rem 4.2rem;
    border: none;
    font-weight: 700;
    /*font-size: 2rem;*/
	font-size: 1.2vw;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    border: 0.1rem solid transparent;
    cursor: pointer;
    background-color: white;
    color: black;
	text-align: center;
    transition: all 0.3s ease-in-out;
}

.button-white-br {
    border-color: black;
}

.button:hover {
    background-color: black;
    color: white;
    transition: all 0.3s ease-in-out;
    border: 0.1rem solid white;
}

.hip-button {
    width: 20rem !important;
    height: 15rem !important;
    border-radius: 0 !important;
    margin-right: 5rem;
    position: relative;
}

.hip-button:after {
    position: absolute;
    content: "";
    width: 8rem;
    height: 8rem;
    border-top-right-radius: 10rem;
    border-bottom-right-radius: 10rem;
    background-color: inherit;
    top: -.5%;
    right: -40%;
    z-index: 2;
}

.gradient-text {
    background: linear-gradient(to right, #000 50%, #aaa 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.3s ease;
    font-size: 2rem;
    line-height: 1.4;
    display: inline;
}

.text-grey {
    color: #919191 !important;
}

.hover-text {
    color: #E1E1E1 !important;
}

.hover-text:hover {
    color: black !important;
    transition: all 0.4s ease-in-out;
}

.tag-white {
    font-size: 1.6rem;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid white;
}

.tag-black {
    font-size: 1.6rem;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid black;
}
.bg_white{
    background:#ffffff;
}
.bg_black{
    background:#000000;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-5 {
    margin-top: 5rem;
}

@media (max-width: 1024px) {
    html {
        font-size: 56.25%;
        /* 1rem = 9px */
    }

    .gradient-text {
        background: linear-gradient(to right, #000 50%, #000 50%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .container {
        padding-left: 4rem !important;
        padding-right: 4rem !important;
    }
}


@media (max-width: 768px) {
    html {
        font-size: 50%;
        /* overflow-x: hidden; */
        /* 1rem = 8px */
    }

    .hip-button {
        width: 15rem !important;
        height: 10rem !important;
    }
}