@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,700');


.heading-text {
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

.heading-text span {
    font-weight: 100;
}

ul {
    list-style: none;
}

p {
    font-size: 3em;
    margin: 0 4em 0 4em;
}

a {
    color: white;
}

/* Responsive image gallery rules begin*/

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 100%;
    padding: 0;
}

.image-gallery > li {
    flex-basis: 350px; /*width: 350px;*/
    position: relative;
    cursor: pointer;
}

.image-gallery::after {
    content: "";
    flex-basis: 350px;
}

.image-gallery li img {
    object-fit: cover;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border-radius: 5px;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(57, 57, 57, 0.502);
    top: 0;
    left: 0;
    transform: scale(0);
    transition: all 0.2s 0.1s ease-in-out;
    color: #fff;
    border-radius: 5px;
    /* center overlay text */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* hover */
.image-gallery li:hover .overlay {
    transform: scale(1);
}

#age-verify {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    transition: 500ms;
}
#age-verify .window {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 250px;
    overflow: hidden;
    padding: 40px;
    margin-left: -200px;
    margin-top: -125px;
    background-color: #fff;
    border: 6px solid #ED6A5A;
    box-sizing: border-box;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: 500ms;
}
#age-verify .window span {
    display: block;
    text-align: center;
    margin-bottom: 10px;
    font-family: "Source Sans Pro", sans-serif;
}
#age-verify .window span.title {
    color: #ED6A5A;
    font-size: 24px;
}
#age-verify .window button {
    border: 0;
    margin: 0;
    padding: 0;
    width: 48%;
    height: 60px;
    color: #FFF;
    font-size: 18px;
    background-color: #ED6A5A;
    margin-top: 20px;
    font-family: "Source Sans Pro", sans-serif;
    transform: scale(1);
    transition: 0.2s;
}
#age-verify .window button.back {
    display: block;
    float: none;
    margin: auto;
    background-color: #fff;
    color: #ED6A5A !important;
    margin-top: 20px;
}
#age-verify .window button.yes {
    float: left;
}
#age-verify .window button.no {
    float: right;
}
#age-verify .window button:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    background-color: #f29488;
}
#age-verify .window .underBox {
    position: absolute;
    width: 400px;
    height: 250px;
    padding: 40px;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ED6A5A;
    transition: 500ms;
    box-sizing: border-box;
}
#age-verify .window .underBox * {
    color: #FFF !important;
}
#age-verify.hidden {
    opacity: 0;
    visibility: hidden;
}
#age-verify.hidden .window {
    transform: scale(0.5);
}
#age-verify.under .window .underBox {
    top: 0%;
}



html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
    font-size: 62.5%;
    font-size: 10px;
    background-color: black;
    color:#FFFFFF;
}

/*-- Inspiration taken from abdo steif -->
/* --> https://codepen.io/abdosteif/pen/bRoyMb?editors=1100*/

/* Navbar section */

.nav {
    width: 100%;
    height: 65px;
    position: fixed;
    line-height: 65px;
    text-align: center;
}

.nav div.logo {
    float: left;
    width: auto;
    height: auto;
    padding-left: 3rem;
}

.nav div.logo a {
    text-decoration: none;
    color: #fff;
    font-size: 2.5rem;
}

.nav div.logo a:hover {
    color: #00E676;
}

.nav div.main_list {
    height: 65px;
    float: right;
}

.nav div.main_list ul {
    width: 100%;
    height: 65px;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav div.main_list ul li {
    width: auto;
    height: 65px;
    padding: 0;
    padding-right: 3rem;
}

.nav div.main_list ul li a {
    text-decoration: none;
    color: #ff0000;
    line-height: 65px;
    font-size: 2.4rem;
}

.nav div.main_list ul li a:hover {
    color: #000000;
}


/* Home section */

.home {
    width: 100%;
    height: 100vh;
    background-image: url(../../assets/img/0F0A0579.jpg);
    background-position: center top;
    background-size:cover;
}

.navTrigger {
    display: none;
}

.nav {
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}


/* Media qurey section */

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .container {
        margin: 0;
    }
}

@media screen and (max-width:768px) {

    .home {
        background-position: left top;
        background-image: url(../../assets/img/0F0A0579mobile.jpg);
    }

    p {
        font-size: 2em;
        margin: 0 1em 0 1em;
    }

    .navTrigger {
        display: block;
    }
    .nav div.logo {
        margin-left: 15px;
    }
    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
    }
    .nav div.show_list {
        height: auto;
        display: none;
    }
    .nav div.main_list ul {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        right: 0;
        left: 0;
        bottom: 0;
        background-color: #111;
        /*same background color of navbar*/
        background-position: center top;
    }
    .nav div.main_list ul li {
        width: 100%;
        text-align: right;
    }
    .nav div.main_list ul li a {
        text-align: center;
        width: 100%;
        font-size: 3rem;
        padding: 20px;
    }
    .nav div.media_button {
        display: block;
    }
}


/* Animation */
/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */

.navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
}

.navTrigger i {
    background-color: #fff;
    border-radius: 2px;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
}

.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

.affix {
    padding: 0;
    background-color: #111;
    z-index: 1000;
}



h1 {
    font-size: 5em;
    text-align: center;
    color:#FFFFFF;
}

.center {
    display: table;
    width: 100%;
    /*height: 100vh;*/
}
#social-test {
    display: table-cell;
    /*vertical-align: middle;*/
    text-align: center;
    font-size: 6em;
}
#social-test .social {
    padding-left: 0px;
}
#social-test li {
    display: inline-block;
}
#social-test li a {
    color: rgba(255, 255, 255, 0.6);
    border-radius: 6px;
    list-style-type: none;
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    padding: 1%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    margin-left: 10px;
    margin-bottom: 20px;
    transition: ease 0.3s;
}
#social-test li a:hover {
    color: #ffffff;
    border: 1px solid #ffffff;
}

#social-test2 {
    display: table-cell;
    /*vertical-align: middle;*/
    text-align: center;
    font-size: 6em;
}
#social-test2 .social {
    padding-left: 0px;
}
#social-test2 li {
    display: inline-block;
}
#social-test2 li a {
    /*color: rgba(255, 255, 255, 0.6);*/
    border-radius: 6px;
    list-style-type: none;
    display: inline-block;
    /*width: 100px;*/
    /*height: 100px;*/
    line-height: 100px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    margin-left: 10px;
    margin-bottom: 20px;
    transition: ease 0.3s;
    text-decoration: none;
}
#social-test2 li a:hover {
    color: #ffffff;
    border: 1px solid #ffffff;
}

.social:hover > li {
    opacity: 0.5;
}
.social:hover > li:hover {
    opacity: 1;
}