*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.clearfix:before, .clearfix:after { content: ''; display: table; }
.clearfix:after { clear: both; }

/* ---------- Floating Social (uses your footer-social markup) ---------- */
.footer-social.floating-social {
  position: fixed;
  right: 40px;
  top: 50vh;
  transform: translateY(-50%);
  z-index: 25;

  display: flex;
  flex-direction: column;
  gap: 12px;

  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-social.floating-social li{
  position: relative;
}

/* Button */
.footer-social.floating-social a{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;

  width: 52px;
  height: 52px;
  border-radius: 999px;
  text-decoration: none;
  outline: none;
  overflow: hidden;

  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.28);
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-social.floating-social a > i{
  position: relative;
  z-index: 1;
  font-size: 20px;
}

/* Hover fill */
.footer-social.floating-social a::after{
  position: absolute;
  content: "";
  inset: 100% 0 0;
  background: var(--bg, #070707);
  transition: inset 0.25s ease;
}

.footer-social.floating-social a:hover,
.footer-social.floating-social a:focus-visible{
  color: #fff;
  transform: translateY(-1px);
}

.footer-social.floating-social a:hover::after,
.footer-social.floating-social a:focus-visible::after{
  inset: 0;
}

/* Tooltip: pill label to the LEFT with full bg color */
.footer-social.floating-social li::after{
  position: absolute;
  content: attr(data-tooltip);
  z-index: 2;

  /* place left of the icon */
  left: auto;
  right: calc(100% + 12px);
  top: 50%;
  transform: translate(10px, -50%);
  white-space: nowrap;

  /* pill style */
  height: 52px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;

  color: #fff;
  background: var(--bg, #070707);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 10px 25px rgba(0,0,0,.35);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.2s ease, visibility 0.2s ease;
}

.footer-social.floating-social li:hover::after,
.footer-social.floating-social li:focus-within::after{
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
}

/* Mobile rules similar to your old social-ico-block */
@media (max-width: 640px){
  .footer-social.floating-social{
    right: 20px;
    top: 41vh;
    position: absolute;
    transform: translateY(-50%);
    display: none; /* default hidden on mobile */
  }

  main#home .footer-social.floating-social{
    display: flex;
  }

  main.active .footer-social.floating-social{
    opacity: 0;
    visibility: hidden;
  }
}


/* ---------- Footer Social Icons (hover + tooltip) ---------- */
footer .footer-social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
}

footer .footer-social li {
    position: relative;
    flex: 0 0 52px;
}

/* Tooltip */
footer .footer-social li::after {
    position: absolute;
    content: attr(data-tooltip);
    left: 50%;
    top: -10px;
    transform: translate(-50%, -100%);
    z-index: 2;

    padding: 6px 10px;
    font-size: 12px;
    color: #fff;
    background: var(--bg, #070707);
    border-radius: 6px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.2s ease, visibility 0.2s ease;
}

footer .footer-social li:hover::after,
footer .footer-social li:focus-within::after {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -115%);
}

/* Button */
footer .footer-social a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    width: 52px;
    height: 52px;
    border-radius: 999px;
    text-decoration: none;
    outline: none;
    overflow: hidden;

    color: rgba(255,255,255,.92);
    border: 1px solid rgba(255,255,255,.28);
    transition: color 0.25s ease, transform 0.25s ease;
}

footer .footer-social a > i {
    position: relative;
    z-index: 1;
    font-size: 20px;
}

/* Hover fill */
footer .footer-social a::after {
    position: absolute;
    content: "";
    inset: 100% 0 0;
    background: var(--bg, #070707);
    transition: inset 0.25s ease;
}

footer .footer-social a:hover,
footer .footer-social a:focus-visible {
    color: #fff;
    transform: translateY(-1px);
}

footer .footer-social a:hover::after,
footer .footer-social a:focus-visible::after {
    inset: 0;
}

/* ===== Kick fix (must be after all footer/social rules) ===== */

/* Make Kick text behave like the FontAwesome <i> */
footer .footer-social a > .kick-icon{
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;       /* match your icons */
  font-weight: 900;
  line-height: 1;
  transform: translateY(1px); /* optional: optical align */
}

/* Force Kick to stay dark (your global hover sets color:#fff) */
footer .footer-social li.is-kick a,
footer .footer-social li.is-kick a:hover,
footer .footer-social li.is-kick a:focus-visible{
  color: #0a0a0a !important;
}

/* Optional: make the tooltip look right on Kick green */
footer .footer-social li.is-kick::after{
  color: #0a0a0a;
}

@media (max-width: 640px) {
    footer .footer-social {
        gap: 10px;
    }
    footer .footer-social li {
        flex-basis: 48px;
    }
    footer .footer-social a {
        width: 48px;
        height: 48px;
    }
}

@font-face {font-family: Silka-Regular; src: url("../fonts/Silka/silka-regular-webfont.ttf");}
@font-face {font-family: Silka-Medium; src: url("../fonts/Silka/silka-medium-webfont.ttf");}
@font-face {font-family: Silka-SemiBold; src: url("../fonts/Silka/silka-semibold-webfont.ttf");}
@font-face {font-family: SilkaMono-Regular; src: url("../fonts/Silka_Mono/silkamono-regular-webfont.ttf");}
@font-face {font-family: SilkaMono-Medium; src: url("../fonts/Silka_Mono/silkamono-semibold-webfont.ttf");}



h1, h2, h3, h4, p, a, b, strong  {padding: 0; margin: 0; font-weight: 400; letter-spacing: normal;}
li, ul {padding: 0; margin: 0; list-style: none;}
h1.center, h2.center, h3.center, h4.center, p.center {text-align: center;}
a:focus { outline: none; }

/* Typography (Poppins) */
h1          {font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 42px; margin-bottom: 24px; letter-spacing: -1px;}
h2          {font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 18px;}
h3          {font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 13px; color: rgba(255, 255, 255, .6); text-transform: uppercase; letter-spacing: 2px;}
p           {font-size: 14px; color: rgba(255, 255, 255, 0.7); margin-bottom: 24px; line-height: 24px;}
strong 	    {font-family: 'Poppins', sans-serif; font-weight: 700; color: rgba(255, 255, 255, 1);}
a           {text-decoration: none; outline: 0;}
p a         {text-decoration: underline; color: rgba(255, 255, 255, 0.7);}
p a:hover   {color: rgba(255, 255, 255, 1);}

@media screen and (max-width: 640px){
    h1 {font-size: 28px;}
    h2 {}
    h3 {}
    p  {}
}

body {
    font-family: 'Poppins', 'Silka-Medium', sans-serif;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 400;
	background: #000;
	color: #fff;
    -webkit-font-smoothing: antialiased;
	top: 0;  
    left: 0;
}

html, body {
    width: 100%;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

::-webkit-scrollbar { 
    display: none; 
}

* { 
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -moz-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* ------------------------- All -------------------------------------------------- */

section, .section {
    float: left;
    width: 100%;
    position: relative;
    background: #000;
    padding-top: 120px;
    padding-bottom: 120px;
    overflow: hidden;
}

section.big, .section.big {
    padding-top: 150px;
    padding-bottom: 150px;
}

.wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
}

.wrap-wide {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
}

.wrap-text {
    max-width: 860px;
    margin: 0 auto;
    padding-left: 80px;
    padding-right: 80px;
    position: relative;
}

.sub-wrap {
    width: 50%;
    position: relative;
    float: left;
}

@media screen and (max-width: 1080px){ 
    section, .section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    section.big, .section.big {
        padding-top: 110px;
        padding-bottom: 110px;
    } 
}

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

    .wrap {
        max-width: 1040px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .wrap-wide {
        max-width: 1250px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .wrap-text {
        max-width: 760px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .sub-wrap {
        width: 100%;
    }
}

/* ------------------------- Buttons -------------------------------------------------- */

.btn {
    height: 50px;
    color: #fff;
    display: inline-block;
    padding: 13px 30px 13px 30px;
    position: relative;
    font-size: 14px; 
    line-height: 24px; 
    text-decoration: none; 
    background: #000;
    border-radius: 25px;
}

.btn:hover {
    cursor: pointer;
    background: #252525;
    color: #fff;
}


/* ------------------------- Social Icons / Socials -------------------------------------------------- */

.social-ico-block {
    width: 20px;
    top: 50vh;
    transform: translate(0, -50%);
    right: 40px;
    position: fixed;
    z-index: 25;
}

.social-ico {
    width: 20px;
    height: 20px;
    position: relative;
    float: left;
    margin: 10px 0;
}

.social-ico svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    opacity: 1;
}

.social-ico svg path {
    fill: #fff;
}

.social-ico:hover svg {
    opacity: .5;
    cursor: pointer;
}

@media screen and (max-width: 640px){
	.social-ico-block  {
        right: 20px;
        position: absolute;
        display: none;
        top: 41vh;
    }

    main#home .social-ico-block {
        display: block;
    }

    main.active .social-ico-block {
        opacity: 0;
        visibility: hidden;
    }
    
}

/* ------------------------- GDPR - Cookies Accept -------------------------------------------------- */

#gdpr-box {
    position: fixed;
    right: 50%;
    bottom: -90px;
    background: #fff;
    z-index: 6;
    border-radius: 45px;
    transform: translate(50%, 0);
    padding: 15px 15px 15px 25px;
    width: 320px;
}

#gdpr-box.active {
    bottom: 30px;
    display: block;
}

.gdpr-text {
    float: left;
    color: rgba(0, 0, 0, 1);
    max-width: 180px;
    font-size: 12px;
    line-height: 16px;
    padding: 5px 0 5px 10px;
    height: 44px;
}

.gdpr-text a {
    color: #23242D;
    text-decoration: underline;
}

.gdpr-text a:hover {
    color: #000;
}

.gdpr-button {
    float: right;
    padding-left: 10px;
    height: 44px;
}

.gdpr-button-accept {
    float: left;
    background: #000;
    color: #fff;
    height: 44px;
    padding: 10px 20px 10px 20px;
    font-size: 12px;
    
}

#gdpr-box.notactive  {
    transform: translate(50%, calc(100% + 40px));
}

#gdpr-box.notactive {
    -webkit-transition: all .7s ease-in-out;
	-moz-transition: all .7s ease-in-out;
	-ms-transition: all .7s ease-in-out;
	-o-transition: all .7s ease-in-out;
	transition: all .7s ease-in-out;     
}

@media screen and (max-width: 640px){
    #gdpr-box.active {
        bottom: 20px;
    }
}

/* ------------------------- Textblock -------------------------------------------------- */

.textblock {
    padding-top: 200px;
}

.textblock img {
    width: 100%;
    margin-bottom: 30px;
}

.textblock p {
    opacity: 1;
    margin-bottom: 30px;
}

.textblock a {
	color: #fff;
	text-decoration: underline;
}

.textblock p:last-child {
    margin-bottom: 0;
}

.textblock ul {
    padding-bottom: 30px;
    display: inline;
    float: left;
    width: 100%;
}

.textblock ol {
    padding-bottom: 30px;
    display: inline;
    float: left;
    width: 100%;
    padding-left: 23px;
}

.textblock ul li {
    padding-left: 20px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 16px;
    
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 24px;
}

.textblock ol li {
	list-style: decimal;
	margin-left: -5px;
    color: #fff;
}

.textblock ul li:before {
    content: "";
    width: 6px;
    height: 6px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 7px;
}

.textblock h1 {
    text-align: center;
    margin-bottom: 120px;
}

.textblock h3 {
    color: #fff;
    text-transform: none;
    font-family: 'Silka-SemiBold', sans-serif;
    letter-spacing: 0;
    font-size: 15px;
    margin-bottom: 5px;
}

#embed .vimeoplayer {
	margin-bottom: 200px;
}

#embed .vimeoplayer:last-child {
	margin-bottom: 0px;
}

#embed strong {
	font-size: 21px;
	margin-bottom: 10px;
	display: inline-block;
}

@media screen and (max-width: 640px){ 
	.textblock {
    	padding-top: 150px;
	}
	
	.textblock h1 {
	    margin-bottom: 80px;
	}
	
	#embed .vimeoplayer {
		margin-bottom: 100px;
	}
}

/* ------------------------- Page Transition -------------------------------------------------- */

.overlay-transition {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #000;
    z-index: 19;
    opacity: 1;
    pointer-events: none;
}

.home-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 22;
}

.home-overlay.fade-in {
    opacity: 1;
    visibility: visible;
    transition: all 1s cubic-bezier(0.87, 0, 0.13, 1);
    transition-delay: 1s;
}

.home-overlay.fade-in.appear {
    opacity: 0;
    visibility: hidden;
}

.home-overlay img {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.home-overlay.fade-in img {
    transform: translate(-50%, -50%) scale(3) rotate(10deg);
    opacity: 0;
    transition: all 1s cubic-bezier(0.87, 0, 0.13, 1);
}

.home-overlay.fade-in.appear img {
    transform: translate(-50%, -50%) scale(10) rotate(0deg);
    opacity: 1;
}

@keyframes loadOverlay {0% {opacity: 100%;} 100% {opacity: 0; }}
@-moz-keyframes loadOverlay {0% {opacity: 100%;} 100% {opacity: 0;}}
@-webkit-keyframes loadOverlay {0% {opacity: 100%;} 100% {opacity: 0;}}
@-o-keyframes loadOverlay {0% {opacity: 100%;} 100% {opacity: 0;}}

/* ------------------------- Default Header -------------------------------------------------- */

.default-header {
    padding-top: 200px;
    text-align: center;
    padding-bottom: 100px;
}

/* ------------------------- Parallax -------------------------------------------------- */

header {
    height: 100vh;
    width: 100%;
    float: left;
    position: relative;
    overflow: hidden;
}

header .parallax {
    position: relative;
    float: left;
    width: 100%;
    height: 100vh;
}

header .parallax .layer {
    position: absolute;
    width: 100%;
    height: 100vh;
}

header .bottom-fade {
    width: 100%;
	bottom: 0;
	height: 50vh;
	z-index: 2;
	float: left;
	position: absolute;
	background: linear-gradient(to top, black 0%, rgba(0, 0, 0, 0.738) 19%, rgba(0, 0, 0, 0.541) 34%, rgba(0, 0, 0, 0.382) 47%, rgba(0, 0, 0, 0.278) 56.5%, rgba(0, 0, 0, 0.194) 65%, rgba(0, 0, 0, 0.126) 73%, rgba(0, 0, 0, 0.075) 80.2%, rgba(0, 0, 0, 0.042) 86.1%, rgba(0, 0, 0, 0.021) 91%, rgba(0, 0, 0, 0.008) 95.2%, rgba(0, 0, 0, 0.002) 98.2%, transparent 100%);
}
  
header .top-fade {
    width: 100%;
	top: 0;
	height: 30vh;
	z-index: 2;
	float: left;
	position: absolute;
    background: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.738) 19%, rgba(0, 0, 0, 0.541) 34%, rgba(0, 0, 0, 0.382) 47%, rgba(0, 0, 0, 0.278) 56.5%, rgba(0, 0, 0, 0.194) 65%, rgba(0, 0, 0, 0.126) 73%, rgba(0, 0, 0, 0.075) 80.2%, rgba(0, 0, 0, 0.042) 86.1%, rgba(0, 0, 0, 0.021) 91%, rgba(0, 0, 0, 0.008) 95.2%, rgba(0, 0, 0, 0.002) 98.2%, transparent 100%);
    opacity: .2;
}

header .location {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 3;
}

header .location svg {
    height: 22px;
    float: left;
    margin-right: 10px;
    transform: translate(0, -2px);
    -webkit-animation: location-rotate 2s ease-in-out;
    -webkit-animation-iteration-count: infinite;
}

header .location span {
    line-height: 22px;
    float: left;
    font-family: 'Silka-Medium', sans-serif;
    color: rgba(255, 255, 255, 0.6);
}

@-webkit-keyframes location-rotate {
    0% {transform: translate(0, -2px) rotate(0deg);}
    75% {transform: translate(0, -2px) rotate(360deg);}
    100% {transform: translate(0, -2px) rotate(360deg);}
}


header .right-bottom-text {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
}

header .right-bottom-text span {
    line-height: 22px;
    float: left;
    font-family: 'Silka-Medium', sans-serif;
    color: rgba(255, 255, 255, 0.6);
}

/* Transition  */

header .parallax .layer.fade-in {
    transition: top 1s cubic-bezier(0.87, 0, 0.13, 1), opacity 1s cubic-bezier(0.87, 0, 0.13, 1); 
    top: 100px;
    transition-delay: 1.5s;
    opacity: 0;
}
header .parallax .layer.fade-in.appear {
    top: 0;
    opacity: 1;
}


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

    header {
        height: 85vh;
    }

    header .parallax {
        height: 85vh;
    }
    
    header .parallax .layer {
        height: 85vh;
    }

    header .parallax .layer.fade-in {
        position: absolute;
        height: 75vh;
        margin-top: 5vh;
    }
}

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

    header .location {
        left: 50%; 
        transform: translate(-50%, 0);
        bottom: 30px;
    }

    header .right-bottom-text {
        display: none;
    }
}
  
/* ------------------------- Links -------------------------------------------------- */

.links {
    padding-top: 180px;
    padding-bottom: 250px;
}

.links .single-link {
    float: left;
    width: calc(25% - 22.5px);
    margin-right: 30px;
    background: #252525;
    position: relative;
}

.links .single-link:last-child {
    margin-right: 0;
}

.links .single-link:before {
    content: "";
    padding-top: 140%;
    display: block;
} 

.links .single-link .bottom-fade {
    width: 100%;
    bottom: 0;
    left: 0;
	height: 70%;
	position: absolute;
    background: linear-gradient(to top, black 0%, rgba(0, 0, 0, 0.738) 19%, rgba(0, 0, 0, 0.541) 34%, rgba(0, 0, 0, 0.382) 47%, rgba(0, 0, 0, 0.278) 56.5%, rgba(0, 0, 0, 0.194) 65%, rgba(0, 0, 0, 0.126) 73%, rgba(0, 0, 0, 0.075) 80.2%, rgba(0, 0, 0, 0.042) 86.1%, rgba(0, 0, 0, 0.021) 91%, rgba(0, 0, 0, 0.008) 95.2%, rgba(0, 0, 0, 0.002) 98.2%, transparent 100%);
}

.links .single-link img, .links .single-link svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
}

.links .single-link .bottom-link {
    height: 30px;
    position: absolute;
    width: 100%;
    bottom: 20px;
    text-align: center;
    padding-top: 8px;
}

.links .single-link .bottom-link h3 {
    font-size: 12px;
    display: inline-block;
    margin-right: 10px;
}

.links .single-link .bottom-link svg {
    display: inline-block;
    left: auto;
    transform: translate(0, -35%);
    opacity: .6;
}

.links .single-link:hover img, .links .single-link:hover svg {
    transform: translate(-50%, -50%) scale(1.1);
}

.links .single-link:hover .bottom-fade {
    height: 150%;
}

.links .single-link:hover .bottom-link {
    bottom: 30px;
}

.links .single-link:hover .bottom-link h3 {
    color: #fff;
}

.links .single-link:hover .bottom-link svg {
    opacity: 1;
    transform: translate(0, -35%) scale(1);
}

/* Transition  */

.links .single-link.fade-in:nth-child(1) {transform: translate(0, 60px);}
.links .single-link.fade-in:nth-child(2) {transform: translate(0, 60px);}
.links .single-link.fade-in:nth-child(3) {transform: translate(0, 60px);}
.links .single-link.fade-in:nth-child(4) {transform: translate(0, 60px);}

.links .single-link.fade-in {
    transition: all 2s cubic-bezier(0.87, 0, 0.13, 1); 
    opacity: 0;
}

.links .single-link.fade-in.appear:nth-child(1) {transform: translate(0, 0px);}
.links .single-link.fade-in.appear:nth-child(2) {transform: translate(0, -60px);}
.links .single-link.fade-in.appear:nth-child(3) {transform: translate(0, 0px);}
.links .single-link.fade-in.appear:nth-child(4) {transform: translate(0, -60px);}

.links .single-link.fade-in.appear {
    opacity: 1;
}

@media screen and (max-width: 1080px){
    
    .links {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .links .single-link .bottom-link h3 {
        font-size: 10px;
    }

    .links .single-link img, .links .single-link svg {
        transform: translate(-50%, -50%) scale(.8);
    }
    
    .links .single-link:hover img, .links .single-link:hover svg {
        transform: translate(-50%, -50%) scale(.9);
    }
}

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

    .links {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .links .single-link {
        width: calc(50% - 10px);
        margin-right: 20px;
        margin-bottom: 20px;
    }
    
    .links .single-link:last-child, .links .single-link:nth-child(2) {
        margin-right: 0;
    }
}

@media screen and (max-width: 400px){
    
    .links .single-link .bottom-link h3 {
        margin-right: 0px;
    }
    
    .links .single-link .bottom-link svg {
        display: none;
    }
}

/* ------------------------- About -------------------------------------------------- */

.about {
    padding-top: 300px;
    padding-bottom: 0;
    margin-bottom: 200px;
    overflow: visible;
}

.about .background-image {
    width: 100%;
    height: 80%;
    position: absolute;
    left: 0;
    top: 0;
}

.about .top-fade {
    width: 100%;
	top: 0%;
	height: 60%;
	float: left;
	position: absolute;
	background: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.738) 19%, rgba(0, 0, 0, 0.541) 34%, rgba(0, 0, 0, 0.382) 47%, rgba(0, 0, 0, 0.278) 56.5%, rgba(0, 0, 0, 0.194) 65%, rgba(0, 0, 0, 0.126) 73%, rgba(0, 0, 0, 0.075) 80.2%, rgba(0, 0, 0, 0.042) 86.1%, rgba(0, 0, 0, 0.021) 91%, rgba(0, 0, 0, 0.008) 95.2%, rgba(0, 0, 0, 0.002) 98.2%, transparent 100%);
}

.about .bottom-fade {
    width: 100%;
	top: 20.5%;
	height: 60%;
	float: left;
	position: absolute;
	background: linear-gradient(to top, black 0%, rgba(0, 0, 0, 0.738) 19%, rgba(0, 0, 0, 0.541) 34%, rgba(0, 0, 0, 0.382) 47%, rgba(0, 0, 0, 0.278) 56.5%, rgba(0, 0, 0, 0.194) 65%, rgba(0, 0, 0, 0.126) 73%, rgba(0, 0, 0, 0.075) 80.2%, rgba(0, 0, 0, 0.042) 86.1%, rgba(0, 0, 0, 0.021) 91%, rgba(0, 0, 0, 0.008) 95.2%, rgba(0, 0, 0, 0.002) 98.2%, transparent 100%);
}

.about .wrap-text {
    transform: translate(0, 150px);
}

.about p strong {
    font-size: 18px;
    line-height: 30px;
}

@media screen and (max-width: 1080px){
    .about {
        padding-top: 0px;
        padding-bottom: 0;
        margin-bottom: 200px;
    }
}

@media screen and (max-width: 640px){ 
    .about {
        padding-top: 180px;
        margin-bottom: 100px;
    }  

    .about .background-image {
        height: 500px;
    }

    .about .bottom-fade {
        top: 150px;
        height: 350px;
        bottom: auto;
    }

    .about p strong {
        font-size: 16px;
        line-height: 26px;
    }
}

/* ------------------------- Circle Text -------------------------------------------------- */

.circle-wrap {
    width: 100%;
    float: left;
    padding-bottom: 110px;
}

.circle-text {
    width: 150px;
    height: 150px;
    background: #1b0329;
    padding: 20px;
    position: relative;
    border-radius: 75px;
    float: right;
}

.circle-text svg {
    float: left;
    transform: rotate(115deg);
}

.circle-text svg path {
    fill: transparent;
}

.circle-text svg textPath {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 4px;
    font-family: 'SilkaMono-Regular', sans-serif;
    text-align: center;
    fill: #fff;
}

/* Transition  */

.circle-text.fade-in svg {
    transform: rotate(25deg);
    transition: all 1s cubic-bezier(0.87, 0, 0.13, 1); 
}

.circle-text.fade-in.appear svg {
    transform: rotate(115deg);
}

@media screen and (max-width: 640px){ 
    .about .circle-wrap {
        padding-bottom: 40px;
    }  
}

/* ------------------------- Portfolio -------------------------------------------------- */

.portfolio{
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.portfolio-parallax-bg{
  position: absolute;
  inset: 0;
  z-index: 0;

  background: url("/assets/img/bg.jpg") center / cover no-repeat !important;
  background-attachment: scroll !important;
}

.portfolio > *:not(.portfolio-parallax-bg){
  position: relative;
  z-index: 1;
}

/* fades (above bg, below content) */
.portfolio .top-fade,
.portfolio .bottom-fade{
  position:absolute;
  left:0;
  width:100%;
  pointer-events:none;
  z-index:1;
}

.portfolio .top-fade{
  top:0;
  height:60%;
  background: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.738) 19%, rgba(0, 0, 0, 0.541) 34%, rgba(0, 0, 0, 0.382) 47%, rgba(0, 0, 0, 0.278) 56.5%, rgba(0, 0, 0, 0.194) 65%, rgba(0, 0, 0, 0.126) 73%, rgba(0, 0, 0, 0.075) 80.2%, rgba(0, 0, 0, 0.042) 86.1%, rgba(0, 0, 0, 0.021) 91%, rgba(0, 0, 0, 0.008) 95.2%, rgba(0, 0, 0, 0.002) 98.2%, transparent 100%);
}

.portfolio .bottom-fade{
  bottom:0;       
  height:60%;
  background: linear-gradient(to top, black 0%, rgba(0, 0, 0, 0.738) 19%, rgba(0, 0, 0, 0.541) 34%, rgba(0, 0, 0, 0.382) 47%, rgba(0, 0, 0, 0.278) 56.5%, rgba(0, 0, 0, 0.194) 65%, rgba(0, 0, 0, 0.126) 73%, rgba(0, 0, 0, 0.075) 80.2%, rgba(0, 0, 0, 0.042) 86.1%, rgba(0, 0, 0, 0.021) 91%, rgba(0, 0, 0, 0.008) 95.2%, rgba(0, 0, 0, 0.002) 98.2%, transparent 100%);
}

.portfolio > *:not(.portfolio-parallax-bg):not(.top-fade):not(.bottom-fade){
  position:relative;
  z-index:2;
}

.portfolio .wrap{
  position: relative;
  min-height: 100vh;         
  display: grid;
  place-items: center;        
}

.portfolio-collage{
  position: relative;
  width: min(900px, 92vw);    
  height: min(520px, 70vh);   
}

@media (max-width: 768px){
  .portfolio-parallax-bg{ background-attachment: scroll; }
}

.portfolio .single-image {
    width: 248px;
    background: transparent;    
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.portfolio .single-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.portfolio .single-image svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.5);
    width: 34px;
    opacity: 0;
}

.portfolio .single-image:before {
    content: "";
    padding-top: 125%;
    display: block;
} 

.portfolio .single-image.landscape {
    width: 310px;
}

.portfolio .single-image.landscape:before {
    content: "";
    padding-top: 70%;
    display: block;
} 
 
.portfolio .wrap-text .bottom-link {
    height: 30px;
    position: relative;
    float: left;
    width: 100%;
    bottom: 20px;
    text-align: center;
    padding-top: 8px;
}

.portfolio .wrap-text .bottom-link h3 {
    font-size: 12px;
    display: inline-block;
    margin-right: 5px;
}

.portfolio .wrap-text .bottom-link svg {
    display: inline-block;
    left: auto;
    transform: translate(0, 4px);
    opacity: .6;
}

.portfolio .wrap-text .bottom-link:hover h3 {
    color: #fff;
}

.portfolio .wrap-text .bottom-link:hover svg {
    opacity: 1;
    transform: translate(0, 4px);
}

.portfolio .tree {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-125%, -60%);
}

.portfolio .ocean {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(5%, 10%);
}

/* Transition  */

.portfolio.fade-in .single-image:nth-child(1) { transform: translate(-50%, -50%) rotate(5deg); z-index: 3;}
.portfolio.fade-in .single-image:nth-child(2) { transform: translate(-50%, -50%) rotate(-10deg); z-index: 4;}
.portfolio.fade-in .single-image:nth-child(3) { transform: translate(-50%, -50%) rotate(10deg); z-index: 2;}
.portfolio.fade-in .single-image:nth-child(4) { transform: translate(-50%, -50%) rotate(-5deg); z-index: 1;}

.portfolio.fade-in .single-image {
    transition: all 1s cubic-bezier(0.87, 0, 0.13, 1); 
    transition-delay: .5s;
}

.portfolio.fade-in.appear .single-image:nth-child(1) { transform: translate(-95%, -75%) rotate(-5deg); z-index: 4;}
.portfolio.fade-in.appear .single-image:nth-child(2) { transform: translate(0, -85%) rotate(10deg); z-index: 5;}
.portfolio.fade-in.appear .single-image:nth-child(3) { transform: translate(-110%, -5%) rotate(-10deg); z-index: 2;}
.portfolio.fade-in.appear .single-image:nth-child(4) { transform: translate(-15%, -15%) rotate(5deg); z-index: 1;}

.portfolio.fade-in.appear .single-image:nth-child(1):hover { transform: translate(-105%, -85%) rotate(-10deg); z-index: 3; transition: all .3s cubic-bezier(0.7, 0, 0.3, 1); }
.portfolio.fade-in.appear .single-image:nth-child(2):hover { transform: translate(10%, -95%) rotate(15deg); z-index: 4; transition: all .3s cubic-bezier(0.7, 0, 0.3, 1); }
.portfolio.fade-in.appear .single-image:nth-child(3):hover { transform: translate(-120%, 5%) rotate(-15deg); z-index: 1; transition: all .3s cubic-bezier(0.7, 0, 0.3, 1); }
.portfolio.fade-in.appear .single-image:nth-child(4):hover { transform: translate(-5%, -5%) rotate(10deg); z-index: 2; transition: all .3s cubic-bezier(0.7, 0, 0.3, 1); }

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

    .portfolio .single-image {
        width: 200px;
        background: transparent;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .portfolio .single-image.landscape {
        width: 250px;
    }

    .portfolio .wrap {
        margin-bottom: 160px;
    }

}

/* ------------------------- WP Blog Feed -------------------------------------------------- */
.WPBlogFeed{
  float:left;
  width:100%;
  position:relative;
  padding: 110px 0;
}

.WPBlogFeed .wrap{
  width:min(1200px, 92%);
  margin: 0 auto;
}

.wpblog-head{
  text-align:center;
  margin: 0 0 26px;
}

.wpblog-title{
  margin:0 0 8px;
  font-size: clamp(22px, 3vw, 40px);
  letter-spacing: .02em;
}

.wpblog-sub{
  margin:0 auto;
  max-width: 720px;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  font-size: 15px;
}

.wpblog-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.wpblog-card{
  display:flex;
  flex-direction:column;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  overflow:hidden;
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(8px);
  text-decoration:none;
  color: rgba(255,255,255,.92);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.wpblog-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.28);
  background: rgba(0,0,0,.30);
}

.wpblog-thumb{
  width:100%;
  aspect-ratio: 16 / 9;
  background: rgba(255,255,255,.06);
  background-size: cover;
  background-position: center;
}

.wpblog-body{
  padding: 16px 16px 14px;
}

.wpblog-meta{
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  margin: 0 0 10px;
}

.wpblog-h3{
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
}

.wpblog-excerpt{
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: 14px;
  line-height: 1.65;
}

.wpblog-loading,
.wpblog-empty{
  grid-column: 1 / -1;
  text-align:center;
  padding: 18px;
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: 14px;
  color: rgba(255,255,255,.75);
}

.wpblog-cta{
  display:flex;
  justify-content:center;
  margin-top: 22px;
}

.wpblog-viewall{
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  text-decoration:none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.wpblog-viewall:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.45);
}

@media (max-width: 980px){
  .wpblog-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px){
  .WPBlogFeed{ padding: 80px 0; }
  .wpblog-grid{ grid-template-columns: 1fr; }
}

/* ------------------------- Contact Form-------------------------------------------------- */

.contact-form {
	max-width: 520px;
	margin: 0 auto;
	text-align: center;
}

.contact-form .field {
	margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 14px 16px;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.15);
	color: #fff;
	font-size: 14px;
}

.contact-form textarea {
	min-height: 140px;
	resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: rgba(255,255,255,0.5);
}

.form-status {
	margin-top: 15px;
	font-size: 13px;
	opacity: .8;
}

/* ------------------------- Footer -------------------------------------------------- */

footer {
    float: left;
    width: 100%;
    position: relative;
    padding: 250px 0 130px 0;
}

footer .background-image, footer .left-fade, footer .top-fade {
    width: 60vw;
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
}

footer .left-fade {
    background: linear-gradient(270deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
}

footer .top-fade {
    background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
}

footer .wrap-text {
    text-align: center;
}

footer .mail {
    font-family: 'SilkaMono-Medium', sans-serif;
    font-size: 42px;
    text-align: center;
    line-height: 60px;
    color: #fff;
    display: inline-block;
}

footer .mail:hover {
    text-decoration: underline;
}

footer .logo-row {
    float: left;
    width: 100%;
    text-align: center;
    margin: 120px 0 20px 0;
}

footer .credits-row {
    float: left;
    width: 100%;
    text-align: center;
}

footer .credits-row li {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 5px;
}

footer .credits-row li:nth-child(2) {
    margin: 0 3px;
}

footer .credits-row li a {
    color: rgba(255, 255, 255, 0.7);
}

footer .credits-row li a:hover {
    color: rgba(255, 255, 255, 1);
}

footer .social-ico-block {
    display: none;
}

.creator-footer__kicker{
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  opacity: .75;
  margin: 0 0 10px;
}

.creator-footer__headline{
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.12;
  margin: 0 0 12px;
  font-weight: 700;
}

.creator-footer__headline span{
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.creator-footer__bio{
  margin: 0 auto;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
}

.creator-footer__signup{
  margin: 22px auto 0;
  display:flex;
  gap: 10px;
  justify-content:center;
  max-width: 560px;
}

.creator-footer__signup input{
  flex:1;
  min-width: 0;
  padding: 14px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.25);
  color: rgba(255,255,255,.92);
  outline: none;
}

.creator-footer__signup input::placeholder{
  color: rgba(255,255,255,.55);
}

.creator-footer__signup button{
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  cursor:pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.creator-footer__signup button:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.5);
}

.creator-footer__grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.creator-footer__col h3{
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
}

.creator-footer__col ul{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap: 8px;
}

.creator-footer__col a{
  text-decoration:none;
  color: rgba(255,255,255,.72);
}

.creator-footer__col a:hover{
  color: rgba(255,255,255,.95);
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

    footer {
        padding: 180px 0 50px 0;
    }

    footer .mail {
        font-size: 32px;
        line-height: 50px;
    }
}

@media screen and (max-width: 640px){ 
    footer {
        padding-bottom: 80px;
    }
    footer .mail {
        font-size: 26px;
        line-height: 40px;
    }

    footer .background-image, footer .left-fade, footer .top-fade {
        width: 100vw;
    }

    footer .social-ico-block {
        display: block;
        opacity: 1;
        visibility: visible;
        top: auto;
        bottom: 20px;
        width: 100%;
        height: 20px;
        left: 0;
        text-align: center;
        z-index: 1;
    }

    footer .social-ico-block .social-ico {
        margin: 0 8px;
        display: inline-block;
        float: none;
    }

}

/* Contact form UNDER the text (centered) */
.creator-footer__contact{
  width: min(620px, 92vw);
  margin: 26px auto 0;
  text-align: center;
}

.creator-footer__contact-title{
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .75;
}

/* Form layout */
.creator-footer__contact-form{
  display: grid;
  gap: 10px;
}

.creator-footer__contact-form input,
.creator-footer__contact-form textarea{
  width: 100%;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.25);
  color: rgba(255,255,255,.92);
  outline: none;
}

.creator-footer__contact-form input::placeholder,
.creator-footer__contact-form textarea::placeholder{
  color: rgba(255,255,255,.55);
}

.creator-footer__contact-form textarea{
  resize: vertical;
  min-height: 130px;
}

.creator-footer__contact-form button{
  width: fit-content;
  margin: 8px auto 0;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.creator-footer__contact-form button:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.5);
}

/* Keep © centered */
footer .credits-row--center{
  width: 100%;
  float: none;
  text-align: center;
  margin-top: 26px;
}

/* ------------------------- Error -------------------------------------------------- */

main#error footer {
    display: none;
}
.error {
    height: 100vh;
}

.error .wrap-text {
    position: absolute;
    width: 640px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.error .background-image, .error .left-fade, .error .top-fade {
    width: 60vw;
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
}

.error .left-fade {
    background: linear-gradient(270deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
}

.error .top-fade {
    background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
}

@media screen and (max-width: 640px){
    .error .wrap-text {
        width: 100%;
    }

    .error .background-image, .error .left-fade, .error .top-fade {
        width: 100vw;
    }
}


/* ------------------------- Beerslider -------------------------------------------------- */

.textblock .iframe-div {
	margin-bottom: 30px;
}

.textblock .sellfy-buy-button {
	margin-bottom: 30px;
}

.textblock.first {
	padding-top: 200px;
	padding-bottom: 0px;
}

.textblock.more-text {
	padding-top: 80px;
	padding-bottom: 80px;
}

.beforeafter {
	padding: 0;
}

.beforeafter .beer-handle {
	background: rgba(255, 255, 255, 1);
}

.beforeafter .beer-range:focus ~ .beer-handle {
	background: rgba(255, 255, 255, 1);
}

.beforeafter .beer-slider[data-beer-label]:after, .beer-reveal[data-beer-label]:after {
	border-radius: 15px;
	font-size: 12px;
	padding: 10px 20px;
	top: 30px;
	font-family: 'SilkaMono-Medium', sans-serif;
	background: rgba(0, 0, 0, .3);
	color: #fff;
}

.beforeafter  .beer-slider[data-beer-label]:after {
	right: 30px;
}

.beforeafter  .beer-reveal[data-beer-label]:after {
	left: 30px;
}

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

	.textblock.first {
		padding-top: 150px;
		padding-bottom: 0;
	}
	
	.textblock.first h1 {
		margin-bottom: 60px;
	}
	
	.textblock.more-text {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	
	.beforeafter .beer-slider[data-beer-label]:after, .beer-reveal[data-beer-label]:after {
		top: 10px;
		background: rgba(0, 0, 0, .3);
		color: #fff;
	}
	
	.beforeafter  .beer-slider[data-beer-label]:after {
		right: 10px;
	}
	
	.beforeafter  .beer-reveal[data-beer-label]:after {
		left: 10px;
	}


}

/* ------------------------- Animations -------------------------------------------------- */

.social-ico svg, .btn {
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-ms-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;  
}

.single-link h3, .single-link svg, .single-link img, .single-link .bottom-link, .single-link .bottom-fade, .single-image .overlay, .single-image svg, .bottom-link h3, .bottom-link svg, footer a, .photoswipe-item a svg, .photoswipe-item a .overlay, .photoswipe-item a, .social-ico-block {
    transition: all .3s cubic-bezier(0.7, 0, 0.3, 1); 
}























