@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Exo 2", sans-serif;
    border: none;
    outline: none;
    text-decoration: none;
    color: var(--primary-text);
}

html {
    --primary: #f92552;
    --primary-text: #ffffff;
    --sub-text: #1d1813;
    --border: 1px solid #00000024;
    --lite-border: 1px solid #0000000b;
    --bg: #282840
}

[class*="grid"] {
    display: grid;
}

.align-center {
    align-items: center;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 8rem;
    position: relative;
}

body {
    -webkit-text-size-adjust: 100%;
    background: #10111e;
}

p,
a,
input,
select,
textarea,
button {
    font-size: 1.6rem;
    font-weight: 500;
}

p {
    color: var(--sub-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase;
    font-weight: 400;
    /* font-style: italic; */

}

img,
video {
    max-width: 100%;
}

.container {
    max-width: 1240px;
    width: 100%;
    margin: auto;
    padding: 0 1.5rem;
}

button {
    padding: 1.5rem 3rem;
    background: var(--primary);
    font-weight: 700;
    line-height: 1;
    color: white;
    cursor: pointer;
    text-transform: uppercase;
}

/* header section */
header {
    height: 8rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99999;
    background: transparent;
    transition: 0.3s;
}

header.sticky {
    background: var(--bg);
    transition: 0.3s;
    border: unset;
}

header button {
    transition: 0.3s;
}

header.sticky button {
    padding: 1rem;
    font-size: 1.3rem;
}

header .logo h1 {
    transition: 0.3s;
    line-height: 0.8;
}

header.sticky .logo h1 {
    font-size: 2rem;
}

.logo img {
    height: 6rem;
}

.logo h1 {
    font-size: 3rem;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -1px;
    color: white;
}

header .container {
    height: 100%;
    max-width: 100%;
    padding: 0 5rem;
}

header .links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

header .links a {
    transition: 0.3s;
    color: white;
}

header .links a:hover {
    color: var(--primary);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
}

.menu {
    font-size: 3rem;
    display: none;
}

main {
    position: relative;
    min-height: 60dvh;
    height: 60rem;
    overflow: hidden;
}

main::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#10111e60, #10111e);
    z-index: 1;
}

main .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

main .container {
    position: relative;
    z-index: 3;
    height: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem;
    flex-direction: column;
    gap: 15rem;
}

main.contact {
    height: fit-content;
    min-height: fit-content;
    padding: 8rem 0;
}

main .container .title {
    display: flex;
    flex-direction: column;
}

main .title h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
}

main .title h2 {
    font-size: 3.5rem;
}

main .title span {
    font-size: 1.8rem;
    text-transform: uppercase;
    font-style: italic;
    color: var(--primary);
}

.title button {
    margin-top: 3rem;
}



section {
    padding: 8rem 0;
}

section .title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5rem;
}

.title h2 {
    font-size: 5rem;
    font-weight: 800;
}

section.bg {
    background: white;
}

section.bg :is(h2, p) {
    color: var(--sub-text);
}

.card {
    width: 100%;
    aspect-ratio: 1/1.3;
    overflow: hidden;
    position: relative;
    border-bottom: 1rem solid var(--primary);
}

.card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#10111e00, #10111e);
}

.card h3 {
    font-size: 3.5rem;
    padding: 3rem;
    text-align: center;
    color: white;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    line-height: 1.1;
    font-weight: 700;
}

.card p {
    background: var(--primary);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 3rem;
    color: white !important;
    line-height: 1.3;
    transform: translateY(100%);
    transition: 0.3s;
}

.card:hover p {
    transform: translateY(0);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.title.t2 h2 {
    font-size: 3rem;
    border-bottom: 1px solid var(--primary);
}

.brands {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5rem;
    text-align: center;
}

.brands .item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    opacity: 0.5;
}

.brands .item p {
    color: white;
    font-size: 3rem;
    padding-top: 1rem;
    border-top: 1px solid white;
    text-transform: uppercase;
}

.cta-list-cta-image svg {
    width: unset;
    height: 8rem;
}

section.bg-2 {
    position: relative;
    overflow: hidden;
}

section.bg-2 .container {
    position: relative;
    z-index: 3;
}

section.bg-2 :is(h2, p, h3) {
    color: white;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

section.bg-2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #10111e, #10111ef2, #10111e00);
    z-index: 2;
}

section.bg-2::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(-180deg, #10111e, #10111e00);
    z-index: 2;
}

section.bg-2 .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

section.bg-2 .grid-2 {
    grid-template-columns: 1.3fr 1fr;
}

.title-2 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.title-2 h2 {
    font-size: 5rem;
    font-weight: 700;
    border-bottom: 0.5rem solid var(--primary);
    width: fit-content;
}

.title-2 p {
    font-size: 2.3rem;
}

.gap-3 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.card-2 {
    padding: 2rem;
    border-bottom: 0.5rem solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.card-2 h3 {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary) !important;
}

.card-2 p {
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 700;
}

.cta {
    position: relative;
}

.cta .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    left: 0;
    top: 0;
    z-index: 1;
    filter: grayscale(1);
    opacity: 0.5;
}

.cta .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 3rem;
}

.cta h2 {
    font-size: 5rem;
    font-weight: 800;
}

footer {
    padding: 5rem 0;

}

footer .f-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    border-bottom: 1px solid #ffffff37;
    padding-bottom: 3rem;
}

footer .social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

footer .f-links a {
    display: flex;
    flex-direction: column;
    font-size: 1.2rem;
    color: #ffffff94;
}

footer .f-links span {
    font-size: 1.8rem;
}

footer i {
    width: 4rem;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 1px solid #ffffff37;
    border-radius: 5rem;
}

footer .copy .f-links {
    padding: unset;
    border: unset;
}

footer .copy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}

footer .copy p {
    color: white;
    font-size: 1.4rem;
}

footer .copy a {
    font-size: 1.6rem;
}

form {
    background: var(--bg);
    padding: 5rem;
}

form .grid-1-2 {
    grid-template-columns: 1fr 2fr;
    text-align: left;
    gap: 5rem;
    padding-top: 0;
}

form input,
form select {
    width: 100%;
    padding: 1.5rem 2rem;
    background: #ffffff08;
    color: white;
    border: 1px solid #ffffff13;
    transition: 0.3s;
}

form label {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

form p {
    color: #ffffff9d;
    font-weight: 300;
}

form h3 {
    font-size: 2rem;
    font-style: italic;
    font-weight: 800;
    margin-bottom: 1rem;
}

input:focus {
    border-color: var(--primary);
}

form .text-block {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

form h2 {
    padding-bottom: 1.5rem;
    text-align: left;
    font-size: 3rem;
    font-weight: 800;
    font-style: italic;
    border-left: 0.5rem solid var(--primary);
    margin: unset;
    line-height: 1;
    padding-top: 1rem;
    padding-left: 2rem;
    margin-bottom: 3rem;
}

form button {
    margin-top: 3rem;
    width: 100%;
    padding: 2rem;
}
@media (max-width: 1024px) {
    html{
        font-size: 50%;
    }
    form .grid-1-2{
        grid-auto-columns: 1fr;
    }
}
@media (max-width: 720px) {
    html {
        font-size: 62%;
    }

    [class*="grid"] {
        grid-template-columns: 1fr !important;
    }

    header {
        box-shadow: #959da533 0px 8px 24px;
    }

    /* nav bar */
    header .container {
        padding: 0 1.5rem;
    }

    .toogle-menu {
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        justify-content: space-around;
        gap: 0.8rem;
        width: 3rem;
        height: 2.5rem;
        cursor: pointer;
        margin-left: auto;
    }

    .toogle-menu>span {
        width: 100%;
        height: 2px;
        border-radius: 1rem;
        background: var(--primary-text);
    }

    .toogle-menu>span:first-child {
        width: 50%;
        margin-left: auto;
    }

    .toogle-menu>span:last-child {
        width: 80%;
        margin-left: auto;
    }

    header.active .toogle-menu span:first-child,
    header.active .toogle-menu span:last-child {
        width: 100%;
    }

    .toogle-menu span:first-child,
    .toogle-menu span:last-child {
        transition: 0.3s;
    }

    header {
        background: var(--bg);
    }

    header .links {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        height: calc(100vh - 8rem);
        position: fixed;
        top: 8rem;
        background: var(--bg);
        backdrop-filter: blur(15px);
        width: 100%;
        padding: 5rem 0;
        left: 0px;
        transition: 0.5s;
        transform: translateX(100%);
    }

    header.active .links {
        transform: translateX(0%) !important;
    }

    header .links a {
        color: var(--primary-text);
    }

    header .logo h1 {
        font-size: 1.6rem !important;
    }

    header button {
        font-size: 1.3rem !important;
        padding: 0 !important;
        background: unset;
        color: var(--primary);
    }

    main .title h2 {
        font-size: 1.6rem;
    }

    main {
        height: 100dvh;
        min-height: unset;
    }

    section {
        padding: 5rem 0;
    }

    .title h2 {
        font-size: 3rem;
        text-align: center;
    }

    .cta h2 {
        font-size: 3rem;
    }

    main .container {
        gap: 5rem;
        padding: 2rem;
    }

    form {
        padding: 3rem;
    }

    footer .f-links {
        flex-direction: column;
        text-align: center;
    }

    footer .f-links {
        gap: 3rem;
    }
}