:root {
    --mColor: #ff5252;
    --m2Color: #ff5252;

    --brad: 4px;
}
head {
    display: none;
}
*,
*::after,
*::before {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    border: none;
    display: block;
}

html {
    background-color: #1b1c1e;
    position: relative;
    overflow-x: hidden !important;
}
body,
html {
    letter-spacing: 2px;
    position: relative;
    color: white;
    margin: 0;
    padding: 0;
    display: block;
    box-sizing: border-box;
    font-smooth: always;
    -webkit-font-smoothing: antialiased;
    height: 100%;
    font-smooth: always;
    font-family: "Hind Madurai", sans-serif;
}
main {
    overflow: hidden;
}
body::-webkit-scrollbar {
    width: 12px;
}
body::-webkit-scrollbar-track {
    background: transparent;
}
body::-webkit-scrollbar-thumb {
    background-color: var(--mColor);
    border-radius: var(--brad);
}
a {
    text-decoration: none;
    color: inherit;
}
p > * {
    display: inline-block;
    vertical-align: middle;
}
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
ul,
li {
    padding: 0;
    list-style: none;
    marker: none;
}

.wrapper {
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    width: 100%;
    /* overflow: hidden; */
}
p,
a {
    font-size: 18px;
    text-transform: none;
    font-weight: 500;
    position: relative;
}
a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    background-color: currentColor;
    bottom: -2px;
    left: 0;
    transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
a:hover::after {
    width: 100%;
}
a:has(img, div)::after {
    content: none;
}
h1,
h2,
h3,
h4 {
    text-transform: uppercase;
    font-size: 48px;
    font-weight: 900;
}

.fz60 {
    font-size: 60px;
    font-weight: 700;
}
.fz114 {
    font-size: 124px;
    font-weight: 700;
}
.fz48 {
    font-size: 48px;
    font-weight: 500;
}
.fz24 {
    /* text-transform: uppercase; */
    font-size: 24px;
    font-weight: 700;
}
.fz12 {
    font-size: 12px;
    text-transform: none;
}
.padding {
    padding: 0;
}
.fwHig {
    font-weight: 900;
}
.fWMed {
    font-weight: 500 !important;
}
.btn {
    padding: 17px 42px;
    text-align: center;
    color: white;
    border-radius: var(--brad);
    display: block;
    background: transparent;
    overflow: hidden;
}
.btn p {
    text-transform: uppercase;
}
.btn_border {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--m2Color);
    background: transparent;
}
.btn_border::before {
    z-index: 0;
    content: "";
    position: absolute;
    width: 101%;
    height: 100%;
    left: -100%;
    top: 0;
    background-color: var(--m2Color);
    transform: translateX(-10%);
    transition: all 0.75s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.btn_border:hover::before {
    transform: translateX(99%);
}

.btn_full {
    background-color: var(--m2Color);
    width: max-content;
}
.btn_full::before {
    z-index: 0;
    content: "";
    position: absolute;
    width: 101%;
    height: 100%;
    left: -100%;
    top: 0;
    background-color: black;
    transform: translateX(-10%);
    transition: all 0.75s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.btn_full:hover::before {
    transform: translateX(99%);
}

.bg {
    background-color: #101010;
}
p {
    /* position: relative; */
    /* width: max-content; */
}
.pMW {
    width: max-content;
}
@media (max-width: 1440px) {
    .ovHidden {
        overflow-x: hidden;
    }
    .wrapper {
        max-width: 95%;
        /* overflow-x: hidden; */
    }
}
@media (max-width: 768px) {
    .padding {
        padding: 0 14px;
    }
    .fz64 {
        font-size: 9vw;
        width: 100% !important;
        max-width: max-content !important;
    }
    .fz114 {
        font-size: 16vw;
    }
    .fz48,
    h3 {
        font-size: 6vw !important;
    }
    .fz60 {
        font-size: 8.8vw;
        font-weight: 700;
    }
    p {
        font-size: 3vw !important;
    }
    .wrapper {
        max-width: 95%;
    }
}
