@import url('https://fonts.googleapis.com/css2?family=REM:wght@100;200;300;400;500;600;700;800&display=swap');

:root {
    --offblack: #0a0a0a;
}

html {
    scroll-behavior: smooth;
}

* {
    font-family: REM;
    font-weight:200;
    color:white;
}

body {
    background-color: var(--offblack);
    margin:0;
    padding:0;
}

/* Header */

.opening_viewport {
    width: 100%;
    height: 100vh;
    margin:0;
    padding:0;
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position:relative;
}

.slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    animation: fade 2s ease forwards;
  }
  
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0; /* Set the initial opacity to 0 */
    transition: opacity 2s;
  }
  
  /* Set the initial state for the first slide */
  .slide:first-child {
    opacity: 1;
  }
  
  .fade {
    animation-name: fade;
    animation-duration: 4s;
  }
  
  @keyframes fade {
    0% {
      opacity: 0;
    }
    25% {
      opacity: 1;
    }
    75% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  

.images {
    width:100vw;
    height:100vh;
}

img {
    object-fit: cover;
 }


.header_title {
font-weight:500;
font-size:5rem;
color:white;
letter-spacing: 1rem;
position:absolute;
z-index:1;
animation: fade 2s ease forwards;
}

.subtitle {
    color:white;
    font-size:20px;
    position:absolute;
    margin-top:50px;
    top:0;
    z-index: 1;
    animation: fade 2s ease forwards;
}

.header_image {
    object-fit:cover;
    width:100%;
    height:100%;
}

.content-section-1 {
    height:100%;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.recent-projects {
    display:flex;
    align-items: center;
    flex-direction:column;
    justify-content: space-around;
    max-width:100vw;
    margin-top:130px;
    margin-left:200px;
    margin-right:200px;
}

.recent-projects-title p{
    margin:0;
}

.recent-projects-title {
    font-size: 28px;
    /* border-bottom:1px solid #598286; */
    margin-bottom: 40px;
    animation: fade linear both;
    animation-timeline: view();
    animation-range: entry 40% cover 40%;
}

.recent-projects-videos {
    display:flex;
    justify-content: space-between;
    margin-bottom:23vh;
    overflow-x: auto;
    width:90vw;
    height:100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    animation: fade linear both;
    animation-timeline: view();
    animation-range: entry 40% cover 40%;
}

.vimeo-homepage {
    width:640px;
    height:320px;
    margin-bottom:60px;
    padding-left:5px;
    padding-right:5px;
}


.introduction {
    text-align:center;
    margin-left: auto;
    margin-right: auto;
    width:700px;
    height:8rem;
    font-size:20px;
    margin-top:7rem;
    animation: fade linear both;
    animation-timeline: view();
    animation-range: entry 30% cover 30%;
}

.introduction p {
    border-bottom: 1px solid #598286;
    padding-bottom:15px;
}

.content-section-2 {
    background-color: --offblack;
    height:100%;
    display:flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 150px;
    animation: fade linear both;
    animation-timeline: view();
    animation-range: entry 30% cover 30%;
}

    .wrapper-s2 {
        height: 100%;
        width: 80vw;
        display:flex;
        justify-content: space-between;
        margin-top:10px;

    }

.s2-collumn1 {
    width:40vw;
    font-size:35;
    display:flex;
    flex-direction: column;
}

.s2-collumn1 p {
    font-size:20px;
}

.s2-collumn1 h2 {
    font-size:28px;
    margin:0;
}

.s2-collumn2 h2 {
    font-size:28px;
    margin:0;
}

.s2-collumn2 {
    width:18vw;
    display:flex;
    flex-direction: column;
}

.s2-collumn2 .contact {
    margin-top:20px;
    margin-left:0;
}

.s2-collumn2 .contact p {
    font-size:20px;
    margin:6px 0;
}

#navbar {
    width:100%;
    display: flex;
    flex-direction:row;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    height:80px;
    top:0;
    background-color: var(--offblack);
    z-index:1;
}

.nav-colored {
    background-color:white;
}
.nav-transparent { 
    background-color:transparent;
}

.navtext-black {
    color:black;
}

.navtext-white { 
    color:white;
}

.navbar-left {
    margin-left:3rem;
}

.navbar-right {
    margin-right:3rem;
    width:400px;
}

.navbar-right ul {
    display:flex;
    justify-content: space-between;
}

.navbar-right ul li a {
   font-size:20px;
   font-weight:100;
   text-transform:uppercase;
   padding-bottom: 3px;
   text-decoration: none;
   transition: color 0.4s ease-in-out;
}

#navbar a {
    text-decoration: none;
}


.navbar-name {
    font-weight: 300;
    font-size:20px;
    text-transform: uppercase;
    letter-spacing:0.3rem;
    color: white;
    transition: color 0.4s ease-in-out;
}

.navbar-right ul li{
    text-decoration: none;
    list-style: none;
    position: relative;
    display:flex;
}

.navtext::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width:100%;
    height: 1px;
    background: #fff;
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.19,1,0.22,1);
    transform-origin: right center;
}

.navbar-right ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
    transition-duration: 0.4s;
}

footer {
    display:flex;
    align-items: center;
    justify-content: center;
    background-color:rgb(0, 0, 0);
    margin-bottom:-65px;
    height:65px;
    margin-top:30px;
    z-index: 1;
}

footer .text-footer {
    font-size:20px;
}

.mobile-nav .hamburger .bar1,.bar2,.bar3 {
    background-color: white;
    height:4px;
    width:36px;
    display:flex;
    border-radius: 10px;
}

.mobile-nav {
    position:relative;
}

.mobile-drawer {
    width:80px;
    background-color:black;
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    position:fixed;
    z-index:2;
    top:0;
    right:-160px;
    padding:7px;
    transition: transform 0.5s;
}

.openDrawer {
    transform: translateX(-160px);
}

.mobile-drawer a {
    text-decoration:none;
    margin: 16px 0;
}63

.mobile-drawer a:hover {
    text-decoration:underline;
}

.bars {
    display:flex;
    align-items:center;
    justify-content: space-around;
    flex-direction:column;
    height:40px;
    width:40px;
}

.mobile-nav .hamburger {
    height:40px;
    width:40px;
    position:fixed;
    right:0;
    z-index:2;
    top:0;
    margin-right:18px;
    margin-top:18px;
    display: none;
}

.hamburger:hover {
    cursor:pointer;
}





/* MOTION PAGE */

.mobile-title-wrapper {
    display: none;
}

.motion-videos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top:55px;
    animation: fade 2s ease forwards;
}

.motion-video-content {
    margin-top:10px;
    align-items:start;
    margin-bottom:60px;
}

.motion-video-content .video-title {
    font-size: 30px;
    color:white;
    margin:0 21px;
    margin-bottom:20px;
}

.mobile-subtext {
    display:none;
}

.hide-title {
    display:inline;
}

pre {
    width: 99%;
    padding: 0;
    margin: 0;
}

/* Stills page */

body {overflow-x: hidden;}

.stills-page {
    margin:0;
    padding:0;
}

.grid1 {
    max-width:100vw;
    height:100%;
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 100px;
    padding-right:100px;
    padding-top:85px;
}

.column1 {
    /* background-color: yellow; */
    height:100%;
    width:33.3%;
    display:flex;
    justify-content: start;
    flex-direction: column;
    align-items:center;
    margin-right:15px;
}

.column2 {
    /* background-color: yellow; */
    height:100%;
    width:33.3%;
    display:flex;
    justify-content: start;
    flex-direction: column;
    align-items: center;
    margin-right:15px;
}

.column3 {
    /* background-color: yellow; */
    height:100%;
    width:33.3%;
    display:flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    margin:0;
}

.img-tall {
    margin-top:15px;
    background-color: transparent;
    height: 75vh;
    width: 100%;
    animation: fade 2s ease forwards;
}

.img-insert {
    width:100%;
    height:100%;
}

.img-details{
    width:100%;
    height:100%;
    object-fit:cover;
}

.img-short {
    margin-top:15px;
    background-color: transparent;
    height: 45vh;
    width: 100%;
    animation: fade 2s ease forwards;
}

.img-medium {
    margin-top:15px;
    background-color: transparent;
    height: 65vh;
    width: 100%;
    animation: fade 2s ease forwards;
}

.img-wide {
    margin-top:15px;
    background-color: transparent;
    height:40vh;
    animation: fade 2s ease forwards;
}

.img-square {
    margin-top:15px;
    background-color: transparent;
    height: 60vh;
    width: 100%;
    animation: fade 2s ease forwards;
}

.stills-page{
    margin:0;
    padding:0;
}

/* Contact Page */

.content-contact-page {
    /* margin-top:20vh; */
    padding: 0;
    box-sizing: border-box;
    height:90vh;
    width:100%;
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /* background-color: yellow; */
}

.contact-form {
    width:80%;
    max-width:600px;
    animation: fade 2s ease forwards;
}

.contact-page-left {
    /* background-color: red; */
    width:50%;
    max-width:800px;
    height: 400px;
    margin-right:50px;
    display:flex;
    align-items:center;
    justify-content: center;
    position:relative;
    animation: fade 2s ease forwards;
}

.contact-page-left h1{
    position:absolute;
    bottom:10px;
    right:20px;
}

.photo-rimon {
    object-fit: cover;
    height:400px;
    width:400px;
    background-color:transparent;
}

.contact-page-right {
    /* background-color: blue; */
    width:50%;
    max-width:800px;
    display:flex;
    align-items:center;
    justify-content: center;
    height:400px;
    /* background-color:red; */
}

.input-group {
    margin-bottom:30px;
    position:relative;
}

input, textarea {
    width: 100%;
    padding:10px;
    outline: 0;
    border: 1px solid #fff;
    color: #fff;
    background:transparent;
    font-size:15px;
    cursor: text;
    border-radius: 0px;
}

label {
    height:100%;
    position: absolute;
    left:0;
    top:0;
    padding:10px;
    color:#fff;
    cursor: text;
    transition: 0.2s;
}

button {
    padding: 10px 0;
    color: #fff;
    outline: none;
    background: transparent;
    border: 1px solid #fff;
    width:103.5%;
    cursor: pointer;
}

input:focus~label,
input:valid~label,
textarea:focus~label,
textarea:valid~label{
    top:-35px;
    font-size: 14px;
}

.row {
    display:flex;
    align-items: center;
    justify-content: space-between;
}

.row .input-group{
    flex-basis: 46%;
}






/* Screen sizes */


/* Grid */

@media screen and (min-width: 2000px) {
    .grid1{
        padding-right:15vw;
        padding-left:15vw;
        max-width:300vw;
    }

    .vimeo-homepage {
        width:740px;
        height:520px;
        margin-bottom:60px;
    }
    
}

@media screen and (min-width:2400px) {
    .vimeo-homepage {
        width:940px;
        height:620px;
    }

    .content-section-2 {
        background-color: --offblack;
        height:100%;
        display:flex;
        justify-content:start;
        align-items: center;
        flex-direction: column;
        margin-top:0px;
        margin-bottom:250px;
    }
}

@media screen and (max-width:1550px) {
    .vimeo-homepage {
        width:540px;
        height:250px;
    }
}

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

    .img-tall {
        margin-top:15px;
        background-color: transparent;
        height: 60vh;
        width: 100%;
    }
    
    .img-short {
        margin-top:15px;
        background-color: transparent;
        height: 36vh;
        width: 100%;
    }
    
    .img-medium {
        margin-top:15px;
        background-color: transparent;
        height: 52vh;
        width: 100%;
    }
    
    .img-square {
        margin-top:15px;
        background-color: transparent;
        height: 48vh;
        width: 100%;
    }

    .recent-projects-videos {
        display:flex;
        flex-direction: column;
        justify-content: space-between;
        align-items:center;
        margin-bottom:5vh;
        margin-top:20px;
        width:100vw;
        margin-left:0;
    }

    .content-section-1 {
        height:100%;
        display:flex;
        flex-direction: column;
        align-items: left;
        justify-content: left;
    }

    .content-section-2 {
        background-color: --offblack;
        height:100%;
        display:flex;
        justify-content:start;
        align-items: center;
        flex-direction: column;
        margin-top:150px;
    }
    
        .wrapper-s2 {
            height: 100%;
            display:flex;
            justify-content: space-between;
            flex-direction:column;
        }
    
    .s2-collumn1 {
        width:80vw;
        font-size:35px;
        display:flex;
        flex-direction: column;
        margin-bottom: 100px;
    }
    
    .s2-collumn1 p {
        font-size:20px;
    }
    
    .s2-collumn1 h2 {
        font-size:28px;
        margin:0;
    }
    
    .s2-collumn2 h2 {
        font-size:28px;
        margin:0;
    }
    
    .s2-collumn2 {
        /* grid-area: contact-info; */
        width:90vw;
        display:flex;
        flex-direction: column;
        padding-bottom: 20px;
    }
    
    .s2-collumn2 .contact {
        margin-top:20px;
        margin-left:0;
    }
    
    .s2-collumn2 .contact p {
        font-size:20px;
        margin:6px 0;
    }

    footer {
        display:flex;
        align-items: center;
        justify-content: center;
        background-color:rgb(0, 0, 0);
        margin-bottom:0px;
        height:65px;
        margin-top:100px;
        z-index:1;
    }


}

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

    .img-tall {
        margin-top:15px;
        background-color: red;
        height: 48vh;
        width: 100%;
    }
    
    .img-short {
        margin-top:15px;
        background-color: purple;
        height: 28.8vh;
        width: 100%;
    }
    
    .img-medium {
        margin-top:15px;
        background-color: green;
        height: 41.6vh;
        width: 100%;
    }
    
    .img-square {
        margin-top:15px;
        background-color: pink;
        height: 38.8vh;
        width: 100%;
    }

    .grid1 {
        max-width:100vw;
        height:100%;
        display:flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-left: 50px;
        padding-right:50px;
        padding-top:35px;
    }

    .column1 {
        /* background-color: yellow; */
        height:100%;
        width:80vw;
        display:flex;
        justify-content: start;
        flex-direction: column;
        align-items:center;
        margin-right:0px;
    }
    
    .column2 {
        /* background-color: yellow; */
        height:100%;
        width:80vw;
        display:flex;
        justify-content: start;
        flex-direction: column;
        align-items: center;
        margin-right:0px;
    }
    
    .column3 {
        /* background-color: yellow; */
        height:100%;
        width:80vw;
        display:flex;
        justify-content: start;
        align-items: center;
        flex-direction: column;
        margin:0;
    }

    .img-tall {
        margin-top:15px;
        background-color: red;
        height: 150vh;
        width: 80vw;
    }
    
    .img-insert {
        width:100%;
        height:100%;
    }
    
    .img-details{
        width:80vw;
        height:100%;
        object-fit:cover;
    }
    
    .img-short {
        margin-top:15px;
        background-color: purple;
        height: 150vh;
        width: 100%;
    }
    
    .img-medium {
        margin-top:15px;
        background-color: green;
        height: 150vh;
        width: 100%;
    }
    
    .img-square {
        margin-top:15px;
        background-color: pink;
        height: 150vh;
        width: 100%;
    }


}

/* Mobile Header */

/* Mobile - Navbar */

@media screen and (max-width: 800px) {
    .header_title {
        font-weight:500;
        font-size:2rem;
        color:white;
        letter-spacing: 1rem;
        position:absolute;
        z-index:1;
        }

        .subtitle {
            color:white;
            font-size:13px;
            position:absolute;
            margin-top:120px;
            z-index: 1;
        }
}

@media screen and (max-width: 550px) {
    #navbar {
        display: none;
    }

    .mobile-nav .hamburger {
        display:flex;
        flex-direction:column;
    }

    /* Mobile - Opening viewport */

    .header_title {
        font-size:1.5rem;
        display:flex;
        text-align: center;
        overflow-wrap: break-word;
        letter-spacing: 0.7rem;
    }

    .introduction {
        display:none;
        align-items: center;
        justify-content: center;
        text-align:left;
        margin-left: 0px;
        margin-right: 0px;
        width:90vw;
        height:20rem;
        font-size:20px;
        border-bottom: none;
        margin-top:5rem;
    }

    .content-section-1 {
        height:100%;
        display:flex;
        flex-direction: column;
        align-items: left;
        justify-content: left;
    }

    .recent-projects {
        display:flex;
        align-items: center;
        flex-direction:column;
        justify-content: space-around;
        max-width:80vw;
        margin-top:40px;
        margin-left:0px;
        margin-right:0px;

    }
    
    .recent-projects-title p{
        margin:0;
    }
    
    .recent-projects-title {
        font-size: 28px;
        border-bottom:none;
        margin-bottom: 30px;
        text-align:left;
        width:80vw;
    }
    
    .recent-projects-videos {
        display:flex;
        flex-direction: column;
        justify-content: space-between;
        align-items:center;
        margin-bottom:5vh;
        gap:0;
        width:100vw;
        overflow-x:hidden;
        margin-left:0;
    }

    .vimeo-homepage {
        width:80vw;
        height:27vh;
        margin-bottom:60px;
    }

    .content-section-2 {
        background-color: --offblack;
        height:100%;
        display:flex;
        justify-content:start;
        align-items: center;
        flex-direction: column;
        margin-top:0px;
        margin-bottom:10px;
    }
    
        .wrapper-s2 {
            height: 100%;
            display:flex;
            justify-content: space-between;
            flex-direction:column;
    
        }
    
    .s2-collumn1 {
        width:80vw;
        font-size:35px;
        display:flex;
        flex-direction: column;
        margin-bottom: 100px;
    }
    
    .s2-collumn1 p {
        font-size:20px;
    }
    
    .s2-collumn1 h2 {
        font-size:28px;
        margin:0;
    }
    
    .s2-collumn2 h2 {
        font-size:28px;
        margin:0;
    }
    
    .s2-collumn2 {
        /* grid-area: contact-info; */
        width:90vw;
        display:flex;
        flex-direction: column;
        padding-bottom: 20px;
    }
    
    .s2-collumn2 .contact {
        margin-top:20px;
        margin-left:0;
    }
    
    .s2-collumn2 .contact p {
        font-size:20px;
        margin:6px 0;
    }

    footer {
        z-index: 1;
        display:flex;
        align-items: center;
        justify-content: center;
        background-color:rgb(0, 0, 0);
        margin-bottom:0px;
        height:65px;
    }
    
    footer .text-footer {
        font-size:20px;
    }

/* Contact Page Mobile */

.content-contact-page {
    /* margin-top:20vh; */
    padding: 0px;
    box-sizing:content-box;
    height:120vh;
    width:100vw;
    display:flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    /* background-color: yellow; */
}

.contact-form {
    width:100%;
    max-width:600px;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact-page-left {
    /* background-color: red; */
    width:10%;
    max-width:100vw;
    height: 400px;
    margin-right:0px;
    display:flex;
    align-items:center;
    justify-content: center;
    position:relative;
    margin-bottom:30px;
}

.contact-page-left h1{
    position:absolute;
    bottom:10px;
    right:20px;
}

.photo-rimon {
    margin-top:40px;
    object-fit: cover;
    height:100vw;
    width:400px;
    background-color:transparent;
}

.contact-page-right {
    /* background-color: blue; */
    margin-top:50px;
    width:100vw;
    max-width:500px;
    display:flex;
    align-items:center;
    justify-content: center;
    height:400px;
    /* background-color:red; */
}

.input-group {
    margin-bottom:30px;
    position:relative;
    width:80vw;
}

input, textarea {
    width: 100%;
    padding:0px;
    padding-top:10px;
    padding-bottom:10px;
    outline: 0;
    border: 1px solid #fff;
    color: #fff;
    background:transparent;
    font-size:15px;
    cursor: text;
    border-radius: 0px;
}

label {
    height:100%;
    position: absolute;
    left:0;
    top:0;
    padding:10px;
    color:#fff;
    cursor: text;
    transition: 0.2s;
}

button {
    padding: 10px 0;
    color: #fff;
    outline: none;
    background: transparent;
    border: 1px solid #fff;
    width:80vw;
    cursor: pointer;
    margin-bottom:50px;
}

input:focus~label,
input:valid~label,
textarea:focus~label,
textarea:valid~label{
    top:-35px;
    font-size: 14px;
}

.row {
    display:flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.row .input-group{
    flex-basis: 46%;
    width:80vw;
}

/* Motion page mobile */

.mobile-title-wrapper {
    display:flex;
    align-items:center;
    justify-content: center;
    width:100vw;
}

.films-mobile-page-title {
    display: flex;
    align-items: center;
    justify-content: left;
    font:200px;
    width:80vw;
    text-transform: uppercase;
}



.motion-videos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top:30px;
    width:100vw;
}

.motion-video-content {
    margin-top:10px;
    margin-bottom:60px;
    width:100vw;
    display:flex;
    align-items: center;
    justify-content: start;
    flex-direction:column;
}

.vimeo-motion {
    width:80vw;
    height:50vw;
    max-width:100vw;
}

.motion-video-content .video-title {
    font-size: 18px;
    color:white;
    margin:0px;
    margin-bottom:0px;
    width:80vw;
}

.motion-video-title {
    display: flex;
    align-items:center;
    flex-direction: column;
    justify-content: center;
    width:80vw;
}

pre {
    width: 80vw;
    padding: 0;
    margin: 0;
    white-space:pre-line; 
}

.mobile-subtext {
    display:flex;
    font-size:0.8rem;
    margin-top:5px;
    margin-bottom:0;
}

.hide-title {
    display:none;
}

.motion-page {
    margin:0;
    padding:0;
}

/* Stills Mobile Page */

body {overflow-x: hidden;}

.stills-page {
    margin:0;
    padding:0;
}

.grid1 {
    max-width:100vw;
    height:100%;
    display:flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-left: 50px;
    padding-right:50px;
    padding-top:35px;
}

.column1 {
    /* background-color: yellow; */
    height:1700vh;
    width:80vw;
    display:flex;
    justify-content: start;
    flex-direction: column;
    align-items:center;
    margin-right:0px;
}

.column2 {
    /* background-color: yellow; */
    height:1700vh;
    width:80vw;
    display:flex;
    justify-content: start;
    flex-direction: column;
    align-items: center;
    margin-right:0px;
}

.column3 {
    /* background-color: yellow; */
    height:1700vh;
    width:80vw;
    display:flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    margin:0;
}

.img-tall {
    margin-top:15px;
    background-color: red;
    height: 75vh;
    width: 80vw;
}

.img-insert {
    width:100%;
    height:100%;
}

.img-details{
    width:80vw;
    height:100%;
    object-fit:cover;
}

.img-short {
    margin-top:15px;
    background-color: purple;
    height: 45vh;
    width: 100%;
}

.img-medium {
    margin-top:15px;
    background-color: green;
    height: 65vh;
    width: 100%;
}

.img-square {
    margin-top:15px;
    background-color: pink;
    height: 40vh;
    width: 100%;
}

.stills-page{
    margin:0;
    padding:0;
}

}

/* Anmiations */


.animateBar1 {
    animation: flipBar1 0.5s;
    animation-fill-mode: forwards;
}

.animateBar2 {
    animation: fadeBar2 0.5s;
    animation-fill-mode: forwards;
}

.animateBar3 {
    animation: flipBar3 0.5s;
    animation-fill-mode: forwards;
}

@keyframes flipBar1 {
    from {
        transform: rotate(0);
    }
    to {
        transform:rotate(45deg) translate(4px, 15px);
    }
}

@keyframes fadeBar2 {
    from {
        transform: scaleX(1);
        opacity: 1;
    }
    to {
        transform:scaleX(0);
        opacity:0;
    }
}

@keyframes flipBar3 {
    from {
        transform: rotate(0);
    }
    to {
        transform:rotate(-45deg) translate(4px, -15px);
    }
}

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

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}