/**
 * Resets
 */

.navbar {
  overflow: hidden;
  background-color: transparent;
  position: fixed; /* Set the navbar to fixed position */
  top: 0; /* Position the navbar at the top of the page */
  width: 100%; /* Full width */
  z-index:1;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  display: block;
  color: #000;
  text-align: left;
  padding: 12px 4px;
  text-decoration: none;
}

/* Change background on mouse-over */
.navbar a:hover, .dropdown:hover .dropbtn {
  background: #ff00f6;
  color: black;
}

/* The dropdown container */
.dropdown {
  /*position: relative;
  display: inline-block;*/
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: #000;
  padding: 12px 4px;
  background-color: transparent;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: relative;
  background-color: #f9f9f9;
  /*min-width: 160px;*/
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  background: white;
  padding: 12px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
   background: #ff00f6;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: flex;
  position: relative;
  flex-direction: column;
}

/* Main content */
.main {
  margin-top: 30px; /* Add a top margin to avoid content overlay */
}

@font-face {
	font-family:"Hanken";
    font-weight: normal;
    font-style: normal;
    src: url('https://files.persona.co/61705/HKGrotesk-Regular.woff')format('woff');
}

@font-face {
	font-family:"Hanken";
    font-weight: normal;
    font-style: italic;
    src: url('https://files.persona.co/61705/HKGrotesk-Italic.woff')format('woff');
}

@font-face {
	font-family:"HankenThin";
    font-weight: normal;
    font-style: normal;
    src: url('https://files.persona.co/61705/HKGrotesk-Thin.woff')format('woff');
}

@font-face {
	font-family:"HankenLight";
    font-weight: normal;
    font-style: normal;
    src: url('https://files.persona.co/61705/HKGrotesk-Light.woff')format('woff');
}

@font-face {
	font-family:"HankenMed";
    font-weight: normal;
    font-style: normal;
    src: url('https://files.persona.co/61705/HKGrotesk-Medium.woff')format('woff');
}

@font-face {
	font-family:"HankenSemiBold";
    font-weight: normal;
    font-style: normal;
    src: url('https://files.persona.co/61705/HKGrotesk-SemiBold.woff')format('woff');
}

.cycle_content {
    opacity: 0;
    white-space: nowrap;
    display: inline-block;
    pointer-events: none;
}
 
.cycle_container {
    position: fixed;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    font-size: 1rem;
    line-height: 1 !important;
}

* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

::-moz-selection {
	background-color: #09f;
	color: #fff;
}

::selection {
	background-color: #09f;
	color: #fff;
}

:focus {
	outline: 0;
}

customhtml > * {
	position: relative;
    z-index: 10;
}

/**
 * Global
 */

body,
html {
	min-height: 100vh;
	margin: 0px;
	padding: 0px;
}

html {
	position: relative;
}

body {
	background: #111;
	color: #000;
}

a:active {
	opacity: 0.7;
}

/**
 * Backdrop
 */

#backdrop {
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	max-width: 100%;
	z-index: 1;
}

/*#background-video {
  height: 100vh;
  width: 100vw;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
*/

.video-container{
  width: 100vw;

}

iframe#fullscreen_embed{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
    z-index: -1;
}

iframe {
    display: block;
}


@media (min-aspect-ratio: 16/9) {
  .video-container iframe#fullscreen_embed {
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .video-container iframe#fullscreen_embed {
    width: 177.78vh;
  }
}

#text1{
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  color: rgba(0, 0, 0, 1);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#p2{
	max-width: 50ch;
    padding: 0px;
    margin: 0;
    color: black;
}

#p3{
	color:white;
}

#text2{
	max-width:1440px;
}

    #image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .grid-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0px; /* Adjust as needed for spacing */
  }

  .grid-column {
    flex-basis: calc(100% / 4 - 0px); /* Adjust spacing and number of columns as needed */
  }

  .image-container {
    position: relative;
    width: 100%;
    padding-bottom: 0%; 
  }

  .alt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.7);
    color: #000;
    font-weight: bold;
    font-size: 1em;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .image-container:hover .alt-overlay {
    opacity: 1;
  }


/**
 * Container
 */

main {
	background: #fff;
	clear: both;
	overflow: hidden;
	position: absolute;
	max-width: 100%;
	width: 100%;
	z-index: 2;

	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;

	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
}

main > div {
	-moz-flex: 1 0 auto;
	-webkit-flex: 1 0 auto;
	flex: 1 0 auto;
	width: 100%;
}


.subpage_overlay {
	display: block;
	pointer-events: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

body.homepage .subpage_overlay {
	display: none;
}
/**
 * Content
 */

i, em {
	font-style: italic;
}

b, strong {
	font-weight: bold;
}

ul, ol {
	margin: 0;
	padding: 0 0 0 1em;
}

p {
	background-color:#FFFFFF;
    opacity: 0.8
}

p .pwhitebg {
	background-color: white;
    opacity: 1;
}

sup {
	top: -0.4em;
	vertical-align: baseline;
	position: relative;
}

sub {
	top: 0.3em;
	vertical-align: baseline;
	position: relative;
}

s {
	
}

.slideshow-nav { 
	margin-bottom: 0.5em; 
}

img {
	border: 0;
	padding: 0;
}

blockquote {
	margin: 0;
	padding: 0 0 0 2em;
}

hr {
	background: rgba(127, 127, 127, 0.2);
	border: 0;
	height: 0.08em;
	display: block;
}

.bodycopy {
	display: none;
}

.container {
	min-height: 100%;
}

.content img {
	float: none;
	margin-bottom: 1em;
}

.clear:after {
	content: "";
	display: table;
	clear: both;
}

.loading[data-loading] {
	display: none;
	position: fixed;
	top: 8px; left: 8px;
	z-index: 100;
}

/**
 * Editor styles
 */

[data-css-presets="true"] main {
	background-color: transparent/*!content_center*/;
	text-align: left /*!text_left*/;
	min-height: 100vh /*!content_stretch*/;
	-webkit-align-items: flex-start /*!vertical_top*/;
	align-items: flex-start /*!vertical_top*/;
	left: 0 /*!content_center*/;
	margin-left: auto /*!content_center*/;
	margin-right: auto /*!content_center*/;
	right: 0 /*!content_center*/;
}

[data-css-presets="true"] .content_padded {
	padding: 5rem/*!main_margin*/;
}

[data-css-presets="true"] .content_width {
	width: 100%/*!content_center*/;
}

[data-css-presets="true"] #backdrop {
	width: 100% /*!background_cover*/;
}

[data-predefined-style="true"] main {
font-family: "HankenLight", Social, Icons;
    font-size: 1.5rem;
	font-weight: 400;
	color: rgb(0, 0, 0);
	font-style: normal;
	line-height: 1.3;
}

[data-predefined-style="true"] main a {
	color: rgb(255, 0, 237);
    padding-bottom: 0em;
    border-bottom: 0.07em solid rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

[data-predefined-style="true"] main a:hover {

}

main a.image-link,
main a.icon-link,
main a.image-link:hover,
main a.icon-link:hover {
	border-bottom: 0;
	padding-bottom: 0;
}

[data-predefined-style="true"] h1 {
	font-family: "HankenSemiBold", Social, Icons;
	font-style: normal;
	font-weight: normal;
	padding: 0;
	margin: 0;
	font-size: 5.063rem;
    letter-spacing: 0.1rem;
	line-height: 1.3;
	color: rgb(0, 0, 0);
	text-rendering: optimizeLegibility;
}

[data-predefined-style="true"] h1 a {
	color: rgb(241, 6, 255);
}

h1 .h1white {
	color: white;
}

[data-predefined-style="true"] h2 {
	font-family: "Hanken", Social, Icons;
	font-style: normal;
	font-weight: 700;
	padding: 0;
	margin: 0;
	color: rgb(0, 0, 0);
	font-size: 2.25rem;
	line-height: 1.3;
    /*letter-spacing: 0.1rem;*/
	text-rendering: optimizeLegibility;
}

[data-predefined-style="true"] h2 a {
	color: rgb(255, 0, 237);
}

h2 .h2white {
	color: white;
}

[data-predefined-style="true"] h3 {
	font-family: "HankenLight", Social, Icons;
	font-style: normal;
	font-weight: 700;
	padding: 0;
	margin: 0;
	color: rgb(0, 0, 0);
	font-size: 1.5rem;
	line-height: 1.4;
    /*letter-spacing: 0.1rem;*/
	text-rendering: optimizeLegibility;
}

[data-predefined-style="true"] h3 a {
	color: rgb(255, 0, 237);
}

[data-predefined-style="true"] h4 {
	font-family: "Hanken", Social, Icons;
	font-style: normal;
	font-weight: 700;
	padding: 0;
	margin: 0;
	color: rgb(255, 0, 237);
	font-size: 2.25rem;
	line-height: 1.3;
    /*letter-spacing: 0.1rem;*/
	text-rendering: optimizeLegibility;
}

[data-predefined-style="true"] h4 a {
	color: rgb(255, 0, 237);
}

[data-predefined-style="true"] small {
	font-family: "Hanken", Social, Icons;
	font-style: normal;
	font-weight: normal;
    display: inline-block;
	font-size: 1rem;
    letter-spacing: 0.1rem;
	line-height: 1.1;
	font-style: normal;
	font-weight: 400;
	color: rgba(0, 0, 0, 1);
}

[data-predefined-style="true"] small a {
	color: rgba(72, 93, 125, 1);
	border-bottom-width: 0.1em;
}

small .smallwhite {
	color: white;
}

[data-css-presets="true"] .subpage_overlay {
	background-color: rgba(255, 255, 255, 1)/*!subpage_overlay*/;
}
/**
 * Backstage Icon
 */

#backstage_icon {
	display: block;
}

/**
 * Breakpoints
 */

[data-css-presets="true"].mobile #plugin,
[data-css-presets="true"].mobile #backdrop,
.mobile #backdrop,
.mobile #plugin {
	position: relative;
	height: 50vh;
	min-width: 100%;
	width: calc(100% - 80rem) /*!right_fit*/;
	top: 0;
	bottom: auto;
	left: 0 /*!right_fit*/;
}

.mobile main,
[data-css-presets="true"].mobile main {
	position: relative;
	min-height: 10px;
	max-width: 100%;
	width: 100%;
}

.mobile main.content_width,
[data-css-presets="true"].mobile main.content_width {
	max-width: 100%;
	width: 100%;
}

video::-webkit-media-controls-start-playback-button {
  display: none !important;
}


