@import url('https://fonts.googleapis.com/css?family=Cabin|Herr+Von+Muellerhoff|Source+Sans+Pro:400,900&display=swap');
/*Global styles*/
*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --main-font: 'Assistant', sans-serif;
    --secondary-font: 'Herr Von Muellerhoff', cursive;
    --body-font: 'Cabin', sans-serif;
    --main-font-color-dark: #0f0f0f;
    --lucky-logic-main-color: #ebcd05;
    --dark-color: #090909;
    --pinkRock-color: #c50052;
    --bG-white-color: #f5f0f0;
    --akzent-color: #5608ff;
    --body-font-color: #e4ddd4;
    --body-BG-color: #000000;
}

html{
    font-family: var(--body-font);
    font-size: 10px;
    color: var(--body-font-color);
    scroll-behavior: smooth;
    background-color: var(--body-BG-color) !important;
}

body{
    overflow-x: hidden;
    background: var(--body-BG-color) !important;
}

/* section{
    padding: 3.9rem 0;
    overflow: hidden;
} */

img{
    width: 100%;
    max-width: 100%;
}

a{
    text-decoration: none;
    transition: color .5s;
}

p{
    font-size: 1.5rem;
    /* font-weight: 500; */
    line-height: 3.1rem;
    color: #e4ddd4;
}


.container{
    display: flex;
    justify-content: center;
}

/*header*/
header{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    /* background-image: linear-gradient(to bottom, rgba(255, 251, 0, .1), transparent); */
}

.modal { 
    background-color: rgba(0, 0, 0, 0.596) !important; 
 }



.modal-content{
    background: transparent !important;
    border: none !important;
    width: 100vw;
    margin: auto;
}

.modal-body {
    background-color: var(--body-BG-color);
    width: 900px;
}

.modal-open {
    overflow: auto !important;
}

.modal-backdrop {
    display: none !important;
}


body.modal-open {
    overflow: visible;
}


.nav{
    height: 7.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.headlineHero{
    position: absolute;
    width: 10vw;
    margin-top: 5%;
    margin-left: 5%;
    display: flex;
    flex-direction: column;
    justify-content: left;
   /* align-items: left;*/
}

.headlineHero h1,
.headlineHero h2{
    font-size: 10vw;
    text-transform: uppercase;
    color: var(--body-font-color);
}

.headlineHero h2{
    transform: translateY(-2rem);
}


.menu-toggle{
    color: var(--akzent-color);
    font-size: 3.2rem;
    position: fixed;
    top: 5%;
    transform: translateY(-50%);
    right: 2.5rem;
    cursor: pointer;
    z-index: 1500;
}

.fa-times{
    display: none;
}

.nav-list{
    list-style: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 60%;
    height: 100vh;
    background-color: var(--akzent-color);
    padding: 4.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    z-index: 1250;
    transform: translateX(-150%);
    transition: transform .5s;
}

.nav::before{
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,.8);
    z-index: 1000;
    transform: scale(0);
    transition: opacity .5s;
}

.open .fa-times{
    display: block;
}

.open .fa-bars{
    display: none;
}

.open .nav-list{
    transform: translateX(0);
}

.open nav::before{
    opacity: 1;
    transform: scale(1);
}

.nav-item{
    border-bottom: 2px solid rgba(218, 9, 9, 0.3) ;
}

.nav-link{
    display: block;
    color: #e4ddd4;
    line-height: .75;
    word-spacing: 1px;
    letter-spacing: -.1rem;
    text-transform: uppercase;
    font-family: var(--main-font);
    font-size: 3rem;
    font-weight: 1000;
    /* letter-spacing: 2px; */
    margin-right: -2px;
    transition: color .5s;
    /* text-align: center; */
}

.nav-link:hover{
    color: var(--dark-color);
    transition: color.2s;
}

/* Disclaimer starts */
.disclaimer-container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.disclaimer{
    flex: 0 0 120px;
    margin-bottom: 15rem;
}

.disclaimer h1,
.disclaimer h2{
    color: var(--akzent-color);
}

.disclaimer h1{
    font-size: 3rem;
    margin-bottom: 2rem;
}

.disclaimer h2{
    font-size: 2rem;
}

.disclaimer h5{
    font-size: 7rem;
}

.disclaimer p{
    width: 80vw;
    max-width: 600px;
    margin-bottom: 5rem;
    line-height: 2rem;
    font-size: 1.5rem;

    /* column-count: 2; */
}
/* Disclaimer ends */

/*Hero*/
.hero{
    width: 100%;
    display: flex;
    align-items: center;
    text-align: center;
}


#headerVideo {
    width: 100vw;
    height: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    /* min-width: 100%;
    min-height: 100%; */
  }

.headline{
    color: var(--akzent-color);
    font-size: 13vw;
    font-family: var(--main-font);
    /* text-transform: uppercase; */
    line-height: .9;
    font-weight: 900;
    letter-spacing: -.1rem;
    margin-right: -.5rem;
    margin-bottom: 2rem;
    animation: scale .5s forwards;
}

.headline-dark{
    color: var(--body-font-color);
}

.global-headline{
    /* margin-right: 1rem; */
    transform: translateX(-4px);
}

.copyWide{
    display: none;
}

.copyMobile{
    display: initial;
}

.copyMiddle{
    display: none;
}

.copy{
    font-size: 2vw;
}

.single-animation{
    opacity: 0;
    animation: fadeDown 1s forwards;
    animation-delay: 1.75s;
    animation-timing-function: ease-in-out;
}

.btn{
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: -2px;
}

.cta-btn{
    font-size: 1.4rem;
    font-weight: 1000;
    background-color: #fff;
    padding: .9rem 1.8rem;
    color: var(--akzent-color);
    border-radius: .4rem;
    transition: background-color .5s;
}

.cta-btn:hover,
.cta-btn:focus{
    color: var(--dark-color);
    background-color: var(--akzent-color);
}


.appstore-btns{
    max-width: 90%;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 1rem;
}


.lucky-logic-description{
    margin-bottom: 8vw;
}

.lucky-logic-description p{
    line-height: 1.6;
    max-width: 92%;
    margin-bottom: 2.4rem;
}

.body-btn{
    font-size: 1.5rem;
    color: var(--akzent-color);
    position: relative;
    transition: color .5s;
    margin: 2.4rem 0;
}

.body-btn::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: var(--akzent-color);
    transition: background-color .5s;
}

.body-btn:hover,
.body-btn:focus{
    color: var(--main-font-color-dark);
}

.body-btn:hover::before,
.body-btn:focus::before{
    background-color: var(--main-font-color-dark);
}



.work-content{
    width: 100vw;
    display: grid;
    grid-gap: 10px;
    grid-auto-flow: dense;
    margin-bottom: 15vw;
}


.sixtVid{
    width: 100vw;
    grid-row: 1;
    cursor: pointer;
}

.limo1{
    max-width: 100%;
    grid-row: 2;
    cursor: pointer;
}

.limo2{
    max-width: 100%;
    grid-row: 3;
    cursor: pointer;
}

.limo3{
    max-width: 100%;
    grid-row: 4;
    cursor: pointer;
}

.sixtPrint{
    max-width: 100%;
    grid-row: 5;
    overflow: hidden;
}

.sixtPrint img{
    animation: sixtMove 22s ease-in-out infinite;
}

.chip{
    /*max-height: 100;*/
    grid-row-start: 6;
    overflow: hidden;
}

.chip img{
    animation: pictureMove 18s ease-in-out infinite;
    animation-delay: 100ms;
}

/* .ikea{
    max-width: 100%;
    grid-column: 5;
    grid-row: 3;
} */

.amorelieVid{
    max-width: 100%;
    grid-row: 7;
    cursor: pointer;
}

.amoreliePrint1{
    max-width: 100%;
    grid-row: 8;
    overflow: hidden;
}

.amoreliePrint1 img{
    animation: pictureMove 20s ease-in-out infinite;
}


/* .amoreliePrint2{
    max-width: 100%;
    grid-row: 4;
} */

.saveMe{
    max-width: 100%;
    grid-row: 9;
    cursor: pointer;
}

.gardena1{
    max-width: 100%;
    grid-row: 10;
    overflow: hidden;
}

.gardena2{
    max-width: 100%;
    grid-row: 11;
    overflow: hidden;
}

.gardena3{
    max-width: 100%;
    grid-row: 12;
    overflow: hidden;
}

.gardena4{
    max-width: 100%;
    grid-row: 13;
    overflow: hidden;
}

.gardena1 img{
    animation: pictureMove 19s ease-in-out infinite;
    animation-delay: 100ms;
}

.gardena2 img{
    animation: pictureMove 22s ease-in-out infinite;
    animation-delay: 400ms;
}

.gardena3 img{
    animation: pictureMove 16s ease-in-out infinite;
    animation-delay: 300ms;
}

.gardena4 img{
    animation: pictureMove 17s ease-in-out infinite;
    animation-delay: 200ms;
}

.haribo1{
    max-width: 100%;
    grid-row: 14;
    cursor: pointer;
}

.haribo2{
    max-width: 100%;
    grid-row: 15;
    cursor: pointer;
}

.misereor1{
    max-width: 100%;
    grid-row: 16;
    overflow: hidden;
}

.misereor2{
    max-width: 100%;
    grid-row: 17;
    overflow: hidden;
}

.misereor3{
    max-width: 100%;
    grid-row: 18;
    overflow: hidden;
}

.misereor1 img{
    animation: pictureMove 18s ease-in-out infinite;
    animation-delay: 100ms;
}

.misereor2 img{
    animation: pictureMove 22s ease-in-out infinite;
}

.misereor3 img{
    animation: pictureMove 16s ease-in-out infinite;
    animation-delay: 300ms;
}

.hoch2{
    max-width: 100%;
    grid-row: 19;
    cursor: pointer;
}

.shoepon{
    max-width: 100%;
    grid-row: 20;
    cursor: pointer;
}

.McDonalds_monopoly{
    max-width: 100%;
    grid-row: 21;
    cursor: pointer;
}


.McDonalds_stern{
    max-width: 100%;
    grid-row: 22;
    cursor: pointer;
}

.McDonalds_rdz{
    max-width: 100%;
    grid-row: 23;
    cursor: pointer;
}

.zwickl{
    max-width: 100%;
    grid-row: 24;
    cursor: pointer;
}

.LAB01{
    max-width: 100%;
    grid-row: 25;
    cursor: pointer;
}

.LAB02{
    max-width: 100%;
    grid-row: 26;
    cursor: pointer;
}

.LAB03{
    max-width: 100%;
    grid-row: 27;
    cursor: pointer;
}

/* .close{
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    max-width: 32px;
}

.vidContainer{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100000;
    background: rgba(0, 0, 0, .95);
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-self: center;
    visibility: hidden;
    opacity: 0;
}

.vidContainer.active{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100000;
    background: rgba(0, 0, 0, .95);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-self: center;
    visibility: visible;
    filter: blur(10);
    opacity: 1;
}

.vidContainer iframe{
    position: relative;
    width: 100vw;
    outline: none;
} */
  

.clients-container{
    width: 90%;
    margin: auto;
    margin-bottom: 5vw;
    margin-top: 5vw;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
}

.clients{
    margin: auto;
    margin-bottom: 60vw;
    position: relative;
    display: grid;
    grid-gap: 10%;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 1fr;
    justify-items: center;
    align-items: center;
}

.awards{
    margin: auto;
    margin-bottom: 40vw;
    position: relative;
    display: grid;
    grid-gap: 10%;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 1fr;
    justify-items: center;
    align-items: center;
}



.smallerIcons{
    width: 80%;
}

/* .svg-color{
    fill: var(--akzent-color);
} */


.about{
    width: 90%;
    /* padding-top: 3rem; */
    margin-bottom: 10vw;
}

.about .copy{
    font-size: 5.5vw;
    /* overflow-wrap: break-word; */
}

/* Footer */
footer{
    padding: 7.9rem 0;
    position: relative;
    bottom: 0;
    width: 100%;
    /* margin-top: -10rem; */
    background-color: var(--akzent-color);
}

.back-to-top{
    width: 7rem;
    height: 7rem;
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background-color: var(--akzent-color);

}

.back-to-top i{
    display: block;
    color: #fff;
    font-size: 2rem;
    padding: 2.7rem;
    animation: up 1.3s infinite;
    animation-timing-function: ease-in-out;
}




/* Form starts */
#feedback-page{
	text-align:center;
}

#form-div {
    position: relative;
    /* border-radius: 57rem; */
    width: 100%;
    margin-bottom: 5rem;
    align-self: center;
}

.montform .feedback-input {
	color:#ffffff;
	font-family: Helvetica, Arial, sans-serif;
    font-weight:500;
	font-size: 18px;
	border-radius: 0;
	line-height: 22px;
	background-color: #e4ddd4;
	padding: 13px 13px 13px 54px;
	margin-bottom: 10px;
	width:100%;
    box-sizing: border-box;
    border-radius: .2rem;
	border: 3px solid rgba(0,0,0,0);
}

/*Inputs styles*/
.montform .feedback-input:focus{
	background: #e4ddd4;
	border: 3px solid var(--akzent-color);
	color: var(--akzent-color);
	outline: none;
    padding: 13px 13px 13px 54px;
}


/* Icons ---------------------------------- */
.montform  #name{
	background-image: url(https://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/svgs/fi-address-book.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
    background-repeat: no-repeat;
}

.montform  #name:focus{
	background-image: url(https://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/svgs/fi-address-book.svg);
	background-size: 30px 30px;
	background-position: 8px 5px;
    background-position: 11px 8px;
	background-repeat: no-repeat;
}

.montform  #email{
	background-image: url(https://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/svgs/fi-mail.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}

.montform  #email:focus{
	background-image: url(https://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/svgs/fi-mail.svg);
	background-size: 30px 30px;
    background-position: 11px 8px;
    background-repeat: no-repeat;
}

.montform  #comment{
	background-image: url(https://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/svgs/fi-pencil.svg);
	background-size: 25px 25px;
	background-position: 14px 8px;
    background-repeat: no-repeat;
}

.montform  textarea {
    width: 100%;
    height: 150px;
    line-height: 150%;
    resize:vertical;
}

.montform  input:hover, .montform  textarea:hover,
.montform  input:focus, .montform  textarea:focus {
	background-color:#b0aff6;
}

.button-blue{
	float:left;
	width: 100%;
	border: #e4ddd4 solid 4px;
	cursor:pointer;
	background-color: var(--akzent-color);
	color:white;
	font-size:24px;
	padding-top:22px;
	padding-bottom:22px;
	transition: all 0.3s;
    margin-top:-4px;
    font-weight:700;
}

.button-blue:hover{
	background-color: rgba(0,0,0,0);
	color: var(--akzent-color);
}

.montform  .submit:hover {
	color: var(--akzent-color);
}

.ease {
	width: 0px;
	height: 74px;
	background-color: #fbfbfb;
	transition: .3s ease;
}

.submit:hover .ease{
  width:100%;
  background-color: var(--main-font-color-dark);
}
/* Form ends */



.footer-content {
    margin: auto;
    width: 90%;
    overflow: hidden;
}


.footer-content h4 {
    font-size: 1.9rem;
    text-transform: uppercase;
    font-weight: 100;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.footer-content h4 a{
    color: var(--body-font-color);
    text-decoration: none;
}

.footer-content h4 a:hover,
.footer-content h4 a:focus{
    color: var(--dark-color);
}


.social-icons{
    list-style: none;
    margin-bottom: 1.4rem;
    display: flex;
    justify-content: normal;
}

.social-icons i{
    font-size: 2rem;
    color: var(--body-font-color);
    /* padding: .8rem 2rem; */
    padding-right: 2rem;
    transition: color .5s;
}

.social-icons i:hover,
.social-icons i:focus{
    color: var(--dark-color);
}

.emailText h4{
    position: relative;
    font-size: 4vw;
    max-width: 80%;
    font-weight: 900;
    text-transform: lowercase;
    color: #e4ddd4;
}


@media screen and (min-width: 800px){

    .about .copy{
        font-size: 3vw;
        width: 90vw;
    }

    .copyWide{
        display: none;
    }
    
    .copyMobile{
        display: none;
    }
    
    .copyMiddle{
        display: initial;
        word-wrap: break-word;
    }
}


/* Media queries */
@media screen and (min-width: 1000px){
    /* section{
        padding: 7.9rem;
    } */

    /* .vidContainer iframe{
        position: relative;
        max-width: 900px;
        width: 80vw;
        outline: none;
    } */

    .copyWide{
        display: initial;
    }

    .copyMobile{
        display: none;
    }

    .copyMiddle{
        display: none;
    }

    .menu-toggle,
    .headlineHero{
        display: none;
    }

    .nav{
        justify-content: space-between;
    }

    .nav-list{
        position: initial;
        width: initial;
        height: initial;
        background-color: transparent;
        padding: 1rem;
        justify-content: initial;
        flex-direction: row;
        transform: initial;
        transition: initial;
    }

    .nav-item{
        margin: 0 2.4rem;
        border: none;
    }

    .nav-item:last-child{
        margin-right: 0;
    }

    .nav-link{
        margin-left: 2.3rem;
        font-size: 3vw;
        font-weight: 1000;
        letter-spacing: -.05rem;
        white-space: nowrap;
    }

    .nav-link:hover{
        color: var(--akzent-color);
    }

    .active{
        position: relative;
    }

    .active::before{
        /* content: ''; */
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #fff;
        left: 0;
        bottom: -3px;
    }

 

    /* .div-limo{

    }
    
    .div-limo video{
    }
    
    .div-limo video:nth-child(1){

    } */

    .work-content{
        width: 100vw;
        display: grid;
        grid-gap: 10px;
        grid-auto-flow: dense;
        margin-bottom: 15rem;
    }
    
    
    .sixtVid{
        width: 100vw;
        grid-column: span 3;
        cursor: pointer;
    }
    
    .limo1{
        max-width: 100%;
        grid-row: 2;
        cursor: pointer;
    }
    
    .limo2{
        max-width: 100%;
        grid-row: 2;
        cursor: pointer;
    }
    
    .limo3{
        max-width: 100%;
        grid-row: 2;
        cursor: pointer;
    }

    .sixtPrint{
        max-width: 100%;
        grid-column: 1 / span 1;
        grid-row: 3;
    }
    
    .chip{
        /*max-height: 100;*/
        grid-column: 2 / span 3;
        grid-row-start: 3;
    }
    
    /* .ikea{
        max-width: 100%;
        grid-column: 5;
        grid-row: 3;
    } */

    .amorelieVid{
        max-width: 100%;
        grid-row: 4;
        cursor: pointer;
    }
    
    .amoreliePrint1{
        width: 100%;
        height: auto;
        grid-row: 4;
        overflow: hidden;
    }

    /* .amoreliePrint2{
        max-width: 100%;
        grid-row: 4;
    } */

    .saveMe{
        max-width: 100%;
        grid-row: 4;
        cursor: pointer;
    }
    
    .gardena1{
        max-width: 100%;
        grid-row: 5;
    }
    
    .gardena2{
        max-width: 100%;
        grid-row: 5;
    }
    
    .gardena3{
        max-width: 100%;
        grid-row: 5;
    }
    
    .gardena4{
        max-width: 100%;
        grid-row: 6;
    }
    
    .haribo1{
        max-width: 100%;
        grid-row: 6;
        cursor: pointer;
    }
    
    .haribo2{
        max-width: 100%;
        grid-row: 6;
        cursor: pointer;
    }
    
    .misereor1{
        max-width: 100%;
        grid-row: 7;
    }
    
    .misereor2{
        max-width: 100%;
        grid-row: 7;
    }
    
    .misereor3{
        max-width: 100%;
        grid-row: 7;
    }
    
    .hoch2{
        max-width: 100%;
        grid-row: 8;
        cursor: pointer;
    }

    .shoepon{
        max-width: 100%;
        grid-row: 8;
        cursor: pointer;
    }

    .McDonalds_monopoly{
        max-width: 100%;
        grid-row: 8;
        cursor: pointer;
    }
    

    .McDonalds_stern{
        max-width: 100%;
        grid-row: 9;
        cursor: pointer;
    }
    
    .McDonalds_rdz{
        max-width: 100%;
        grid-row: 9;
        cursor: pointer;
    }

    .zwickl{
        max-width: 100%;
        grid-row: 9;
        cursor: pointer;
    }


    .LAB01{
        max-width: 100%;
        grid-row: 10;
        cursor: pointer;
    }
    
    .LAB02{
        max-width: 100%;
        grid-row: 10;
        cursor: pointer;
    }

    .LAB03{
        max-width: 100%;
        grid-row: 10;
        cursor: pointer;
    }

    .clients-container{
        width: 80%;
        margin: auto;
        margin-bottom: 15rem;
        position: relative;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    
    .clients{
        margin: auto;
        margin-bottom: 16vw;
        position: relative;
        display: grid;
        grid-gap: 10%;
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: 1fr 1fr;
        justify-items: center;
        align-items: center;
    }   


    .awards{
        margin: auto;
        margin-bottom: 8vw;
        position: relative;
        display: grid;
        grid-gap: 10%;
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: 1fr 1fr;
        justify-items: center;
        align-items: center;
    }   




    .headline{
        color: var(--akzent-color);
        font-size: 7rem;
        font-family: var(--main-font);
        /* text-transform: uppercase; */
        font-weight: 900;
        letter-spacing: -.1rem;
        margin-right: -.5rem;
        animation: scale .5s forwards;
    }

    .headline-dark{
        color: var(--body-font-color);
        font-family: var(--main-font);
        font-size: 7rem;
        font-weight: 900;
        letter-spacing: -.1rem;
        margin-right: -.7rem;
    }

    .line{
        max-width: 11.4rem;
    }


    .about{
        position: relative;
        margin: auto;
        width: 80%;
    }

    /* .about > div{
        flex: 1;
    } */

    .about .copy{
        font-size: 2rem;
        width: 50vw;
        min-width: 600px;
    }

    .padding-right{
        padding-right: 7rem;
    }


    .appstore-btns{
        max-width: 60%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1rem;
        margin-top: 2rem;
    }


    /* .app1{
        grid-row: 1;
    }

    .app2{
        grid-row: 2;
    } */


    .footer-content{
        position: relative;
        margin: auto;
        width: 80%;
    }

    .footer-content-about{
        max-width: 51.3rem;
        margin: 0 auto 5.4rem;
    }

    .footer-content-divider{
        display: flex;
        justify-content: space-between;
    }

    .social-icons i{
        opacity: 1;
        /* margin-top: 1.5rem; */
    }

    .contact-us{
        width: 250px;
        background: #fff;
        padding: 50px;
        margin: 100px auto;
        border-radius: 30px;
        position: relative;
      }

      .title h1{
        color: #535274;
        letter-spacing: 5px;
        margin-bottom: 25px;
        text-align: center;
      }


      .form,
      .form-items{
        width: 100%;
      }

      .form-items .input{
        width: 100%;
        margin-bottom: 12px;
        padding: 15px 40px;
        box-sizing: border-box;
        background: #ebeef1;
        border: 0px;
        outline: none;
        border-radius: 30px;
      }

      .form-items .input.message{
        height: 125px;
        border-radius: 15px;
        margin-bottom: 30px;
        padding: 15px 15px;
        resize: none;
      }

      .form-btn{
        background: #827ffe;
        text-align: center;
        color: #fff;
        padding: 12px;
        border-radius: 25px;
        cursor: pointer;
      }

      .form-btn .fas{
        margin-left: 10px;
        font-size: 12px;
      }

      .form-items{
        position: relative;
      }

      .form-items .fas{
        position: absolute;
        top: 15px;
        left: 15px;
        color: #9a99aa;
      }

      .form-social-icons{
        position: absolute;
        bottom: -25px;
        left: 50%;
        width: 200px;
        transform: translateX(-50%);
        display: flex;
        justify-content: space-around;
      }

      .form-social-icons div{
        width: 50px;
        height: 50px;
        border-radius: 50%;
        position: relative;
        cursor: pointer;
      }


      .form-social-icons div .fab{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        color: #fff;
      }

      .form-social-icons div.facebook{
        background: #5178d9;
      }

      .form-social-icons div.twitter{
        background: #41caf6;
      }

      .form-social-icons div.google{
        background: #fb4f4f;
      }

      .emailText h4{
        font-size: 1.3vw;
      }
}



/* Animations */
@keyframes pictureMove{
    0%{
        transform: scale(initial) translateX(initial) translateY(initial);
    }
    50%{
        transform: scale(1.05) translateX(10px) translateY(-5px);
    }
    100%{
        transform: scale(initial) translateX(initial) translateY(initial);
    }
}

@keyframes sixtMove{
    0%{
        transform: scale(initial) translateX(initial) translateY(initial);
    }
    50%{
        transform: scale(1.03) translateX(-5px) translateY(5px);
    }
    100%{
        transform: scale(initial) translateX(initial) translateY(initial);
    }
}