/*
Theme Name: Genesis Block Theme Child
Template: genesis-block-theme
Version: 1.0.0
Text Domain: genesis-block-theme-child
*/

/* Global font */
body, button {
	font-family: 'Inter', 'Public Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	background:
        radial-gradient(1200px 900px at 20% 10%, rgba(104, 77, 255, .17), transparent 70%),
        radial-gradient(1200px 900px at 80% 25%, rgba(0, 255, 209, .10), transparent 65%),
        radial-gradient(900px 900px at 60% 90%, rgba(255, 0, 153, .07), transparent 65%),
        linear-gradient(180deg, #05060a, #070a14);
      overflow-x:hidden;
	  background-attachment: fixed; 
		background-repeat: no-repeat;
  		background-size: cover;
}

/* Logo area */

.site-title{
	transform: translateY(6px);
  	animation: titleReveal 0.9s ease forwards;
  	animation-delay: .45s;
}
.site-title a{
	filter: grayscale(100%);
  	animation: titleColor 0.9s ease forwards;
  	animation-delay: .45s;
	font-size: 50px;
}
.site-description{
	font-size: 16px;
	font-weight: 300;
	opacity: 0;
  	transform: translateY(8px);
  	animation: descReveal 0.9s ease forwards;
  	animation-delay: .65s;
}
.site-title a,
.site-description{
	color: #ffffff;
}
.custom-logo-link img{
	float: left;
	width: 95px;
	 /* start state */
  opacity: 0;
  filter: grayscale(100%) contrast(1.05);
  transform: translateY(4px);

  /* animation */
  animation: logoReveal 1.2s ease forwards;
  animation-delay: .2s;

  /* smooth hover later */
  transition: filter .4s ease, transform .4s ease;
}

.titles-wrap.has-description{
	float: left;
	padding-top: 10px;
}

.titles-wrap{
	opacity: 0;
  	animation: titlesWrapFade 0.6s ease forwards;
  	animation-delay: .35s; /* after logo */
}

/* Reveal animation */
@keyframes logoReveal {
  to {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(0);
  }
}

/* Keyframes */
@keyframes titlesWrapFade {
  to { opacity: 1; }
}

@keyframes titleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleColor {
  to {
    filter: grayscale(0%);
  }
}

@keyframes descReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional: headings */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Inter', 'Public Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

h1, h2{
  font-size: 7.3rem;
  font-weight: 700;
  line-height: 1.05;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, .92),
    #00ccffe0,        /* soft cyan */
    #c7b7ff,          /* pastel purple */
    rgba(255, 255, 255, .92)
  );

  background-size: 300% 300%;
  background-position: 0% 50%;

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent;

  animation: gradientSlowMove 18s ease-in-out infinite;
}

/* h2 gradient animation */
@keyframes gradientSlowMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

h1{
	padding-top: 50px;
}

/* Secondary page header spacing */
.home .post .entry-header{
	margin-bottom: 50px;
}
.post .entry-header{
	margin-bottom: 0;
}

h3{
	color: #ffffff;
	font-size: 5rem;
	font-weight: 700;
	line-height: 110%;
	margin-bottom: 30px;
}
h4{
	font-size: 3.3rem;
	font-weight: 700;
	line-height: 110%;
	background: linear-gradient(135deg, rgba(255, 255, 255, .92), #00ccffe0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1.05; /* prevents clipping */
}
p{
	color: #eeeeee;
	font-size: 16px;
}
p.lead{
	font-size: 22px;
}
p.sub-lead{
	font-size: 18px;
}
p.subtitle{
	letter-spacing: 2px;
	margin-bottom: 5px;
	text-transform: uppercase;
	font-size: 14px;
	color: #d9d7d7;
	opacity: 0.7;
}

/* Navigation */
.main-navigation ul li a,
.main-navigation ul li.current-menu-item a{
	letter-spacing: 1px;
	margin-bottom: 5px;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 300;
	color: #ffffff !important;
}
.main-navigation ul li a:hover{
	color: #a49be8 !important;
}

.main-navigation ul li.demo a,
.main-navigation ul li.demo.current-menu-item a,
.main-navigation ul li.cnx a,
.main-navigation ul li.cnx.current-menu-item a{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px 0 0;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: rgba(255,255,255,.92);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  cursor: pointer;

  background:
    radial-gradient(120px 80px at 35% 40%, rgba(0,255,209,.18), transparent 45%),
    radial-gradient(140px 90px at 70% 70%, rgba(104,77,255,.22), transparent 45%),
    rgba(255,255,255,.08);

  /* KEY: give layers room to move */
  background-size: 200% 200%, 200% 200%, auto;
  background-position: 0% 50%, 100% 50%, 0 0;

  animation: navGlowFlow 24s ease-in-out infinite;

  transition:
    transform 420ms cubic-bezier(.2,.8,.2,1),
    background 420ms cubic-bezier(.2,.8,.2,1);
}

.main-navigation ul li.cnx{
	margin-left: -25px;
}

.main-navigation ul li.cnx a,
.main-navigation ul li.cnx.current-menu-item a{
	  padding: 14px 22px 14px 55px;
/* Icon = layer 1. Glows = layers 2/3. Base = layer 4 */
  background:
    url("/wp-content/uploads/2026/01/coreonyx-logo-icon.png") no-repeat 18px center / 30px 30px,
    radial-gradient(120px 80px at 35% 40%, rgba(0,255,209,.18), transparent 45%),
    radial-gradient(140px 90px at 70% 70%, rgba(104,77,255,.22), transparent 45%),
    rgba(255,255,255,.08);

  /* Give only the glow layers room to move */
  background-size: 30px 30px, 200% 200%, 200% 200%, auto;
  background-position: 18px center, 0% 50%, 100% 50%, 0 0;

  animation: cnxGlowFlow 24s ease-in-out infinite;

  transition:
    transform 420ms cubic-bezier(.2,.8,.2,1),
    background 420ms cubic-bezier(.2,.8,.2,1);
}

/* CNX button animation */
@keyframes cnxGlowFlow{
  0%{
    background-position: 18px center, 0% 50%, 100% 50%, 0 0;
  }
  50%{
    background-position: 18px center, 100% 50%, 0% 50%, 0 0;
  }
  100%{
    background-position: 18px center, 0% 50%, 100% 50%, 0 0;
  }
}

/* Demo button background animation */
@keyframes navGlowFlow{
  0%   { background-position: 0% 50%, 100% 50%, 0 0; }
  50%  { background-position: 100% 50%, 0% 50%, 0 0; }
  100% { background-position: 0% 50%, 100% 50%, 0 0; }
}

/* Gradient border */
.main-navigation ul li.demo a::before,
.main-navigation ul li.cnx a::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;

  background: linear-gradient(
    90deg,
    rgba(0,255,209,.55),
    rgba(104,77,255,.55),
    rgba(0,255,209,.55)
  );

  background-size: 300% 100%;
  background-position: 0% 50%;
  animation: navBorderFlow 22s ease-in-out infinite;

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  opacity: .85;
}


/* Page spacing */
#page{
	padding-top: 0;
}

/* Button list */

.entry-content ul.btn-list{
	margin: 0 20px 0 0;
	padding-left: 0;
}

.btn-list li{
  position: relative;	/* KEY: anchor ::before to the pill */
  display: inline-flex; /* instead of float */
  align-items: center;
  justify-content: center;
  margin: 0 10px 0 0;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent; /* KEY: to display the gradient border */
  color: rgba(255,255,255,.92);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  background:
    radial-gradient(120px 80px at 35% 40%, rgba(0,255,209,.18), transparent 45%),
    radial-gradient(140px 90px at 70% 70%, rgba(104,77,255,.22), transparent 45%),
    rgba(255,255,255,.08);
  transition:
    transform 420ms cubic-bezier(.2,.8,.2,1),
    background 420ms cubic-bezier(.2,.8,.2,1);
	cursor: pointer;
}

.btn-list li::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;

  background: linear-gradient(
    110deg,
    rgba(0,255,209,.35),
    rgba(104,77,255,.35),
    rgba(0,255,209,.35)
  );

  background-size: 300% 100%;          /* KEY for animation */
  background-position: 0% 50%;

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  animation: borderGradientMove 20s ease-in-out infinite;

  pointer-events: none;
  opacity: .85;
}

/* Animate the gradient border */
@keyframes borderGradientMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Make the link fill the pill and inherit color */
.btn-list li{
	margin-bottom: 15px;
}
.btn-list li,
.btn-list li > a{
  	color: #eeeeee;
	font-size: 16px;
  	text-decoration: none;
  	display: inline-flex;
  	align-items: center;
  	justify-content: center;
}
.btn-list li > a{
	cursor: pointer;
}

.btn-list li.plain{
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(102,102,102,.4);
}
.btn-list li.plain.no-link{
	cursor: default;
}
.btn-list li.plain::before{
	content: none;
}
.btn-list li a:hover{
	color: #ffffff;
}


/* Editor Button styling - to match the btn list */
/* Apply the pill container styles to the actual button wrapper */
.wp-block-buttons.btn-primary .wp-block-button{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 0 10px 0 0;
  border-radius: 999px;

  border: 1px solid transparent;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);

  background:
    radial-gradient(120px 80px at 35% 40%, rgba(0,255,209,.18), transparent 65%),
    radial-gradient(140px 90px at 70% 70%, rgba(104,77,255,.22), transparent 65%),
    rgba(255,255,255,.08);

  transition:
    transform 420ms cubic-bezier(.2,.8,.2,1),
    background 420ms cubic-bezier(.2,.8,.2,1);

  cursor: pointer;
}

/* Gradient border layer (attached to .wp-block-button) */
.wp-block-buttons.btn-primary .wp-block-button::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    90deg,
    rgba(0, 255, 209, .55),
    rgba(104, 77, 255, .55),
    rgba(255, 0, 153, .35)
  );

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  opacity: .85;
}

/* Make the actual clickable link fill the pill + remove core styles */
.wp-block-buttons.btn-primary .wp-block-button .wp-block-button__link{
  background: transparent !important; /* core sets background on the link */
  border: 0 !important;
  box-shadow: none !important;

  color: rgba(255,255,255,.92);
  padding: 12px 20px;

  border-radius: inherit;
  display: inline-flex;
  font-size: 13px;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  line-height: 1;
}

/* Hover/active */
.wp-block-buttons.btn-primary .wp-block-button:hover{
  transform: translateY(-2px);
}

.wp-block-buttons.btn-primary .wp-block-button:hover::before{
  opacity: 1;
}

.wp-block-buttons.btn-primary .wp-block-button:active{
  transform: translateY(0) scale(.99);
}

/* Optional focus-visible */
.wp-block-buttons.btn-primary .wp-block-button__link:focus-visible{
  outline: 2px solid rgba(0,255,209,.45);
  outline-offset: 3px;
}



/* Hide the title in the homepage */
.home h1{
	display: none;
}

/* Content width */
#primary{
	max-width: 1220px;
	width: 100%;
}


/* Header */
.site-header,
.site-footer{
	background: none;
	background-color: none;
}

/* Site Footer */
.site-footer{
   /* draws a 2px gradient line at the very top */
  background-image: linear-gradient(
    90deg,
    rgba(0, 255, 209, .15),
    rgba(104, 77, 255, .15),
    rgba(255, 0, 153, .15)
  );
  background-size: 100% 2px;
  background-repeat: no-repeat;
  background-position: top left;
}

/* Cards */

.card{
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.06),
    rgba(255,255,255,.03)
  );
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 20px 70px rgba(0,0,0,.28);
  position: relative;
  overflow: hidden;
  transition:
    transform 420ms cubic-bezier(.2,.8,.2,1),
    border-color 420ms cubic-bezier(.2,.8,.2,1),
    background 420ms cubic-bezier(.2,.8,.2,1);
}

.card:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.16);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.07),
    rgba(255,255,255,.03)
  );
}

.card:before{
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(
      300px 200px at 20% 0%,
      rgba(0,255,209,.10),
      transparent 55%
    ),
    radial-gradient(
      360px 240px at 80% 80%,
      rgba(104,77,255,.10),
      transparent 60%
    );
  opacity: .55;
  pointer-events: none;
}

.card > *{
  position: relative;
  z-index: 1;
}

.eyebrow{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  margin: 0 0 10px;
}

.card h3{
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -.01em;
}

.card p{
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.6;
}

/* Col within col margin */
.wp-block-column .wp-block-columns{
	margin-bottom: 0;
}

/* CTA Box */
.cta-box{
	border-radius: 22px;
  	border: 1px solid rgba(255,255,255,.12);
  	background:
    radial-gradient(1000px 500px at 20% 20%, rgba(124,92,255,.16), transparent 60%),
    radial-gradient(700px 500px at 80% 40%, rgba(0,204,255,.12), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  	box-shadow: rgba(0,0,0,.55);
  	padding: 28px;   
}
.cta-box p{
	font-size: 22px;
}

/* Demo form */
.gfield_required.gfield_required_text{
	color: #73548a !important;
}
.gform-theme--framework input[type]:where(:not(.gform-text-input-reset):not([type=hidden])):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)){
	background-color: transparent !important;
	padding: 25px !important;

}

.gform-theme--framework select:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)){
	background-color: transparent !important;
	padding: 25px !important;
}

.gform-theme--framework
input[type]:where(
  :not(.gform-text-input-reset):not([type=hidden])
):focus,
.gform-theme--framework
select:focus,
.gform-theme--framework
textarea:focus{
  outline: none !important;              /* removes browser blue ring */
  box-shadow: none !important;           /* removes GF blue glow */
  border-color: rgba(255,255,255,.2) !important; /* white border */
  background-color: transparent !important;
}

.gform-theme--foundation .gform_footer{
	padding-top: 30px;
}

.gform-body.gform_body{
	padding-bottom: 30px;
}
/* Gravity Forms submit button */

/* Wrap the submit button in a pill */
.gform_wrapper .gform_footer{
  display: inline-flex;
  padding: 1px;                 /* border thickness */
  border-radius: 999px;

  background: linear-gradient(
    90deg,
    rgba(0,255,209,.35),
    rgba(104,77,255,.35),
    rgba(0,255,209,.35)
  );

  background-size: 300% 100%;
  animation: borderGradientMove 20s ease-in-out infinite;
width: 160px;
}

.gform_wrapper .gform_footer input[type="submit"]{
  border: none !important;
  border-radius: 999px !important;

  padding: 14px 22px !important;

  background:
    radial-gradient(120px 80px at 35% 40%, rgba(0,255,209,.18), transparent 25%),
    radial-gradient(140px 90px at 70% 70%, rgba(104,77,255,.22), transparent 25%),
    rgba(255,255,255,.08) !important;

  color: rgba(255,255,255,.92) !important;

  box-shadow: 0 10px 30px rgba(0,0,0,.25) !important;
  cursor: pointer !important;
	width: 160px !important;
}
.gform_wrapper .gform_footer:hover{
  transform: translateY(-2px);
}

.gform_wrapper .gform_footer:active{
  transform: translateY(0) scale(.99);
}

/* Gradient border on form button */
.gform_wrapper .gform_footer input[type="submit"]::before{
	content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;

  background: linear-gradient(
    90deg,
    rgba(0,255,209,.55),
    rgba(104,77,255,.55),
    rgba(0,255,209,.55)
  );

  background-size: 300% 100%;
  background-position: 0% 50%;
  animation: navBorderFlow 22s ease-in-out infinite;

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  opacity: .85;
}



/* Video Buttons */
/* Gutenberg button styled like nav demo button */
.wp-block-button.video-btn .wp-block-button__link{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
	font-size: 16px;

  padding: 20px 22px;
  padding-left: 52px;   /* space for owl */
  padding-right: 52px;  /* space for play */

  border-radius: 999px;
  border: 1px solid transparent;

  color: rgba(255,255,255,.92);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  cursor: pointer;
  text-decoration: none;

  background:
    url("/wp-content/uploads/2026/01/cropped-qurii-logo.png") no-repeat 18px center / 30px 30px,
    radial-gradient(120px 80px at 35% 40%, rgba(0,255,209,.18), transparent 45%),
    radial-gradient(140px 90px at 70% 70%, rgba(104,77,255,.22), transparent 45%),
    rgba(255,255,255,.08);

  background-size:
    30px 30px,
    200% 200%,
    200% 200%,
    auto;

  background-position:
    18px center,     /* owl stays fixed */
    0% 50%,          /* glow layer 1 animates */
    100% 50%,        /* glow layer 2 animates */
    0 0;             /* base color stays fixed */

  animation: videoBtnGlowFlow 24s ease-in-out infinite;
}

.wp-block-button.video-btn .wp-block-button__link:hover{
	color: #a49be8;
}

/* Right icon */
.wp-block-button.video-btn .wp-block-button__link::after{
  content: "";
  position: absolute;
  right: 18px;
  width: 18px;
  height: 18px;

  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDUiIGhlaWdodD0iMjkiIHZpZXdCb3g9IjAgMCA0NSAyOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzY2N184KSI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNDEuMzYzNiAwSDMuNjM2MzZDMS42MzYzNiAwIDAgMS42NTgyIDAgMy42ODQ4OFYyNS4zMTUxQzAgMjcuMzQxOCAxLjYzNjM2IDI5IDMuNjM2MzYgMjlINDEuMzYzNkM0My4zNjM2IDI5IDQ1IDI3LjM0MTggNDUgMjUuMzE1MVYzLjY4NDg4QzQ1IDEuNjU4MiA0My4zNjM2IDAgNDEuMzYzNiAwWk0yOS43OTA5IDE1LjI1NTRDMjkuMTUgMTUuNjM3NyAxOC42NDA5IDIxLjc5NjEgMTcuODgxOCAyMi4yMjQ0QzE3LjMyMjcgMjIuNTM3NiAxNi41OTU1IDIyLjE5MjIgMTYuNTk1NSAyMS40NzgyVjcuNTQ0NzlDMTYuNTk1NSA2Ljg5NTMzIDE3LjI1NDUgNi40MTYzIDE3LjkwOTEgNi43OTRDMTguNDMxOCA3LjA5OCAyOC45IDEzLjIyNDEgMjkuNzk1NSAxMy43NDkyQzMwLjM4MTggMTQuMDk0NyAzMC4zNzI3IDE0LjkxNDUgMjkuNzk1NSAxNS4yNkwyOS43OTA5IDE1LjI1NTRaIiBmaWxsPSIjREJBMzQ3Ii8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDBfNjY3XzgiPgo8cmVjdCB3aWR0aD0iNDUiIGhlaWdodD0iMjkiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;

  pointer-events: none;
}

/*Video button gradient border*/
.wp-block-button.video-btn .wp-block-button__link::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;

  background: linear-gradient(
    90deg,
    rgba(0,255,209,.55),
    rgba(104,77,255,.55),
    rgba(0,255,209,.55)
  );

  background-size: 300% 100%;
  background-position: 0% 50%;
  animation: navBorderFlow 22s ease-in-out infinite;

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  opacity: .85;
}

/* Animation for video buttons */
/* Keyframes: keep owl position constant */
@keyframes videoBtnGlowFlow{
  0%{
    background-position: 18px center, 0% 50%, 100% 50%, 0 0;
  }
  50%{
    background-position: 18px center, 100% 50%, 0% 50%, 0 0;
  }
  100%{
    background-position: 18px center, 0% 50%, 100% 50%, 0 0;
  }
}
@keyframes navBorderFlow{
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* Video embeds */
.video-embed-fullwidth{
  position: relative;
  width: 100%;
  max-width: 100vw;
  aspect-ratio: 16 / 9;     /* modern, clean */
  background: #000;
  overflow: hidden;
}

.video-embed-fullwidth iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobile styles */
/* Desktop specific */

@media screen and (min-width: 768px) {
/* 	Make header static */
  .site-header{
	position: fixed;
	top: 0;
	left:0;
	right:0;
	z-index:9999;
	backdrop-filter: blur(12px);
	}
	.site-content{
		padding: 100px 0 7% 0;
	}
}


/* Mobile specific */
@media (max-width: 1000px) {
	.custom-logo-link{
		float: left;
		width: 95px;
	}
}

@media screen and (max-width: 767px) {
  h2{
    font-size: 5rem;
  }
}
