@font-face {
    font-family: 'Avenir-Black';
    src: url(fonts/Avenir-Black.otf);
}

@font-face {
    font-family: 'Avenir-Light';
    src: url(fonts/Avenir-Light.ttf);
}

@font-face {
    font-family: 'Avenir-Roman';
    src: url(fonts/Avenir-Roman.otf);
}

html {
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

* {
    max-width: 100%;
}

*,
:after,
:before {}

html,
body {

    margin: 0
}

#scrollable-content {
    height: 100%;
    overflow-y: scroll;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

#scrollable-content::-webkit-scrollbar {
    display: none;
}

body {
    background-color: black;
    color: white;
    font-family: "Avenir-Black";
    padding: 0 5%;
    min-height: 100%;
    position: fixed;
    overflow-y: scroll;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    height: 100%;
    background: url(images/EnzoBackground.webp);
    background: url(images/EnzoBackground.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
}

h1,
h2,
h3,
p {
    text-align: center;
}


h1 {
    margin-bottom: 0;
}

h4 {
    margin: 0;
    font-family: "Avenir Light";
    font-size: 11px;
    text-align: center;
}

p {
    font-family: "Avenir Medium";
}

span {
    font-family: "Avenir-Roman";
}

ol {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 25%;
    grid-row-gap: 50px;
    margin: 50px 0;
}

.grid {
    display: flex;
    align-items: center;
    column-gap: 3px !important;
    justify-content: center;
}

.NFT {
    margin: 0;
}

.container-NFT {
    text-align: center;
    margin: 0;
    width: 50%;
}

.text {
    width: 50%;
    margin: 0;
}

.underline {
    border-bottom: 1px solid white;
}

.gridGift {
    align-items: center;
    column-gap: 7px;
    display: flex;
    padding: 0;
    list-style: none;
    row-gap: var(--grid-mobile-vertical-spacing);
}

.gifts {
    font-size: 21px;
    font-family: "Avenir-Roman";
}

/* RSVP */
.rsvpGroup {
    margin: 30px 0;
    margin-top: 43px;
}

.gridRsvp {
    align-items: center;
    column-gap: 7px;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
    row-gap: var(--grid-mobile-vertical-spacing);
}

#RSVP {
    margin: 0;
    font-size: 39px;
}

.circle {
    width: 6px;
    border-radius: 50%;
    background: #ffffff;
}

.circle::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

/* grid logos RS */
.logoRS {
    height: 37px;
    box-shadow: -1px -1px 67px 20px rgba(255, 0, 0, 0.07);
    -webkit-box-shadow: -1px -1px 67px 20px rgba(255, 0, 0, 0.07);
    -moz-box-shadow: -1px -1px 67px 20px rgba(255, 0, 0, 0.07);
}

.list-unstyled {
    margin: 0;
    padding: 0;
    list-style: none;
}

.list-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.list-social__link {
    align-items: center;
    display: flex;
    padding: 10px;
    color: rgb(var(--color-foreground));
}

/* button */
button {
    margin: 20px 0;
    border: none;
    -webkit-appearance: none;
    -webkit-color: white;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 15px;
    font-family: "Avenir-Black";
    box-shadow: -1px -1px 67px -1px rgba(255, 255, 255, 0.07);
    -webkit-box-shadow: -1px -1px 67px -1px rgba(255, 255, 255, 0.07);
    -moz-box-shadow: -1px -1px 67px -1px rgba(255, 255, 255, 0.07);
}

.button-black {
    background-color: black;
}

.button-white {
    color: black;
}

/* Claim*/
.Claim {
    margin: 25px 0;
}

.claim-text {
    border-bottom: 12px;
    padding: 14px;
    padding-bottom: 70px;
    padding-top: 0;
    font-size: 25px;
}

.input-box {
    display: flex;
    height: 55px;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* INPUT */
.contact-form {
    border-bottom: 2px solid white;
    margin-bottom: 3%;
    color: grey;
}

input {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: "Avenir-Black";
    color: white;
    background: #ff000000;
    border: none;
    resize: vertical;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

textarea:focus,
input:focus {
    outline: none;
}

p {
    text-align: left;
}

/* POP UP */
#popupForm {
    display: none;
    position: fixed;
    width: 100%;
    align-items: center;
    height: 100%;
}

.popupbox {
    box-shadow: -1px -1px 44px 0px rgb(255 255 255 / 30%);
    height: 63Vh;
    border: 1px solid white;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 8px;
    width: 90%;
    z-index: 99;
}

.popFormcenter {
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
    margin: auto;
}

.center {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column;
}

.button-popup {
    justify-content: end;
    top: 2%;
    position: absolute;
    right: 2%;
}

.btn-popup {
    cursor: pointer;
}


/* For click outside popup form */
.blocker {
    top: 0;
    right: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    -webkit-backdrop-filter: blur(10px);
}

.popupmail {
    padding: 0 19px;
}

#formpopup {
    margin-bottom: 9px !important;
}



img.logoKaeles {
    width: 36px;
}

.footer {
    margin: 10px;
}