*,
*::after,
*::before {
    box-sizing: border-box;
}

* {
    outline: 0;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

input {
    box-shadow: none;
    border-radius: 0;
}

ul,
li {
    padding-left: 0;
    list-style: none;
}

address {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

p {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
}

ul {
    margin-bottom: 0;
    padding-left: 0;
}

button {
    transition: 0.3s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

@font-face {
    font-family: "VisbyCF";
    font-weight: 100;
    font-style: normal;
    src: url("/assets/fonts/VisbyCF/VisbyCF-Thin.otf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "VisbyCF";
    font-weight: 200;
    font-style: normal;
    src: url("/assets/fonts/VisbyCF/VisbyCF-ExtraLight.otf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "VisbyCF";
    font-weight: 300;
    font-style: normal;
    src: url("/assets/fonts/VisbyCF/VisbyCF-Light.otf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "VisbyCF";
    font-weight: 400;
    font-style: normal;
    src: url("/assets/fonts/VisbyCF/VisbyCF-Regular.otf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "VisbyCF";
    font-weight: 500;
    font-style: normal;
    src: url("/assets/fonts/VisbyCF/VisbyCF-Medium.otf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "VisbyCF";
    font-weight: 600;
    font-style: normal;
    src: url("/assets/fonts/VisbyCF/VisbyCF-DemiBold.otf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "VisbyCF";
    font-weight: 700;
    font-style: normal;
    src: url("/assets/fonts/VisbyCF/VisbyCF-Bold.otf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "VisbyCF";
    font-weight: 800;
    font-style: normal;
    src: url("/assets/fonts/VisbyCF/VisbyCF-ExtraBold.otf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "VisbyCF";
    font-weight: 900;
    font-style: normal;
    src: url("/assets/fonts/VisbyCF/VisbyCF-Heavy.otf") format("truetype");
    font-display: swap;
}

html {
    font-size: 2.6666666667vw;
}

@media screen and (min-width: 700px) {
    html {
        font-size: 0.4777vw;
    }
}

body {
    position: relative;
    height: 100%;
    font-family: "VisbyCF", sans-serif;
    background: linear-gradient(244.71deg, #601F21 0.44%, #171516 25.1%, #171516 74.43%, #601F21 99.09%);
}

@media screen and (max-width: 700px) {
    body {
        height: 100vh;
    }
}

input,
textarea {
    font-family: "VisbyCF", sans-serif;
}

.g-container {
    margin: 0 auto;
    max-width: 144rem;
    padding: 0 8rem;
}

@media only screen and (max-width: 700px) {
    .g-container {
        padding: 0 2rem;
    }
}

.page {
    padding-top: 5rem;
    padding-bottom: 3rem;
}

.logo {
    width: 18rem;
    height: 3rem;
    position: relative;
    display: flex;
    margin: auto;
    margin-bottom: 5.5rem;
}

.logo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wrapper {
    width: 81.5rem;
    height: 74.4rem;
    margin: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13.8rem;
}

.wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13.8rem;
}

.content {
    background: linear-gradient(244.71deg, #601F21 0.44%, #171516 25.1%, #171516 74.43%, #601F21 99.09%);
    width: 44.2rem;
    height: 41.2rem;
    border-radius: 7rem;
    padding: 4.4rem 3.4rem;
    position: relative;
    z-index: 2;
}

.content .title {
    font-size: 7rem;
    line-height: 7.2rem;
    font-weight: 700;
    color: white;
    padding-bottom: 1.7rem;
    text-align: center;
}

.content .desc {
    font-size: 1.8rem;
    line-height: 2.8rem;
    color: white;
    text-align: center;
    width: 27.2rem;
    margin: auto;
    padding-bottom: 4.6rem;
}

.content .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.7rem 2.3rem;
    gap: 0.8rem;
    border-radius: 3.9rem;
    font-size: 1.9rem;
    line-height: 2.5rem;
    color: white;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.15);
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    letter-spacing: 0.1rem;
}

.content .btn:hover {
    background-color: rgba(230, 230, 230, 0.25);
}

.content .btn svg {
    width: 2.4rem;
    height: 1.9rem;
}

.socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-top: 5.5rem;
}

.socials svg {
    width: 2.4rem;
    height: 2.4rem;
}

@media screen and (max-width: 700px) {
    .page {
        padding: 4rem 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .logo {
        width: 13.1rem;
        height: 1.8rem;
        margin: 0 auto;
    }

    .wrapper {
        width: 32rem;
        height: 29.2rem;
        border-radius: 5.4rem;
    }

    .wrapper img {
        border-radius: 5.4rem;
    }

    .content {
        width: 19.5rem;
        height: 18.1rem;
        border-radius: 3.5rem;
        padding: 2rem 2.4rem;
    }

    .content .title {
        font-size: 2.6rem;
        line-height: 2.8rem;
        padding-bottom: 0.6rem;
    }

    .content .desc {
        font-size: 0.9rem;
        line-height: 1.4rem;
        width: 13.6rem;
        padding-bottom: 2.2rem;
    }

    .content .btn {
        padding: 0.8rem 0.9rem;
        border-radius: 1.8rem;
        font-size: 0.9rem;
        line-height: 1.2rem;
        letter-spacing: 0.05rem;
    }

    .content .btn svg {
        width: 1rem;
        height: 0.8rem;
    }

    .socials {
        padding-top: 0;
    }
}