/*
******************************************
Custom CSS for the Creation.Club Theme - 
Author: Andrea Nepori
******************************************
*/

/*** FONTS ***/

@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair/PlayfairDisplay-Regular.woff2') format('woff2'),
  	   url('../fonts/playfair/PlayfairDisplay-Regular.woff') format('woff'); 
  font-display: auto;
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair/PlayfairDisplay-Medium.woff2') format('woff2'),
  url('../fonts/playfair/PlayfairDisplay-Medium.woff') format('woff');
  font-display: auto;
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Metropolis';
  src: url('../fonts/metropolis/Metropolis-Light.woff2') format('woff2'),
  url('../fonts/metropolis/Metropolis-Light.woff') format('woff');
  font-display: auto;
  font-weight: 300;
  font-style: normal;
}


@font-face {
  font-family: 'Metropolis';
  src: url('../fonts/metropolis/Metropolis-Regular.woff2') format('woff2'),
  url('../fonts/metropolis/Metropolis-Regular.woff') format('woff');
  font-display: auto;
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'Metropolis';
  src: url('../fonts/metropolis/Metropolis-SemiBold.woff2') format('woff2'),
  url('../fonts/metropolis/Metropolis-SemiBold.woff') format('woff');
  font-display: auto;
  font-weight: bold;
  font-style: normal;
}

/****** PALETTE *****/

:root{
	--dark: #01161E;
	--semidark: #124559;
	--accent-dark: #598392;
	--accent-light: #aec3b0;
	--light: #eff6e0;
	--text: #0c303f;
  --bora: #cdb4db;
  --rosa-light: #ffc8dd;
  --rosa-dark: #ffafcc;
  --cyan: #bde0fe;
  --cyan-dark: #a2d2ff;
  --light-gray: #efefef;
  --nav-height: 100px;
  
}

html {
	font-size: 18px;

}

section {
	outline: none;
}

strong {
font-weight: bold;
}

.max-700 {
  max-width: 700px;
  margin: 0 auto;
}

.dark {
  background: var(--dark);
  color: var(--light);
}

.dark h2 {
  color: var(--light)
}

.dark .btn-primary {
    color: var(--dark);
    background-color: var(--accent-light);
    border-color: var(--accent-light);   
    padding: 0.5rem 1rem;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 0px;
    text-transform: uppercase;
}

.dark .btn-primary:hover {
    color: var(--dark);
    
    background-color: var(--light);
    border-color: var(--light);
    
    text-decoration: none;
}


/****** TYPOGRAPHY ******/

body {
	font-family: "Metropolis", sans-serif ;
	font-weight: normal;
	position: relative;
	color: var(--text);
}

h1, h2, h3, h4, h5 {
	font-family: "Playfair Display", serif;
	font-weight: normal;
	color: var(--text);
}

h2 {
	font-size: 2.4rem;
	margin-bottom: 1rem;
}

p {
	font-size: 18px;
	line-height: 1.5rem; 
}

a {
	color: var(--accent-dark);
	text-decoration: none;

}

a:hover {
	text-decoration: underline;
	color: var(--accent-dark);
}

/**** NAV ****/

.ccnav {

  height: var(--nav-height); 
  position: absolute;
  width: 100%;
  top: 0; 
  left: 0; 
  z-index: 10;
}

.logo {
  height: 100%;
  width: auto;
}

.lang-switch {
  font-family: 'Metropolis', sans-serif;
  color: var(--bora);
  margin-right: 1rem;
}

.offcanvas-end {
  width: 100%;

}

.offcanvas {
  background-color: var(--dark);
  color: white;
  background-clip: unset;
}

@media (min-width: 992px) {
.offcanvas-end {
  width: 400px;
}
 }



.offcanvas-header {
  height: 100px;
  background-color: white;
}

.oc-link {
    background: none;
    border: none;
    outline: none;
}

/****** HEADER HOME ********/


.hero-wrapper {

	height: calc(100vh - var(--nav-height));
  //margin-top: var(--nav-height);
}

body.admin-bar .hero-wrapper{
  height: calc(100vh - var(--nav-height) + 32px);
 // margin-top: calc(var(--nav-height) - 32px);
}

/* Avoid Chrome to see Safari hack */
@supports (-webkit-touch-callout: none) {
  .hero-wrapper {
	/* The hack for Safari */
	height: -webkit-fill-available;
  }
}

.hero-left, .hero-right {
  height: 50%!important;
  background-size: cover;
  background-position: center center;

}

.hero-brand, .hero-face {
  height: 100%!important;
  background-size: cover;
  background-position: center center;
}

.hero-left::after, .hero-right::after {
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, black 100%);
  opacity: 0.2;
  position: absolute;
  top: 0;
  left:0; 
}

.hero-brand::after, .hero-face::after {
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, black 100%);
  opacity: 0.2;
  position: absolute;
  top: 0;
  left:0; 
}

@media (min-width: 992px) {
.hero-left, .hero-right {
  height: 100%!important;
}
 }
 
.apply-btn {
   position: absolute;
   bottom: 30px;
   margin-left: auto;
   margin-right: auto;
   left:0;
   right: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 5;
 }
 
.btn {
  padding: 0.5rem 1rem;
  border-radius: 30px;
  min-width: 6rem;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  font-family: 'Metropolis', sans-serif;
}
 
.btn-face{
  background-color: var(--accent-light);
  border-color: var(--accent-light);
  outline: none;
}

.btn-face:hover, .btn-face:active, .btn-face:focus, .btn-face:active:focus{
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  text-decoration: none;
  outline:none;
  box-shadow: none;
}

.btn-brand{
  background-color: var(--bora);
  border-color: var(--bora);
  outline: none;
}

.btn-brand:hover, .btn-brand:active{
  background-color: var(--rosa-dark);
  border-color: var(--rosa-dark);
  text-decoration: none;
  outline: none;
}

.btn-brand:focus, .btn-brand:active:focus {
  box-shadow: none;
  background-color: var(--rosa-dark);
  border-color: var(--rosa-dark);
  text-decoration: none;
  outline: none;
}

.btn-dark-text{
  color: var(--dark);
}
/** MENUS **/

.offcanvas-body {
  background: var(--dark);
  padding: 1.5rem;
}

.wp-menu-d li {
display: inline-block;
text-transform: uppercase;
font-family: 'Metropolis', sans-serif;
margin-right: 2rem;
font-size: 0.8rem;
}

.wp-menu-d a{
  color: var(--light);
  transition: all 0.2s ease-in;
  text-decoration: none;
  font-weight: 300;
}



.wp-menu-d a:hover {

  text-decoration: underline;
}

.wp-menu-d ul {
  margin-bottom: 0;
  list-style: none;
}

.wp-menu-m ul {
  padding: 0;
  list-style: none;
  padding-top: 2rem;
}

.wp-menu-m li {
  margin-bottom: 1rem;
}



.wp-menu-m a {
  color: white;
  font-family: 'Metropolis', sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all ease-in;
  -webkit-transition: all 0.2s ease-in;
  text-transform: uppercase;
  
}

.wp-menu-m a::after {
  content: url("../img/chevron-right.svg");
  height: 18px;
  width: 18px;
  float: right;
  margin-top: 0.2rem;
}

.wp-menu-m a:hover {
  text-decoration: none;
  color: var(--accent-light);
}

/***** ABOUT US ******/

#about-us{
  padding-top: 2rem;
  padding-bottom: 6rem; 
}

.page-content {
  font-weight: 300;
}


.page-content h2 {
    text-transform: uppercase;
    margin-bottom: 4rem;
    margin-top: 5rem;
}

/***** TIKTOKERS *****/

#tiktokers {
  padding: 6rem 0 6rem;
}

.boxes-wrapper {
  overflow: auto;
  display: flex;
  scroll-snap-type: x mandatory;
  height: 53vh;
  margin-left: 1rem;
  padding-right: 1rem;
}



.ttbox {
  height: 50vh;
  width: 85%;
  border-radius: 30px;
  background-size: cover;
  background-position: center center;
  margin-right: 15px;
  flex-shrink: 0;
  scroll-snap-align: start;
  position: relative;
}

.ttbox::before{
  position: absolute;
  bottom:0;
  left: 0;
  border-radius: 30px;
  content: '';
  opacity: 0.3;
  width: 100%;
  height: 100%;
  /*background-image: linear-gradient(
    30deg,
    hsl(341deg 100% 50%) 0%,
    hsl(334deg 100% 56%) 20%,
    hsl(323deg 87% 61%) 29%,
    hsl(302deg 59% 62%) 36%,
    hsl(268deg 77% 72%) 43%,
    hsl(234deg 98% 77%) 50%,
    hsl(213deg 100% 68%) 57%,
    hsl(202deg 96% 59%) 64%,
    hsl(195deg 86% 54%) 71%,
    hsl(191deg 70% 57%) 80%,
    hsl(184deg 52% 61%) 100%
  );*/
  background-image: linear-gradient(
    30deg,
    hsl(0deg 0% 0%) 5%,
    hsl(0deg 100% 22%) 21%,
    hsl(358deg 100% 28%) 31%,
    hsl(350deg 100% 34%) 39%,
    hsl(346deg 100% 41%) 46%,
    hsl(343deg 100% 47%) 54%,
    hsl(334deg 100% 56%) 61%,
    hsl(310deg 68% 62%) 68%,
    hsl(250deg 89% 76%) 75%,
    hsl(208deg 100% 65%) 83%,
    hsl(194deg 83% 55%) 91%,
    hsl(184deg 52% 61%) 100%
  );
  z-index: 1;
}

#tiktokers h2 {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.tt-info {
  padding: 1rem;
  color: white;
}

.tt-data {
  z-index: 5;
}

.tt-info h4 {
  font-family: 'Metropolis', sans-serif;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.2rem;
 color: white;
}

.tt-info p{
  font-size: 0.8rem;
  font-weight: bold;
  margin: 0;
  line-height: 0.7rem;
}



.ttbox-d {
    min-height: 50vh;
    background-position: center center;
    background-size: cover;
    border-radius: 30px;
    margin-bottom: 2rem;
    position: relative;
}


.ttbox-d::before{
  position: absolute;
  bottom:0;
  left: 0;
  border-radius: 30px;
  content: '';
  opacity: 0.3;
  width: 100%;
  height: 100%;
  /*background-image: linear-gradient(
    30deg,
    hsl(341deg 100% 50%) 0%,
    hsl(334deg 100% 56%) 20%,
    hsl(323deg 87% 61%) 29%,
    hsl(302deg 59% 62%) 36%,
    hsl(268deg 77% 72%) 43%,
    hsl(234deg 98% 77%) 50%,
    hsl(213deg 100% 68%) 57%,
    hsl(202deg 96% 59%) 64%,
    hsl(195deg 86% 54%) 71%,
    hsl(191deg 70% 57%) 80%,
    hsl(184deg 52% 61%) 100%
  );*/
  background-image: linear-gradient(
    30deg,
    hsl(0deg 0% 0%) 5%,
    hsl(0deg 100% 22%) 21%,
    hsl(358deg 100% 28%) 31%,
    hsl(350deg 100% 34%) 39%,
    hsl(346deg 100% 41%) 46%,
    hsl(343deg 100% 47%) 54%,
    hsl(334deg 100% 56%) 61%,
    hsl(310deg 68% 62%) 68%,
    hsl(250deg 89% 76%) 75%,
    hsl(208deg 100% 65%) 83%,
    hsl(194deg 83% 55%) 91%,
    hsl(184deg 52% 61%) 100%
  );
  z-index: 1;
}



/***** FORMS ******/

#form {
  padding: 6rem 0;
  text-align: center;
}

.form-brand {
  background-color: var(--light-gray);
}

#form h2 {
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

#form p {
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/****** PARTNERS ********/

#partners {
  padding: 6rem 0; 
}

#partners h2 {
  text-transform: uppercase;
}

#partners .client-logos {
  margin-top: 2rem;
}

/**** FOOTER ******/ 

#wrapper-footer {
  background: var(--dark);
}

#wrapper-footer-full {
  background: var(--dark);
  color: #efefef;
  padding-top: 3rem;
  padding-bottom: 1rem;
}

#wrapper-footer-full h3 {
  font-family: 'Metropolis';
  text-transform: uppercase;
  color: #efefef;
  font-weight: bold;
  font-size: 0.9rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.7rem;
  margin-bottom: 1rem; 
}

#wrapper-footer-full p {
  font-size: 0.8rem;
}

#wrapper-footer-full .footer-widget {
  padding: 2rem; 
}

#wrapper-footer-full .widget_media_image {
  display: flex;
  align-items: center;
  justify-content: center;
}

#wrapper-footer-full .widget_media_image img {
  max-width: 200px;
  height: auto;
}

#wrapper-footer-full .quick-links p{
  margin-bottom: 0.2rem;
}

#wrapper-footer-full .quick-links a{
  color: white;
  font-family: 'Metropolis', sans-serif;
  font-size: 0.7rem;
  text-decoration: none;
  transition: all ease-in;
  -webkit-transition: all 0.2s ease-in;
  text-transform: uppercase;

}

#wrapper-footer-full .quick-links a:hover{
  color: var(--accent-light);
  text-decoration: none;

}

#wrapper-footer-full .quick-links a:before {
    content: url(../img/chevron-right.svg);
    eight: 12px;
    width: 12px;
    display: inline;
    margin-top: 0.1rem;
    margin-right: 0.4rem;
    float: left;
}

footer {
  min-height: 3rem;
  padding: 1.5rem 0;
  background: var(--dark);
  color: var(--light);
  text-align: center;
  
}

footer .site-info p{
  font-size: 0.8rem;
}


/** REDESIGN **/

.button {
  padding: 14px 22px;
  
  text-decoration: none!important;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  
}

.button-sm {
  padding: 10px 20px;
  
  font-size: 0.9rem;
  display: inline-block;
  text-decoration: none!important;
  text-transform: uppercase;
  font-weight: 600;
  
}


.button-hover-outline:hover, .button-hover-outline:focus {
  
  border: 1px solid;
  background: none;
  color: var(--main-color);
}


.ccnav2 {

  height: var(--nav-height); 
  position: absolute;
  width: 100%;
  top: 0; 
  left: 0; 
  z-index: 10;
}

.wp-menu-d.m-dark a{
  color: var(--dark);
  transition: all 0.2s ease-in;
  text-decoration: none;
  font-weight: 300;
}
