@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", sans-serif;
    border: none;
    outline: none;
    text-decoration: none;
    color: var(--primary-text);
}

:root {
    --primary: #171717;
    --primary-text: #171717;
    --bg: #ededed;
    --bg2: #f4f4f4;
    --sub-text: #747474;
    --border: 1px solid #171717;
    --border-lite: 1px solid #dedede;
    --light: #ffffff;
}

[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%;
}

i svg {
    width: unset;
    height: 1.8rem;
    fill: var(--light);
}

p,
a,
input,
select,
textarea,
button {
    font-size: 1.6rem;
    font-weight: 500;
}

p {
    color: var(--sub-text);
    line-height: 1.8;
}

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 {
    height: 5rem;
    cursor: pointer;
    background: var(--primary-text);
    color: var(--light);
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

button .center {
    display: flex;
    align-items: center;
    gap: 1rem;
}

button p {
    color: var(--light);
    text-transform: capitalize;
    transition: 0.3s;
    font-size: 2rem;
    line-height: 1;
    white-space: nowrap;
}

button i {
    width: 3rem;
    overflow: hidden;
    transition: 0.3s;
    color: var(--light);
    font-size: 2rem;
}

button i:nth-child(3) {
    width: 0rem;
    opacity: 0;
}

button:hover i:nth-child(1) {
    width: 0;
    opacity: 0;
}

button:hover i:nth-child(3) {
    width: 3rem;
    opacity: 1;
}

button.empty :is(p, i) {
    color: var(--primary-text);
}

button:hover {
    background: var(--primary);
    border-color: transparent;
}

button.empty {
    border: var(--border);
    background: transparent;
    color: var(--primary-text);
}

header {
    background: url(images/bg.jpg);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 5rem;
}

header .logo img {
    height: 10rem;
}

nav,
nav .container {
    height: 5rem;
    width: 100%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

nav .links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

nav button {
    height: 5rem;
    background: var(--primary);
    color: white;
    padding: 0 3rem;
}

main {
    padding: 10rem 0;
}

main .title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    max-width: 70rem;
    width: 100%;
    margin: auto;
    gap: 1.5rem;
}

main .title h1 {
    font-size: 8rem;
    text-transform: capitalize;
    font-weight: 900;
    line-height: 1;
}

main .title p {
    font-size: 2rem;
}

.buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

footer {
    padding-bottom: 3rem;
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3rem;
    border-top: var(--border-lite);
    margin-top: 5rem;
}

footer .links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

footer .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

footer a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.8rem;
}

footer i {
    font-size: 3rem;
}

footer h2 {
    font-size: 3rem;
}

.mb {
    display: none;
}

.contact {
    border-bottom: 1px solid black;
    padding-bottom: 0.3rem;
    width: fit-content !important;
    margin: auto;
}

@media (max-width: 991px) {
    main .title h1 {
        font-size: 4rem;
    }

    nav {
        display: none;
    }

    main .title p {
        font-size: 1.6rem;
    }

    .buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .buttons :is(a, button) {
        width: 100%;
    }

    footer .container {
        margin: 0;
    }

    .mb {
        display: block;
    }
}