@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter Tight", sans-serif;
    border: none;
    outline: none;
    text-decoration: none;
    color: var(--primary-text);
}

:root {
    --primary: #000000;
    --primary-text: #f0ecde;
    --bg: #000000;
    --sub-text: #747474;
    --border: 1px solid #ffffff2a;
}

[class*="grid"] {
    display: grid;
}

.align-center {
    align-items: center;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 8rem;
}

body {
    -webkit-text-size-adjust: 100%;
    background: var(--bg);
}

i svg {
    width: unset;
    height: 1.8rem;
    fill: var(--light);
}

p,
a,
input,
select,
textarea,
button {
    font-size: 1.8rem;
    font-weight: 500;
}

p {
    color: var(--sub-text);
    line-height: 1.5;
}

h1,
h2,
h3 {
    text-transform: capitalize;
}

img,
video {
    max-width: 100%;
}

.container {
    max-width: 1240px;
    padding: 0 2rem;
    margin: auto;
    width: 100%;
}

.container-max {
    max-width: 1540px;
    padding: 0 2rem;
    margin: auto;
    width: 100%;
}

button,
.btn {
    cursor: pointer;
    background: var(--primary-text);
    color: var(--primary);
    border-radius: 1.5rem;
    padding: 1.5rem 3rem;
    position: relative;
    overflow: hidden;
}

section {
    padding: 8rem 0;
}

header {
    height: 10rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .logo img {
    height: 7rem;
}

main {
    padding: 10rem 0;
}

main .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 80rem;
    gap: 2rem;
    width: 100%;
    margin: auto;
}

main .content h1 {
    font-size: 6rem;
    line-height: 1.1;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10rem;
    align-items: center;
}

.frame {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(1);
}

.title {
    text-align: center;
    margin-bottom: 5rem;
}

.title h2 {
    font-size: 5rem;
}

.text-box h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.card {
    max-width: 40rem;
    width: 100%;
    padding: 3rem;
    border: var(--border);
}

.service-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cta {
    max-width: 70rem;
    width: 100%;
    padding: 5rem;
    background: #171717;
    margin: auto;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.cta h2 {
    font-size: 4rem;
    font-weight: 600;
}

.cta a {
    font-size: 3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

footer {
    text-align: center;
    font-size: 1.5rem;
    padding: 1.5rem 0;
    color: var(--sub-text);
}

@media (max-width:991px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    main .content h1 {
        font-size: 3rem;
    }

    p {
        font-size: 1.6rem;
    }

    button {
        font-size: 1.6rem;
    }

    .text-box h2 {
        font-size: 2.5rem;
    }

    section {
        padding: 5rem 0;
    }

    .fix {
        grid-area: 1 / 1 / 2 / 2;
    }

    .card h3 {
        font-size: 2rem;
    }

    .title h2 {
        font-size: 3rem;
    }

    .cta h2 {
        font-size: 3rem;
    }

    .cta a {
        font-size: 1.8rem;
    }

    .cta {
        padding: 3rem;
    }
}