/*!
Theme Name: pikapotti
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
*/


/*** UNIVERSAL ***/
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
html {
  scroll-behavior: smooth;
}
body {
    opacity: 0;
    margin: 0;     
    background:var(--dark);
    overflow-x: hidden;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-thumb {
    background: var(--blue);
}
::-webkit-scrollbar-track {
    background: var(--dark-blue);
}
img {
    display: block;
}
a:focus, button:focus, input:focus {
	outline:none;
}
:root {
    --black: #000000;    
    --dark: #001C42;
    --darker: #001635;
    --white: #ffffff;
    --yellow:#F7C341;
    --dark-yellow: #d7a62a;
    --blue:#2B3FB2;
    --red: #FF4500;
    --green: #93D156;
    --orange: #F88F00;
    --max-width: 1560px;
}
p, .site-content p, .site-content li {
    font-size: 16px;
    line-height: 26px;
    position: relative;
}

h1, h2, h3, h1 a, h2 a, h3 a, h4, h5, h6, h4 a, h5 a, h6 a {
    font-weight: 600;
}
h1 {
    font-size: 36px;
    line-height: 1.3;
    margin: 0px;
}
h2 {
    font-size: 62px;
    line-height: 1.2;
    margin-top:0;
    margin-bottom: 20px;
}
h3 {
    font-size: 46px;
    line-height: 1.2; 
    margin-top:0;
    margin-bottom: 30px;
}
h4 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 30px;
}
h5 {
    font-size: 18px;
    line-height: 1.3; 
    margin-top:0;
}
h6 {
    font-size: 14px;
    line-height: 1.3;
    margin-top: 0;
    /*text-transform: uppercase;*/
}
/*.main-content {
	padding-top: 120px;
}*/
.post, .page {
	margin:0;
}
strong {
    font-weight: 600;
}

/*** HEADER ***/
#headercontainer {
	position: fixed;
	width:100%;
	max-width: 100%;
	z-index: 9999;
    transition: 0.2s all ease-in-out;
}
.page-template-participant-home-page #headercontainer {
    background:var(--darker);
}
.site-header {	
	position: relative;
	height: 120px;
    max-width: var(--max-width);
	margin: 0 auto;
	transition: 0.1s all ease-in-out;
}
.site-title {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);   
    height: 34px;
    z-index: 1;
}
.site-title:after {
    content: 'ETU';
    color: var(--yellow);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
    position: absolute;
    bottom: -13px;
    right: -2px;
    text-shadow: 0px 0px 8px rgb(247 195 65);
    animation: glowPulse 2s ease-in-out infinite alternate;
    /*text-shadow:-4px -2px 0 #F7C341;*/
    /*animation: glow 2000ms infinite;*/
    /*text-shadow: 0px 2px 18px rgb(255 255 255 / 70%);*/
}
@keyframes glowPulse {
  0% {
    opacity: 1;
    text-shadow: 0px 0px 4px rgb(247 195 65 / 1);
    filter:brightness(1.03);
  }
  100% {
    opacity: 0.9;
    text-shadow: 0px 0px 8px rgb(247 195 65 / 0.4);
    filter:brightness(0.97);
  }
}
/*@keyframes glow {
  0% {
      text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #F7C341, 0 0 70px #F7C341, 0 0 80px #F7C341, 0 0 100px #F7C341, 0 0 150px #F7C341;
    }
    20% {
      text-shadow: 0 0 5px #fff, 0 0 15px #fff, 0 0 25px #fff, 0 0 35px #F7C341, 0 0 65px #F7C341, 0 0 75px #F7C341, 0 0 95px #F7C341, 0 0 145px #F7C341;
    }
    40% {
      text-shadow: 0 0 2px #fff, 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #F7C341, 0 0 60px #F7C341, 0 0 70px #F7C341, 0 0 90px #F7C341, 0 0 140px #F7C341;
    }
    60% {
      text-shadow: 0 0 5px #fff, 0 0 15px #fff, 0 0 25px #fff, 0 0 35px #F7C341, 0 0 65px #F7C341, 0 0 75px #F7C341, 0 0 95px #F7C341, 0 0 145px #F7C341;
    }
    80% {
      text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #F7C341, 0 0 70px #F7C341, 0 0 80px #F7C341, 0 0 100px #F7C341, 0 0 150px #F7C341;
    }
    100% {
      text-shadow: 0 0 5px #fff, 0 0 15px #fff, 0 0 25px #fff, 0 0 35px #F7C341, 0 0 65px #F7C341, 0 0 75px #F7C341, 0 0 95px #F7C341, 0 0 145px #F7C341;
    }
}*/
.site-title a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}
.site-title img {
	width:200px;
	height: auto;
	object-fit: contain;
}
.hide-header {
    background:var(--darker);
}
.hide-header .site-header {
    height: 80px;
}

.header-button {
	position: absolute;
	top:50%;
	right:100px;
	transform: translateY(-50%);
	margin:0 !important;
}



#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/*** BANNER ***/
/*.banner-overlay {
	background: linear-gradient(rgb(0 28 66 / 60%), rgb(0 28 66 / 100%)), url(https://demosivusto/pikapotti/wp-content/uploads/2025/09/partikkelit.png) no-repeat;
	background-size: cover;
	background-position: center;
	width:100%;
	height: 100%;
	position: absolute;
	left:0;
	top:0;
}*/
/*.banner-container::before {
	content:'';
    background: linear-gradient(90deg, rgb(0 28 66 / 100%), rgb(0 28 66 / 80%), rgb(0 28 66 / 0%));
    height: 100%;
    width: 100px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.banner-container::after {
	content:'';
    background: linear-gradient(90deg, rgb(0 28 66 / 0%), rgb(0 28 66 / 80%), rgb(0 28 66 / 100%));
    height: 100%;
    width: 100px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}
.banner-slider {
	padding-left:0 !important;
	padding-right: 0 !important;
}
.banner-cell {
	margin-right: 120px;
	padding: 0 100px;
}
*/
.banner-container {
    padding-top:240px !important;
}
.banner-cell img {
    max-height: 700px;
    width:auto;
    object-fit: contain;
}



.flex-50.banner-text li {
    font-size: 13px;
    font-weight: 500;
}
.flex-50.banner-text li strong {
    color: var(--yellow);
}
p.flames {
    position: relative;
    padding-left: 30px;
}
p.flames:before {
    content: '';
    background: url(https://pikapottietu.com/wp-content/themes/pikapotti/assets/flames-yellow.svg) no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0px;
}
.colored-list {
  list-style: none;
  counter-reset: list;
  padding-left: 0;
}
.colored-list li {
  counter-increment: list;
  margin: 6px 0;
  position: relative;
  padding-left: 30px;
}
.colored-list li::before {
    content: counter(list);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    line-height: 26px;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    color: var(--dark);
    background-color: var(--yellow);
}


.banner-register {
    margin-top:10px;
}
.banner-register h6 {
    margin-bottom: 10px;
    font-weight: 400;
    font-size:12px;
}


.mobile-banner-image {
    display: none;
}






/*** MAIN MENU ***/
.main-navigation {
    position: absolute;
    top: 50%;
    left: 350px;
    transform: translateY(-50%);
}
.main-navigation ul {
    padding: 0;
    margin:0;
}
.main-navigation ul li {
    list-style-type: none;
    display: inline-block;
    position: relative; 
    margin-right: 0;
}
.main-navigation ul li:last-of-type {
	margin-right: 0;
}
.main-navigation ul li a {
    position: relative;
    color: var(--yellow);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 22px;
    z-index: 3;
    border-radius: 40px;
    transition: 0.2s all ease-in-out;
}
.main-navigation ul li a:hover {
    color:var(--white);
}
.current-menu-item > a {
    color:var(--white);
}

/*** MOBILE MENU ***/
#nav-icon {
  display: none;
}
.toggle {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition-duration: .5s;
}
.bars {
  width: 100%;
  height: 2px;
  background:var(--white);
  border-radius: 4px;
}
#bar2 {
  transition-duration: .8s;
}
#nav-icon:checked + .toggle .bars {
  position: absolute;
  transition-duration: .5s;
  background:var(--yellow);
}
#nav-icon:checked + .toggle #bar2 {
  transform: scaleX(0);
  transition-duration: .5s;
}
#nav-icon:checked + .toggle #bar1 {
  width: 100%;
  transform: rotate(45deg);
  transition-duration: .5s;
}
#nav-icon:checked + .toggle #bar3 {
  width: 100%;
  transform: rotate(-45deg);
  transition-duration: .5s;
}
#nav-icon:checked + .toggle {
  transition-duration: .5s;
  transform: rotate(180deg);
}
.mobile-menu {  
    display: none;
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);        
    z-index: 102;
    transition: 0.2s all ease-in-out;
}

/*** SIDENAV ***/
.menu {
    padding-left: 0;
}
.menu-paamenu-container {
    width:100%;
}
.overlay {
    /*background:var(--dark);*/
    background:rgb(0 28 66 / 98%);
    backdrop-filter:blur(10px);
    width: 340px;
    position: absolute;
    z-index: 1;
    padding: 60px; 
    top: 120px;
    right:60px;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 0 25px 10px rgb(0 22 53 / 60%);
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.7);
}
.overlay ul.menu {
    padding: 0;
    margin: 0;
}
.overlay ul.menu li {
    margin:0;
    margin-bottom: 20px;
    cursor:pointer;
    list-style-type: none;
    position: relative;
}
.overlay ul.menu li:last-of-type {
    margin-bottom: 0;
}
.overlay ul.menu li a {
    position: relative;
    text-decoration: none;
    color:var(--yellow);
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    transition: 0.2s all ease-in-out;
}
.overlay ul.menu li a:hover {
    color:var(--white);
}
.overlay ul.menu li a:hover:after {
    left: calc(100% + 20px);
    opacity: 1;
}
.overlay ul.menu ul {
    margin-top:10px;
    padding-left: 0;
}
.overlay ul.menu ul li a {
    font-size: 15px;
    line-height: 30px;
}
.overlay ul.menu ul li {
    padding: 0 14px 0 14px;
    margin-bottom:4px;
}
.overlay ul.menu ul ul {
    margin-top: 4px;
    margin-bottom: 20px;
}
.overlay ul.menu ul li a img {
    display: none;
}
.overlay ul.menu li.menu-item-has-children:before {
    content: '+';
    position: absolute;
    right: 0;
    top: 4px;
    font-size: 24px;
    transition: 0.2s all ease-in-out;
}
.overlay ul.menu ul li.menu-item-has-children:before {
    top:0;
}
.overlay .current-menu-item > a {
    color:var(--black);
}
.overlay ul.menu li.rotate-arrow:before {
    transform: rotate(135deg);
    right: -1px;
}
.overlay .flex-50 img {
    width: 200px;
    margin-bottom: 60px;
}
.open-menu {
	opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1);
}

/*** CONTENT ***/
.dark-container {
    background:var(--dark);
    position: relative;
    z-index: 1;
}
.darker-container {
    background:var(--darker);
}
.dark-container h1, .dark-container h2, .dark-container h3, .dark-container h4, .dark-container h5, .dark-container h6 {
    color:var(--yellow);
}
.dark-container p, .dark-container li {
    color:var(--white);
}
.dark-container a {
	color:var(--yellow);
    text-decoration: none;
}
.dark-container p a {
    font-weight: 600;
}

.site-content {
    width:100%;
    max-width: var(--max-width);
    padding: 120px 100px;
    margin:0 auto;
    position: relative;
    z-index: 1;
}
.site-content ul{
	padding-left: 18px;
    position: relative;
}
.site-content ol {
    padding-left: 0;
    position: relative;
    list-style-type: none;
}
.no-top {
    padding-top: 0 !important;
}
.no-bottom {
    padding-bottom: 0 !important;
}
.no-right {
    padding-right: 0 !important;
}
.no-left {
    padding-left: 0 !important;
}
.full-width {
    max-width: 100%;
}
.border-top {
    border-top:solid 1px rgba(0,0,0,0.1);
}
.border-bottom {
    border-bottom:solid 1px rgba(0,0,0,0.1);
}
.border-right {
    border-right:solid 1px rgba(0,0,0,0.1);
}
.dark-container.border-top {
    border-top: solid 1px rgb(255 255 255 / 10%);
}
.dark-container.border-bottom {
    border-bottom: solid 1px rgb(255 255 255 / 10%);
}
.flex-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    position: relative;
    width:100%;
    z-index: 2;
}
.flex-container img {
	width:100%;
}
.center {
    max-width: 991px;
    margin:0 auto;
    text-align: center;
}
.center h4 {
    margin-top:0;
}
.flex-start {
	justify-content: start;
}
.flex-center {
    justify-content: center;
}
.flex-end {
	justify-content: end;
}
.align-start {
    align-items: start;
}
.align-center {
    align-items: center;
}
.align-end {
    align-items: end;
}
.flex-100 {
    width:100%;
    position: relative;
}
.flex-80 {
    width:80%;
    position: relative;
}
.flex-75 {
    width:75%;
    position: relative;    
}
.flex-66 {
    width:calc(66.66% - 40px);
    position: relative;
}
.flex-60 {
    width:calc(60% - 40px);
    position: relative;
}
.flex-50 {
    width:calc(50% - 40px);
    position: relative;
}
.flex-40 {
    width:calc(40% - 40px);
    position: relative;
}
.flex-33 {
    width:calc(33.33% - 40px);
    position: relative;
}
.flex-25 {
    width:calc(25% - 20px);
    position: relative;
}
.flex-20 {
    width:calc(20% - 20px);
    position: relative;
}


.flex-image img {
    max-height: 550px;
    object-fit: contain;
}
#leaderboard .flex-image img {
    max-height: 650px;
    margin-top: -40px;
}
/*img.small-icon {
    width: 50px;
    margin-bottom: 20px;
    padding: 6px 6px 8px 10px;
    border-radius: 6px;
}*/
img.small-icon {
    width: 50px;
    max-height: 50px;
    margin-bottom: 20px;
    padding: 10px 10px 10px 10px;
    border-radius: 6px;
}
.dark-container img.small-icon {
    background: var(--darker);
}
.dark-container.darker-container img.small-icon {
    background: var(--dark);
}
/*** BUTTONS ***/
pre {
    display: inline-block;
    margin:0;
}

a.cta, pre a {
    display: inline-block;
    padding: 14px 40px 12px 40px;
    text-decoration: none;
    transition: 0.2s all ease-in-out;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600 !important;
    background:var(--yellow);
    color:var(--dark);
    margin-top:20px;
    border-radius: 6px;
    overflow:hidden;
    font-family: 'Poppins', sans-serif;
    text-align: left;
}
a.cta, pre {
    margin-right: 10px;
}
a.cta:last-of-type, pre:last-of-type {
    margin-right: 0;
}
a.cta:hover, pre a:hover {
    background:var(--dark-yellow);
}




/*** PARALLAX ***/
.parallax-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.parallax-content {
    max-width: var(--max-width);
    margin:0 auto;
    position: relative;
    height: 100%;
}
.img-parallax {
    width: 100%;
    height: 100%;
    min-height: 900px;
    object-fit: cover;
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    pointer-events: none;
}
.image-overlay {
    position: absolute;
    left: 0;
    top: 0;
    background:linear-gradient(to top, rgb(0 28 66 / 100%), rgb(0 28 66 / 80%));
    width: 100%;
    height: 100%;
}
.parallax-box {
    padding: 60px;
    border-radius: 20px;
    height: fit-content;
    overflow: hidden;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.05);
}
.parallax-box p strong {
    font-size: 14px;
}
.parallax-box li {
    font-size: 13px;
    margin-bottom: 4px;
}
input[type="text"] {
    width: 100%;
    background: var(--darker);
    border: none;
    padding:18px 20px 16px 60px;
    border-radius: 6px;
    font-size: 18px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;    
    border:solid 2px var(--darker);
    transition: 0.2s border ease-in-out;
}
/*.home input[type="text"] {
    padding-left:60px;
}*/
input[type="text"]:focus {
    border:solid 2px var(--yellow);    
}
.lomake-container {
    position: relative;
    margin-top: 12px;
}
.lomake-container:before {
    content: '';
    background: url('https://pikapottietu.com/wp-content/themes/pikapotti/assets/phone-icon.svg') no-repeat;
    width: 20px;
    height: 20px;
    background-size: contain;
    position: absolute;
    top:50%;
    left:22px;
    transform: translateY(-50%);
}
input[type="text"]::placeholder {    
    color: var(--white);
    font-size: 18px;
    opacity: 0.3;
}
p.small-text {
    font-size: 13px;
    font-weight: 300;
    margin-bottom:0;
}

.ref-wrapper {
    position: relative;
}
.ref-wrapper:before {
    content: '';
    background: url(https://pikapottietu.com/wp-content/themes/pikapotti/assets/kaverit-fill.svg) no-repeat;
    width: 24px;
    height: 24px;
    background-size: contain;
    position: absolute;
    bottom: 14px;
    left: 22px;    
}
p.kaverikoodi-ohje {
    font-size: 12px !important;
    color: var(--yellow);
}


/*** FLICKITY SLIDER ***/
.flickity-page-dots {
    left: 50%;
    transform: translateX(-50%) !important;
    z-index: 2 !important;
    text-align: center !important;
    width: auto !important;
    padding: 0 !important;
}
.flickity-page-dots .dot {    
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.4) !important;
    transition: 0.3s ease-in-out !important;
}
.flickity-page-dots .dot.is-selected {
    background:var(--blue) !important;
    width:40px !important;
    border-radius: 6px !important;
}
.flickity-prev-next-button .flickity-button-icon path {
    display: none;
}
.flickity-button { 
    background: var(--blue);
    width: 50px !important;
    height: 50px !important;
    padding: 20px !important;
    transition: 0.2s all ease-in-out;
}
.flickity-button:hover {
    background:var(--dark);
}
/*svg.flickity-button-icon {
    background: url(https://solidcomp.com/wp-content/themes/solidcomp/assets/arrow-right-white-small.svg);
}*/
.flickity-prev-next-button.next {
    right:20px;
}
.flickity-prev-next-button.previous {
    left:20px;
}
.flickity-prev-next-button .flickity-button-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 20px;
    width: 20px;
}
.flickity-prev-next-button.previous svg.flickity-button-icon {
    transform:translate(-50%, -50%) rotate(180deg);
}





/*** LEADERBOARD ***/
.leaderboard-cell {
    width: 240px;
    border-radius: 10px;
    background:var(--blue);
    padding:10px;
    margin-right: 20px;
}
.leaderboard-icon {
    width:60px;       
}
.leaderboard-icon img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.leaderboard-info {
    width:140px;
}
.leaderboard-info h5 {
    margin-bottom: 0;
}
.leaderboard-info p {
    margin: 0;
}









/*** COUNTDOWN ***/
.countdown {
    gap: 8px;
}
.countdown h4 {
    text-align: center;
    width: 100%;
}
.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.label {
  margin-bottom: 10px;
}
.value {
    padding: 30px 10px;
    font-size: 54px !important;
    line-height: 54px !important;
    color: var(--white) !important;
    font-weight: 600;
    margin: 0;
    width: 120px;
    text-align: center;
    border-radius: 6px;
}
#days {
    background:var(--blue);
}
#hours {
    background:var(--blue);
}
#minutes {
    background:var(--blue);
}
#seconds {
    background:var(--blue);
}




/*** LOGO SLIDER ***/
.logo-cell {
    width: 200px;
    margin-right: 40px;
    display: flex;
    align-content: center;
}
.logo-cell img {
    width: 160px;
    object-fit: contain;
    max-height: 40px;
}





/*** DASHBOARD ***/
.dashboard-section.rewards {
    background: var(--darker);
    padding: 60px;
    margin-top: 40px;
    border-radius: 10px;
}
.dashboard-section.rewards h3 {
    margin-top:0;
}
.dashboard-section img.small-icon {
    background: var(--dark);
}
/*.ref-progress span {
    width: 50px !important;
    height: 50px !important;
    margin-right: 10px !important;
    background: var(--dark) !important;
}*/





/*** WPFORMS ***/
.wpforms-container-full {
    margin: 0 !important;
}
.wpforms-field {
    padding: 0 !important;
    margin-bottom: 12px !important;
}
.wpforms-field-large {
    height: 60px !important;
    border:none !important;
    border-radius: 6px !important;
    color: var(--black) !important;
    font-size: 18px !important;
    padding-left: 16px !important;
}
.wpforms-field-medium {
    height: 300px !important;
    border:none !important;
    border-radius: 6px !important;
    background: var(--light) !important;
    color: var(--black) !important;
    font-size: 18px !important;
    padding-left: 16px !important;
    padding-top:24px !important;
}
.wpforms-submit-container {
    margin-top: 20px !important;
}
.wpforms-submit, input.sib-default-btn {
    height:48px !important;
    border:none !important;
    border-radius: 6px !important;
    background: var(--blue) !important;
    padding: 14px 40px 12px 40px !important;
    color: var(--dark-blue) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 20px !important;
    transition: 0.2s all ease-in-out !important;
    cursor: pointer;
}
.wpforms-submit:hover, input.sib-default-btn:hover {
    background: var(--medium-blue) !important;    
}


/*** FOOTERCONTAINER ***/
#footercontainer {
    display: none;
}
#footercontainer input[type="text"] {
    background: rgba(255, 255, 255, 0.1) !important;
}
#footercontainer h4 {
    margin-top: 0;
}
#footercontainer ul {
	padding:0;
	margin:0;
    margin-bottom: 20px;
}
#footercontainer ul li, #footercontainer p {
    list-style-type: none;
    font-size: 14px;
    line-height: 30px;
    margin-top:0;
	font-weight: 600;
}
#footercontainer ul li a {
	text-decoration: none;
    font-size: 14px;
	font-weight: 600;
    transition: 0.2s all ease-in-out;
}
#footercontainer a:hover {
    color:var(--blue);
}
#footercontainer ul ul {
    display: none;
}
#footercontainer img {
    max-width: 180px;
    margin-top: 20px;
}
.footer-smallprint span {
    padding: 0 20px;
}



/*** MEDIA QUERIES ***/
@media(max-width:1920px){

}

@media(max-width:1650px){ 
    /*h1 {
        font-size: 58px;
        line-height: 1.2;
        margin: 0px;
    }*/
    /*h2 {
        font-size: 42px;
        line-height: 1.2;
        margin-top:0;
        margin-bottom: 20px;
    }
    h3 {
        font-size: 36px;
        line-height: 1.2; 
        margin-top:0;
        margin-bottom: 30px;
    }
    h4 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 20px;
    }*/
    h1 {
        font-size: 30px;     
    }
    h2 {
        font-size: 36px;
    }
    h3 {
        font-size: 32px;
    }
    h4 {
        font-size: 22px;
    }
    p, .site-content p, .site-content li {
        font-size: 15px;
        line-height: 24px;     
    }
    input[type="text"] {
        font-size: 15px;
    }
    input[type="text"]::placeholder {
        font-size: 15px;
    }
    a.cta, pre a {
        padding: 12px 30px 10px 30px;
        font-size: 15px;
    }
    .site-title {
        left: 80px;
    }
    .header-button {
        right: 80px;
    }
    .site-content {     
        padding: 120px 80px;
    }
    .flex-50 {
        width: calc(50% - 20px);
    }
    .banner-container {
        padding-top: 140px !important;
    }
    .banner-cell img {
        max-height: 600px;
    }
    .flex-40.countdown-container {
        width:calc(50% - 40px);
    }
    .value {
        width: 110px;
    }

}

@media(max-width:1450px){
    

}

@media(max-width:1200px){
    .main-navigation {
        display: none;
    }
    .mobile-menu {
        display: block;
    }
    .site-title {
        left: 60px;
    }
    .header-button {
        right: 140px;
    }
    .site-content {     
        padding: 100px 60px;
    }
    .value {
        width: 90px;
        padding: 20px 10px;
        font-size: 44px !important;
        line-height: 44px !important;
    }
}

@media(max-width:991px){
    h1 {
        font-size: 32px;     
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 24px;
    }
    h4 {
        font-size: 20px;
    }
    .flex-50.banner-text {
        width: 100%;
        order: 2;
    }
    .flex-50.banner-image {
        width: 100%;
        order: 1;
        margin-bottom: 20px;
    }    
    .flex-50 {
        width: 100%;
    }
    .flex-50.flex-text {
        order: 2;
    }
    .flex-50.flex-image {
        order: 1;
        margin-bottom: 20px;
    }
    .flex-50.flex-image img {
        max-width:300px;
        margin: 0 auto;
    }
    .flex-40.countdown-container {        
        width: 100%;
        /*margin-bottom: 40px;*/
        margin-bottom: 0;
    }
    .flex-container.countdown {
        max-width: 400px;
        margin: 0 auto;
    }
    .banner-container {
        padding-top: 120px !important;
    }
    .banner-cell img {
        max-height: 400px;
    }
    .mobile-banner-image {
        display: block;
    }
    .desktop-banner-image {
        display: none;
    }

}

@media(max-width:768px){
    .site-title {
        left: 40px;
        height: 27px;
    }
    .site-title img {
        width: 160px; 
    }
    .mobile-menu {
        right: 40px;
    }
    .header-button {
        right: 120px;
    }
    .site-content {     
        padding: 80px 40px;
    }
    .dashboard-section.rewards {
        padding: 40px;
    }
    .parallax-box {
        padding: 40px;     
    }
    #particles {     
        opacity: 0.1;
    }
    .value {
        width: 75px;
        padding: 20px 6px;
        font-size: 36px !important;
        line-height: 36px !important;
    }
    .banner-cell img {
        max-height: 280px;
    }


}

@media(max-width:520px){ 
    h1 {
        font-size: 22px;     
    }
    h2 {
        font-size: 20px;
    }
    h3 {
        font-size: 18px;
    }
    .site-title {
        left: 30px;
    }
    .mobile-menu {
        right: 30px;
    }
    .header-button {
        right: 100px;
    }
    .site-content {     
        padding: 60px 30px;
    }
    a.cta, pre a {
        padding: 10px 20px 8px 20px;
        font-size: 14px;
    }
    p, .site-content p, .site-content li {
        font-size: 14px;
        line-height: 22px;     
    }
    input[type="text"] {
        font-size: 14px;
    }    
    input[type="text"]::placeholder {
        font-size: 14px;
    }
    .dashboard-section.rewards {
        padding: 30px;
    }
    .parallax-box {
        padding: 30px;     
    }
    .ref-progress span {
        width: 40px !important;
        height: 40px !important;     
    }
    .flex-50.flex-image img {
        max-height: 300px;
    }

}

@media(max-width:420px){ 
    .site-title {
        left: 20px;
        height: 24px;
    }
    .site-title img {
        width: 140px;     
    }
    .mobile-menu {
        right: 20px;
    }
    .overlay {     
        width: 100%;        
        padding: 40px;
        right: 0;
        border-radius: 0;        
    }
    .header-button {
        right: 80px;
    }
    .site-content {     
        padding: 40px 20px;
    }    
    .dashboard-section.rewards {
        padding: 20px;
    }
    .parallax-box {
        padding: 20px;     
    }
    a.cta, pre a {
        font-size: 13px;
    }
    p, .site-content p, .site-content li {
        font-size: 13px;
        line-height: 20px;     
    }
    input[type="text"] {
        font-size: 13px;
    }   
    input[type="text"]::placeholder {
        font-size: 13px;
    }

}

@media(max-width: 360px){

}