/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
   min-width: fit-content;
}

body {
	background: url("../images/bg-mobile-full.webp") no-repeat;
	background-color: #595959;
	width: 100%;
	height: 100vh;
	background-size: cover;
	color: #41131c;
	font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
	text-align: center;
	background-position: 0 0;
	padding: 0px;
	margin: 0px;
}

a {
  color: #454545;
  text-decoration: none;
  transition: 0.5s;
  cursor: pointer;
}

a:hover,
a:active,
a:focus {
  color: #f5bb44;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0px;
  text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin: 0px;
  padding: 0;
}

.container {
	margin-left: auto;
	margin-right: auto;
	max-width: 1320px;
	position: relative;
}

.logo-container span.en_lang {
	margin-bottom: 6%;
}

.logo-container img {
	width: 5%;
}

.logo-container ul {
	padding: 0px;
	margin: 0px;
	width: 300px;
}

.logo-container ul li {
	list-style-type: none;
	float: left;
	text-align: left;
}

.logo-container ul li p{
	font-size: 1.4em;
	padding: 0px;
	margin: 0px;
	font-weight: 500;
	line-height: 44px;
}

.logo-container ul li span {
	font-size: 1.2em;
	padding: 0px;
	margin: 0px;
	font-weight: 500;
}

.logo-container ul li:first-child {
	width: 50px;
	text-align: right;
	margin-right: 1%;
}

.logo-container ul li:has(.en_lang.active-lang){
  display: none;
}

.lang-container {
	position: absolute;
	right: 4%;
	top: 4%;
	width: 14%;
}

.icon-country {
	background: none;
	border: 0px;
	cursor: pointer;
	transition: all .2s ease-in-out; 
}

.icon-country:hover {
	transform: scale(1.1); 
}

.icon-country img {
	width: 60%;
}

.icon-country img:hover {
	box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
	border-radius: 50%;
}

.section {
	width: 100%;
	padding: 0px;
	margin: 0px;
	text-align: left;
	padding: 1.5% 0;
	font-weight: 800;
	position: relative;
}

.section .left{
    width: 50%;
}

.section p {
  font-weight: 600;
  margin-bottom: 10px;
}

.section .left p{
	margin-bottom: 30px;
}

.referral-input{
	display: flex;
    justify-content: space-between;
	background: -webkit-linear-gradient(#BFECEF 0%, #46DEE6 100%);
	border: 2px solid #FFFFFF;
	border-radius: 50px;
}

.referral-input .text{
	display: flex;
    margin: 20px;
	align-items: center;
	margin: 20px 10px 20px 18px;
	width: 100%;
	white-space: nowrap;
}

.referral-input button{
	background: -webkit-linear-gradient(-90deg, #F1CD63 0%, #F3C75E 34%, #FAB750 78%, #FFC242 100%);
	border-radius: 50px;
	width: 30%;
	padding: 12px 0;
    border: none;
    color: #333333;
	font-weight: 700;
    font-size: 1.2rem;
	cursor: pointer;
	white-space: nowrap;
}

.referral-input p{
	margin-bottom: 0 !important;
}

.referral-input .referral-code{
	font-weight: 800;
    font-size: 1.4em;
    color: #ff1c20;
	white-space: nowrap;
	padding-left: 4px;
}

.desc {
	text-align: left;
	align-items: center;
	background-color: white;
	border-radius: 20px;
	padding: 5% 10%;
	line-height: 24px;
	display: block;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	margin-top: 30px;
}

.last .desc, footer .desc {
	padding: 8% 10% 4% 10%;
}

.desc img {
	text-align: center;
	width: 46%;
	margin: 10px 1% 0 1%;
}

.desc .step-header {
	width: 100%;
    text-align: center;
    margin-top: -1px;
	margin-bottom: 10px;
}

.desc .cn-lang p {
	letter-spacing: 1px;
}

.desc .left {
	width: 50%; 
	float: left; 
	vertical-align: middle;
}

.desc .right {
	width: 50%; 
	text-align: center;
}

.img-cow {
	position: absolute;
	z-index: 0;
}

.referral-container {
	z-index: 999;
	position: relative;
}

.referral-content {
	text-align: center;
}

/* download button mobile */
.btn-dl {
  margin: 10px 0;
  font-weight: 700;
  font-size: 20px;
  color: #333333;
  background: -webkit-linear-gradient(-90deg, #F1CD63 0%, #F3C75E 34%, #FAB750 78%, #FFC242 100%);
  cursor: pointer;
  border-radius: 100px;
  width: 100%; 
  text-align: center;
  padding: 14px 0px;
  border: 0px solid #000;   
  animation: borderPulse 1000ms infinite ease-out;
  overflow: hidden;
  position: relative;
}

.btn-dl::before {
	content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background:  linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
	left: -100%;
	transition: all 0.5s ease-in-out;
  }

  .btn-dl:hover::before {
	left: 100%;
  }

.btn-dl:hover {
	animation: borderPulse 1000ms infinite ease-out;
	transform: scale(1.1);
}
  
  @keyframes borderPulse {
	0% {
	  box-shadow: inset 0px 0px 0px 5px rgba(255, 230, 0,.4), 0px 0px 0px 0px rgba(255, 230, 0,1);
	}
	100% {
	  box-shadow: inset 0px 0px 0px 3px rgba(255, 139, 0,.2), 0px 0px 0px 10px rgba(0,0,0,0);
	}
  }

.last {
	margin: 20px 0;
}

#lang-switch img {
  width: 24px;
  height: 24px;
  transition: all .5s;
  margin: auto 3px;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid #a5001f;
  border-radius: 50px;
}

#lang-switch img:hover {
  cursor: pointer;
  opacity: 1;
}

.cn_lang,
.en_lang,
.hk_lang,
.ar_lang {
  display: none;
  transition: display .5s;
}

/* Language */
.active-lang {
  display: block;
  transition: display .5s;
}

.active-flag {
  transition: all .5s;
  opacity: 1;
}

.copyright {
	font-size: 0.6rem;
    width: 100%;
    clear: both;
	background-color: #333;
	color: #fafafa;
	padding: 2% 0;
}

footer {
	width: 100%;
	background-size: cover;
	background-color: #F1F2F6;
	display: flow-root;
	padding: 2% 0;
}

footer.ios-footer {
	background-color: #fff;
}

.footer-left {
	width: 100%;
	text-align: center;
	margin-bottom: 20px;
}

.footer-right {
	width: 100%;
	display: flex;
	justify-content: space-around;
}

.footer-right ul{
	width: fit-content
}

footer ul li:first-child {
	font-size: 1.4em;
	font-weight: 700;
}

footer ul {
	width: 33.333333%;
	padding: 0px;
	margin: 0px;
	text-align: center;
	float: left;
}

footer ul li {
	list-style-type: none;
	margin: 10px 0px;
}

footer .logo-container ul.logo {
	width: 100% !important;
}

footer #lang-switch li:nth-child(2):hover,
footer #lang-switch li:nth-child(3):hover {
	cursor: pointer;
	color: #f5bb44;
}


.toggle,
[id^=drop] {
	display: none;
}

/* Giving a background-color to the nav container. */
nav { 
	margin:0;
	padding: 0;
	position: relative;
}

#logo {
	display: block;
	padding: 40px 0 0 0;
}


/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */
nav:after {
	content:"";
	display:table;
	clear:both;
}

nav ul li ul li  { background: #f9c20a; color: #454545; cursor: pointer; }
nav ul li ul li:hover { background: #454545; color: #fafafa; cursor: pointer; }

nav #logo a { 
    padding: 0px; 
	display: flex;
    align-items: center;
    justify-content: center;
}

nav #logo a:hover { background: transparent; color: black;}

nav #logo a p{
	color: white;
	font-size: larger;
	margin-left: 5px;
}

.currency-switcher {
    position: absolute;
    right: 0px;
    width: 138px;
	top: 0;
}

div.dropdown {
    position: relative;
	width: 138px;
    margin-top: 28px;
    right: 40px;

}

div.dropdown:after {
    content: "";
    position: absolute;
    margin: 0;
    width: 16px;
    height: 17px;
    top: 15px;
    right: 10px;
    -webkit-transition: .3s;
    transition: .3s;
}

div.dropdown.open:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

div.dropdown>div.caption {
    cursor: pointer;
    padding: 0px 0px 12.5px 40px;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.3px;
	color: #fff;
}

div.dropdown>div.caption:after { content:  '  ▼'; } 

div.dropdown>div.list {
    position: relative;
    background-color: #fff;
    width: 100%;
    border-radius: 12px;
    -webkit-box-shadow: 0px 12px 24px rgba(21, 18, 51, 0.13);
    box-shadow: 0px 12px 24px rgba(21, 18, 51, 0.13);
    opacity: 0;
    overflow: hidden;
    -webkit-transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
    transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    z-index: -1;
	top: 10px;
    visibility: hidden;
    padding: 10px 0;
}

div.dropdown.open>div.list {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    z-index: 1;
    visibility: visible;
}

div.dropdown>div.list>div.item {
    padding: 10px;
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.3px;
	position: relative;
}

div.dropdown>div.list>div.item.selected {
    background: rgba(36, 60, 187, 0.2);
    pointer-events: none;
}

div.dropdown>div.list>div.item:hover {
    background: #F8F9FB;
}

div.dropdown>div.caption img,
div.dropdown>div.list>div.item img,
div.dropdown>div.caption svg,
div.dropdown>div.list>div.item svg {
    position: absolute;
    top: 5px;
    left: 15px;
}

div.dropdown>div.list>div.item span,
div.dropdown>div.caption span {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    color: #243CBB;
    position: absolute;
    right: 36px;
}

div.dropdown>div.list>div.item span {
    right: 20px;
}

.steps h3 {
	color: #333333;
	font-weight: 700;
	margin: 40px 0 6px 0;
	text-align: center;
}


/* Responsive */
@media screen and (max-width: 3000px) {
	body {
		background: url("../images/bg-full.webp") no-repeat;
		background-size: cover;
		background-color: #F1F2F6;
	}

	body.ios-body {
		background-position: 0px -134px;
	}

	.title.active-lang{
		display: flex;
		justify-content: center;
		overflow: hidden;
	}

	.title img {
		width: 63%;
		margin-top: 19px;
	}

	.en_lang.title img {
		width: 63%;
	}

	.referral-container {
		margin-left: 12%;
        margin-right: 12%;
	}

	.referral-input .text {
		margin-left: 30px;
	}

	.img-cow {
		width: 22%;
        left: -44px;
        bottom: -50px;
	}

	.container {
		max-width: 880px;
	}

	.section p {
		font-size: 1.3rem;
	}

	.desc .step-header {
		width: 30%;
        float: right;
        right: 0;
        position: absolute;
        margin: 0;
		margin-top: -5%;
    }

	/* .desc .cn_lang{
		min-width: 100%
	} */

	.last .desc .step-header, footer .desc .step-header{
		margin-top: -8%;
	}

	.btn-dl {
		font-size: 22px;
		padding: 26px 0px;
		margin: 16px 0;
		width: 70%;
		margin-left: auto;
		margin-right: auto;
	}

	.btn-ios {
		margin: 22px auto;
		font-size: 20px;
		padding: 20px 0px;
	}
}


@media screen and (max-width: 1920px) {
	body {
		background: url("../images/bg-full.webp") no-repeat;
		background-size: cover;
		background-color: #F1F2F6;
	}

	.title img {
		width: 60%;
	}

	.en_lang.title img {
		width: 60%;
	}

	.referral-input .text {
		margin: 15px 10px 15px 30px;
	}

	.img-cow {
		width: 22%;
        left: -44px;
        bottom: -40px;
	}

	.container {
		max-width: 880px;
	}

	.section p {
		font-size: 1.2rem;
	}

	.btn-dl {
		font-size: 22px;
		padding: 26px 0px;
		margin: 16px 0;
		width: 70%;
		margin-left: auto;
		margin-right: auto;
	}

	.btn-ios {
		margin: 22px auto;
		font-size: 20px;
		padding: 20px 0px;
	}
}


@media screen and (max-width: 1400px) {
	body {
		background: url("../images/bg-medium.webp") no-repeat;
		background-size: cover;
		background-color: #F1F2F6;
	}

	.title img {
		width: 84%;
	}

	.en_lang.title img {
		width: 84%;
	}

	.img-cow {
		width: 24%;
		left: -30px;
		bottom: -28px;
	}

	.container {
		max-width: 680px;
	}

	.lang-container {
		width: 28%;
		margin-right: -4%;
	}

	.btn-dl {
		font-size: 22px;
		width: 80%;
		padding: 18px 0;
	}
	
	.btn-ios {
		margin: 22px auto;
		font-size: 20px;
		padding: 20px 0px;
	}
}

@media screen and (max-width: 992px) { 
	.title img {
		width: 84%;
	}

	.en_lang.title img {
		width: 84%;
	}

	.section p {
		font-size: 1.2rem;
	}
	
	.container {
		max-width: 560px;
	}
	
	.logo-container ul li:first-child {
		width: 18%;
		text-align: center
	}

	.lang-container {
		width: 50%;
		right: auto;
		top: auto;
		display: none;
	}

	.desc .left {
		width: 60%;
	}

	.desc .right {
		width: 40%;
	}

	.section .left{
		width: 100%;
	}
	
	.section .left-box{
		position: absolute;
        top: 233px;
		border-radius: 15px;
		box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	}

	footer ul {
		width: 33%;
		justify-content: center;
	}

	footer .footer-left {
		width: 100%;
	}

	footer .footer-right {
		width: 100%;
	}

	.section h1.en_lang{
		width: 100%;
	}

	.referral-container p{
		text-align: left;
	}
	
}

@media screen and (max-width: 778px) { 
	body {
		background: url("../images/bg-mobile-full.webp") no-repeat;
		background-size: cover;
		background-color: #F1F2F6;
	}

	.title img {
		width: 120%;
		margin-top: 20px;
	}

	.en_lang.title img {
		width: 120%;
	}

	.img-cow {
		width: 24%;
		left: 0px;
		bottom: -24px;
	}
}


@media screen and (max-width: 580px) {
	body {
		background: url("../images/bg-mobile-full.webp") no-repeat;
		background-size: cover;
		background-color: #F1F2F6;
	}

	.title img {
		width: 150%;
		margin-top: 10px;
	}

	.en_lang.title img {
		width: 150%;
		margin-top: 10px;
	}

	.container {
		max-width: 340px;
	}

	.referral-input .text {
		margin: 10px 10px 10px 16px;
	}

	.img-cow {
		left: -33px;
		width: 28%;
        bottom: -14px;
	}

	div.dropdown {
		right: 0px;
	}

	.section p {
		font-size: 0.9rem;
	}

	.section p.en_lang {
		font-size: 0.7rem;
	}

	.desc .step-header {
        width: 50%;
    }

	.btn-dl {
		font-size: 20px;
		width: 100%;
		padding: 14px 0;
	}

	.btn-ios {
		margin: 22px auto;
		font-size: 18px;
		padding: 20px 0px;
	}
	
	.logo-container img {
		width: 34px;
	}
	
	.logo-container ul li:first-child {
		width: 23%;
	}
	
	.logo-container ul li p {
		font-size: 1.2em;
	}

	.logo-container ul li span {
		font-size: 1em;
	}

	.logo-container ul {
		width: 178px;
	}
	
	.lang-container {
		width: 50%;
		right: auto;
		top: auto;
		display: none;
	}
	
	nav a {
		padding: 19px;
	}

	nav ul ul {
		top: 60px;
	}
	
	.desc {
		flex-direction: column;
	}

	.desc .left {
		width: 100%;
	}

	.desc .right {
        width: 100%;
    }

	footer p {
		text-align: center;
	}

	footer ul li:first-child {
		font-size: 1.1em;
	}

	/* footer .footer-right ul {
		width: 50%;
	} */

	.section h1.cn_lang{
		white-space: nowrap;
		
	}

	.section .left-box{
		padding: 20px;
		border-radius: 10px;
		top: 180px;
	}

	.section .left p{
		margin-bottom: 10px;
	}

	.referral-input button.en_lang  {
		font-size: 15px;
    	width: 40%;
		line-height: 16px;
	}

	.last .desc, footer .desc {
		padding-top: 14%;
	}

	.last .desc .step-header, footer .desc .step-header {
        margin-top: -14%;
    }

	ul.dl-container li:nth-child(3), ul.dl-container li:nth-child(4) {
		margin-top: 2% !important;
	}

	.referral-container {
		margin-left: 4%;
        margin-right: 4%;
	}

}

/*--------------------------------------------------------------
# 4 download buttons
--------------------------------------------------------------*/
ul.dl-container {
	padding: 0px;
    position: relative;
    margin: 4% auto 0 auto;
    display: inline-table;
}

ul.dl-container li {
	float: left;
	width: 46%;
	margin: 0 2%;
	list-style-type: none;
	text-align: center;
  	min-width: 206px;
}

ul.dl-container li:nth-child(3), ul.dl-container li:nth-child(4),
ul.dl-container li:nth-child(5), ul.dl-container li:nth-child(6) {
	margin-top: 2% !important;
}

ul.dl-container img {
	width: 220px;
}

.desktop-btn {
	font-weight: 700;
	font-size: 18px;
	padding: 10px 0px;
	text-align: center;
	align-items: center;
	background: -webkit-linear-gradient(#6AACF5 0%, #5092F7 100%);
	border-radius: 8px;
	width: 100%;
	color: #fff;
}

.desktop-btn:hover {
	transform: scale(1.1);
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
	transition: all .2s ease-in-out;
}

.desktop-btn img {
	width: auto !important; 
	height: 34px;
	display: inline-block; 
	padding:0px; 
	margin: 0px; 
	vertical-align: middle;
	margin-right: 10px;
}

.desktop-btn span {
	display: inline-block;  
	vertical-align: sub;
}

@media screen and (max-width: 580px) { 
	.desktop-btn {
		font-size: 15px;
	}
	
	.desktop-btn img {
	  width: 30px;
	  height: 30px;
	}

	.desktop-btn:hover {
		transform: none;
	}

	ul.dl-container li {
		width: 94%;
	}

	ul.dl-container li:nth-child(1) {
		margin-bottom: 2% !important;
	}
}

@media screen and (max-width: 385px) {
	nav #logo a {
		justify-content: flex-start;
	}

	#logo{
		padding-top: 25px;
	} 

	nav #logo a p{
		font-size: medium;
	}

	.referral-input button{
		font-size: 1rem;
	}
}


/*REFERRAL*/
