/*_____________________________________________________________________________________________________________ BASIC */
html, body {
    height: 100%;
    font-family: normal;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0px;
    padding: 0px;
    background-color: #130f1b;
}

.background-image {
    background-color: #130f1b;
    background: url(../graphics/noise_2021.png);
    background-repeat: repeat;
    /* background-size: cover;*/ 
    min-height: 100%;
}


/*______________________________________________________________________________________________________ TEXT & FONTS */

@font-face {
    font-family: headline;
    src: url(../fonts/JosefinSans-Regular.ttf);
  }

  @font-face {
    font-family: headlineBold;
    src: url(../fonts/JosefinSans-Regular.ttf);
  }

  @font-face {
    font-family: normal;
    src: url(../fonts/QUICKSAND-REGULAR.TTF);
  }

h1, h2, h3, h4 {margin: 0px; font-weight:100;}

h1 {
    font-family: headline;
    font-size: 38px;
    margin-bottom: 24px;
}

h2 {
    font-family: headline;
    font-size: 32px
}

h3 {
    font-family: headlineBold;
    font-size: 22px;
    margin-top: 8px;
    margin-bottom: 8px;
    font-weight: 100;
}

p {
    opacity:0.87;
    margin: 16px 0px 16px 0px;
    line-height: 1.6;
    color:white;
    width: 100%;
}

.headline {width: 100%;}

.box-wrapper p {
    margin: 0px; 
    opacity: 0.7; 
    font-size: 16px;
}

b {color: #dfbee2; font-weight: 00;}

a {
    color: #58C4EC;
    text-decoration: none;
    font-weight:bold;
}

a:hover {
    color: #ffffff; 
    text-decoration: underline;
}

a:focus {
    outline:none; 
    color:white;
}

.box a:hover IMG, .box a:focus IMG {
    opacity: 0.7;
}

.box-wrapper a:focus {outline: 2px solid #E675F0;}

.half-page input:focus, textarea:focus {
    border: 2px solid #E675F0;
    outline: none;
}

button:focus, #submit:focus {
    background: #ffffff; 
    border: 2px solid #ffffff; 
    text-decoration: underline;
}

button, #submit {
/*  margin-top: 32px; */
    height: 48px;
    width: 100%;
    background: #58C4EC;
    color: #000000;
    border: 2px solid #58C4EC;
    text-align: center;
    font-family: normal;
    font-size: 18px;
    cursor: pointer;
    outline: none;
    border-radius:4px;
}

button:hover, #submit:hover {
    background: #ffffff;
    border: 2px solid #ffffff; 
    transition-duration: 0.2s;
    text-decoration: underline;
}

/*MARK:_________________ MENU
*/

ul.topnav {
    display: flex;
    list-style-type: none;
    flex-wrap: wrap;
    text-align: center;
    padding:0;
    width:100%;
}
  
.menu {
    display: flex;
    justify-content: space-between;
    margin:auto;
    width:360px;
    margin-bottom:48px;
}
  
.menu a {
    display: block;
    text-decoration: none;
}

 .logo {
    width: 100%;
    text-align: center;
}
  
.logo a {text-decoration: none;}

.logo h1 {
    margin-bottom:0;
    color: #58C4EC;
    font-size: 40px;
}

.logo h3 {
    margin-bottom:32px;
    color: #58C4EC;
    opacity:0.8;
}

.logo IMG {max-width:64px;}

.menu .active {color: #ffffff;}

.menu a:after {
display: block;
content: "";
border-bottom: solid 3px #ffffff;
transform: scaleX(0);
transition: transform 150ms ease-in-out;
padding: 2px;
margin-left: 2px;
margin-right: 2px;
}

.menu .active:after {
border-bottom: solid 3px #ffffff;
transform: none;
}
  
.menu a:hover:after {transform: scaleX(1);}


/*___________________________________________________________________________________________________________ CONTENT */

.space {
    padding:0;
    margin:0;
    height:48px;
    width:100%;
}

ul {padding-bottom: 24px;}

hr {
    border-top: 0px;
    border-bottom: 0px;
    border-left: 0px;
    border-right: 0px;
	height:1px;
  	background-image: linear-gradient(to right, #ED25FF, #0DBBFB);
    width:100%;
    margin-top: 48px;
    margin-bottom: 24px;
    opacity: 0.4;
}

.content-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    min-height: 100%;
    position: relative;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 992px;
    margin-left: auto;
    margin-right: auto;
    padding: 16px 16px 64px 16px;
}

.whole-page {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.shop {display:block !important;}

.half-page, .half-page IMG {
    max-width: 480px;
    width: 100%;
}

.box-wrapper {
    text-align: center;
    padding-bottom:32px;
    max-width:232px;
    margin:8px;
    position: relative;
}

:after:hover {
    background:#241E44;
    color:white;
}

.box IMG {
    width: 100%;
    object-fit: cover;
    margin-bottom: -5px;
    box-shadow: 0px 0px 24px #00000063;
}

.box {
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.tooltiptext {
    background-color: #241E44;
    color: #58C4EC;
    text-align: center;
    height:48px;
    line-height:48px;
    width:100%;
    position: absolute;
    z-index: 1;
    bottom: -1px;
    right:0;
    opacity: 0;
    transition: opacity 0.2s;
}

.tooltiptext:hover, a:focus .tooltiptext {
    color:white;
    text-decoration: underline;
}

.credittype {
    bottom: 8px;
    position: absolute;
    right: 8px;
    background: #E675F0;
    padding: 4px;
    border-radius: 4px;
    color: #000000;
    font-size: 14px;
}

.box:hover .tooltiptext, a:focus .tooltiptext {
    visibility: visible;
    opacity: 1;
}


/*____________________________________________ YOUTUBE VIDEO */

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    margin-bottom: 8px;
    height: 0;
    width: 100%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*______________________________________________________________________________________________________ CONTACT FORM */

#website {display:none;}

/* label {display: flex;} */

/* Make the form as wide as the parent and resizable */
.half-page form {width:100%;}

/* Style the text boxes */
.half-page input, textarea {
    width:100%;
    height: 48px;
    box-sizing:border-box;
    background: #ffffff;
    border: 2px solid #ffffff;
    margin-top: 8px;
    margin-bottom:24px;
    padding:0px;
    text-indent: 8px;
    color: #3a3a3a;
    border-radius: 4px;
    outline: none;
    font-family: normal;
    font-size: 18px;
}

.half-page  textarea {height: 213px;}


/*____________________________________________________________________________________________________________ FOOTER */

footer {
    font-size: 14px;
    padding: 16px 0px 80px 0px;
    width: 100%;
}

footer IMG {
    width: 32px;
    padding: 8px;
    padding-left: 32px;
    padding-right: 32px;
}

#year {margin-left: 8px;}

.somed {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 16px;
}

.somed a, .somed form {opacity:0.5;}

.somed a:hover, .somed form:hover {
    opacity:1;
    background:none;
    box-shadow:none;
}

.copyright {
    opacity: 0.5;
    width: 100%;
    display: flex;
    justify-content: center;
}


/*______________________________________________________________________________________________________ PHONE LAYOUT */

@media screen and (max-width: 1009px) {
    
   .horizontal-spacer {display: block !important;}
   .content {justify-content: center;}
}


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

    .whole-page {justify-content: center;}
    
    .box-wrapper {max-width: 155px !important;}

    .box-hover-content {top:44%;}

    .logo h1 {font-size: 36px;}
    .logo h3 {font-size:20px;}

    h1 {text-align: center;}

    .menu {max-width:324px;}

}

@media screen and (max-width: 361px) {
    
    .box-wrapper {max-width: 148px !important;}

    .logo h1 {font-size: 36px;}
    .logo h3 {font-size:19.7px;}

}