* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body, html {
    height: 100vh;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #000;
}

/* ====== Header ======= */

.nav {
    position: fixed;
    z-index: 1000;
    right: 30px;
    bottom: 20px;
}

.nav a {
    display: block;
    width: 100%;
    font-size: 32px;
    margin-bottom: 15px;
    text-align: right;
    /* padding: 15px; */
    color: #fff;
}

.header .menu {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
    background: -moz-linear-gradient(top,  rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */

    padding: 25px;
    /* margin-bottom: 25px; */
}

.banner {
    width: 100%;
    height: 100vh;
    background-image: url('../img/hbg.png');
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-end;
    background-attachment: fixed;
    background-position: top;
    object-fit: cover;
    background-size: cover;
}

.banner .logo {
    font-family: 'Great Vibes', cursive;
    margin-right: 10em;
}

.banner .logo a {
    text-decoration: none;
    color: #FFF;
    text-shadow: 0 3px 4px rgba(0,0,0,.23);
}

.banner .logo a h3 {
    font-size: 10em;
}

/* Main */

.myContent {
    padding: 50px 0;
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 35%, rgba(34,34,34,1) 100%);
    backdrop-filter: blur(10px);
    background-repeat: repeat;
    background-attachment: fixed;
    backdrop-filter: blur(10px);
}

.myContent h2 {
    color: #FFF;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: bolder;
    font-family: 'Roboto', sans-serif;
}

.contentCard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255,255,255,.32);
    padding: 15px;
    border-radius: 25px;
    height: 120px;
    color: #FFF;
    transition: all ease .4s;
    cursor: pointer;
}

.contentCard .titleCard > h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 18px;
}

.contentCard:hover {
    background-color: rgba(0,0,0,0,.23);
    backdrop-filter: blur(1px);
    transform: scale(1.1);
}

.gallery {
    padding: 25px 0;
    background-color: #1b1b1b;
}

.gallery .galleryTitle {
    font-family: 'Roboto', sans-serif;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 16px;
}

.galleryCard {
    width: 100%;
    margin-bottom: 8px;
    transition: all ease .2s;
    cursor: pointer;
}

.galleryCard:hover {
    transform: scale(1.1);
}

.galleryCard img {
    display: block;
    border: 1px solid #212121;
    border-radius: 25px;
}

.endSection {
    width: 100%;
    background-color: #fd79a8;
    padding: 100px 50px;
}

.endSection h3 { 
    font-family: 'Great Vibes', cursive;
    font-size: 100px;
    margin-bottom: 50px;
    color: #FFF;
    text-align: center;
}

footer {
    background-color: #de628d;
    padding: 25px;
    text-align: center;
    color: rgba(0,0,0,.57);
    font-weight: 500;
}

footer p {
    padding: 0;
    margin: 0;
    
}

.mBanner {
    display: none;
}

@media screen and (max-width: 764px) {
    .banner {
        background-position: inherit !important;
        display: none;
    }

    .banner .logo {
        width: 100%;
        text-align: center;
        margin: 25px auto;
        height: 100%;
    }

    .banner .logo a h3 {
        font-size: 5em;
    }

    .mBanner {
        display: block;
        position: relative;
    }

    .mBanner img {
        width: 100%;
    }

    .mBanner .logo {
        position: absolute;
        width: 100%;
        text-align: center;
        top: 25px;
    }

    .mBanner .logo a {
        text-decoration: none;
        font-family: 'Great Vibes', cursive;
        color: #FFF;
    }

    .mBanner .logo a > h3 {
        font-size: 2em;
    }

    .nav {
        width: 100%;
        display: flex;
        background-color: #000;
        bottom: 0 !important;
        right: 0;
        left: 0;
    }

    .nav a {
        display: inline-block;
        width: 33.3333333333%;
        padding: 10px;
        margin: 0;
        text-align: center;
        font-size: 18px;
    }

    .ig-color {
        background-color: #E4405F !important;
    }

    .tw-color {
        background: #1DA1F2 !important;
    }

    .tg-color {
        background-color: #229ED9 !important;
    }

}

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

    .myContent h2 {
        font-size: 18px;
    }

    .contentCard {
        flex-flow: column !important;
        height: auto !important;
    }

    .contentCard .logoCard {
        margin-bottom: 25px !important;
    }

    .contentCard .iconCard {
        /* display: none !important; */
        transform: rotate(90deg) !important;
        font-size: 24px;
    }

    .endSection h3 {
        font-size: 50px;
    }

    .banner .logo a h3 {
        font-size: 3em;
    }
}