@charset "UTF-8";

/*------ Fonts --------*/

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Light.woff2") format("woff2"), url("../fonts/Gilroy-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/*------ Fix mobile scroll --------*/

html, body {
  overflow-x: hidden;
  /*overflow-y: scroll;*/
  -webkit-overflow-scrolling: touch;
}

body {
  position: relative;
  margin: 0;
  font-family:"Gilroy", sans-serif, Roboto, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  text-align: center;
  color: #fff;
  background: #09080D;
}

a {
  font-weight: 500;
  color: #FFC9A7;
  text-decoration: underline;
}

/*--------- IE only ---------*/

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {  
	/* IE10+ specific styles go here */  
 
  .page_wrapper, .meet_row, .meet_arrow {
    display: block!important; /*---Fix for overlap container IE11 ----*/
}

.poster img {
  width: 100%; /*---Fix for object-fit: cover; IE11 ----*/
  height: auto!important;
}

}

/*----------- Content --------------*/

.page_wrapper {
    display: flex; 
    flex-direction: column;
    align-items: center;
}

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

.footer .container {
  max-width: 100%;
  margin: 0px auto;
}

.header {
  margin-top: 35px;
  display: flex;
  align-items: center;
  /* justify-content: center; */

}

.logo {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.logo img {
  width: 100%;
  height: auto;
/*height: 57px; /*---IE11 fix----*/
}

.hero {
  display: inline-flex;
  margin-top: 0;
}

.slogan {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-size: 64px;
  text-align: left;
  background: linear-gradient(90deg, #FFC9A7 0%, #E9B3FE 50%, #A0B2FE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.slogan:after {
  display: block;
  /*content: url(../img/soccer_ball.png);*/
  content:"";
  background-image: url('../img/soccer_ball.png');
  background-size: 64px 64px;
  background-repeat: no-repeat;
  float: right;
  margin-top: 25px;
  margin-right: 140px;
  height: 64px;
  width: 64px;
}

.hero_text{
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  text-align: left;
}

.pop{
  color: #00FF38;
  -webkit-mask-image: linear-gradient(-75deg, rgba(0, 0, 0, .8) 30%, #000 50%, rgba(0, 0, 0, .8) 70%);
  -webkit-mask-size: 200%;
  animation: wave 2s infinite;

}

@-webkit-keyframes wave {
  from {
    -webkit-mask-position: 150%;
  }
  to {
    -webkit-mask-position: -50%;
  }
}

/*--------- Ribbons -------------*/

.ribbons{
  display: flex;
  width: 100%;
  height: 200px;
}

.container_full_width{
  width: 100%!important;
}

.ribbon_2{
  height: 70px;
  background: #7D00B7;

  -moz-transform: skewY(11deg);  
  -o-transform: skewY(11deg);  
  -webkit-transform: skewY(11deg);  
  -ms-transform: skewY(11deg);  
  transform: skewY(11deg); 
  /*transform-origin: 0 0;*/

  margin-left: -65%; /*-------centered cross--------*/
}

.ribbon_1{
  height: 70px;
  background: #00FF38;

  -moz-transform: skewY(-11deg);  
  -o-transform: skewY(-11deg);  
  -webkit-transform: skewY(-11deg);  
  -ms-transform: skewY(-11deg);  
  transform: skewY(-11deg); 
  /*transform-origin: 0 0;*/
}

.ribbon_text_light a{
  color:#fff;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-size: 28px;

  -moz-transform: skewY(-11deg)rotate(11deg);  
  -o-transform: skewY(-11deg)rotate(11deg);  
  -webkit-transform: skewY(-11deg)rotate(11deg);  
  -ms-transform: skewY(-11deg)rotate(11deg);  
  transform: skewY(-11deg) rotate(11deg); 

  text-decoration: none;
}

.ribbon_text_dark a{
  color:#000;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  
  -moz-transform: skewY(11deg)rotate(-11deg);  
  -o-transform: skewY(11deg)rotate(-11deg);  
  -webkit-transform: skewY(11deg)rotate(-11deg);  
  -ms-transform: skewY(11deg)rotate(-11deg);  
  transform: skewY(11deg) rotate(-11deg); 

  text-decoration: none;
}

.marquee_block {
  position: relative;
  display:flex; 
  align-items:center;
  overflow-x: hidden;

  height: 70px; /*-----fix scroll into ribbon---------*/

}

.marquee_line {
  position: relative;
  white-space: nowrap;
  padding: 0;
  will-change: transform;

}

.marquee_item {
  /*padding-top: 17px;*/ /*-----align-items:center;---------*/
  display: inline-block;
  margin-right: 0;
}

.marquee_item:hover {
  /*color: #FFC9A7;*/
  color: #000;
}

/*-------------- Hashtag Cloud -------------*/

ul.cloud {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  line-height: 3.5rem;
  width: 920px;
}

ul.cloud a {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 300;
  
  /* Not supported by any browser at the moment :( */
  /*--size: attr(data-weight number); */

  --size: 4;
  --color: #A67C52;
  color: var(--color);
  font-size: calc(var(--size) * 0.25rem + 0.5rem);
  display: block;
  padding: 0.125rem 0.25rem;
  position: relative;
  text-decoration: none;

  /* For different tones of a single color */
  /*opacity: calc((15 - (9 - var(--size))) / 15);*/
  text-transform: uppercase;
}

ul.cloud a[data-weight="1"] { --size: 1; }
ul.cloud a[data-weight="2"] { --size: 2; }
ul.cloud a[data-weight="3"] { --size: 3; }
ul.cloud a[data-weight="4"] { --size: 4; }
ul.cloud a[data-weight="5"] { --size: 6; }
ul.cloud a[data-weight="6"] { --size: 8; }
ul.cloud a[data-weight="7"] { --size: 10; }
ul.cloud a[data-weight="8"] { --size: 13; }
ul.cloud a[data-weight="9"] { --size: 16; }

ul[data-show-value] a::after {
  content: " (" attr(data-weight) ")";
  font-size: 1rem;
}

ul.cloud li:nth-child(2n+1) a { --color: #d2ab84; }
ul.cloud li:nth-child(3n+1) a { --color: #ffca94; }
ul.cloud li:nth-child(4n+1) a { --color: #ce9f71; }

ul.cloud a:focus {
  outline: 1px dashed;
}

ul.cloud a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 100%;
  background: var(--color);
  transform: translate(-50%, 0);
  opacity: 0.15;
  transition: width 0.25s;
}

ul.cloud a:focus::before,
ul.cloud a:hover::before {
  width: 100%;
}

@media (prefers-reduced-motion) {
  ul.cloud * {
    transition: none !important;
  }
}

/*--------------End Hashtag Cloud---------------*/

.request{
  display: inline-flex;
  margin-top: 15px;
  border-top: 3px solid #D5A27B;
}

.request_text{
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  text-align: center;
  /*color: #FFC9A7;*/
  color: #fff;
}

.request_text a{
  color: #cf98fa;
}

.limited {
  color: #00FF38;
}

.footer {
  min-width: 100%;
  text-align: center;
}

.copyright {
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  color: #A67C52;
  margin-top:35px;
  margin-bottom:50px;
}


/*---------------- Mobile BreackPoints --------------*/

@media (max-width:920px) {

  ul.cloud {
    width: 90%;
    margin: 5%;
    line-height: 3rem;
  }

}  

@media (max-width:768px) {
 
  .header{
  display: flex;
  align-items: center;
  /* justify-content: center; */
  }

  .logo {
    margin-left: 20px;
    margin-right: 20px;
  }

  .slogan {
    font-size: 42px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .slogan:after {
    margin-top: 5px;
    margin-right: 20px;
    background-size: 48px 48px;
    height: 48px;
    width: 48px;
  }

  .hero_text, .request_text {
    font-size: 24px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .ribbon_2{
    margin-left: -90%; /*-------centered cross--------*/
  }  

}


@media (max-width:480px) {

  .container{
  max-width: none;
  }

  .slogan:after {
    margin-top: 5px;
    margin-right: 30px;
    background-size: 42px 42px;
    height: 42px;
    width: 42px;
  }

  ul.cloud {
    line-height: 2rem;
  }

  ul.cloud a[data-weight="1"] { --size: 1; }
  ul.cloud a[data-weight="2"] { --size: 2; }
  ul.cloud a[data-weight="3"] { --size: 3; }
  ul.cloud a[data-weight="4"] { --size: 4; }
  ul.cloud a[data-weight="5"] { --size: 5; }
  ul.cloud a[data-weight="6"] { --size: 6; }
  ul.cloud a[data-weight="7"] { --size: 7; }
  ul.cloud a[data-weight="8"] { --size: 8; }
  ul.cloud a[data-weight="9"] { --size: 9; }


  .ribbons{
    height: 100px;
  }

  .ribbon_1 {
    height: 50px;
  }

  .ribbon_2{
    height: 50px;
    margin-left: -120%; /*-------centered cross--------*/
  }  

  .ribbon_text_light a, .ribbon_text_dark a{
    font-size: 21px;
  }
/*
  .marquee_item {
    padding-top: 14px;
  }
*/
  .marquee_block {
    height: 50px; /*-----fix scroll into ribbon---------*/
  
  }

}


@media (max-width:375px) {

  .slogan {
    font-size: 36px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero_text, .request_text {
    font-size: 21px;
  }

}
