html {
    font-size: 16px;
    width: 100vw;
    overflow: hidden;
}

html.scrollOff {
    overflow-y: hidden;
    height: 100vh;
}

ul, ol, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #000;
}

figure {
    margin: 0;
}


.content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    margin: auto;
    background: linear-gradient(rgb(40, 40, 40, 0.7), rgb(159, 40, 66, 0.7)), url(../assets/images/under-construction/bg-image.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.content h1{
    font-family: Cunia, sans-serif;
    color: #F5B335;
    font-size: 1.5rem;
    text-align: center;
    width: 80%;
}

.content h3{
    font-family: Avenir, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    margin: 0;
    text-align: center;
    color: #fff;
    width: 80%;
}

.content-nav {
    position: absolute;
    bottom: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content-nav .contact-button {
    font-family: Avenir, sans-serif;
    font-weight: 900;
    color: #fff;
    border: 1px solid #fff;
    font-size: 1rem;
    padding: .3rem;
}

.content-nav #facebookLink {
    height: 2rem;
    padding-bottom: 1rem;
}

.content-nav #facebookLink svg{
    height: inherit;
}

@media only screen and (min-width: 425px) {
    .content h1{
        font-size: 1.8rem;
    }
    
    .content h3{
        font-size: 1.2rem;
    }
}

@media only screen and (min-width: 600px) {
    .content h1{
        font-size: 2rem;
    }
    
    .content h3{
        font-size: 1.5rem;
    }
}

@media only screen and (min-width: 768px) {
    .content h1{
        font-size: 2.5rem;
    }
    
    .content h3{
        font-size: 1.8rem;
    }
}

@media only screen and (min-width: 1024px) {
    .content h1{
        font-size: 3rem;
    }
    
    .content h3{
        font-size: 2rem;
    }
}

/*       ANIMATIONS        */

.slide-in {
    -webkit-animation-name: slide-in;
    -webkit-animation-duration: .5s;
    animation-name: slide-in;
    animation-duration: .5s;
    animation-fill-mode: forwards; 
}

@keyframes slide-in {
    from {
        transform: translateX(100vw);
    }
    
    to {
        transform: translateX(0);
    }
}

@-webkit-keyframes slide-in {
    from {
        transform: translateX(100vw);
    }
    
    to {
        transform: translateX(0);
    }
}

.slide-out {
    -webkit-animation-name: slide-out;
    -webkit-animation-duration: .5s;
    animation-name: slide-out;
    animation-duration: .5s;
    animation-fill-mode: forwards; 
}

@keyframes slide-out {
    from {
        transform: translateX(0);
    }
    
    to {
        transform: translateX(100vw);
    }
}

@-webkit-keyframes slide-out {
    from {
        transform: translateX(0);
    }
    
    to {
        transform: translateX(100vw);
    }
}

.slide-down {
    -webkit-animation-name: slide-down;
    -webkit-animation-duration: 1s;
    animation-name: slide-down;
    animation-duration: 1s;
    animation-fill-mode: forwards; 
}

@keyframes slide-down {
    from {
        max-height: 0%;
    }
    
    to {
        max-height: 100%;
    }
}

@-webkit-keyframes slide-down {
    from {
        max-height: 0%;
    }
    
    to {
        max-height: 100%;
    }
}

.slide-up {
    -webkit-animation-name: slide-up;
    -webkit-animation-duration: 1s;
    animation-name: slide-up;
    animation-duration: 1s;
    animation-fill-mode: forwards; 
}

@keyframes slide-up {
    from {
        max-height: 100%;
    }
    
    to {
        max-height: 0%;
    }
}

@-webkit-keyframes slide-up {
    from {
        max-height: 100%;
    }
    
    to {
        max-height: 0%;
    }
}

.fade-in {
    -webkit-animation-name: fade-in;
    -webkit-animation-duration: .5s;
    animation-name: fade-in;
    animation-duration: .5s;
    animation-fill-mode: forwards; 
}

@-webkit-keyframes fade-in {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fade-in {
    from {opacity: 0;}
    to {opacity: 1;}
}

.fade-out {
    -webkit-animation-name: fade-out;
    -webkit-animation-duration: .5s;
    animation-name: fade-out;
    animation-duration: .5s;
    animation-fill-mode: forwards; 
}

@-webkit-keyframes fade-out {
    from {opacity: 1;}
    to {opacity: 0;}
}

@keyframes fade-out {
    from {opacity: 1;}
    to {opacity: 0;}
}

.carousel-in-left{
    -webkit-animation-name: carousel-in-left;
    -webkit-animation-duration: .5s;
    animation-name: carousel-in-left;
    animation-duration: .5s;
    animation-fill-mode: forwards; 
}

@keyframes carousel-in-left {
    from {
        transform: translateX(100vw);
    }
    
    to {
        transform: translateX(0);
    }
}

@-webkit-keyframes carousel-in-left {
    from {
        transform: translateX(100vw);
    }
    
    to {
        transform: translateX(0);
    }
}

.carousel-in-right{
    -webkit-animation-name: carousel-in-right;
    -webkit-animation-duration: .5s;
    animation-name: carousel-in-right;
    animation-duration: .5s;
    animation-fill-mode: forwards; 
}

@keyframes carousel-in-right {
    from {
        transform: translateX(-100vw);
    }
    
    to {
        transform: translateX(0);
    }
}

@-webkit-keyframes carousel-in-right {
    from {
        transform: translateX(-100vw);
    }
    
    to {
        transform: translateX(0);
    }
}

.carousel-out-left {
    -webkit-animation-name: carousel-out-left;
    -webkit-animation-duration: .5s;
    animation-name: carousel-out-left;
    animation-duration: .5s;
    animation-fill-mode: forwards; 
}

@keyframes carousel-out-left {
    from {
        transform: translateX(0);
    }
    
    to {
        transform: translateX(-100vw);
    }
}

@-webkit-keyframes carousel-out-left {
    from {
        transform: translateX(0);
    }
    
    to {
        transform: translateX(-100vw);
    }
}

.carousel-out-right {
    -webkit-animation-name: carousel-out-right;
    -webkit-animation-duration: .5s;
    animation-name: carousel-out-right;
    animation-duration: .5s;
    animation-fill-mode: forwards; 
}

@keyframes carousel-out-right {
    from {
        transform: translateX(0);
    }
    
    to {
        transform: translateX(100vw);
    }
}

@-webkit-keyframes carousel-out-right {
    from {
        transform: translateX(0);
    }
    
    to {
        transform: translateX(100vw);
    }
}


/*     FONTS     */

@font-face {
    font-family: 'Avenir';
    font-weight: 900;
    font-style: normal;
    src: url(../assets/fonts/Avenir-Black.ttf);
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    font-weight: 500;
    font-style: normal;
    src: url(../assets/fonts/Avenir-Medium.ttf);
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    font-weight: 400;
    font-style: normal;
    src: url(../assets/fonts/Avenir-Roman.ttf);
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    font-weight: 300;
    font-style: normal;
    src: url(../assets/fonts/Avenir-Light.ttf);
    font-display: swap;
}

@font-face {
    font-family: 'Cunia';
    font-weight: 700;
    font-style: normal;
    src: url(../assets/fonts/Cunia.ttf);
    font-display: swap;
}