/* 

PINK        #FF3F8A
WHITE       #FFFFFF
GREY        #AFAEAD
LIGHT-GRAY  #DCDCDC


*/

@font-face {
    font-family: 'NexaRust';
    src: url('../assets/fonts/NexaRust.ttf');
}
@font-face {
    font-family: 'Mille';
    src: url('../assets/fonts/1942.ttf');
}
@font-face {
    font-family: 'Airstream';
    src: url('../assets/fonts/Airstream.ttf');
}
@font-face {
    font-family: 'Antonio';
    src: url('../assets/fonts/Antonio.ttf');
}
@font-face {
    font-family: 'Arthur-Hill';
    src: url('../assets/fonts/Arthur-Hill.ttf');
}
@font-face {
    font-family: 'Bebas';
    src: url('../assets/fonts/Bebas.ttf');
}
@font-face {
    font-family: 'BreakfastBlend';
    src: url('../assets/fonts/BreakfastBlend.otf');
}
@font-face {
    font-family: 'Cinzel';
    src: url('../assets/fonts/Cinzel.ttf');
}
@font-face {
    font-family: 'Girassol';
    src: url('../assets/fonts/Girassol.ttf');
}
@font-face {
    font-family: 'Impact';
    src: url('../assets/fonts/Impact.ttf');
}
@font-face {
    font-family: 'Krungthep';
    src: url('../assets/fonts/Krungthep.ttf');
}
@font-face {
    font-family: 'MinionPro';
    src: url('../assets/fonts/MinionPro.otf');
}
@font-face {
    font-family: 'Note-this';
    src: url('../assets/fonts/Note-this.ttf');
}
@font-face {
    font-family: 'Papyrus';
    src: url('../assets/fonts/Papyrus.ttf');
}
@font-face {
    font-family: 'Timeless';
    src: url('../assets/fonts/Timeless.ttf');
}
@font-face {
    font-family: 'Aladdin';
    src: url('../assets/fonts/Aladdin.ttf');
}
@font-face {
    font-family: 'CaveatBrush';
    src: url('../assets/fonts/CaveatBrush.ttf');
}
@font-face {
    font-family: 'Danielbk';
    src: url('../assets/fonts/danielbk.ttf');
}

body {
    margin: 0;
    touch-action: none;
}

a {
    text-decoration: none;
}

.logo_ad {
    position: fixed;
    z-index: 100;
    bottom: 30px;
    right: 0;
    height: 80px;
}
@media screen and (max-width: 800px) {
    .logo_ad {
        height: 50px;
        bottom: 15px;
    }
}
.burger-menu {
    position: fixed;
    z-index: 150;
    top: 23px;
    right: 23px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    background-color: white;
    -webkit-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.47);
    -moz-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.47);
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.47);
}

/* BURGER MENU CLOSED --------------------------------------------------------------- */

.burger-menu.closed {
    height: 80px;
    width: 80px;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;
}

.burger-menu.closed svg {
    height: 20px;
    width: 30px;
}

.burger-menu.closed svg .cls-1 {
    stroke: #FF3F8A;
    transition: all 0.2s;
}

.burger-menu.closed:hover {
    background-color: #FF3F8A;
}

.burger-menu.closed:hover .cls-1 {
    stroke: white;
}

@media screen and (max-width: 800px) {
    .burger-menu {
        top: 15px;
        right: 15px;
    }

    .burger-menu.closed {
        height: 50px;
        width: 50px;
    }

    .burger-menu.closed svg {
        height: 15px;
        width: 25px;
    }
}


/* BURGER MENU OPEN */

.burger-menu.open {
    display: none;
    font-family: 'Roboto', sans-serif;
}

.burger-menu.open .button-close {
    position: absolute;
    right: 0;
    top: 0;
    height: 80px;
    width: 80px;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.burger-menu.open .button-close:hover {
    transform: rotate(45deg);
}

.burger-menu.open .menu-anchor {
    border-bottom: 1px solid #DCDCDC;
    padding: 60px 60px 30px 60px;
}

.burger-menu.open .menu-anchor h1 {
    color: #AFAEAD;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
}

.burger-menu.open .menu-anchor ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.burger-menu.open .menu-anchor ul li a {
    color: #000000;
    font-family: 'NexaRust';
    font-size: 16px;
    line-height: 40px;
    transition: all 0.2s;
}

.burger-menu.open .menu-anchor ul li a:hover {
    color: #FF3F8A;
}

.burger-menu.open .menu-anchor .socialshare-container {
    display: flex;
    flex-direction: column;
    width: 250px;
    margin-top: 10px;
}

.burger-menu.open .menu-anchor .socialshare-container a {
    border: 1px solid #DCDCDC;
    color: #FF3F8A;
    font-weight: 600;
    border-radius: 5px;
    padding: 15px 30px;
    margin: 5px 0;
    transition: all 0.2s;
}

.burger-menu.open .menu-anchor .socialshare-container a i {
    width: 20px;
}

.burger-menu.open .menu-anchor .socialshare-container a:hover {
    background-color: rgba(175, 174, 173, 0.3);
}

.burger-menu.open .menu-contact-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 30px 40px;
}

.burger-menu.open .menu-contact-container img {
    height: 50px;
}

.burger-menu.open .menu-contact-container .socialshare-ad-container a {
    margin: 20px 10px;
    display: inline-block;
}

.burger-menu.open .menu-contact-container .socialshare-ad-container svg {
    height: 40px;
    width: 40px;
}

.burger-menu.open .menu-contact-container .socialshare-ad-container svg .cls-2 {
    fill: #AFAEAD;
    transition: all 0.2s;
}

.burger-menu.open .menu-contact-container .socialshare-ad-container a:hover svg .cls-2 {
    fill: #FF3F8A;
}

.burger-menu.open .menu-contact-container p {
    font-size: 13px;
    line-height: 22px;
    color: #AFAEAD;
}

.burger-menu.open .menu-contact-container p a {
    color: #AFAEAD;
    text-decoration: underline;
    text-transform: uppercase;
    transition: all 0.2s;
}

.burger-menu.open .menu-contact-container p a:hover {
    color: #FF3F8A;
}

.burger-menu.open .download-wishcard {
    padding: 0 60px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 5px 39px 0px rgba(0,0,0,0.16);
    -moz-box-shadow: 0px 5px 39px 0px rgba(0,0,0,0.16);
    box-shadow: 0px 5px 39px 0px rgba(0,0,0,0.16);
    background-color: #ffffff;
    color: #FF3F8A;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    transition: all 0.2s;
}

.burger-menu.open .download-wishcard svg {
    height: 20px;
    width: 15px;
}

.burger-menu.open .download-wishcard svg .cls-3 {
    stroke: #FF3F8A;
    transition: all 0.2s;
}

.burger-menu.open .download-wishcard span {
    font-weight: 600;
    margin-left: 10px;
}

.burger-menu.open .download-wishcard:hover {
    background-color: #FF3F8A;
    color: #ffffff;
}

.burger-menu.open .download-wishcard:hover svg .cls-3 {
    stroke: #ffffff;
}

@media screen and (max-width: 800px) {
    .burger-menu.open {
        max-height: calc(100vh - 95px);
        overflow-y: scroll;
    }
    .burger-menu.open .button-close {
        right: 15px;
        top: 15px;
        height: 15px;
        width: 15px;
    }   
    .burger-menu.open .menu-anchor {
        padding: 30px 30px 20px 30px;
    }
    .burger-menu.open .menu-anchor h1 {
        font-size: 11px;
    }
    .burger-menu.open .menu-anchor ul li a {
        font-size: 14px;
        line-height: 30px;
    }
    .burger-menu.open .menu-anchor .socialshare-container {
        width: 205px;
    }
    .burger-menu.open .menu-anchor .socialshare-container a {
        padding: 10px 20px;
        margin: 5px 0;
        font-size: 14px;
    }
    .burger-menu.open .menu-anchor .socialshare-container a i {
        width: 15px;
        font-size: 14px;
    }
    .burger-menu.open .menu-contact-container {
        padding: 20px 20px;
    }
    .burger-menu.open .menu-contact-container img {
        height: 30px;
    }
    .burger-menu.open .menu-contact-container .socialshare-ad-container a {
        margin: 15px 5px;
    }
    .burger-menu.open .menu-contact-container .socialshare-ad-container svg {
        height: 30px;
        width: 30px;
    }
    .burger-menu.open .menu-contact-container p {
        font-size: 12px;
        line-height: 20px;
        margin: 0;
    }
    .burger-menu.open .download-wishcard {
        padding: 0 30px;
        padding: 15px 0;
    }
    .burger-menu.open .download-wishcard svg {
        height: 20px;
        width: 15px;
    }
    .burger-menu.open .download-wishcard span {
        margin-left: 10px;
        font-size: 14px;
    }
}


/* GRID --------------------------------------------------------------- */

.block {
    position: absolute;
    
    background-size: cover;
    color: white;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    font-family: 'Roboto', sans-serif;
    transition: all 0.2s;
}

.block:hover {
    -webkit-box-shadow: 0px 0px 70px 0px rgba(0,0,0,0.74);
    -moz-box-shadow: 0px 0px 70px 0px rgba(0,0,0,0.74);
    box-shadow: 0px 0px 70px 0px rgba(0,0,0,0.74);
}

.letter-block {
    background-color: #ffffff;
    color: #484B4B;
}

.normal-block {
    background-image: url("../data/img/bg-metalic.jpg");
    background-repeat: no-repeat;
    color: white;
    transition: all 0.2s;
}   

.normal-block::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: transparent;
    transition: all 0.2s;
}

.normal-block:hover:after {
    background-color: #FF3F8A;
}

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

.bigletter {
    font-size: 150px;
}

.date {
    font-family: 'Playfair Display', serif;
    position: absolute;
    left: 10px;
    top: 10px;
    line-height: 15px;
    z-index: 1;
}

.message {
    margin: 10px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.26px;
    line-height: 21px;
    font-size: 14px;
    z-index: 1;
}

.social-share {
    color: white;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 15px;
    height: 15px;
    text-decoration: none;
    transition: all 0.2s;
    z-index: 1;
}

.social-share svg {
    width: 15px;
    height: 15px;
}

.social-share:hover {
    transform: rotate(45deg);
}




/* SOCIAL SHARE --------------------------------------------------------------- */

.social-share-container-open {
    display: none;
    z-index: 1;
    background-color: white;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 5px 0 5px 5px;
    -webkit-box-shadow: -10px 10px 30px 0px rgba(0,0,0,0.36);
    -moz-box-shadow: -10px 10px 30px 0px rgba(0,0,0,0.36);
    box-shadow: -10px 10px 30px 0px rgba(0,0,0,0.36);
}

.social-share-container-open ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.social-share-container-open ul li {
    border-bottom: 1px solid #DCDCDC;
    
}

.social-share-container-open ul li a {
    color: #FF3F8A;
    font-size: 14px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    transition: all 0.2s;
}

.social-share-container-open ul li a:hover {
    background-color: rgba(175, 174, 173, 0.3);
}

.social-share-container-open i {
    color: #FF3F8A;
    margin-right: 10px;
    width: 16px;
}

.social-share-container-open ul li:nth-child(1) {
    text-align: right;
    
}

.social-share-container-open ul li:nth-child(1) a {
    position: relative;
    height: 15px;
}

.social-share-container-open ul li:nth-child(1) a svg {
    position: absolute;
    right: 10px;
    top: 12px;
    width: 15px;
    height: 15px;
    transform: rotate(45deg);
}

.social-share-container-open ul li:nth-last-child(1) {
    border-bottom: 0px solid transparent;
}



/* First HomePage --------------------------------------------------------------- */

.first-homepage {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 75;
    width: 100vw;
    height: 100vh;
    background-color: rgba(68, 68, 68, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.first-homepage img {
    max-height: 60vh;
    max-width: 90vw;
    object-fit: contain;
}

/* NEXT BUTTON --------------------------------------------------------------- */

.next-button {
    background-color: #ffffff;
    border-radius: 25px;
    color: #FF3F8A;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.7px;
    padding: 15px 30px;
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    margin-top: 60px;
    transition: all 0.2s;
}

.next-button svg {
    width: 35px;
    height: 15px;
    margin-left: 30px;
}

.next-button svg .cls-5 {
    fill: #FF3F8A;
    stroke: #FF3F8A;
    transition: all 0.2s;
}

.next-button:hover {
    background-color: #FF3F8A;
    color: #ffffff;
}

.next-button:hover svg .cls-5 {
    fill: #ffffff;
    stroke: #ffffff;
}


/* Explain HomePage --------------------------------------------------------------- */


.explain-homepage {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 75;
    width: 100vw;
    height: 100vh;
    background-color: rgba(68, 68, 68, 0.45);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Roboto', sans-serif;
    display: none;
}

.explain-homepage.visible {
    display: flex;
}

.explain-homepage .explain-container {
    background-color: #ffffff;
    border-radius: 5px;
    padding: 70px 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.explain-homepage .explain-container img {
    width: 90px;
    height: 90px;
}

.explain-homepage .explain-container p {
    color: #000000;
    text-transform: uppercase;
    
    letter-spacing: 1.7px;
    

    font-size: 23px;
    line-height: 47px;
    text-align: center;
    max-width: calc(80vw - 100px);
    margin: 50px 0;
}

@media screen and (max-width: 550px) {
    .explain-homepage .explain-container {
        padding: 35px 40px;
    }
    .explain-homepage .explain-container p {
        font-size: 17px;
        line-height: 35px;
        margin: 30px 0;
    }
}

@media screen and (min-width: 1110px) {
    .explain-homepage .explain-container {
        padding: 70px 100px;
    }
    .explain-homepage .explain-container p {
        max-width: 780px;
        font-size: 30px;
        line-height: 55px;
    }
}

.explain-homepage .explain-container .button-close {
    position: absolute;
    right: 30px;
    top: 30px;
    height: 20px;
    width: 20px;
}

.explain-homepage .explain-container .button-close .cls-6 {
    stroke: #000000;
    transition: all 0.2s;
}

.explain-homepage .explain-container .button-close:hover .cls-6 {
    stroke: #FF3F8A;
}

.explain-homepage .explain-container .next-button {
    background-color: #EEEEEE;
    margin-top: 0;
}

.explain-homepage .explain-container .next-button:hover {
    background-color: #FF3F8A;
}
.now-form #block_x,
.now-form label[for="block_x"],
.now-form #block_y,
.now-form label[for="block_y"]{
    display: none;
}

article span {
    font-size: 20px;
    text-transform: none;
}