/* Reset CSS */
* {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* General Styles */

body {
	font-size: calc(16px + (32 - 16) * ((100vw - 360px) / (720 - 360)));
	font-family: 'Open Sans', Tahoma, Arial, sans-serif;
	background-color: var(--neutral-gray-100);
	--neutral-gray-950: #181818;
	--neutral-gray-900: #4F4D4E;
	--neutral-gray-200: #E4E4E4;
	--neutral-gray-100: #F0F0F0;
	--white: #FFFFFF;
	--black: #000000;
	--brand-10cric-yellow: #F4C844;
}

.wrapper {
	margin: 0 1em;
}

a {
	text-decoration: none;
	color: inherit;
}

img {
	width: 100%;
}

ol, ul {
	list-style-position: inside;
}

strong {
	font-weight: 700;
}

.italic {
	font-style: italic;
}

/* Header styles */
header {
	padding: .5em 0;
	background-color: var(--black);
	color: var(--white);
}

header .wrapper {
	display: flex;
	position: relative;
	align-items: center;
	justify-content: space-between;
}

header .left-side {
	display: flex;
	align-items: center;
}

header nav {
	position: absolute;
	width: 22.5em;
	top: 3em;
	left: 50%;
	margin-left: -11.25em;
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.5s;
	background: rgba(0, 0, 0, 0.80);
	backdrop-filter: blur(0.5em);
}

header nav.opened,
.content .faq-content.opened {
	grid-template-rows: 1fr;
}

header nav > div {
	overflow: hidden;
	text-align: center;
}

header .nav-container {
	display: inline-flex;
	margin-top: 1em;
	flex-direction: column;
	align-items: center;
	gap: 2em;
}

header nav a {
	display: block;
	font-size: 1.1875em;
	text-transform: uppercase;
	text-align: center;
}

header .app-container {
	display: flex;
	margin: 1.5em 0;
	justify-content: center;
	gap: .5em;
}

/* Hamburger menu styles */
#nav-icon {
	width: 1.125em;
    height: 0.75em;
    position: relative;
    display: inline-block;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon span {
	display: block;
    position: absolute;
    height: 0.125em;
    width: 100%;
    background: var(--white);
    border-radius: 0.5em;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
	top: 0;
}

#nav-icon span:nth-child(2),
#nav-icon span:nth-child(3) {
	top: 0.3125em;
}

#nav-icon span:nth-child(4) {
	top: 0.625em;
}

#nav-icon.open span:nth-child(1) {
	top: 0.3125em;
	width: 0%;
	left: 50%;
}

#nav-icon.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
	top: 0.3125em;
	width: 0%;
	left: 50%;
}

.logo {
	width: 3.3125em;
	margin-left: 1em;
}

.sign-up {
	display: flex;
	width: 5em;
	padding: 0.5em;
	justify-content: center;
	align-items: center;
	gap: 0.5em;
	flex-shrink: 0;
	border-radius: 0.25em;
	background: var(--brand-10cric-yellow);
	box-sizing: border-box;
}

.sign-up a {
	color: var(--black);
	font-size: 0.875em;
	line-height: 1.14286; /* 114.286% */
	text-transform: uppercase;
}

/* Main banner styles */
.homepage .main-banner {
	height: 32.5em;
	background: url(../img/main-banners/homepage-mobile.webp) no-repeat;
	background-size: cover;
}

.cricket-betting .main-banner {
	height: 32.5em;
	background: url(../img/main-banners/cricket-betting-mobile.webp) no-repeat;
	background-size: cover;
}

.bonus .main-banner {
	height: 32.5em;
	background: url(../img/main-banners/bonus-mobile.webp) no-repeat;
	background-size: cover;
}

.app-download .main-banner {
	height: 32.5em;
	background: url(../img/main-banners/app-download-mobile.webp) no-repeat;
	background-size: cover;
}

.casino-crypto .main-banner,
.casino-aviator .main-banner {
	height: 32.5em;
	background: url(../img/main-banners/casino-crypto-mobile.webp) no-repeat;
	background-size: cover;
}

.main-banner .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.main-banner h1 {
	padding: 0.66666666666em 0;
	font-size: 2.25em;
	line-height: 1.11111111;
	color: var(--white);
	text-align: center;
}

.cta-container {
	display: flex;
    margin-bottom: 1.5em;
    padding: 1em 0.75em 1em 1em;
    justify-content: center;
    align-items: center;
    gap: 0.75em;
    align-self: stretch;
    border-radius: 4px;
    background: var(--brand-10cric-yellow);
	cursor: pointer;
}

.cta-container a {
	color: var(--black);
	font-size: 1.1875em;
	line-height: 1.26316; /* 126.316% */
	text-transform: uppercase;
}

.cta-container img {
	width: 1.5em;
}

/* Sections styles */
section.content {
	margin-bottom: 1em;
	padding: 1em 0;
	background-color: var(--white);
	border-radius: 1em;
}

.content .wrapper {
	display: flex;
	flex-direction: column;
	gap: 1.5em;
}

.content-container {
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.content h2,
.content h3,
.content h4 {
	color: var(--neutral-gray-950);
	font-weight: 600;
}

.content h2 {
	font-size: 2em;
	line-height: 1.125;
}

.content h3 {
	font-size: 1.75em;
	line-height: 1.14286;
}

.content h4 {
	font-size: 1.5em;
	line-height: 1.1675;
}

.content ul {
	list-style-type: disc;
}

.content p,
.content li {
	line-height: 1.75;
}

.content a {
	color: var(--brand-10cric-yellow);
	cursor: pointer;
}

.content .cta {
	width: 12.8em;
	margin: 0 auto;
	display: block;
	padding: 0.8em 0.6em;
	background-color: var(--brand-10cric-yellow);
	font-size: 1.25em;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--black);
	border-radius: 0.2em;
	text-align: center;
}

.content table thead tr:nth-child(even),
.content table tbody tr:nth-child(odd) {
	background-color: var(--neutral-gray-200);
}

.content table thead th {
	font-weight: 600;
}

.content table thead th,
.content table tbody td {
	padding: .5em;
	vertical-align: middle;
}

.content table.no-padding thead th,
.content table.no-padding tbody td {
	padding: 0;
}

.list-container {
	display: flex;
	flex-direction: column;
	gap: 0.5em;
}

.list-item {
	display: flex;
	padding: 1em;
	justify-content: center;
	align-items: center;
	gap: 1em;
	align-self: stretch;
	border: 1px solid var(--neutral-gray-200);
	border-radius: 0.5em;
}

.list-item .number {
	color: var(--neutral-gray-950);
	text-align: center;
	font-size: 2.25em;
	font-weight: 600;
	line-height: 1.11111; /* 111.111% */
}

.list-item .list-item-content {
	min-width: 87%;
	line-height: 1.75;
}

.faq-header {
	display: flex;
	gap: 0.5em;
	cursor: pointer;
	justify-content: space-between;
	align-items: center;
}

.faq-header h4 {
	font-size: 1.125em;
}

.faq-header img {
	width: 1.5em;
	transition: transform .5s;
}

.faq-content {
	display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s;
}

.faq-content > div {
	overflow: hidden;
}

.app-download-container {
	padding: 0.5em 0 1.5em;
	background-color: var(--black);
	color: var(--white);
}

.app-download-container h2 {
	font-size: 1.5em;
	text-align: center;
	margin-bottom: 1em;
}

.app-download-container .download-imgs {
	display: flex;
	gap: 0.5em;
	justify-content: center;
	margin-bottom: 1.5em;
}

.app-download-container .download-imgs img {
	width: 7.5em;
}

.app-download-container .app-info {
	display: flex;
	margin: 0 auto;
	width: 80%;
	justify-content: center;
}

.app-download-container .app-info > div {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	border-right: 1px solid var(--neutral-gray-900);
}

.app-download-container .app-info > div:last-child {
	border-right: none;
}

.app-download-container .app-info h5 {
	font-size: 1.125em;
	font-weight: 600;
	line-height: 1.33333;
}

.app-download-container .app-info p {
	font-size: 0.875em;
	line-height: 1.42857;
}

/* Desktop styles */
@media screen and (min-width: 1280px) {
	body {
		font-size: calc(16px + (21.3333333 - 16) * ((100vw - 1440px) / (1920 - 1440)));
	}

	.wrapper {
		margin: 0 1.5em;
	}

	/* Header styles */
	header .wrapper {
		margin: 0 1.5em;
	}

	.logo {
		margin-left: 0;
	}

	#nav-icon {
		display: none;
	}

	header nav {
		position: unset;
		width: auto;
		margin-left: 0;
		display: block;
	}

	header nav > div {
		overflow: visible;
	}

	header .nav-container {
		margin-top: 0;
		flex-direction: unset;
		gap: 1em;
	}

	header nav a {
		padding: 0.285714285714285em 0.5714285714285714em;
		font-size: 0.875em;
		text-transform: capitalize;
		border-bottom: 1px solid var(--black);
		transition: all .3s ease-in-out;
	}

	header nav a:hover {
		border-bottom: 1px solid var(--white);
	}

	header .app-container {
		display: none;
	}

	.sign-up {
		width: 7.5em;
	}

	/* Main banner styles */
	.homepage .main-banner {
		background: url(../img/main-banners/homepage-desktop.webp) no-repeat;
		background-size: cover;
	}

	.cricket-betting .main-banner {
		height: 32.5em;
		background: url(../img/main-banners/cricket-betting-desktop.webp) no-repeat;
		background-size: cover;
	}

	.bonus .main-banner {
		height: 32.5em;
		background: url(../img/main-banners/bonus-desktop.webp) no-repeat;
		background-size: cover;
	}

	.app-download .main-banner {
		height: 32.5em;
		background: url(../img/main-banners/app-download-desktop.webp) no-repeat;
		background-size: cover;
	}

	.casino-crypto .main-banner,
	.casino-aviator .main-banner {
		height: 32.5em;
		background: url(../img/main-banners/casino-crypto-desktop.webp) no-repeat;
		background-size: cover;
	}

	.main-banner .wrapper {
		width: 34.5%;
        margin: 0 4em;
        justify-content: center;
	}

	.main-banner h1 {
		margin-bottom: 0.57142857142857em;
		padding: 0;
		font-size: 3.5em;
		line-height: 1.07143;
		text-align: left;
		text-shadow: 0 0 10px var(--black);
	}

	.cta-container {
		width: 50.728%;
		margin-bottom: 0;
	}

	.cta-container a {
		font-weight: 600;
	}

	/* Sections styles */
	section.content {
		margin: 1em 20em;
		padding: 1.5em 0;
	}

	.list-item {
		justify-content: left;
	}

	.app-download-container .wrapper {
		margin: 0 35em;
	}
}