* {
    margin: 0;
}

html {
    background-color: #181818;
    background-image: url("../images/homebanner.jpg");
    overflow-x: hidden;
}

@font-face {
    font-family: 'Bebas';
    src: url('bebas_neue.otf') format('opentype');
}
@font-face {
    font-family: 'Mermaid';
    src: url('mermaid.ttf') format('truetype');
}
@font-face {
    font-family: 'DOGMA DEMO Regular';
    src: url('DOGMA.OTF') format('opentype');
}

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

@keyframes nav_slide {
    from {
        transform: translateX(100);
    }
    to {
        transform: translateX(-5%);
    }
}

@keyframes fade-down {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0px) scale(1); 
    }
}

@keyframes shake {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0)
}

.firstDiv {
    position: relative;
    background-color: url("images/homebanner.jpg");
    padding: 6vw 3vw 3vw 3vw;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 28em;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 3vw;
    overflow: hidden;
}

.firstDiv img {
    height: 45vw;
    max-height: 60em;
    min-height: 18em;
    width: auto;
    position: static;
    filter: drop-shadow(0 0 25px rgba(0, 0, 0, 0.034));
    margin-left: 0;
    margin-bottom: 2vw;
    flex-shrink: 0;
    border-radius: 500px;
}

.firstDiv h1 {
    position: relative;
    font-size: 11vw;
    text-align: center;
    color: #fff;
    font-family: BEBAS, Arial, Helvetica, sans-serif;
    word-break: break-word;
    margin: 0;
    width: auto;
    max-width: 100vw;
}

.firstDiv h1 i {
    color: #E1060A;
    font-family:'Times New Roman', Times, serif;
}

.secondDiv {
    position: relative;
    background-image: url("../images/homebanner.jpg");
    margin-top: 0;
    padding: 2em 1em 10em 1em;
    min-height: 8em;
    box-sizing: border-box;
}

.hello {
    color: #fff;
    text-align: center;
    font-size: 1.5em;
    font-family: Mermaid, Arial, Helvetica, sans-serif;
    max-width: 35em;
    margin: 0 auto;
    white-space: normal;
}

.hello b {
    color: #E1060A;
    font-weight: 100;
    font-family: DOGMA DEMO Regular, Arial, Helvetica, sans-serif;
    filter: drop-shadow(0 0 2px rgb(255, 17, 17));
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.1em;
    width: 50%;
    margin: 0 auto;
    box-sizing: border-box;
}

.row-img { 
    width: 4.5em;
    height: 4.5em;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    object-fit: cover;
}

.row figcaption {
    margin-top: 1em;
    width: 100%;
    font-family: Bebas, Arial, Helvetica, sans-serif;
    text-align: center;
    color: #fff;
    font-size: 1.2em;
}

.optionColumn {
    width: 10%;
    min-width: 120px;
    max-width: 300px;
    margin: 0.5em 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box
}

.optionColumn img {
    width: 100%;
    max-width: 6.5em;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 5px rgba(252, 11, 11, 0.795));
    transition: 0.5s;
    border-radius: 100px
}

.optionColumn img:hover {
    filter: drop-shadow(0 0 15px rgba(255, 56, 56, 0.473));
    transform: scale(1.15);
    transition: 0.5s;
}

.thirdDiv {
    position: relative;
    background-color: url("images/homebanner");
    margin-top: 0;
    padding: 2em 1em 5em 0;
    min-height: 8em;
    box-sizing: border-box;
}

.edits {
    color: #fff;
    font-family: Mermaid, Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 1.5em;
}

.edits p {
    color: #E1060A;
    font-family: Mermaid, Arial, Helvetica, sans-serif;
    filter: drop-shadow(0 0 2px rgb(255, 17, 17));
}

.moving {
    height: 65vh;
    min-height: 24em;
    max-height: none;
    overflow-x: hidden;
    overflow-y: hidden;
    background-color: transparent;
    white-space: nowrap;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.moving-slide {
    display: inline-block;
    animation: 70s slide infinite linear;
    /*will-change: transform;*/
    font-size: 0;
}

.moving-slide img {
    height: 65vh;
    width: auto;
    min-height: 24em;
    max-height: 70vh;
    max-width: 100vw;
    z-index: -2;
    vertical-align: middle;
    margin: 0 2vw;
    padding: 0;
    object-fit: cover;
    box-sizing: border-box;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    border-radius: 25px;
    border-width: 2px;
}

.fourthDiv {
    display: flex;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1em;
    position: relative;
    background-image: url("../images/homebanner.jpg");
    margin-top: 0;
    padding: 4em 2em 1em;
    min-height: 8em;
    box-sizing: border-box;
}

.fourthDiv h1 {
    color: #fff4ec;
    flex: 0 1 auto;
    margin: 0 auto;
    text-align: center;
    font-family: DOGMA DEMO Regular, Arial, Helvetica, sans-serif;
    width: 100%;
    font-weight: 500;
    font-size: 5em;
    text-shadow:
        3px 3px 0px rgba(255, 61, 61, 0.59),
        6px 6px 0px rgba(255, 59, 59, 0.59),
        9px 9px 0px rgba(255, 14, 6, 0.59);
}

.fifthDiv {
    height: 7.5em;
    background-image: url("../images/homebanner.jpg");
}

.copyright {
    color: #fff;
    font-family: DOGMA DEMO Regular, Arial, Helvetica, sans-serif;
    text-align: center;
    padding-top: 2em;
}

.socials {
    text-align: center;
}

.socials a {
    text-decoration: none;
    color: #fff;
}

.socials li {
    font-size: 2em;
    padding: 20px;
    overflow-wrap: break-word;
    display: inline-block;
    vertical-align: top;
    padding-right: 10px;
}

.socials a:hover {
    color: orange;
    transition: 0.3s;
    animation: shake 0.5s ease-in-out;
}

#nav_menu ul li a.home {
    color: orange;
    text-decoration: underline;
    transition: 1s;
}

#nav_menu ul li a.home:hover {
    color: #ffd29f;
}

#nav_menu ul li {
    list-style: none;
    width: 10%;
    display: inline-block;
}

#nav_menu ul {
    text-align: right;
    width: 22em;
    display: flex;
    flex-direction: column;
    flex-basis: 60%;
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: fixed;
    background-image: url("../images/NavBan.jpg");
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.925));
    z-index: 4;
}

#nav_menu ul li a:hover, ul li a:focus {
    color: rgb(231, 43, 43);
    transition: 0.5s;
}

#nav_menu ul li a {
    width: 100%;
    text-align: center;
    display: block;
    text-decoration: none;
    padding: 1em 0;
    color: #fff;
    font-family: DOGMA DEMO Regular, Arial, Helvetica, sans-serif;
    font-weight: 100;
    transition: 1s;
}

#nav_menu ul {
    width: 100%;
    margin: 0;
    padding: 0;
    margin-top: 0;
    display: inline-block;
}

#mobile-nav-bar img {
    width: 7.5em;
    padding: 13px;
    display: block;
    position: absolute;
    position: fixed;
    z-index: 5;
    animation: fade-down 1s;
}

#mobile-nav-toggle {
    display: none;
    position: fixed;
    top: 1.5em;
    right: 0.8em;
    z-index: 1100;
    background: transparent;
    color: rgb(255, 255, 255);
    filter: drop-shadow(0 0 8px rgb(0, 0, 0));
    border: none;
    font-size: 2em;
    padding: 0.2em 0.4em;
    border-radius: 8px;
    cursor: pointer;
}

#mobile-nav-toggle .bar {
    display: block;
    width: 1.8em;
    height: 0.25em;
    margin: 0.4em auto;
    background: white;
    border-radius: 2px;
    transition: 0.4s;
    position: relative;
}

#mobile-nav-toggle.open .bar:nth-child(1) {
    transform: translateY(0.65em) rotate(45deg);
}

#mobile-nav-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

#mobile-nav-toggle.open .bar:nth-child(3) {
    transform: translateY(-0.65em) rotate(-45deg);
}

@media (max-width: 1024px) {

    #mobile-nav-toggle {
        display: block;
        font-size: 1em;
        top: 1em;
        right: 1em;
        width: 2.5em;
        height: 2.5em;
    }

    #nav_menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 70vw;
        height: 100vh;
        z-index: 1000;
        pointer-events: none;
    }

    #mobile-nav-bar img {
        position: static;
        display: block;
        margin: 3.5em auto 0 auto;
        width: 10em;
        padding: 0;
        z-index: 1101;
        pointer-events: none;
    }

    #nav_menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        right: 0;
        width: 70vw;
        height: 100vh;
        margin: 0;
        opacity: 0;
        transform: translateX(100%);
        pointer-events: none;
        transition:
            opacity 0.5s cubic-bezier(0.77,0,0.175,1),
            transform 0.5s cubic-bezier(0.77,0,0.175,1);
    }

    #nav_menu ul.open {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }

    #nav_menu ul li {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
    }

    #nav_menu ul li a {
        font-size: clamp(1.5em, 6vw, 3em);
        padding: 1em 0;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .firstDiv {
        flex-direction: column;
        align-items: center;
        gap: 4vw;
        padding: 12vw 6vw;
        min-height: 32em;
    }

    .firstDiv h1 {
        font-size: clamp(2em, 15vw, 4em);
        max-width: 98vw;
        text-align: center;
    }

    .firstDiv img {
        height: 70vw;
        min-height: 20em;
        max-width: 98vw;
        margin-bottom: 4vw;
    }

    .hello {
        font-size: clamp(1.3em, 2vw, 4em);
    }

    .edits {
        font-size: clamp(1.4em, 2vw, 4em);
    }

    .moving {
        height: 40vh;
        min-height: 8em;
    }

    .moving-slide img {
        height: 40vh;
        min-height: 8em;
        max-width: 98vw;
    }

    .secondDiv {
        padding: 8vw 4vw;
        min-height: 18em;
    }

    .secondDiv h1 {
        font-size: clamp(2em, 10vw, 4em);
        top: 7vw;
        left: 2vw;
    }

    .row {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 90vw;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .row img {
        display: block;
        margin: 1em auto;
        width: 10vh;
        height: 10vh;
        min-height: 4em;
        max-width: 98vw;
        object-fit: cover;
    }

    .fow figcaption {
        font-size: clamp(1em, 4vw, 2em);
        width: 100%;
        text-align: center;
        display: block;
        margin: 0 auto;
    }

    .thirdDiv {
        padding: 10vw 4vw;
        min-height: 12em;
    }

    .fourthDiv h1{
        font-size: clamp(2em, 10vw, 4em);
        font-weight: 800;
    }

    .copyright p {
        font-size: clamp(0.8em, 2vw, 2em);
    }

    .socials li {
        font-size: clamp(1.5em, 6vw, 3em);
        padding: 15px;
    }
}


