
* {
    -webkit-font-smoothing: antialiased;
    outline: none;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Interstate';
    src: url('fonts/Interstate-UltraBlackComp.woff2') format('woff2'),
        url('fonts/Interstate-UltraBlackComp.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

html, body {
    width:100%;
    height: 100%;
    overflow: hidden;
    margin: 0px;
    padding: 0px;
    font-family: Jost, sans-serif;
}


body {
    background: url("../img/diplive.jpg") #000;
    background-size: cover;
    background-position: top center;
}

.blur1, .blur2, .blur3, .blur4, .blur5, .blur6, .blur7, .blur8 {
    opacity: 0;
    -webkit-filter: blur(30px);
    filter: blur(30px);
}

body.ready .blur1, body.ready .blur2, body.ready .blur3, body.ready .blur4, body.ready .blur5, body.ready .blur6, body.ready .blur7,  body.ready .blur8 {
    -webkit-animation: unblur 1s forwards;
    animation: unblur 1s forwards;
}

body.ready .blur1 {
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s;
}

body.ready .blur2 {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

body.ready .blur3 {
    -webkit-animation-delay: 0.75s;
    animation-delay: 0.75s;
}

body.ready .blur4 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

body.ready .blur5 {
    -webkit-animation-delay: 1.25s;
    animation-delay: 1.25s;
}

body.ready .blur6 {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

body.ready .blur7 {
    -webkit-animation-delay: 1.75s;
    animation-delay: 1.75s;
}

body.ready .blur8 {
    -webkit-animation-delay: 2s;
    animation-delay: 1.75s;
}

@-webkit-keyframes unblur {
    0% {opacity: 0; -webkit-filter: blur(30px)}
    100% {opacity: 1; -webkit-filter: blur(0px)}
}

@keyframes unblur {
    0% {opacity: 0; filter: blur(30px)}
    100% {opacity: 1; filter: blur(0px)}
}

svg {
    width: 15px;
    height: 15px;
    margin-right: 5px;
    font-size: 1em !important;
}

.noise {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: url("../img/noise.gif");
    background-size: 150px;
    background-repeat: repeat;
    mix-blend-mode: multiply;
    z-index: 11;
    opacity: 0.4;
}

#lightbox .noise {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: url("../img/noise.gif");
    background-size: 150px;
    background-repeat: repeat;
    mix-blend-mode: multiply;
    z-index: 2;
    opacity: 0.7;    
}


.content {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 10;
    box-shadow: 0 0 200px rgba(0,0,0,0.9) inset;   
    mix-blend-mode: overlay;
}

#lightbox.video .content {
    mix-blend-mode: unset
}

.gradientbg {
    object-fit: cover;
    position: fixed;
    z-index: 0;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%; 
}

.merchslider .gradientbg, #lightbox.signup .gradientbg {
    -webkit-filter: hue-rotate(160deg) brightness(0.8);
    filter: hue-rotate(160deg) brightness(0.8);
}

#lightbox.tour .gradientbg, .videoslider .gradientbg {
    -webkit-filter: hue-rotate(240deg) brightness(0.8) saturate(0.7);
    filter: hue-rotate(240deg) brightness(0.8) saturate(0.7);
}

#lightbox.contact .gradientbg {
    -webkit-filter: brightness(0.3) saturate(0);
    filter: brightness(0.3) saturate(0);
}

.thedip {
    position: fixed;
    z-index: 10;
    left: 30px;
    top: 1%;
    width: 34vh;
    mix-blend-mode: screen;
}

.thedip img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 10;
}

.thedip img.glow {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 9;   
    -webkit-animation: flicker 5s infinite;
    animation: flicker 5s infinite;
}

@keyframes open {
    0% {transform: scale(1,0)}
    100% {transform: scale(1,1)}
}

.lovedirection {
    position: fixed;
    z-index: 10;
    right: 10px;
    top: -4%;
    width: 70vh;
    height: 25vh;
    object-fit: cover;
    mix-blend-mode: screen;
}

.colourshift {
    animation: colourshift 21s infinite;
}

@keyframes colourshift {
    0% {filter: saturate(1) hue-rotate(0deg) brightness(1)}
    33.3333% {filter: saturate(1) hue-rotate(0deg) brightness(1)}
    33.3334% {filter: saturate(1) hue-rotate(70deg) brightness(0.8)}
    66.6666% {filter: saturate(1) hue-rotate(70deg) brightness(0.8)}
    66.6667% {filter: saturate(0) hue-rotate(0deg) brightness(1.5)}
    99.9999% {filter: saturate(0) hue-rotate(0deg) brightness(1.5)}
    100% {filter: saturate(1) hue-rotate(0deg) brightness(1)}
}

.colourshift2 {
    animation: colourshift2 21s infinite;
}

@keyframes colourshift2 {
    0% {color: #ff0300}
    33.3333% {color: #ff0300}
    33.3334% {color: #85b360}
    66.6666% {color: #85b360}
    66.6667% {color: #fff}
    99.9999% {color: #fff}
    100% {color: #ff0300}
}


    
@-webkit-keyframes flicker {
  from {
    opacity: 0.5;
  }
  4% {
    opacity: 0.5;
  }
  6% {
    opacity: 0.45;
  }
  8% {
    opacity: 0.55;
  }
  10% {
    opacity: 0.45;
  }
  11% {
    opacity: 0.5;
  }
  12% {
    opacity: 0.65;
  }
  14% {
    opacity: 0.55;
  }
  16% {
    opacity: 0.70;
  }
  17% {
    opacity: 0.55;
  }
  19% {
    opacity: 0.5;
  }
  20% {
    opacity: 0.5;
  }
  24% {
    opacity: 0.5;
  }
  26% {
    opacity: 0.69;
  }
  28% {
    opacity: 0.5;
  }
  38% {
    opacity: 0.45;
  }
  40% {
    opacity: 0.5;
  }
  42% {
    opacity: 0.6;
  }
  44% {
    opacity: 0.5;
  }
  46% {
    opacity: 0.5;
  }
  56% {
    opacity: 0.5;
  }
  58% {
    opacity: 0.75;
  }
  60% {
    opacity: 0.5;
  }
  68% {
    opacity: 0.5;
  }
  70% {
    opacity: .6; /*peak*/
  }
  72% {
    opacity: 0.5;
  }
  93% {
    opacity: 0.5;
  }
  95% {
    opacity: .6; /*peak*/
  }
  97% {
    opacity: 0.5;
  }
  to {
    opacity: 0.5;
  }
}
    
  
@keyframes flicker {
  from {
    opacity: 0.5;
  }
  4% {
    opacity: 0.5;
  }
  6% {
    opacity: 0.45;
  }
  8% {
    opacity: 0.55;
  }
  10% {
    opacity: 0.45;
  }
  11% {
    opacity: 0.5;
  }
  12% {
    opacity: 0.65;
  }
  14% {
    opacity: 0.55;
  }
  16% {
    opacity: 0.70;
  }
  17% {
    opacity: 0.55;
  }
  19% {
    opacity: 0.5;
  }
  20% {
    opacity: 0.5;
  }
  24% {
    opacity: 0.5;
  }
  26% {
    opacity: 0.69;
  }
  28% {
    opacity: 0.5;
  }
  38% {
    opacity: 0.45;
  }
  40% {
    opacity: 0.5;
  }
  42% {
    opacity: 0.6;
  }
  44% {
    opacity: 0.5;
  }
  46% {
    opacity: 0.5;
  }
  56% {
    opacity: 0.5;
  }
  58% {
    opacity: 0.75;
  }
  60% {
    opacity: 0.5;
  }
  68% {
    opacity: 0.5;
  }
  70% {
    opacity: .6; /*peak*/
  }
  72% {
    opacity: 0.5;
  }
  93% {
    opacity: 0.5;
  }
  95% {
    opacity: .6; /*peak*/
  }
  97% {
    opacity: 0.5;
  }
  to {
    opacity: 0.5;
  }
}        


#loading {
    background-size: 34px;  
    background: #000 url('../img/loading.gif');
    background-repeat: no-repeat;
    background-position: 50% 50%;	
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
}


.gradient {
    position: fixed;
    bottom: 0px;
    opacity: 1;
    left: 0px;
    height: 35vh;
    width: 100%;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}   

.gradient.top {
    bottom: auto;
    top: 0px;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);    
    display: none;
}

a {
    text-decoration: none;
    color: #dcdcdc;
}

#mobile {
    display: none;
}

.packshot {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 70vh;
    height: 70vh;
    z-index: 3;
}

.toptitle {
    position: fixed;
    top: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    font-size: 1.6em;
    line-height: 2.5rem;
    margin: 0px;
    color: #dcdcdc;
    z-index: 3;
    font-weight: 700;
    min-width: 700px;
}

.toptitle span {
    display: block;
    margin: 0px auto;
    color: #bb3022;
    font-size: 2.1rem;
    display: inline;
}

.toptitle span.big {
    font-size: 2.1rem;
    color: #dcdcdc;
    display: inline;
}

.toptitle span.small {
    font-size: 1.2rem;
    color: #dcdcdc;
    display: block;
}

.out {
    position: fixed;
    left: 0px;
    padding: 25px;
    bottom: 0px;
    color: #ff4f1b;
    font-size: 1.3em;
    line-height: 1.3em;
    text-align: left;
    z-index: 13;
    text-transform: uppercase;
    font-weight: 400;
    font-family: Interstate, sans-serif;
}



.buttons {
    position: fixed;
    right: 30px;
    bottom: 30px;
    text-align: center;
    vertical-align: middle;
    margin: 0px;
    color: #dcdcdc;
    z-index: 13;
}

.buttons a {
    padding: 10px 0.5vw;
    transition: 1s;
    margin: 0px 10px;
    vertical-align: middle;  
    color: #dcdcdc;
    text-transform: uppercase;
    transition: 0.5s;
    font-family: "Interstate", sans-serif;
}

.buttons a.active {
    color: #ff4f1b;
}

.buttons a:hover {
    text-shadow: 0px 0px 10px #ff4f1b;
    color: #ff4f1b;
}

.out, .buttons a {
    font-size: 2.5vw;
}

#lightbox {
  z-index: 50;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-size: 34px;  
  background: #000;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  display: none;
}

.close {
    position: fixed;
    top: 0px;
    right: 0px;
    padding: 13px 20px;
    color: #dcdcdc;
    background: #000;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    z-index: 10003;
    display: block;
    font-size: 28px;
    cursor: pointer;
}

.close-vid {
    position: fixed;
    top: 0px;
    right: 0px;
    padding: 13px 20px;
    color: #dcdcdc;
    background: #000;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    z-index: 10003;
    display: block;
    font-size: 28px;
    cursor: pointer;   
}

.close-merch {
    position: fixed;
    top: 0px;
    right: 0px;
    padding: 13px 20px;
    color: #dcdcdc;
    background: #000;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    z-index: 10003;
    display: block;
    font-size: 28px;
    cursor: pointer;   
}

.big {
    position: fixed;
    top: 50%;
    width: 100%;
    font-size: 3em;
    color: #fff;
    text-align: center;
    z-index: 11;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#lightbox.privacy, #lightbox.signup, #lightbox.tour, #lightbox.merch, #lightbox.contact {
    overflow-y: scroll;
    position: fixed;
    top: 0;
    z-index: 1000;
    display: none;
    left: 0;
    text-transform: none;
    letter-spacing: 0px;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: 100%;
}

.privacy-wrap, .tourcontainer, #signupwrap {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: block;
    overflow-y: scroll;
  box-shadow: 0 0 200px rgba(0,0,0,0.9) inset;    
}

.tourcontainer {
    z-index: 13;
    mix-blend-mode: color-dodge;
}

.tourwrapper {
    max-width: 800px;
    display: block;
    margin: 0 auto;
}

.privacy-wrap {
    background: transparent;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: block;
    overflow-y: scroll;
}

.privacy-container {
    background: transparent;
    position: relative;
    top: 0px;
    width: 700px;
    display: block;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    box-sizing: border-box;
    word-wrap: break-word;
    padding: 0px 40px;
}

.privacy-container p {
    font-family: Jost, sans-serif;
    color: #dcdcdc;
    font-size: 14px;
    line-height: 25px;
    text-align: left;    
}

.privacy-container ul li {
    color: #dcdcdc;
    font-size: 13px;
    line-height: 20px;
    text-align: left;   
    margin: 10px 0px;
}

.privacy-container h1 {
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 2px;
    margin: 40px auto;
    max-width: 500px;
    color: #dcdcdc;
    text-transform: uppercase;
    text-align: center;
}

.play {
    position: fixed;
    bottom: 20px;
    left: 30px;
    color: rgba(255,255,255,.5);
    font-family: Jost;
    z-index: 4;
    transition: 0.3s;
    padding: 15px;
}

.play span {
    position: relative;
    top: -7px;
    left: 20px;
    font-size: 14px;
    color: #dcdcdc;
    transition: 0.3s;
    opacity: 0;
}

.play:hover {
    color: rgba(255,255,255,1);    
}

.play:hover span {
    opacity: 1;
}

.privacy-link {
    position: fixed;
    padding: 15px;
    bottom: 30px;
    right: 30px;
    color: rgba(255,255,255,.5);
    font-size: 12px;
    font-family: Jost;
    font-weight: bold;
    z-index: 4;
    transition: 0.3s;
}

.privacy-link:hover {
    color: rgba(255,255,255,1);    
}

#socials {
    position: fixed;
    display: table;
    bottom: 6.5vw;
    left: 15px;
    z-index: 13;  
}

#socials a {
    color: #dcdcdc;
    font-size: 18px;  
    padding: 10px;
}

#socials a:hover {
    color: #fff;
}

h3 {
    font-size: 4em;
    line-height: 1em;
    display: block;
    margin: 100px auto 50px auto;
    text-align: center;
    font-weight: normal;
    width: 450px;
    color: #fff;
    text-transform: uppercase;
    font-family: Interstate, sans-serif;
}

h4 {
    font-size: 2em;
    line-height: 1em;
    display: block;
    margin: 0px auto 20px auto;
    text-align: center;
    font-weight: normal;
    width: auto;
    text-transform: uppercase;
    font-family: Interstate, sans-serif;
}

#signupwrap {
  z-index: 1000;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

#signupform, #mobilenotice {
	color: #dcdcdc;
	margin: 0px auto;
	font-weight: normal;
	font-size: 16px;
	line-height: 16px;
	text-align: center;
	z-index: 4;
    position: absolute;
    top: 50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (min-width: 800px) and (min-height: 900px) {
    #signupform {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);        
        overflow: hidden;
    }    
}

#lightbox.signup #signupform {
    width: 500px;
}

#signupform iframe {
    width: 100%;
    
}

#signupform p {
    display: block;
    margin: 20px auto 40px auto;
    font-size: 16px;
    line-height: 20px;
}

#signupform a {
    text-decoration: underline;
}

#signupform input {
	display: inline-block;
	outline: none;
    -webkit-appearance: none;
}

#signupform .email {
	background: transparent;
    border: none;
    border-bottom: 2px solid #dcdcdc;
	width: 370px;
	padding: 0px 10px 5px 10px;
	font-size: 13px;
    letter-spacing: 2px;
	color: #dcdcdc;
	line-height: 17px;
    text-align: center;
	vertical-align: bottom;
	margin: 0px;
    font-weight: normal;
    font-family: Jost, sans-serif, sans-serif;
    text-transform: uppercase;
}

#signupform .signupbutton {
    color: #dcdcdc;
    border: 0px;
    font-size: 15px;
    line-height: 15px;
    vertical-align: bottom;
    transition: 0.3s;
    text-transform: uppercase;
    padding: 7px;
    display: table;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 10px auto 0px auto;
    cursor: pointer;
    background: transparent;
    font-family: Jost, sans-serif, sans-serif;
}

#mobilenotice .signupbutton {
    background: #dcdcdc;
    color: #eb0f14;
    padding: 15px 30px;
    margin-top: 30px;
    font-size: 20px;
    letter-spacing: 0px;
}

#signupform .signupbutton:hover {
    color: #6a6d73;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #6a6d73;
  text-transform: uppercase;
  font-family: Jost, sans-serif, sans-serif;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #6a6d73;
  text-transform: uppercase;
  font-family: Jost, sans-serif, sans-serif;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #6a6d73;
  text-transform: uppercase;
  font-family: Jost, sans-serif, sans-serif;
}
:-moz-placeholder { /* Firefox 18- */
  color: #6a6d73;
  text-transform: uppercase;
  font-family: Jost, sans-serif, sans-serif;
}

.movedown {
    -webkit-animation: movedown 2s ease forwards;
    animation: movedown 2s ease forwards;
}

@-webkit-keyframes movedown {
    0% {
        -webkit-transform: translateY(-100px);
    }
    100% {
        -webkit-transform: translateY(0);
    }    
}

@keyframes moveup {
    0% {
        transform: translateY(-100px);
    }
    100% {
        transform: translateY(0);
    }    
}

.moveup {
    -webkit-animation: moveup 2s ease forwards;
    animation: moveup 2s ease forwards;
}

@-webkit-keyframes moveup {
    0% {
        -webkit-transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-100px);
    }    
}

@keyframes moveup {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100px);
    }    
}



.close-show {
    -webkit-animation: closeshow 2s ease forwards;
    animation: closeshow 2s ease forwards;
}

@-webkit-keyframes closeshow {
    0% {
        -webkit-transform: translateX(100px);
    }
    100% {
        -webkit-transform: translateX(0);
    }    
}

@keyframes closeshow {
    0% {
        transform: translateX(100px);
    }
    100% {
        transform: translateX(0);
    }    
}



.close-hide {
    -webkit-animation: closehide 2s ease forwards;
    animation: closehide 2s ease forwards;
}

@-webkit-keyframes closehide {
    0% {
        -webkit-transform: translateX(0px);
    }
    100% {
        -webkit-transform: translateX(100px);
    }    
}

@keyframes closehide {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(100px);
    }    
}


.zoomin {
    -webkit-animation: zoomin 1.5s forwards ease;
    animation: zoomin 1.5s forwards ease;
}

@-webkit-keyframes zoomin {
    0% {-webkit-transform: scale(0)}
    100% {transform: scale(1)}
}

@keyframes zoomin {
    0% {transform: scale(0)}
    100% {transform: scale(1)}
}


.zoomout {
    -webkit-animation: zoomout 1.5s forwards ease;
    animation: zoomout 1.5s forwards ease;
}

@-webkit-keyframes zoomout {
    0% {transform: scale(1)}
    100% {transform: scale(0)}
}

@keyframes zoomout {
    0% {transform: scale(1)}
    100% {transform: scale(0)}
}


/****  MEDIA QUERIES ****/ 


@media (max-width: 800px) and (orientation: portrait) {
    
    

    
    h3 {
        width: 100%;
    }   
    

body {
    background: url("../img/diplivemobile.jpg") #000;
    background-size: cover;
    background-position: top center;
}    

body.ready .blur1, body.ready .blur2, body.ready .blur3, body.ready .blur4, body.ready .blur5, body.ready .blur6, body.ready .blur7, body.ready .blur8 {
    -webkit-animation: none;
    animation: none;
}   
    
.blur1, .blur2, .blur3, .blur4, .blur5, .blur6, .blur7, .blur8 {
    opacity: 1;
    -webkit-filter: none;
    filter: none;
}    
    
.thedip {
    left: 50%;
    transform: translateX(-50%);
    top: 8vw;
    width: 35vw;
}    
    
.lovedirection {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: 13vw;
    width: 80vw;
    height: 28vw;
}    
    
    .buttons a{
    display: inline-block;
    font-size: 5vw;
    margin: 0vw 3vw;
        line-height: 4dvw;
    }
    
    .buttons.bottom {
        bottom: 30px;
        top: auto;
        width: 300px;
    }
    
    .toptitle {
        width: 100%;
        top: 45px;
        min-width: 100%;
    }
    
    .toptitle span {
        display: block;
    }
    
    .buttons.top {
        width: 100%;
        bottom: auto;
        right: auto;
        display: block;
        top: 32dvh;
        padding: 0px 5dvw;
    }
    
    .out {
        font-size: 5vw;
        width: 100%;
        text-align: center;
    }    
	
	#desktop {
		display: none;
	}	
    
    #mobile {
        display: block;
    }
    
    .mercy {
        width: 90%;
    }
    
    .buttons {
        width: 100%;
        min-width: 100%;
    }
    
    .packshot {
    width: 85vw;
    height: 85vw;
}

    
    .privacy-container {
        width: 100%;
    }

    #signupform {
        width: 290px;
        margin: 0 auto;
        z-index: 9;
        font-size: 10px;
        letter-spacing: 1px;
    }
    
#lightbox.signup #signupform {
    width: 100%;
    height: 100vh;
}    

    #signupform .email {
        width: 85%;
        border-radius: 0px;
        line-height: 20px;
        vertical-align: middle;
        box-sizing: border-box;
        color: #dcdcdc;
    }

    #signupform .signupbutton {
        opacity: 1;
        top: 1px;
        right: 15px;
    }
    
    #socials {
        top: 10px;
        right: auto;
        left: 50%;
        min-width: 270px;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    
    #socials a {
        font-size: 0.9em;
    }
    
    
    .play {
        bottom: 20px;
    }
    
#signupform iframe {
    width: 100%;
    position: fixed;
    top: 45vh;
    max-height: 300px;
    left: 50%;
    transform: translate(-50%, -50%);
}    

}


/* Landscape */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 768px)
  and (orientation: landscape) {

}



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

.thedip {
    width: 28vh;
}

.lovedirection {
    width: 63vh;
    height: 22vh;
}}


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

.thedip {
    top: 5.3%;
    width: 22vh;
}

.lovedirection {
    top: 1%;
    width: 51vh;
    height: 18vh;
}}



@media (max-device-width: 1400px) and (orientation: landscape) {

body {
    background: url("../img/bg2.jpg") #000;
    background-size: cover;
    background-position: top right;
}
    
    .buttons {
        bottom: 25px;
    }    
    
    .buttons a {
        font-size: 1.5vw;
        padding: 10px 0.1vw;
    }
    
    #socials {
        bottom: 9vw;
    }    
    
    
}
