body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: rgb(255 255 255);
}

h1, h2 {
	font-size: 35px;
    font-weight: bold;
	color: #333;
	margin: 10px;
}

h3 {
    font-size: 22px;
    color: #333;
	margin: 10px;
}

p {
    font-size: 16px;
    color: #333;
	margin: 10px;
}

.main {
  position: relative;
  width: 100%;
  height: 100vh;
  color: white;
}

.main-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}


.main-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.main-bg .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.main-content h1,
.main-content h2,
.main-content p {
  color: #ffffff;
}

.navbar {
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.logo {
  position: relative;
  display: flex;
  align-items: center;
}

.logo p {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 1px;
  color: white;
}

.menu {
	position: relative;
}

.menu-mobile-only {
	display: none;
}

.menu a {
  margin-left: 30px;
  font-size: 18px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.menu a:hover {
  color: rgb(0 134 148);
}

.members {
  background-color: rgb(255 255 255 / 30%);
  padding: 10px 20px;
  border-radius: 9999px;
  transition: background 0.3s;
  font-weight: 600 !important;
  text-align: center;
}

.members:hover {
  background-color: rgb(60 237 255 / 30%);
  color: rgb(255 255 255) !important;
}

.main-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
  padding: 0 40px;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}


.title {
  font-size: 45px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}

.description {
  font-size: 20px;
}

.welcome-index-nums {
  margin: 10px;
  display: flex;
  gap: 40px;
  color: #ffffff;
}

.welcome-index-num {
  display: flex;
  flex-direction: column;
}

.welcome-index-num span:first-child {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 2px;
}

.trial-button {
  background-color: rgb(60 237 255 / 30%);
  color: rgb(255 255 255);
  text-align: center;
  text-decoration: none;
  margin-top: 30px;
  margin-left: 10px;
  padding: 15px 40px;
  border-radius: 9999px;
  text-transform:uppercase;
  font-weight: 600;
}

.trial-button:hover {
  background-color: rgb(60 237 255 / 70%);
}

.about_us {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 100%;
  margin: 120px 80px;
}

.about-container {
  display: flex;
  flex-direction: column;
  max-width: 500px;
}

.stats-container {
  max-width: 600px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-box {
    background-color: #165259e0;
    padding: 5px;
    border-radius: 10px;
    text-align: left;
    flex: 1 1 calc(50% - 10px);
    box-sizing: border-box;
}

.stat-box h3 {
    font-size: 16px;
	color: white;
}

.stat-box p {
    font-size: 12px;
	color: white;
}

.welcome-devices {
  display: flex;
  flex-direction: column;
  text-align: center;
  max-width: 100%;
  align-items: center;
  margin: auto;
  gap: 40px;
}

.title-devices {
  max-width: 100%;
}

.welcome-devices-types {
  max-width: 55%;
}

.welcome-devices-img {
  max-width: 75%;
}

.welcome-price {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  margin: 120px 80px;
  gap: 20px;
}

.price-boxs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  margin-top: 60px;
  gap: 20px;
}

.price-box {
  display: flex;
  flex-direction: column;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 20px;
  max-width: 200px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.price-box-on {
  display: flex;
  flex-direction: column;
  border: 2px solid #32676d;
  border-radius: 10px;
  padding: 20px;
  max-width: 200px;
  transform: scale(1.05);
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.price-box span,
.price-box-on span {
      font-weight: 600;
	  font-size: 30px;
}

.price-box h3,
.price-box-on h3 {
      font-weight: 600;
	  font-size: 30px;
}

.price-box-button {
  background-color: rgb(165 165 165 / 35%);
  color: #000000;
  font-weight: 500;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 9999px;
  text-decoration: none;
  text-align: center;
  margin: 10px;
}

.price-box-on-button {
  background-color: #165259e0;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 9999px;
  text-decoration: none;
  text-align: center;
  margin: 10px;
}

.label-top-full {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.label-sale {
  background-color: #ff3d3d;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 12px;
  padding: 5px 15px;
  border-radius: 9999px;
  text-align: center;
}

.label-top {
  background-color: rgb(100%, 84.3%, 0%);
  color: #000000;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 9999px;
  text-align: center;
}

.price-box p,
.price-box-on p {
    font-size: 14px;
}

.price-box ul,
.price-box-on ul {
    padding: 10px;
    font-size: 14px;
	margin: 10px;
}

.price-box li,
.price-box-on li {
    margin-bottom: 8px;
}

.welcome-sport {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 550px;
  margin-bottom: 120px;
}


.sport-bg {
	background-image: url('/en/sport-bg-img.webp');
	background-size: cover;
	display: flex;
	align-items: center;
    border-radius: 50px;
	width: 95%;
}

.sport-content {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 100px;
}

.sport-bg h2,
.sport-bg p {
	color: white;
}

.sport-content-text {
    max-width: 40%;
}

.sport-content-cards {
    display: flex;
	flex-wrap: wrap;
	max-width: 40%;
	gap: 20px;
}

.sport-content-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 90%;
}

.sport-content-card {
  width: 160px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sport-content-p {
  background-color: rgb(255 255 255 / 25%);
  backdrop-filter: blur(5px);
  max-width: 24%;
  text-align: center;
  padding: 10px 20px;
  border-radius: 9999px;
}

.sport-content-p span {
   color: #ff3d3d;
}

.welcome-test {
    display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	max-width: 70%;
	margin: auto;
	text-align: center;
	gap: 5px;
	margin-bottom: 120px;
}

.welcome-test-button {
  background-color: #165259e0;
  color: rgb(255 255 255);
  text-decoration: none;
  margin: auto;
  margin-top: 20px;
  padding: 20px 40px;
  border-radius: 9999px;
  text-transform:uppercase;
  font-weight: 600;
  width: 40%;
}

.welcome-test-button:hover {
	transform: scale(1.1);
	transition: transform 0.2s ease;
}

.title-mini {
  font-size: 12px;
  margin: 5px;
}

.welcome-how-it-works {
    display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	max-width: 80%;
	margin: auto;
	text-align: center;
	gap: 40px;
	margin-bottom: 120px;
}

.how-it-works-cubes {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.how-it-works-cube {
	display: flex;
	align-items: center;
	flex-direction: column;
	max-width: 30%;
	text-align: center;
	padding: 15px;
	border: 1px solid #cbd5e1;
	border-radius: 10px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.how-it-works-cube-note {
	font-size: 12px !important;
}

.how-it-works-cube p {
	font-size: 14px;
	text-align: left !important;
}

.how-it-works-cube svg {
	max-width: 40px;
}

.how-it-works-cube-button {
  background-color: #165259e0;
  color: rgb(255 255 255);
  text-decoration: none;
  text-align: center;
  margin: 20px;
  padding: 10px;
  border-radius: 9999px;
  width: 60%;
}

.welcome-footer {
    display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	max-width: 70%;
	margin: auto;
	text-align: center;
	gap: 5px;
	margin-bottom: 10px;
}

.footer-bar-navigation {
  border-top: 1px solid #434957;
  padding: 20px;
}

.footer-bar-navigation-button {
  text-decoration: none;
  padding: 8px;
  color: #165259e0;
}

.footer-bar-navigation-button:hover {
  color: #000000;
}

.welcome-faq {
    display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	margin: auto;
	margin-bottom: 120px;
}

.accordion {
    width: 100%;
    max-width: 70%;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.accordion-item summary {
    display: flex;
    justify-content: space-between;
}

.accordion-item svg {
	width: 3%;
	transition-duration: 0.3s;
	transition-timing-function: ease-in-out;
}

.accordion-item.active svg {
	transform: rotate(180deg);
	transition-duration: 0.3s;
	transition-timing-function: ease-in-out;
}

.accordion-item h3 {
	font-size: 20px;
	font-weight: 400;
    margin: 6px;
    padding: 6px;
    cursor: pointer;
}
.accordion-item div {
    padding: 10px;
    display: none;
}
.accordion-item.active div {
    margin-bottom: 12px;
    color: #808080;
    display: block;
}

.welcome-faq h2 {
	text-align: center;
}

@media screen and (min-width: 1023px) and (max-width: 1189px) {
	.price-box {
        max-width: 160px;
    }
	
	.price-box-on {
        max-width: 170px;
    }
	
	.price-boxs {
		gap: 12px;
    }
	
	.sport-bg h1 {
		font-size: 32px;
    }
	
	.sport-content-p {
		max-width: 30%;
    }
	
	.stats-container {
		max-width: 470px;
    }
	
	.welcome-price {
		margin: 120px 50px;
    }
	
	.how-it-works-cube h3 {
		font-size: 18px;
    }
}

@media (max-width: 378px) {
	.about_us {
		flex-direction: column;
		margin: 60px 0;
    }
	
	.trial-button {
		font-size: clamp(12px, 2vw + 1rem, 14px);
    }
	
	.sport-content {
		flex-direction: column;
		gap: 10px;
		padding: 60px 0;
    }
	
	.logo p {
		font-size: 20px;
    }
	
	.menu {
		display: none;
    }
	
	.navbar {
		padding: 20px;
    }
	
	.main-content {
		padding: 0 20px;
		height: 70%;
    }
    
    .main-bg .overlay {
		background: rgb(0 0 0 / 65%);
    }
	
	.title {
		font-size: 30px;
    }
	
	.description {
		font-size: 16px;
    }
	
	.welcome-index-nums {
		gap: 20px;
    }
	
	.welcome-index-num span:first-child {
		font-size: clamp(12px, 2vw + 1rem, 15px);
    }
	
	.stats-container {
		max-width: 90%;
    }
	
	.stats {
		gap: 10px;
    }
	
	h1, h2 {
		font-size: 30px;
    }
	
	.welcome-devices-types {
		max-width: 90%;
    }
	
	.welcome-devices-img {
		max-width: 160%;
    }
	
	.welcome-price {
		margin: 60px 0;
    }
	
	.price-boxs {
		margin-top: 20px;
    }
	
	.price-box {
		max-width: unset;
		width: 80%;
    }
	
	.price-box-on {
		max-width: unset;
		width: 80%;
    }
	
	.welcome-sport {
		height: 100%;
		margin-bottom: 60px;
    }
	
	.sport-content-text {
		max-width: 95%;
    }
	
	.sport-content-p {
		max-width: 35%;
    }
	
	.sport-content-cards {
		justify-content: space-evenly;
		max-width: 95%;
		gap: 10px;
    }
	
	.sport-content-card {
		width: 140px;
		height: 70px;
    }
	
	.sport-content-card img {
		filter: grayscale(100%);    
    }
	
	.sport-bg {
		background-position: center;
		border-radius: 30px;
    }
	
	.welcome-devices {
		overflow: hidden;
		gap: 20px;
    }
	
	.welcome-test {
		max-width: 95%;
		margin-bottom: 60px;
    }
	
	.welcome-test-button {
		width: 66%;
		font-size: 14px;
    }
	
	.title-mini {
		font-size: 10px;
    }
	
	.accordion {
		max-width: 90%;
    }
	
	.accordion-item svg {
		display: none;
    }
	
	.accordion-item h3 {
		font-size: 14px;	
    }
	
	.accordion-item div {
		font-size: 14px;	
    }
	
	.welcome-footer {
		max-width: 90%;	
    }
	
	.footer-bar-navigation-button {
		padding: 2px;
		font-size: 12px;
    }
	
	.ast-footer-copyright-title {
		font-size: 12px;
    }
	
	.welcome-faq {
		margin-bottom: 60px;
    }
	
	.how-it-works-cubes {
		flex-direction: column;
    }
	
	.how-it-works-cube {
		max-width: 100%;	    
    }
}

@media screen and (min-width: 379px) and (max-width: 480px) {
	.about_us {
		flex-direction: column;
		margin: 60px 0;
    }
	
	.sport-content {
		flex-direction: column;
		gap: 10px;
		padding: 60px 0;
    }
	
	.logo p {
		font-size: 24px;
    }
	
	.menu {
		display: none;
    }
	
	.navbar {
		padding: 20px;
    }
	
	.main-content {
		padding: 0 20px;
		height: 75%;
    }
    
    .main-bg .overlay {
		background: rgb(0 0 0 / 65%);
    }
	
	.title {
		font-size: 30px;
    }
	
	.description {
		font-size: 18px;
    }
	
	.welcome-index-nums {
		gap: 20px;
    }
	
	.welcome-index-num span:first-child {
		font-size: 18px;
    }
	
	.stats-container {
		max-width: 90%;
    }
	
	.stats {
		gap: 10px;
    }
	
	h1, h2 {
		font-size: 30px;
    }
	
	.welcome-devices-types {
		max-width: 90%;
    }
	
	.welcome-devices-img {
		max-width: 160%;
    }
	
	.welcome-price {
		margin: 60px 0;
    }
	
	.price-boxs {
		margin-top: 20px;
    }
	
	.price-box {
		max-width: unset;
		width: 80%;
    }
	
	.price-box-on {
		max-width: unset;
		width: 80%;
    }
	
	.welcome-sport {
		height: 100%;
		margin-bottom: 60px;
    }
	
	.sport-content-text {
		max-width: 95%;
    }
	
	.sport-content-p {
		max-width: 35%;
    }
	
	.sport-content-cards {
		justify-content: space-evenly;
		max-width: 95%;
		gap: 10px;
    }
	
	.sport-content-card {
		width: 140px;
		height: 70px;
    }
	
	.sport-content-card img {
		filter: grayscale(100%);    
    }
	
	.sport-bg {
		background-position: center;
		border-radius: 30px;
    }
	
	.welcome-devices {
		overflow: hidden;
		gap: 20px;
    }
	
	.title-devices {
		max-width: 90%;
    }
	
	.welcome-test {
		max-width: 95%;
		margin-bottom: 60px;
    }
	
	.welcome-test-button {
		width: 66%;
    }
	
	.title-mini {
		font-size: 10px;
    }
	
	.accordion {
		max-width: 90%;
    }
	
	.accordion-item svg {
		display: none;
    }
	
	.accordion-item h3 {
		font-size: 14px;	
    }
	
	.accordion-item div {
		font-size: 14px;	
    }
	
	.welcome-footer {
		max-width: 90%;	
    }
	
	.footer-bar-navigation-button {
		padding: 2px;
		font-size: 12px;
    }
	
	.ast-footer-copyright-title {
		font-size: 12px;
    }
	
	.welcome-faq {
		margin-bottom: 60px;
    }
	
	.how-it-works-cubes {
		flex-direction: column;
    }
	
	.how-it-works-cube {
		max-width: 100%;	    
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
	.price-box {
        max-width: 40%;
    }
	
	.price-box-on {
        max-width: 40%;
    }
	
	.price-boxs {
		gap: 12px;
    }
	
	.sport-bg h1 {
		font-size: 32px;
    }
	
	.sport-content-p {
		max-width: 35%;
    }
	
	.welcome-price {
		margin: 120px 50px;
    }
	
	.about_us {
		flex-direction: column;
		margin: 120px 50px;
    }
	
	.about-container {
		max-width: 100%;
    }
	
	.stats-container {
		max-width: 100%;
    }
	
	.stat-box p {
		font-size: 16px;
    }
	
	.stat-box h3 {
		font-size: 20px;
    }
	
	p {
		font-size: 20px;
    }
	
	.welcome-devices-types {
		max-width: 85%;
    }
	
	.welcome-devices-img {
		max-width: 95%;
    }
	
	.sport-content-card {
		width: 120px;
		height: 60px;
    }
	
	.sport-content {
		gap: 20px;
    }
	
	.sport-content-text {
		max-width: 50%;
    }
	
	.sport-bg p {
		font-size: 18px;
    }
	
	.welcome-test {
		max-width: 90%;
    }
	
	.accordion {
		max-width: 90%;
    }
	
	.welcome-devices {
		max-width: 90%;
    }
	
	.welcome-how-it-works {
		max-width: 90%;
    }
}

@media screen and (min-width: 481px) and (max-width: 766px) {
	.menu {
		display: none;
    }
	
	.about_us {
		flex-direction: column;
		margin: 120px 10px;
    }
	
	.welcome-devices-types {
		max-width: 85%;
    }
	
	.welcome-devices-img {
		max-width: 100%;
    }
	
	.price-boxs {
		gap: 12px;
    }
	
	.price-box {
		max-width: unset;
		width: 80%;
    }
	
	.price-box-on {
		max-width: unset;
		width: 80%;
		transform: unset;
    }
	
	.sport-bg {
		border-radius: 30px;
		background-position: center;
    }
	
	.sport-bg h1 {
		font-size: 32px;
    }
	
	.sport-content {
		flex-direction: column;
		gap: 20px;
		padding: 30px 0;
    }
	
	.sport-content-text {
		max-width: 90%;
    }
	
	.sport-content-cards {
		max-width: 90%;
    }
	
	.sport-content-card {
		width: 120px;
		height: 60px;
    }
	
	.sport-content-p {
		max-width: 40%;
    }
	
	.stats-container {
		max-width: 470px;
    }
	
	.welcome-price {
		margin: 120px 10px;
    }
	
	.welcome-test {
		max-width: 90%;
    }
	
	.welcome-test-button {
		width: 60%;
    }
	
	.stat-box h3 {
		font-size: 22px;
    }
	
	.stat-box p {
		font-size: 16px;
    }
	
	.welcome-sport {
		height: 100%;
    }
	
	.accordion {
		max-width: 90%;
    }
	
	.accordion-item svg {
		display: none;
    }
	
	.welcome-footer {
		max-width: 90%;
    }
	
	.ast-footer-copyright-title {
		font-size: 14px;
    }
	
	h1, h2 {
		font-size: 40px;
	}
	
	p {
		font-size: 20px;
	}
	
	.how-it-works-cubes {
		flex-direction: column;
    }
	
	.how-it-works-cube {
		max-width: 100%;	    
    }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  z-index: 20;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .menu {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
	width: 70%;
    flex-direction: column;
    background: #165259;
    padding: 20px;
    border-radius: 10px;
    z-index: 9999;
  }

  .menu.show {
    display: flex !important;
	flex-direction: column-reverse;
  }
  
  .dropdown-content.show {
	  margin-top: 25px;
	  background-color: #165259;
  }

  .menu a {
    margin: 10px 0;
    color: white;
    font-size: 18px;
  }
  
  .dropbtn {
    margin: 10px 0;
  }
  
  .menu-mobile-only {
	display: flex;
  }
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn:hover {
	color: rgb(0 134 148);
}

.dropbtn {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #165259e0;
  margin-top: 20px;
  border-radius: 6px;
  z-index: 10000;
}

.dropdown-content a {
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  margin: 0;
}

.dropdown-content a:hover {
	color: rgb(60 237 255 / 70%);
}

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