/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* fix font size default to 10px */
html {
  font-size: 62.5%;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #0f2626;
}

header img {
  width: 50%;
  height: auto;
  margin-bottom: 10px;
}

header p {
  color: #e8f6ff;
  font-family: "Rubik", Sans-serif;
  text-decoration: overline;
  font-size: 2rem;
  margin-bottom: .5rem;
}

.title {
  font-family: "Rubik", Sans-serif;
  text-align: center;
  padding: 2rem 0;
  color: #280000;
  font-size: 4rem;
  font-weight: 700;
  background-color: #d8d7d7;
}

.promo_game {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 42px 1px rgba(0,0,0,0.5);
  z-index: 4;
}

.promo_game h5 {
  font-family: "Rubik", Sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #7c3100;
  margin-bottom: 5px;
}

.promo_game p {
  font-family: "Montserrat";
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 10px;
}

.promo_game-video {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 42px 1px rgba(0,0,0,0.5);
  z-index: 4;
}

.promo_game-video h5 {
  font-family: "Rubik", Sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #7c3100;
  margin-bottom: 5px;
}

.promo_game-video p {
  font-family: 'Roboto';
  font-weight: 400;
  color: #7A7A7A;
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 10px;
}

.column-left {
  display: flex;
  padding: 10px;
  flex: 40%;
  justify-content: center;
  align-content: center;
}

.column-left img {
  width: 80%;
  height: auto;
}

.column-left-video {
  padding: 10px;
  flex: 50%;
}

.column-right {
  padding: 10px;
  flex: 60%;
}

.column-right-video {
  padding: 10px;
  flex: 50%;
}

.btn {
  font-family: "Roboto";
  text-align: center;
  width: 220px;
  color: white;
  border-radius: 15px;
  border: none;
  transition: all 0.2s;
  cursor: pointer;
  padding: 1rem 2rem;
  text-decoration: none;
  font-size: 1.6rem;
  box-shadow: 0 0 1.5rem 1rem rgba(0, 0, 0, 0.2);
  margin: 10px;
}

.btn:hover {
  color: #1bfff7;
}

.btn_black {
  background-color: #000;
}

.btn_orange {
  background-color: #e56300;
}

.btn_ocean {
  color: #fff;
  background-color: #0090ad;
}

.buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.btn_menu {
  font-family: "Roboto";
  text-align: center;
  font-size: 2rem;
  margin: 0 10px;
  background-color: #0f2626;
  border: none;
  color: #fff;
  padding: .5rem 3rem;
  text-decoration: none;
  margin-bottom: 1rem;
  display: inline-block;
}

.btn_menu:hover {
  color: #1bfff7;
}

/* hover button */
.btn-three {
	color: #FFF;
	transition: all 0.5s;
	position: relative;
}
.btn-three::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: rgba(255,255,255,0.1);
	transition: all 0.3s;
}
.btn-three:hover::before {
	opacity: 0 ;
	transform: scale(0.5,0.5);
}
.btn-three::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0;
	transition: all 0.3s;
	border: 1px solid rgba(255,255,255,0.5);
	transform: scale(1.2,1.2);
}
.btn-three:hover::after {
	opacity: 1;
	transform: scale(1,1);
}

.cont_carousel {
  z-index: 4;
  box-shadow: 0px 0px 4rem 1px rgba(0,0,0,0.5);
}

.splide__slide img {
	width : 100%;
	height: auto;
}

footer {
  background-color: #0f2626;
  font-family: Montserrat, sans-serif;
  font-size: 1.4rem;
  text-align: center;
  padding: 1.5rem;
  color: #fff;
}

footer a:link, a:visited {
  text-decoration: none;
  color: #fff;
}

footer a:hover, a:active {
  color: #1bfff7;
}


/* button to top scroll */
#topBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 20px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  width: 4rem;
  height: 4rem;
  background-color: rgba(0,0,0,0.4);
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 1rem; /* Some padding */
  border-radius: 1rem; /* Rounded corners */
  font-size: 1.8rem; /* Increase font size */
  text-align: center;
}

#topBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}


.youtube-video {
  padding-top:56.25%;
  position:relative;
}

iframe {
  position:absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* About */
.promo-about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 42px 1px rgba(0,0,0,0.5);
  z-index: 4
}

.promo-about p {
  font-family: "Montserrat";
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 10px;
}

.column-left-about {
  padding: 10px;
  flex: 33%;
}

.column-left-about img {
  width: 100%;
  height: auto;
}

.column-center-about {
  padding: 10px;
  flex: 33%;
}

.column-center-about a {
  cursor: pointer;
  text-decoration: none;
  color: #000;
}

.column-center-about a:hover {
    color: #1bfff7;
}

.column-right-about {
  padding: 10px;
  flex: 33%;
}

.column-right-about img {
  width: 100%;
  height: auto;
}

/* Privacy policy */
.policy {
  margin: 10px;
  font-family: 'Roboto', Sans-serif;
  font-size: 1.6rem;
  color: #7a7a7a;
  font-weight: 400;
}

.policy ul, li {
  margin: 10px;
  padding: auto;
}


.policy a:hover, a:active {
  color: #1bfff7;
}

table {
  width:100%;
}

th {
  background-color: #e1dccf;
  padding: 10px;
}

td {
  border: 1px solid #7a7a7a;
  border-collapse: collapse;
  text-align: left;
  vertical-align: top;
  padding: 5px;
  width: 40%;
}

td:nth-child(even) {
  text-align: center;
  width: 15%;
}

/* Responsive */
@media screen and (min-width: 1921px) {
  html {
    font-size: 1rem;
  }

  header p {
    font-size: 2rem;
  }

  .btn_menu {
      font-size: 2.5rem;
  }
}

@media screen and (max-width: 1400px) {
  header p {
    font-size: 2rem;
  }

  .btn_menu {
      font-size: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
    header p {
    font-size: 2rem;
  }

  .btn_menu {
    font-size: 2.5rem;
  }

  header img {
    width: 70%;
  }

  .column-left-about, .column-right-about, .column-center-about {
    flex: 100%;
  }
}

@media screen and (max-width: 415px) {
  header p {
    font-size: 1rem;
  }

  header img {
    width: 90%;
    margin: 5px;
  }

  .btn_menu {
    font-size: 1rem;
  }

  .title {
    font-size: 2rem;
  }

  .column-left, .column-right {
    flex: 100%;
  }

  .column-left-video, .column-right-video {
    flex: 100%;
  }

  .column-left img {
    width: 100%;
    height: auto;
  }

  .column-left-about, .column-right-about, .column-center-about {
    flex: 100%;
  }

  .buttons {
    flex-direction: column;
  }
}

.fa-check-square {
  color: #512515;
}
