body {
	margin:0;
	padding:0;
	font-family: "Sawarabi Gothic", sans-serif;
}

.mobile-header {
  display: none;
}

h1, h2, h3 {
	font-family: "RocknRoll One", sans-serif;
}

h1 {
	font-size: 30pt;
}

h2{
	font-size:22pt;
}

main {
	padding-bottom: 150px;
}

p, td {
	font-family: "Sawarabi Gothic", sans-serif;
	font-size:14pt;
}

.youtube{
	display: flex;
	margin: 20px auto;
	align-content: center;
	justify-content: center;
}
/* NAVIGATION BAR FOR ALL PAGES*/
nav {
  background: #000000;
  padding: 0;
  margin: 0;
  height: 49px;
  display: flex;
  justify-content: space-between;
  font-family: "RocknRoll One", sans-serif;
  font-weight: 200;
}

/*BREADCRUMBS*/
.breadcrumb {
	position: absolute;
	top: 50px;
	left: 20px;
	z-index: 2;
	background-color: inherit;
	padding: 8px 16px;
}

.breadcrumb ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 8px;
}

.breadcrumb li {
	color: #f4c100;
	font-size:14pt;
}

.breadcrumb li a{
	text-decoration: none;
	font-size:14pt;
	color: #f4c100;
}

.breadcrumb li a:hover {
	text-decoration: underline;
	transform: scale(1.05)
}

.breadcrumb li::after{
	content:"//";
	margin:0 0 0 10px;
}

.breadcrumb li:last-child::after{
	content:"";
}

/*page indicator*/ 
#indicator {
	background: #F4C100;
	color: #FFFFFF;
}

.logo {
  width: 140px;
  height: 30px;
  margin: 10px;
}

.navi ul{
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align:center;
}

.navi li a {
  display: block;
  color: #FFFFFF;
  text-decoration: none;
  padding: 13px 20px;
}

.navi li a:hover {
  background-color: #F4C100;
  color: #000000;
  transition: 0.5s;
}

/* DROPDOWN CONTENT */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #000000;
  min-width: 160px;
  top: 100%;
  left: 0;
  z-index: 1000;
}

.dropdown-content a {
  color: #F4C100;
  padding: 12px 15px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #F4C100;
	color: #000000;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown {
	position: relative;
}

/*HEADER*/

header {
	text-align:center;
	background-color:#F4C100;
	margin-top:0;
	padding: 5px;
}

/*paragraph*/

.justify {
	justify-content: center;
	padding:0 20px;
	text-align: justify;
	margin:0 auto;
	max-width: 900px;
}

/*download button appstore dkk*/
.download {
	display: flex;
	gap: 50px;
	margin: 20px auto;
	padding:20px 0;
	max-width: 900px;
	justify-content: center;
}
.download a {
	text-decoration: none;
}

.appimg {
	width:350px;
	height:auto;
	border-radius: 10px;
}

#appstore:hover {
	content:url("images/appw.png");
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(0,0,0,0.5);
	transition: 0.4s ease;
}

#playstore:hover {
	content:url("images/gplayw.png");
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(0,0,0,0.5);
	transition: 0.4s ease;
}

/*join*/

.join {
    padding: 1rem;
	padding-bottom: 30px;
	margin: 20px 200px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
	text-decoration: none;
}


/*ABOUT SECTION*/

h1 {
	text-align:center;
}

.about-content {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  gap: 20px;
}

.aside-left, .aside-right {
  flex: 1;
  padding: 10px;
  box-sizing: border-box;
}

.aside-left img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}

.aside-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

/*PROMOTIONS*/
.promotions {
	width:100%;
}

.carousel {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.carousel-item {
  display: none;
  transition:0.6s ease-in-out;
}
.carousel-item.active {
  display: block;
}

.carousel-inner {
  border-radius: 10px;
  overflow: hidden;
}

.carousel-item img {
  width: 100%;
  height: 600px;
  object-fit: cover; 
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  background: none;       
  border: none;                    
  font-size: 40px;    
  cursor: pointer;
  z-index: 1;
  padding: 0;
  transition:0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  transform: scale(1.3);
  transition:0.3s ease;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

/*OVERVIEW*/
.corporate {
	text-align: center;
}

.table {
	justify-content: center;
	text-align: left;
	margin: auto;
}

.table-header {
	font-family: "RocknRoll One", sans-serif;
	color: #f4c100;
	background: #000000;
	padding: 20px;
}

.table-info {
	background: #DDDDDD;
	padding: 20px;
}

.button {
	padding: 15px 20px;
	margin: 30px;
	border-radius: 5px;
	display:inline-block;
	text-decoration: none;
	font-family: "RocknRoll One", sans-serif;
	color: #FFFFFF;
	background: #000000;
	border:none;
}

.button:hover {
	color: #000000;
	background: #f4c100;
	transform: scale(1.1);
	transition: 0.4s;
	box-shadow:0px 4px 7px rgba(0,0,0,0.5);
}

/*IMAGE BANNER*/
.img-bnr {
  width:100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}


.banner {
  width: 100%;
  max-height:650px;
  height: auto;
  display: block;
}

/*CONTACT SECTION*/

form {
  width: 100%;
  max-width: 850px;
  margin: 40px auto;
  padding: 10px;
  box-sizing:border-box;
}

label {
	display: block;
	margin:10px auto;
	font-size:14pt;
}

input[type="text"],
input[type="email"],
textarea {
background-color: #C0C0C0;
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid;
  border-radius: 6px;
  box-sizing: border-box;
	font-size:14pt;
}


input:focus,
textarea:focus {
  background-color: transparent;
  outline: none;
  border-color: #000;
transition: 0.2s;
}

button[type="submit"]{
	background-color: #FFBC00;
	cursor: pointer;
	border-radius: 5px;
	padding: 10px 25px;
	font-size:14pt;
}

button[type="reset"]{
	background-color:#000000;
	cursor: pointer;
	border-radius: 5px;
	padding: 10px 25px;
	font-size:14pt;
}

button[type="submit"]:hover{
	background-color: #DB0003;
	color:#FFFFFF;
	transform:scale(1.2);
	transition:0.4s;
}

button[type="reset"]:hover{
	transform:scale(1.2);
	transition:0.4s;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.button-group button {
  min-width: 100px;
}

/*BUTTON HELP*/
.button-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.button-help {
  position: relative;
  display: inline-block;
  padding: 30px 70px;
  font-size: 20pt;
  font-weight: bold;
  text-decoration: none;
  background-color: #000;
  color: #f4c100;
  cursor: pointer;
  overflow: hidden;
  z-index:1;
  transition: 0.3s ease;
}

.button-help:hover {
  background-color: #f4c100;
  color: #000;
  transform: scale(1.1);
  box-shadow:0px 4px 7px rgba(0,0,0,0.5);
}

.button-help::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  clip-path: polygon(100% 100%, 100% 0, 70% 100%);
  transition: bottom 0.6s;
  z-index: -1;
}

.button-help:hover::after {
  bottom: 0;
}

/*SHOPS FORMAT*/
.row {
	display: flex;
	flow-direction: row;
	justify-content: center;
	gap: 2rem;
	margin: 3rem 0;
}

.col {
    flex: 1 1 300px;
    max-width: 320px;
    padding: 1rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
	text-decoration: none;
}

.col img {
    width: 320px;
	height: 240px;
	object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.col a {
	text-decoration: none;
	color:#000;
}

.col:hover {
	transform: scale(1.1);
	transition: 0.4s ease;
	background-color:#f4c100;
	box-shadow:0 4px 12px rgba(0, 0, 0, 0.6);
}

/*SHOP REDIRECTED*/

.store-box {
	padding: 5px 30px;
	padding-bottom: 30px;
	margin: 50px 200px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
	flex-direction:column;
	text-decoration: none;
	gap: 10px;
}
.store-box h1{
	text-align: left;
}
.operational {
	display: flex;
	gap: 2rem;
	align-items: flex-start;
	flex-wrap:wrap;
}

.store-img {
    width: 480px;
	height: 360px;
	object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.info-box {
	flex:1;
	display:flex;
	flex-direction: column;
	justify-content: center;
}

.info-box h3 {
	margin:0 0 5px 0;
}

.info-box p {
	margin:0 0 15px 0;
}

.info-box .button {
	display:inline-block;
	width:auto;
	margin: 10px auto 0;
}

/*FEATURES*/
#member {
	margin: 0 250px;
	background-color:rgba(0,0,0,0.8);
	color:#fff;
}

.features-container {
	position:relative;
	max-width:860px;
	margin: 0 auto;
	padding:40px 0;
	min-height: 400px;
}

.features-image {
	width:100%;
	padding-top: 20px;
	max-width:480px;
	display:block;
	margin:0 auto;
	position:relative;
}

.features-text {
	position: absolute;
	width: 20%;
}

#topleft {
	top:0;
	left:0;
	text-align:left;
}

#topright{
	top:0;
	right:0;
	text-align:right;
}

#bottomleft{
	bottom:0;
	left:0;
	text-align:left;
}

#bottomright{
	bottom:0;
	right:0;
	text-align:right;
}

/*ranking table*/
.ranking {
	justify-content: center;
	margin:60px auto;
	max-width: 800px;
}

.ranking-image {
	width:100px;
	max-width: 100%;
	heigth:auto;
	margin:40px 0;
	display:block;
}

.ranking-table{
	width:100%;
	margin-top: 20px;
	text-align: center;
	padding: 20px;
	box-shadow: 0px 4px 12px rgba(0,0,0,0.5);
	border-radius:8px;
	background-color: #fff;
}

.ranking-table img{
	width:60%;
}

.ranking-table th{
	font-size:14pt;
}

/*overview*/
.overview-gallery{
	display:flex;
	flex-wrap: wrap;
	gap:10px;
	justify-content:center;
}

.overview-gallery img{
	width:240px;
	height:240px;
	object-fit:cover;
	border-radius: 8px;
}

/*FOOTER FOR ALL PAGES*/

footer {
	background:#000000;
	color:#FFFFFF;
	padding: 1rem;
}

.back-to-top {
	text-decoration:none;
	color:#FFFFFF;
	display: inline-block;
	padding:10px;
}

.back-to-top:hover {
	color:#F4C100;
	transform: scale(1.1);
	transition: transform 0.3s ease;
}

.navi-footer ul{
	list-style: none;
	display: flex;
	padding: 0;
}

.navi-footer li a{
	padding: 10px;
	color: #FFFFFF;
	text-decoration: none;
	display: inline-block;
}

.navi-footer li a:hover {
	color:#F4C100;
	background:#000000;
	transform: scale(1.2);
	transition: transform 0.3s ease;
}

.social-media {
	width:2%;
	padding: 10px;
}

.social-media:hover {
	transform: scale(1.2);
	transition: transform 0.3s ease;
}

#footer-name {
	text-align: right;
	padding: 1rem;
}

/*RESPONSIVENESS*/
@media (max-width:768px) {
  body {
    font-size: 13px;
  }

  h1 {
    font-size: 22pt;
  }
	
	.special {
	padding-top: 40pt;
	}

  h2 {
    font-size: 18pt;
  }

  h3 {
		font-size: 12pt;
	}
	
  p {
	font-size: 12pt;
	}
	
 navi {
	display:none;
  }
	
nav {
	display: none;
}

  .breadcrumb {
    font-size: 12pt;
	display:block;
	padding-bottom: 20px;
  }

  .breadcrumb li,
  .breadcrumb li a {
    font-size: 12pt;
}
	
	
  .carousel-item img {
    height: auto;
    max-height: 300px;
    object-fit: cover;
  }

  .banner {
    max-height: 300px;
    height: auto;
  }

  .youtube,
  .download,
  .about-content,
  .row,
  .operational,
  .button-container {
    flex-direction: column;
    align-items: center;
  }
	
 .youtube{
   max-width:90%;
  }
	
  .download {
     margin:20px 50px;
     padding:0 50px;
  }
	
  .appimg,
  .col img,
  .store-img {
    width: 100%;
    height: auto;
  }

  .justify,
  .join,
  .store-box,
  #member {
    margin: 20px;
    padding: 20px;
  }
	
  .button-help {
    display: block;
    width: 70%;
    text-align: center;
    padding: 25px 30px;
    margin: 10px 0;
    font-size: 16pt;
  }

  .features-container {
    padding: 20px 10px;
  }

  #member {
    margin: 10px;
  }

  .features-text {
    position: static;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .banner {
    max-height: 400px;
  }
	
  .ranking-image {
  width: 100%;
  margin: 20px auto;
  text-align: center;
}

  .ranking-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.ranking-table {
  padding: 10px;
  font-size: 13px;
}
	
.ranking-table td{
    font-size: 14px;
  }
	
  .ranking-table th {
    font-size: 12px;
  }

  .ranking-table td img {
    width: 40px;
  }
	
  .ranking {
	max-width:90%;
	margin: auto;
	}
	
  .overview-gallery img {
    width: 100%;
    height: auto;
  }

   .about, .corporate, .content-car {
	max-width: 90%;
	margin: auto;
}

  form {
    padding: 40px;
    margin: 10px;
  }

  .social-media {
    width: 30px;
  }

  .navi-footer ul {
    flex-direction: column;
  }
	
.navi-footer li a {
 padding: 5px;
}
	
}