@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
 @import url("https://fonts.googleapis.com/css2?family=Days+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
.poppins-thin {
	font-family: "Poppins", sans-serif;
	font-weight: 100;
	font-style: normal;
}
.poppins-extralight {
	font-family: "Poppins", sans-serif;
	font-weight: 200;
	font-style: normal;
}
.poppins-light {
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-style: normal;
}
.poppins-regular {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.poppins-medium {
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: normal;
}
.poppins-semibold {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: normal;
}
.poppins-bold {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-style: normal;
}
.poppins-extrabold {
	font-family: "Poppins", sans-serif;
	font-weight: 800;
	font-style: normal;
}
.poppins-black {
	font-family: "Poppins", sans-serif;
	font-weight: 900;
	font-style: normal;
}
.poppins-thin-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 100;
	font-style: italic;
}
.poppins-extralight-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 200;
	font-style: italic;
}
.poppins-light-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-style: italic;
}
.poppins-regular-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: italic;
}
.poppins-medium-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: italic;
}
.poppins-semibold-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: italic;
}
.poppins-bold-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-style: italic;
}
.poppins-extrabold-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 800;
	font-style: italic;
}
.poppins-black-italic {
	font-family: "Poppins", sans-serif;
	font-weight: 900;
	font-style: italic;
}
:root {
 --body: #0B0E13;
 --black: #000;
 --white: #fff;
 --theme: #ffc107;
 --header: #0B0E13;
 --text: #ABABAB;
 --border: #ffffff33C;
 --bg: #0B0E13;
 --bg-2: #1C1D20;
 --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}
.theme-btn {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none !important;
	background: var(--theme);
	color: var(--header);
	font-size: 16px;
	font-weight: 700;
	height: 52px;
	line-height: 52px;
	padding: 0 30px;
	-webkit-transition: all 0.5s linear;
	transition: all 0.5s linear;
	overflow: hidden;
	z-index: 99;
	border-radius: 100px;
}
.theme-btn::before {
	position: absolute;
	content: "";
	background: var(--white);
	width: 120%;
	height: 0;
	padding-bottom: 120%;
	top: -110%;
	left: -10%;
	border-radius: 50%;
	-webkit-transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
	transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
	z-index: -1;
	border-radius: 100px;
}
.theme-btn::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: var(--white);
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
	transition: -webkit-transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
	transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
	transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1), -webkit-transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
	z-index: -1;
	border-radius: 100px;
}
.theme-btn:hover::before {
	-webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
	transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
	transition: -webkit-transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
	transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
	transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1), -webkit-transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}
.theme-btn:hover::after {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transition-duration: 0.05s;
	transition-duration: 0.05s;
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
}
.theme-btn.style-2 {
	border-radius: 0;
	background: linear-gradient(90deg, #ffc107 0%, #a57b00 100%);
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	font-size: 17px;
	font-weight: 700;
	height: 56px;
	line-height: 56px;
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 20px;
	padding-left: 40px;
	clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}
.theme-btn.style-2 .left-line {
	display: inline-block;
	width: 5px;
	height: 100%;
	background: #0B0E13;
	margin-right: 8px;
	position: absolute;
	left: 4px;
}
.theme-btn.style-2:hover {
	background-position: 100% 0;
}
.view-btn {
	background: none;
	border: none;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	display: inline-flex;
	gap: 1px;
	/*font-family: "Chakra Petch", sans-serif;*/
	text-transform: uppercase;
	border-radius: 100px;
	border: 1px solid var(--theme);
	height: 52px;
	line-height: 52px;
	padding: 0 30px;
}
.view-btn span {
	color: #ABABAB;
	transition: color 0.4s ease;
}
.view-btn span.active {
	color: var(--theme);
}
.view-btn span.space {
	width: 2.3px;
}
.view-btn:hover span:nth-child(5) {
	color: var(--theme);
	transition-delay: 0s;
}
.view-btn:hover span:nth-child(6) {
	color: var(--theme);
	transition-delay: 0.05s;
}
.view-btn:hover span:nth-child(7) {
	color: var(--theme);
	transition-delay: 0.1s;
}
.view-btn:hover span:nth-child(8) {
	color: var(--theme);
	transition-delay: 0.15s;
}
.view-btn:hover span:nth-child(9) {
	color: var(--theme);
	transition-delay: 0.2s;
}
.view-btn:hover span:nth-child(10) {
	color: var(--theme);
	transition-delay: 0.25s;
}
.view-btn:hover span:nth-child(11) {
	color: var(--theme);
	transition-delay: 0.3s;
}
.view-btn:hover span:nth-child(12) {
	color: var(--theme);
	transition-delay: 0.35s;
}
.view-btn:hover span:nth-child(13) {
	color: var(--theme);
	transition-delay: 0.4s;
}
.view-btn:hover span:nth-child(14) {
	color: var(--theme);
	transition-delay: 0.45s;
}
.gt-theme-btn {
	font-size: 16px;
	font-weight: 600;
	font-family: "Chakra Petch";
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--header);
	display: inline-block;
	line-height: 60px;
	height: 60px;
	text-align: center;
	min-width: 200px;
	overflow: hidden;
	border-radius: 0;
	padding: 0 32px;
	background: #ADFF00;
	transition: 0.5s;
	clip-path: polygon(24% 0, 88% 0, 100% 0, 100% 77%, 100% 100%, 0 100%, 0 80%, 0 30%, 7% 0) !important;
}
.gt-theme-btn:hover {
	background-color: var(--white);
	color: var(--header);
}
@media (max-width: 575px) {
.gt-theme-btn {
	padding: 0 30px;
}
}
.gt-theme-btn.gt-style-border {
	border: 1px solid rgb(255, 255, 255);
	background-image: none;
	clip-path: polygon(24% 0, 88% 0, 100% 0, 100% 77%, 100% 100%, 0 100%, 0 80%, 0 23%, 8% 0) !important;
	position: relative;
	transition: 0.5s;
	background: transparent;
	color: var(--white);
}
.gt-theme-btn.gt-style-border::before {
	position: absolute;
	top: -26px;
	left: -18px;
	right: 0;
	bottom: 0;
	content: "";
	transform: rotate(45deg);
	height: 115px;
	width: 1.5px;
	background-color: var(--white);
	clip-path: polygon(24% 0, 88% 0, 100% 0, 100% 62%, 100% 100%, 0 100%, 0 80%, 0 30%, 23% 0) !important;
	transition: 0.5s;
}
.gt-theme-btn:hover.gt-style-border {
	background-color: var(--theme);
	color: var(--header);
	border: 1px solid var(--theme);
}
.gt-theme-btn:hover.gt-style-border::before {
	display: none;
}
.gt-theme-btn {
	font-size: 16px;
	font-weight: 600;
	/*font-family: "Chakra Petch";*/
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--header);
	display: inline-block;
	line-height: 60px;
	height: 60px;
	text-align: center;
	min-width: 200px;
	overflow: hidden;
	border-radius: 0;
	padding: 0 32px;
	background: #ADFF00;
	transition: 0.5s;
	clip-path: polygon(24% 0, 88% 0, 100% 0, 100% 77%, 100% 100%, 0 100%, 0 80%, 0 30%, 7% 0) !important;
}
.gt-theme-btn:hover {
	background-color: var(--white);
	color: var(--header);
}
@media (max-width: 575px) {
.gt-theme-btn {
	padding: 0 30px;
}
}
.gt-theme-btn.gt-style-border {
	border: 1px solid rgb(255, 255, 255);
	background-image: none;
	clip-path: polygon(24% 0, 88% 0, 100% 0, 100% 77%, 100% 100%, 0 100%, 0 80%, 0 23%, 8% 0) !important;
	position: relative;
	transition: 0.5s;
	background: transparent;
	color: var(--white);
}
.gt-theme-btn.gt-style-border::before {
	position: absolute;
	top: -26px;
	left: -18px;
	right: 0;
	bottom: 0;
	content: "";
	transform: rotate(45deg);
	height: 115px;
	width: 1.5px;
	background-color: var(--white);
	clip-path: polygon(24% 0, 88% 0, 100% 0, 100% 62%, 100% 100%, 0 100%, 0 80%, 0 30%, 23% 0) !important;
	transition: 0.5s;
}
.gt-theme-btn:hover.gt-style-border {
	background-color: var(--theme);
	color: var(--header);
	border: 1px solid var(--theme);
}
.gt-theme-btn:hover.gt-style-border::before {
	display: none;
}
/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
	font-family: "Poppins", sans-serif;
	/*font-family: "Chakra Petch", sans-serif;*/
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
	color: var(--text);
	background-color: var(--bg);
	padding: 0;
	margin: 0;
	overflow-x: hidden;/*text-transform: uppercase;*/
}
ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
button {
	border: none;
	background-color: transparent;
	padding: 0;
}
input:focus {
	color: var(--white);
	outline: none;
}
input {
	color: var(--white);
}
h1, h2, h3, h4, h5, h6 {
	font-family: "Days One", sans-serif;
	margin: 0px;
	padding: 0;
	color: var(--white);
	transition: all 0.4s ease-in-out;
	text-transform: initial;
}
h1 {
	font-size: 140px;
	font-weight: 400;
	line-height: 88%;
	letter-spacing: -3.2px;
}
h2 {
	font-size: 52px;
	font-weight: 400;
	line-height: 116%;
	letter-spacing: -1.04px;
}
@media (max-width: 1399px) {
h2 {
	font-size: 50px;
}
}
@media (max-width: 1199px) {
h2 {
	font-size: 40px;
}
}
@media (max-width: 991px) {
h2 {
	font-size: 40px;
}
}
@media (max-width: 767px) {
h2 {
	font-size: 35px;
}
}
@media (max-width: 575px) {
h2 {
	font-size: 30px;
}
}
@media (max-width: 470px) {
h2 {
	font-size: 25px;
}
}
h3 {
	font-size: 24px;
	font-weight: 400;
	line-height: 125%;
}
@media (max-width: 575px) {
h3 {
	font-size: 20px;
}
}
h4 {
	font-size: 24px;
	font-weight: 400;
	line-height: 150%;
	font-family: "Poppins", sans-serif;
}
@media (max-width: 1199px) {
h4 {
	font-size: 20px;
}
}
h5 {
	font-size: 20px;
	font-weight: 400;
	line-height: 150%;
}
h6 {
	font-size: 16px;
	font-weight: 400;
}
a {
	text-decoration: none;
	outline: none !important;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}
p {
	transition: all 0.4s ease-in-out;
}
span {
	margin: 0px;
}
.about-wrapper {
	margin-top: 75px;
	position: relative;
	z-index: 9;
}
@media (max-width: 1199px) {
.about-wrapper {
	margin-top: 0;
}
}
.about-wrapper .superhero-image {
	position: relative;
}
.about-wrapper .superhero-image .eplay-text {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: -1;
}
@media (max-width: 575px) {
.about-wrapper .superhero-image .eplay-text {
	width: 70px;
	left: 38px;
}
}



.about-wrapper .superhero-image .radius-shape1 {
	position: absolute;
	top: 0;
	right: 20%;
}
@media (max-width: 1199px) {
.about-wrapper .superhero-image .radius-shape1 {
	display: none;
}
}
.about-wrapper .superhero-image .radius-shape2 {
	position: absolute;
	bottom: -70px;
	left: -120px;
}
@media (max-width: 1199px) {
.about-wrapper .superhero-image .radius-shape2 {
	display: none;
}
}
.about-wrapper .superhero-image::before {
	position: absolute;
	top: 0;
	bottom: 0;
	content: "";
	height: 100%;
	background-color: #1C1D20;
	width: 450px;
	border-radius: 100px 0 0 100px;
	z-index: -1;
}
.about-wrapper .superhero-image img {
	padding-left: 25px;
}
@media (max-width: 575px) {
.about-wrapper .superhero-image img {
	padding-left: 0;
	width: 100%;
	height: 100%;
}
}
.about-wrapper .superhero-image .game-controller-image {
	position: absolute;
	right: 0;
	top: -90px;
	z-index: -2;
}
@media (max-width: 1199px) {
.about-wrapper .superhero-image .game-controller-image {
	display: none;
}
}
.about-wrapper .about-content .about-text {
	margin-top: 25px;
}
.about-wrapper .about-content .section-title h2 span {
	color: var(--theme);
}
.about-wrapper .about-content .about-btn {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 50px;
}
@media (max-width: 1199px) {
.about-wrapper .about-content .about-btn {
	margin-top: 30px;
	flex-wrap: wrap;
}
}
.about-wrapper .middle-shape {
	position: absolute;
	bottom: -57%;
	left: 43%;
	z-index: -1;
}
@media (max-width: 991px) {
.about-wrapper .middle-shape {
	display: none;
}
}
.about-section {
	position: relative;
}
.about-section .left-shape {
	position: absolute;
	top: 35px;
	left: -20px;
	z-index: -3;
}
@media (max-width: 1399px) {
.about-section .left-shape {
	display: none;
}
}
.about-wrapper-2 {
	margin-top: 10px;
}
.about-wrapper-2 .about-iamge {
	padding: 15px;
	position: relative;
}
.about-wrapper-2 .about-iamge .line-shape {
	position: absolute;
	top: -5px;
	left: 0;
}
.about-wrapper-2 .about-iamge .line-shape img {
	clip-path: none;
}
.about-wrapper-2 .about-iamge .text-shape {
	position: absolute;
	bottom: 70px;
	left: -200px;
}
@media (max-width: 1899px) {
.about-wrapper-2 .about-iamge .text-shape {
	left: 0;
}
}
@media (max-width: 1600px) {
.about-wrapper-2 .about-iamge .text-shape {
	left: 20px;
	bottom: 20px;
	max-width: 350px;
}
.about-wrapper-2 .about-iamge .text-shape img {
	width: 100%;
	height: 100%;
}
}
@media (max-width: 1199px) {
.about-wrapper-2 .about-iamge .text-shape {
	bottom: 25px;
	left: 20px;
	max-width: 200px;
}
.about-wrapper-2 .about-iamge .text-shape img {
	width: 100%;
	height: 100%;
}
}
.about-wrapper-2 .about-iamge .text-shape img {
	clip-path: initial;
}
.about-wrapper-2 .about-iamge img {
	clip-path: polygon(33% 0, 79% 0, 100% 0, 100% 75%, 100% 100%, 32% 100%, 0 100%, 0 16%, 18% 0);
}
@media (max-width: 1399px) {
.about-wrapper-2 .about-iamge img {
	width: 100%;
	height: 100%;
}
}
.about-wrapper-2 .about-content {
	margin-left: 10px;
}
@media (max-width: 1399px) {
.about-wrapper-2 .about-content {
	margin-left: 0;
}
}
.about-wrapper-2 .about-content .about-text {
	font-size: 15px;
}
.about-wrapper-2 .about-content .counter-wrap-2 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 30px;
	margin-bottom: 50px;
}
@media (max-width: 1399px) {
.about-wrapper-2 .about-content .counter-wrap-2 {
	flex-wrap: wrap;
	gap: 30px;
	justify-content: start;
}
}
@media (max-width: 1199px) {
.about-wrapper-2 .about-content .counter-wrap-2 {
	margin-top: 30px;
	margin-bottom: 30px;
}
}
@media (max-width: 767px) {
.about-wrapper-2 .about-content .counter-wrap-2 {
	margin-top: 25px;
	margin-bottom: 25px;
}
}
.about-wrapper-2 .about-content .counter-wrap-2 .counter-item-2 {
	position: relative;
	min-width: 110px;
}
.about-wrapper-2 .about-content .counter-wrap-2 .counter-item-2.style-2::before {
	display: none;
}
.about-wrapper-2 .about-content .counter-wrap-2 .counter-item-2::before {
	position: absolute;
	top: 38px;
	bottom: 0;
	left: 125px;
	content: "";
	width: 51px;
	height: 1px;
	background: rgba(255, 255, 255, 0.2);
	transform: rotate(-90deg);
}
@media (max-width: 1399px) {
.about-wrapper-2 .about-content .counter-wrap-2 .counter-item-2::before {
	display: none;
}
}
.about-wrapper-2 .about-content .counter-wrap-2 .counter-item-2 h2 {
	font-size: 36px;
	font-weight: 400;
	margin-bottom: 5px;
	color: var(--theme);
}
.about-section-2 {
	position: relative;
	z-index: 9;
}
.about-section-2 .about-shape-1 {
	position: absolute;
	z-index: -1;
	bottom: 5%;
	right: 0;
}
@media (max-width: 1399px) {
.about-section-2 .about-shape-1 {
	display: none;
}
}
.gt-about-wrapper-6 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 60px;
	margin-bottom: 60px;
}
.gt-about-wrapper-6 .gt-about-image {
	max-width: 660px;
	position: relative;
}
@media (max-width: 767px) {
.gt-about-wrapper-6 .gt-about-image {
	max-width: initial;
}
}
.gt-about-wrapper-6 .gt-about-image img {
	width: 100%;
	height: 100%;
}
.gt-about-wrapper-6 .gt-about-image .gt-about-image-2 {
	position: absolute;
	max-width: 252px;
	top: 100px;
	left: 0;
}
@media (max-width: 1199px) {
.gt-about-wrapper-6 .gt-about-image .gt-about-image-2 {
	top: 0;
	left: 0;
}
}
@media (max-width: 991px) {
.gt-about-wrapper-6 .gt-about-image .gt-about-image-2 {
	top: 100px;
	left: 0;
}
}
@media (max-width: 767px) {
.gt-about-wrapper-6 .gt-about-image .gt-about-image-2 {
	display: none;
}
}
.gt-about-wrapper-6 .gt-about-image .gt-radius-image {
	position: absolute;
	bottom: 0;
	right: 50px;
}
@media (max-width: 767px) {
.gt-about-wrapper-6 .gt-about-image .gt-radius-image {
	left: 0;
	top: 0;
	right: initial;
	bottom: initial;
}
}
.gt-about-wrapper-6 .gt-about-image .gt-radius-image .video-btn {
	background-color: transparent;
	color: var(--white);
	display: inline-block;
	font-size: 24px;
	height: 88px;
	width: 88px;
	line-height: 88px;
	border-radius: 50%;
	text-align: center;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border: 1px solid rgba(255, 255, 255, 0.5);
}
@media (max-width: 767px) {
.gt-about-wrapper-6 .gt-about-image .gt-radius-image .video-btn {
	width: 70px;
	height: 70px;
	line-height: 70px;
}
}
.gt-about-wrapper-6 .gt-about-content .gt-section-title h2 {
	font-size: 58px;
}
@media (max-width: 1399px) {
.gt-about-wrapper-6 .gt-about-content .gt-section-title h2 {
	font-size: 50px;
}
}
@media (max-width: 1199px) {
.gt-about-wrapper-6 .gt-about-content .gt-section-title h2 {
	font-size: 40px;
}
}
@media (max-width: 991px) {
.gt-about-wrapper-6 .gt-about-content .gt-section-title h2 {
	font-size: 40px;
}
}
@media (max-width: 767px) {
.gt-about-wrapper-6 .gt-about-content .gt-section-title h2 {
	font-size: 35px;
}
}
@media (max-width: 575px) {
.gt-about-wrapper-6 .gt-about-content .gt-section-title h2 {
	font-size: 30px;
}
}
@media (max-width: 470px) {
.gt-about-wrapper-6 .gt-about-content .gt-section-title h2 {
	font-size: 25px;
}
}
.gt-about-wrapper-6 .gt-about-content .gt-about-text {
	margin-top: 20px;
}
.gt-about-wrapper-6 .gt-about-content .gt-about-count {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 50px;
}
@media (max-width: 1199px) {
.gt-about-wrapper-6 .gt-about-content .gt-about-count {
	flex-wrap: wrap;
	gap: 30px;
}
}
.gt-about-wrapper-6 .gt-about-content .gt-about-count .gt-count-item {
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	padding-right: 40px;
}
@media (max-width: 1199px) {
.gt-about-wrapper-6 .gt-about-content .gt-about-count .gt-count-item {
	border-right: none;
	padding-right: 0;
}
}
.gt-about-wrapper-6 .gt-about-content .gt-about-count .gt-count-item.gt-style-2 {
	border-right: none;
	padding-right: 0;
}
.gt-about-wrapper-6 .gt-about-content .gt-about-count .gt-count-item h3 {
	font-size: 36px;
	margin-bottom: 5px;
}
@media (max-width: 1199px) {
.gt-about-wrapper-6 .gt-about-content .gt-about-count .gt-count-item h3 {
	font-size: 30px;
}
}
.about-wrapper-7 .about-image-2 {
	position: relative;
	transform: translateX(-100%);
	animation: slideInLeft 1.5s ease-out forwards;
}
.about-wrapper-7 .about-image-2 img {
	width: 100%;
	height: 100%;
}
.about-wrapper-7 .about-image-2 .bg-shape {
	position: absolute;
	top: -20px;
	left: 0%;
	z-index: -1;
}
@media (max-width: 1199px) {
.about-wrapper-7 .about-image-2 .bg-shape {
	display: none;
}
}
.about-wrapper-7 .about-image-2 .ellipse-shape {
	position: absolute;
	top: -30%;
	left: -50%;
	z-index: -2;
}
@media (max-width: 1199px) {
.about-wrapper-7 .about-image-2 .ellipse-shape {
	display: none;
}
}
.about-wrapper-7 .about-image-2 .ellipse-shape img {
	width: initial;
	height: initial;
}
.about-wrapper-7 .about-image-2 .ellipse-shape-2 {
	position: absolute;
	top: -11%;
	left: -50%;
	z-index: -2;
}
@media (max-width: 1199px) {
.about-wrapper-7 .about-image-2 .ellipse-shape-2 {
	display: none;
}
}
.about-wrapper-7 .about-image-2 .ellipse-shape-2 img {
	width: initial;
	height: initial;
}
.about-wrapper-7 .about-content {
	margin-left: 50px;
}
@media (max-width: 1199px) {
.about-wrapper-7 .about-content {
	margin-left: 0;
}
}
.about-wrapper-7 .about-content .about-text {
	max-width: 560px;
}
.about-wrapper-7 .about-content .about-box-wrapper {
	max-width: 600px;
	margin-top: 30px;
	position: relative;
	overflow: hidden;
	z-index: 9;
}
.about-wrapper-7 .about-content .about-box-wrapper::before {
	position: absolute;
	top: 1px;
	left: 0;
	content: "";
	width: 90px;
	height: 1px;
	background: linear-gradient(90deg, #FF0808 30%, rgba(11, 14, 19, 0) 100%);
	animation: slideBorder 3s linear infinite alternate;
}
.about-wrapper-7 .about-content .about-box-wrapper::after {
	position: absolute;
	bottom: 49.5%;
	right: 0;
	left: 0;
	content: "";
	width: 90px;
	height: 1px;
	background: linear-gradient(90deg, #FF0808 30%, rgba(11, 14, 19, 0) 100%);
	animation: slideBorders 3s linear infinite alternate;
}
@media (max-width: 1199px) {
.about-wrapper-7 .about-content .about-box-wrapper::after {
	display: none;
}
}
.about-wrapper-7 .about-content .about-box-wrapper .about-box-item {
	display: flex;
	align-items: center;
	gap: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 470px) {
.about-wrapper-7 .about-content .about-box-wrapper .about-box-item {
	flex-wrap: wrap;
}
}
.about-wrapper-7 .about-content .about-box-wrapper .about-box-item .about-box {
	display: flex;
	gap: 10px;
	padding: 22px 10px;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 1199px) {
.about-wrapper-7 .about-content .about-box-wrapper .about-box-item .about-box {
	flex-wrap: wrap;
}
}
@media (max-width: 470px) {
.about-wrapper-7 .about-content .about-box-wrapper .about-box-item .about-box {
	padding: 22px 25px;
}
}
.about-wrapper-7 .about-content .about-box-wrapper .about-box-item .about-box .icon img {
	transform: scale(1.1);
	transition: all 0.4s ease-in-out;
}
.about-wrapper-7 .about-content .about-box-wrapper .about-box-item .about-box.bg-color {
	background-color: rgb(0, 0, 0);
}
.about-wrapper-7 .about-content .about-box-wrapper .about-box-item .about-box.border-none {
	border-right: none;
}
.about-wrapper-7 .about-content .about-box-wrapper .about-box-item .about-box .content h5 {
	color: var(--white);
	margin-bottom: 5px;
}
@media (max-width: 1199px) {
.about-wrapper-7 .about-content .about-box-wrapper .about-box-item .about-box .content h5 {
	font-size: 18px;
}
}
@media (max-width: 470px) {
.about-wrapper-7 .about-content .about-box-wrapper .about-box-item .about-box .content h5 {
	font-size: 14px;
}
}
.about-wrapper-7 .about-content .about-box-wrapper .about-box-item .about-box .content p {
	font-weight: 500;
}
 @-webkit-keyframes rippleOne {
 70% {
 -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
 box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
}
 100% {
 -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
 box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
}
}
@keyframes rippleOne {
 70% {
 -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
 box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
}
 100% {
 -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
 box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
}
}
@keyframes cir36 {
 100% {
 transform: rotate(360deg);
}
}
@keyframes rounded {
 50% {
 transform: rotate(15deg);
}
}
@keyframes up-down {
 0% {
 transform: translateY(10px);
}
 100% {
 transform: translateY(-10px);
}
}
@-webkit-keyframes spinner {
 to {
 -webkit-transform: rotateZ(360deg);
 transform: rotateZ(360deg);
}
}
@keyframes spinner {
 to {
 -webkit-transform: rotateZ(360deg);
 transform: rotateZ(360deg);
}
}
@-webkit-keyframes letters-loading {
 0%, 75%, 100% {
 opacity: 0;
 transform: rotateY(-90deg);
}
 25%, 50% {
 opacity: 1;
 transform: rotateY(0deg);
}
}
@keyframes letters-loading {
 0%, 75%, 100% {
 opacity: 0;
 transform: rotateY(-90deg);
}
 25%, 50% {
 opacity: 1;
 transform: rotateY(0deg);
}
}
@keyframes loaderspin {
 0% {
 transform: translate(-50%, -50%) rotate(0deg);
}
 100% {
 transform: translate(-50%, -50%) rotate(360deg);
}
}
@keyframes tpswing {
 0% {
 -webkit-transform: rotate(20deg);
 -ms-transform: rotate(20deg);
 transform: rotate(20deg);
}
 100% {
 -webkit-transform: rotate(0deg);
 -ms-transform: rotate(0deg);
 transform: rotate(0deg);
}
}
@keyframes width {
 0% {
 width: 0%;
}
 100% {
 width: 100%;
}
}
@-webkit-keyframes width {
 0% {
 width: 0%;
}
 100% {
 width: 100%;
}
}
@-webkit-keyframes loaderspin {
 0% {
 transform: translate(-50%, -50%) rotate(0deg);
}
 100% {
 transform: translate(-50%, -50%) rotate(360deg);
}
}
@keyframes loaderpulse {
 0% {
 transform: scale(1);
}
 100% {
 transform: scale(1.2);
}
}
@keyframes rounded {
 50% {
 transform: rotate(20deg);
}
}
@keyframes cir36 {
 100% {
 transform: rotate(360deg);
}
}
.float-bob-y {
	-webkit-animation-name: float-bob-y;
	animation-name: float-bob-y;
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}
 @-webkit-keyframes float-bob-y {
 0% {
 -webkit-transform: translateY(-30px);
 transform: translateY(-30px);
}
 50% {
 -webkit-transform: translateY(-10px);
 transform: translateY(-10px);
}
 100% {
 -webkit-transform: translateY(-30px);
 transform: translateY(-30px);
}
}
@keyframes float-bob-y {
 0% {
 -webkit-transform: translateY(-30px);
 transform: translateY(-30px);
}
 50% {
 -webkit-transform: translateY(-10px);
 transform: translateY(-10px);
}
 100% {
 -webkit-transform: translateY(-30px);
 transform: translateY(-30px);
}
}
.float-bob-x {
	-webkit-animation-name: float-bob-x;
	animation-name: float-bob-x;
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}
 @-webkit-keyframes float-bob-x {
 0% {
 -webkit-transform: translateX(0px);
 transform: translateX(30px);
}
 50% {
 -webkit-transform: translateX(10px);
 transform: translateX(10px);
}
 100% {
 -webkit-transform: translateX(30px);
 transform: translateX(30px);
}
}
@keyframes float-bob-x {
 0% {
 -webkit-transform: translateX(30px);
 transform: translateX(30px);
}
 50% {
 -webkit-transform: translateX(10px);
 transform: translateX(10px);
}
 100% {
 -webkit-transform: translateX(30px);
 transform: translateX(30px);
}
}
@keyframes bounce-x {
 0% {
 -webkit-transform: translateX(0);
 transform: translateX(0);
}
 50% {
 -webkit-transform: translateX(30px);
 transform: translateX(30px);
}
 100% {
 -webkit-transform: translateX(0);
 transform: translateX(0);
}
}
.bounce-x {
	-webkit-animation: bounce-x 7s infinite linear;
	animation: bounce-x 7s infinite linear;
}
 @keyframes criss-cross-left {
 0% {
 left: -20px;
}
 50% {
 left: 50%;
 width: 20px;
 height: 20px;
}
 100% {
 left: 50%;
 width: 375px;
 height: 375px;
}
}
@keyframes criss-cross-right {
 0% {
 right: -20px;
}
 50% {
 right: 50%;
 width: 20px;
 height: 20px;
}
 100% {
 right: 50%;
 width: 375px;
 height: 375px;
}
}
@keyframes rotated2 {
 0% {
 transform: rotate(0);
}
 100% {
 transform: rotate(-360deg);
}
}
@keyframes wave {
 0% {
 transform: translateX(0);
}
 50% {
 transform: translateX(-25%);
}
 100% {
 transform: translateX(-50%);
}
}
@keyframes zoom {
 0% {
 transform: scale(0.5);
}
 50% {
 transform: scale(1);
}
 100% {
 transform: scale(0.5);
}
}
@keyframes translateY2 {
 0% {
 -webkit-transform: translateY(-30px);
 -moz-transform: translateY(-30px);
 -ms-transform: translateY(-30px);
 -o-transform: translateY(-30px);
 transform: translateY(-30px);
}
 100% {
 -webkit-transform: translateY(20px);
 -moz-transform: translateY(20px);
 -ms-transform: translateY(20px);
 -o-transform: translateY(20px);
 transform: translateY(20px);
}
}
@keyframes translateX2 {
 0% {
 -webkit-transform: translateX(-30px);
 -moz-transform: translateX(-30px);
 -ms-transform: translateX(-30px);
 -o-transform: translateX(-30px);
 transform: translateX(-30px);
}
 100% {
 -webkit-transform: translatXY(20px);
 -moz-transform: translateX(20px);
 -ms-transform: translateX(20px);
 -o-transform: translateX(20px);
 transform: translateX(20px);
}
}
@keyframes moving {
 0% {
 transform: translatey(0px);
}
 20% {
 transform: translateX(-50px);
}
 50% {
 transform: translatey(-40px);
}
 100% {
 transform: translatey(0px);
}
}
/*img-animation**********************/
.img-custom-anim-right {
	animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
	opacity: 0;
}
 @keyframes img-anim-right {
 0% {
 transform: translateX(5%);
 clip-path: inset(0 0 0 100%);
 opacity: 0;
}
 100% {
 transform: translateX(0);
 clip-path: inset(0 0 0 0);
 opacity: 1;
}
}
.img-custom-anim-left {
	animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
	opacity: 0;
}
 @keyframes img-anim-left {
 0% {
 transform: translateX(-5%);
 clip-path: inset(0 100% 0 0);
 opacity: 0;
}
 100% {
 transform: translateX(0);
 clip-path: inset(0 0 0 0);
 opacity: 1;
}
}
.img-custom-anim-top {
	animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
	opacity: 0;
}
 @keyframes img-anim-top {
 0% {
 transform: translateY(-5%);
 clip-path: inset(0 0 100% 0);
 opacity: 0;
}
 100% {
 transform: translateY(0);
 clip-path: inset(0 0 0 0);
 opacity: 1;
}
}
@keyframes slideInLeft {
 to {
 opacity: 1;
 transform: translateX(0);
}
}
@keyframes slideInRight {
 to {
 opacity: 1;
 transform: translateX(0);
}
}
@keyframes shine {
 0% {
 left: -100%;
}
 50% {
 left: 100%;
}
 100% {
 left: 100%;
}
}
.animation-infinite {
	animation: ShapeAnim 80s linear infinite;
	height: 30px;
	width: 100%;
	background-repeat: repeat;
	overflow: hidden;
}
 @keyframes ShapeAnim {
 0% {
 background-position: top left;
}
 100% {
 background-position: top left 2000px;
}
}
@keyframes strokeColorChange {
 0% {
 -webkit-text-stroke-color: white;
}
 25% {
 -webkit-text-stroke-color: #00ffff;
}
 50% {
 -webkit-text-stroke-color: #ff00ff;
}
 75% {
 -webkit-text-stroke-color: #ffff00;
}
 100% {
 -webkit-text-stroke-color: white;
}
}
@keyframes strokeColorChange1 {
 0% {
 -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
}
 25% {
 -webkit-text-stroke-color: rgba(0, 255, 255, 0.3);
}
 50% {
 -webkit-text-stroke-color: rgba(255, 0, 255, 0.3);
}
 75% {
 -webkit-text-stroke-color: rgba(255, 255, 0, 0.3);
}
 100% {
 -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
}
}
@keyframes strokeColorChange2 {
 100% {
 -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
}
 75% {
 -webkit-text-stroke-color: rgba(0, 255, 255, 0.3);
}
 50% {
 -webkit-text-stroke-color: rgba(255, 0, 255, 0.3);
}
 25% {
 -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
}
 0% {
 -webkit-text-stroke-color: rgba(255, 255, 0, 0.3);
}
}
.img-custom-anim-bottom {
	animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
	opacity: 0;
}
 @keyframes img-anim-bottom {
 0% {
 transform: translateY(5%);
 clip-path: inset(100% 0 0 0);
 opacity: 0;
}
 100% {
 transform: translateY(0);
 clip-path: inset(0 0 0 0);
 opacity: 1;
}
}
@keyframes sparkle {
 0% {
 opacity: 0;
 transform: scale(0.5);
}
 50% {
 opacity: 1;
 transform: scale(1.5);
}
 100% {
 opacity: 0;
 transform: scale(0.5);
}
}
@keyframes borderAnim {
 0% {
 width: 0;
}
 100% {
 width: 44px;
}
}
@keyframes typing {
 from {
 width: 0;
}
to {
	width: 17ch;
} /* Number of characters */
}
@keyframes blink {
 0%, 100% {
 border-color: transparent;
}
 50% {
 border-color: red;
}
}
.brand-image {
	text-align: center;
}
.brand-image img {
	filter: grayscale(100%) brightness(35%) contrast(100%);
	transition: all 0.4s ease-in-out;
}
.brand-image:hover img {
	filter: none;
}
.brand-slider-2 {
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 25px;
	text-align: center;
}
.brand-image-4 {
	text-align: center;
	background-color: #121511;
	padding: 24px 0;
	text-align: center;
}
.brand-item-3 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 60px;
}
@media (max-width: 1399px) {
.brand-item-3 {
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 30px;
}
}
.brand-item-3 .brand-image-3 img {
	transition: 0.3s;
	filter: grayscale(100%) brightness(35%) contrast(100%);
}
@media (max-width: 991px) {
.brand-item-3 .brand-image-3 img {
	width: 70px;
}
}
@media (max-width: 767px) {
.brand-item-3 .brand-image-3 img {
	width: 55px;
}
}
.brand-item-3 .brand-image-3:hover img {
	filter: none;
	animation: zoomIn 0.5s linear;
}
.brand-section-3 .line-slider {
	margin-top: 55px;
}
@media (max-width: 1399px) {
.brand-section-3 .line-slider {
	margin-top: 30px;
}
}
.brand-section-3 .content h6 {
	text-transform: uppercase;
}
.brand-box {
	border: 1px solid rgba(112, 106, 106, 0.24);
	background: var(--bg);
	padding: 25px 60px;
}
@media (max-width: 1199px) {
.brand-box {
	padding: 25px 30px;
}
}
.brand-box .brand-image-5 img {
	transform: scale(1.1);
	transition: all 0.4s ease-in-out;
}
@media (max-width: 470px) {
.brand-box .brand-image-5 img {
	width: 70px;
	height: 70px;
}
}
.brand-box:hover .brand-image-5 img {
	transform: scale(1.2);
}
.gt-contact-wrapper-6 .gt-contact-image {
	margin-left: -206px;
	position: relative;
	z-index: 9;
	transform: translateX(-100%);
	animation: slideInLeft 1.5s ease-out forwards;
}
@media (max-width: 1600px) {
.gt-contact-wrapper-6 .gt-contact-image {
	margin-left: 0;
	max-width: initial;
}
}
.gt-contact-wrapper-6 .gt-contact-image img {
	width: 100%;
	height: 100%;
}
.gt-contact-wrapper-6 .gt-contact-image .blur-shape {
	position: absolute;
	left: -4%;
	top: 6%;
	z-index: -1;
}
.gt-contact-wrapper-6 .gt-contact-image .blur-shape img {
	width: initial;
	height: initial;
}
@media (max-width: 1600px) {
.gt-contact-wrapper-6 .gt-contact-image .blur-shape {
	display: none;
}
}
.gt-contact-wrapper-6 .gt-contact-content {
	padding: 0px 0px 120px;
}
@media (max-width: 991px) {
.gt-contact-wrapper-6 .gt-contact-content {
	padding: 0px 0px 0;
}
}
.gt-contact-wrapper-6 .gt-contact-content .gt-comment-form-wrap {
	background-color: var(--bg);
	padding: 30px;
	position: relative;
	border: 1px solid rgba(255, 8, 8, 0.2);
	margin-top: 30px;
}
.gt-contact-wrapper-6 .gt-contact-content .form-clt span {
	color: var(--white);
	display: inline-block;
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 700;
}
.gt-contact-wrapper-6 .gt-contact-content .form-clt input, .gt-contact-wrapper-6 .gt-contact-content .form-clt textarea {
	width: 100%;
	outline: none;
	border: none;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.05);
	padding: 16px 20px;
	font-weight: 400;
	color: var(--text);
}
.gt-contact-wrapper-6 .gt-contact-content .form-clt input::placeholder, .gt-contact-wrapper-6 .gt-contact-content .form-clt textarea::placeholder {
 color: var(--text);
}
.gt-contact-wrapper-6 .gt-contact-content .form-clt textarea {
	padding-bottom: 100px;
	resize: none;
}
.gt-contact-us-wrapper .gt-comment-form-wrap {
	padding: 30px;
	background-color: var(--bg-2);
	border-radius: 10px;
}
.gt-contact-us-wrapper .gt-comment-form-wrap h4 {
	margin-top: 0;
	margin-bottom: 0;
}
.gt-contact-us-wrapper .gt-comment-form-wrap p {
	margin-bottom: 20px;
}
.gt-contact-us-wrapper .gt-comment-form-wrap .form-clt span {
	color: var(--white);
	display: inline-block;
	margin-bottom: 5px;
	font-size: 14px;
	font-weight: 700;
}
.gt-contact-us-wrapper .gt-comment-form-wrap .form-clt input, .gt-contact-us-wrapper .gt-comment-form-wrap .form-clt textarea {
	width: 100%;
	outline: none;
	border: none;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.05);
	padding: 12px 20px;
	font-weight: 400;
	color: var(--text);
	border-radius: 10px;
}
.gt-contact-us-wrapper .gt-comment-form-wrap .form-clt input::placeholder, .gt-contact-us-wrapper .gt-comment-form-wrap .form-clt textarea::placeholder {
 color: var(--text);
}
.gt-contact-us-wrapper .gt-comment-form-wrap .form-clt textarea {
	padding-bottom: 70px;
	resize: none;
}
.gt-contact-us-wrapper .gt-contact-bg {
	position: relative;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.gt-contact-us-wrapper .gt-contact-bg .gt-contact-content {
	padding: 40px;
	position: relative;
}
@media (max-width: 1199px) {
.gt-contact-us-wrapper .gt-contact-bg .gt-contact-content {
	padding: 30px;
}
}
.gt-contact-us-wrapper .gt-contact-bg .gt-contact-content h3 {
	font-size: 32px;
	color: var(--white);
	margin-bottom: 10px;
}
@media (max-width: 1199px) {
.gt-contact-us-wrapper .gt-contact-bg .gt-contact-content h3 {
	font-size: 30px;
}
}
.gt-contact-us-wrapper .gt-contact-bg .gt-contact-content p {
	border-bottom: 1.2px solid rgba(191, 191, 191, 0.24);
	padding-bottom: 24px;
	margin-bottom: 24px;
	color: var(--white);
}
.gt-contact-us-wrapper .gt-contact-bg .gt-contact-content .gt-contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}
.gt-contact-us-wrapper .gt-contact-bg .gt-contact-content .gt-contact-item .gt-icon {
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	border: 1.2px solid rgba(191, 191, 191, 0.24);
	color: var(--theme);
	font-size: 24px;
}
.gt-contact-us-wrapper .gt-contact-bg .gt-contact-content .gt-contact-item .gt-list li {
	font-size: 16px;
	font-weight: 700;
	font-family: "Chakra Petch", sans-serif;
	color: var(--white);
}
@media (max-width: 1199px) {
.gt-contact-us-wrapper .gt-contact-bg .gt-contact-content .gt-contact-item .gt-list li {
	font-size: 14px;
}
}
.gt-contact-us-wrapper .gt-contact-bg .gt-contact-content .gt-contact-item .gt-list li span {
	color: var(--white);
}
.gt-contact-us-wrapper .gt-contact-bg .gt-contact-content .gt-contact-item .gt-list li a {
	color: var(--white);
}
.gt-contact-us-wrapper .gt-bg-image img {
	width: 100%;
	height: 100%;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	border-top-left-radius: 0;
}
.gt-map-items .googpemap iframe {
	width: 100%;
	height: 478px;
	border-radius: 10px;
}
@media (max-width: 575px) {
.gt-map-items .googpemap iframe {
	height: 300px;
}
}
.gt-contacts-wrapper {
	padding: 40px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media (max-width: 1199px) {
.gt-contacts-wrapper {
	flex-wrap: wrap;
	gap: 20px;
}

}
.gt-contacts-wrapper .gt-contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
}
.gt-contacts-wrapper .gt-contact-item .gt-icon {
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	border: 1.2px solid rgba(191, 191, 191, 0.24);
	color: var(--theme);
	font-size: 24px;
}
.gt-contacts-wrapper .gt-contact-item .gt-list li {
	font-size: 16px;
	font-weight: 700;
	font-family: "Days One", sans-serif;
	color: var(--white);
}
@media (max-width: 1199px) {
.gt-contacts-wrapper .gt-contact-item .gt-list li {
	font-size: 14px;
}
}
.gt-contacts-wrapper .gt-contact-item .gt-list li span {
	color: var(--white);
}
.gt-contacts-wrapper .gt-contact-item .gt-list li a {
	color: var(--white);
}
.gt-contacts-wrapper {
	padding: 40px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media (max-width: 1199px) {
.gt-contacts-wrapper {
	flex-wrap: wrap;
	gap: 20px;
}
}
.gt-contacts-wrapper .gt-contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
}
.gt-contacts-wrapper .gt-contact-item .gt-icon {
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	border: 1.2px solid rgba(191, 191, 191, 0.24);
	color: var(--theme);
	font-size: 24px;
}
.gt-contacts-wrapper .gt-contact-item .gt-list li {
	font-size: 16px;
	font-weight: 700;
	font-family: "Days One", sans-serif;
	color: var(--white);
}
@media (max-width: 1199px) {
.gt-contacts-wrapper .gt-contact-item .gt-list li {
	font-size: 14px;
}
}
.gt-contacts-wrapper .gt-contact-item .gt-list li span {
	color: var(--white);
}
.gt-contacts-wrapper .gt-contact-item .gt-list li a {
	color: var(--white);
}
.cta-wrapper {
	background-color: var(--theme);
	padding: 28px 50px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	margin-top: 160px;
}
@media (max-width: 1399px) {
.cta-wrapper {
	margin-top: 0;
}
}
@media (max-width: 991px) {
.cta-wrapper {
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
	text-align: center;
}
}
.cta-wrapper .cta-image {
	position: absolute;
	bottom: 0;
	left: 26%;
}
@media (max-width: 1399px) {
.cta-wrapper .cta-image {
	display: none;
}
}
.cta-wrapper .content p {
	color: #0B0E13;
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	margin-bottom: 10px;
}
.cta-wrapper .content h3 {
	color: var(--header);
}
.cta-wrapper .contact-right {
	display: flex;
	align-items: center;
	gap: 50px;
}
@media (max-width: 767px) {
.cta-wrapper .contact-right {
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
}
}
.cta-wrapper .contact-right .contact-info {
	border-right: 1px solid rgba(11, 14, 19, 0.2);
	padding-right: 50px;
}
@media (max-width: 991px) {
.cta-wrapper .contact-right .contact-info {
	padding-right: 0;
	border-right: none;
}
}
.cta-wrapper .contact-right .contact-info h3 {
	font-family: "Chakra Petch", sans-serif;
	color: #0B0E13;
	font-size: 24px;
	font-weight: 700;
	text-transform: capitalize;
}
.cta-wrapper .contact-right .contact-info p {
	font-weight: 700;
}
.cta-wrapper .contact-right .contact-info p a {
	color: #0B0E13;
}
.cta-wrapper .contact-right .theme-btn {
	background-color: #0B0E13;
	color: var(--theme);
}
.cta-wrapper .contact-right .theme-btn:hover {
	color: #0B0E13;
}
 @media (max-width: 1399px) {
.gt-cta-download-app-wrapper {
	padding-bottom: 120px;
}
}
@media (max-width: 991px) {
.gt-cta-download-app-wrapper {
	padding: 0;
}
}
.gt-cta-download-app-wrapper .gt-cta-image {
	margin-bottom: -70px;
}
@media (max-width: 1399px) {
.gt-cta-download-app-wrapper .gt-cta-image {
	margin-bottom: 0;
}
}
@media (max-width: 991px) {
.gt-cta-download-app-wrapper .gt-cta-image {
	text-align: center;
}
}
@media (max-width: 575px) {
.gt-cta-download-app-wrapper .gt-cta-image {
	margin-bottom: -35px;
}
}
.gt-cta-download-app-wrapper .gt-cta-image img {
	width: 100%;
	height: 100%;
}
@media (max-width: 991px) {
.gt-cta-download-app-wrapper .gt-cta-content {
	text-align: center;
}
}
.gt-cta-download-app-wrapper .gt-cta-content .gt-section-title-2 h6 {
	padding: 0;
}
.gt-cta-download-app-wrapper .gt-cta-content .gt-section-title-2 h6::before, .gt-cta-download-app-wrapper .gt-cta-content .gt-section-title-2 h6::after {
	display: none;
}
.gt-cta-download-app-wrapper .gt-cta-content .gt-cta-text {
	font-size: 18px;
	color: var(--white);
	margin-top: 30px;
}
@media (max-width: 1199px) {
.gt-cta-download-app-wrapper .gt-cta-content .gt-cta-text {
	font-size: 16px;
}
}
@media (max-width: 470px) {
.gt-cta-download-app-wrapper .gt-cta-content .gt-cta-text {
	font-size: 14px;
}
}
.gt-cta-download-app-wrapper .gt-cta-content .gt-app-button {
	margin-top: 45px;
	display: flex;
	align-items: center;
	gap: 30px;
}
@media (max-width: 991px) {
.gt-cta-download-app-wrapper .gt-cta-content .gt-app-button {
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 30px;
	justify-content: center;
}
}
.gt-cta-download-app-section-4 {
	position: relative;
	z-index: 9;
}
.gt-cta-download-app-section-4::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(97deg, var(--Primary-500, #ADFF00) 12.12%, rgba(11, 15, 19, 0.48) 70.01%);
	z-index: -1;
}
.gt-cta-download-app-section-4 .gt-x-shape {
	position: absolute;
	left: 0;
	bottom: 0;
	top: 0;
	z-index: -1;
}
@media (max-width: 1199px) {
.gt-cta-download-app-section-4 .gt-x-shape {
	display: none;
}
}
.gt-cta-download-app-section-4 .gt-x-shape img {
	height: 100%;
}
.cta-newslettr-wrapper-3 .cta-newsletter-content-3 {
	display: flex;
	align-items: center;
	gap: 110px;
}
@media (max-width: 1399px) {
.cta-newslettr-wrapper-3 .cta-newsletter-content-3 {
	flex-wrap: wrap;
	gap: 30px;
}
}
.cta-newslettr-wrapper-3 .cta-newsletter-content-3 .icon-item {
	display: flex;
	align-items: center;
	gap: 20px;
}
.cta-newslettr-wrapper-3 .cta-newsletter-content-3 .icon-item h5 {
	font-size: 18px;
	font-weight: 400;
	color: var(--white);
	text-transform: capitalize;
}
.cta-newslettr-wrapper-3 .cta-newsletter-content-3 form {
	max-width: 542px;
	width: 100%;
}
.cta-newslettr-wrapper-3 .cta-newsletter-content-3 .form-clt {
	position: relative;
}
.cta-newslettr-wrapper-3 .cta-newsletter-content-3 .form-clt .input-icon {
	top: 50%;
	left: 25px;
	transform: translateY(-50%);
	position: absolute;
}
@media (max-width: 575px) {
.cta-newslettr-wrapper-3 .cta-newsletter-content-3 .form-clt .input-icon {
	left: 10px;
}
}
.cta-newslettr-wrapper-3 .cta-newsletter-content-3 .form-clt input {
	width: 100%;
	outline: none;
	border: none;
	background-color: var(--black);
	color: #797979;
	text-transform: uppercase;
	line-height: 1;
	padding: 20px 70px;
	border-radius: 10px;
	max-width: 542px;
}
@media (max-width: 575px) {
.cta-newslettr-wrapper-3 .cta-newsletter-content-3 .form-clt input {
	padding: 20px 48px;
	font-size: 14px;
}
}
.cta-newslettr-wrapper-3 .cta-newsletter-content-3 .form-clt input::placeholder {
 color: #797979;
}
.cta-newslettr-wrapper-3 .cta-newsletter-content-3 .form-clt .theme-btn {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	color: var(--header);
	background-image: none;
	background: var(--theme);
	text-transform: uppercase;
	height: 60px;
	border-radius: 10px;
	clip-path: polygon(0 0, 100% 0%, 100% 100%, 11% 100%);
}
.cta-newslettr-wrapper-3 .cta-newsletter-content-3 .form-clt .theme-btn:hover {
	background-color: var(--theme);
}
@media (max-width: 470px) {
.cta-newslettr-wrapper-3 .cta-newsletter-content-3 .form-clt .theme-btn {
	height: 57px;
	padding: 0 20px;
}
}
.cta-newslettr-wrapper-3 .social-icon {
	gap: 11px;
	justify-content: end;
}
@media (max-width: 1399px) {
.cta-newslettr-wrapper-3 .social-icon {
	justify-content: start;
}
}
.cta-newslettr-wrapper-3 .social-icon a {
	display: inline-block;
	width: 61px;
	height: 61px;
	line-height: 61px;
	border-radius: 100px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: #1C1D20;
	text-align: center;
	font-size: 22px;
}
@media (max-width: 575px) {
.cta-newslettr-wrapper-3 .social-icon a {
	width: 50px;
	height: 50px;
	line-height: 50px;
}
}
.cta-newslettr-wrapper-3 .social-icon a i {
	-webkit-transition: all 900ms ease;
	transition: all 900ms ease;
}
.cta-newslettr-wrapper-3 .social-icon a:hover {
	color: var(--theme);
	border: 1px solid var(--theme);
}
.cta-newslettr-wrapper-3 .social-icon a:hover i {
	-webkit-transform: rotateY(360deg);
	transform: rotateY(360deg);
}
.cta-newsletter-section-3 {
	position: relative;
	padding: 55px 0;
}
@media (max-width: 1399px) {
.cta-newsletter-section-3 {
	background-color: #1C1D20;
}
}
.cta-newsletter-section-3 .container-fluid {
	padding: 0 255px;
}
@media (max-width: 1899px) {
.cta-newsletter-section-3 .container-fluid {
	padding: 0 70px;
}
}
@media (max-width: 1600px) {
.cta-newsletter-section-3 .container-fluid {
	padding: 0 50px;
}
}
@media (max-width: 1399px) {
.cta-newsletter-section-3 .container-fluid {
	padding: 0 30px;
}
}
@media (max-width: 575px) {
.cta-newsletter-section-3 .container-fluid {
	padding: 0 15px;
}
}
.cta-newsletter-section-3 .bg-shape-1 {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
}
@media (max-width: 1600px) {
.cta-newsletter-section-3 .bg-shape-1 {
	left: -16%;
}
}
@media (max-width: 1399px) {
.cta-newsletter-section-3 .bg-shape-1 {
	display: none;
}
}
.cta-newsletter-section-3 .bg-shape-2 {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
}
@media (max-width: 1899px) {
.cta-newsletter-section-3 .bg-shape-2 {
	right: -10%;
}
}
@media (max-width: 1600px) {
.cta-newsletter-section-3 .bg-shape-2 {
	right: -17%;
}
}
@media (max-width: 1399px) {
.cta-newsletter-section-3 .bg-shape-2 {
	display: none;
}
}
.instagram-image {
	position: relative;
	overflow: hidden;
}
.instagram-image::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	top: 0;
	bottom: 0px;
	right: 0;
	background: rgba(28, 29, 32, 0.8);
	transition: -webkit-transform 0.4s ease;
	transition: transform 0.4s ease;
	transition: transform 0.4s ease, -webkit-transform 0.4s ease;
	transform-origin: top right;
	-webkit-transform: scale(1, 0);
	transform: scale(1, 0);
	z-index: 9;
}
.instagram-image img {
	width: 100%;
	height: 100%;
	transform: scale(1.02);
	transition: all 1.5s ease-out;
}
.instagram-image .icon {
	display: inline-block;
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 18px;
	color: var(--white);
	transition: all 0.4s ease-in-out;
	opacity: 0;
	visibility: hidden;
	z-index: 99;
	width: 46px;
	height: 46px;
	line-height: 46px;
	text-align: center;
	border-radius: 50%;
	background-color: #0B0E13;
}
.instagram-image .icon:hover {
	background: var(--theme);
	color: var(--header);
}
.instagram-image:hover .icon {
	top: 50%;
	opacity: 1;
	visibility: visible;
}
.instagram-image:hover img {
	-webkit-transform: scale3d(1.1, 1.1, 1);
	transform: scale3d(1.1, 1.1, 1);
}
.instagram-image:hover::before {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	transform-origin: bottom center;
}
.gt-faq-wrapper .gt-faq-item .gt-faq-content h4 {
	margin-bottom: 10px;
}
.gt-faq-wrapper .gt-faq-item .gt-faq-content p {
	margin-bottom: 20px;
}
.gt-faq-wrapper .gt-faq-item .gt-faq-content .accordion-item {
	border: 0;
	background-color: var(--bg-2);
	box-shadow: var(--box-shadow);
	border-radius: 10px;
}
.gt-faq-wrapper .gt-faq-item .gt-faq-content .accordion-item .accordion-header .accordion-button {
	font-weight: 400;
	color: var(--theme);
	border: 0;
	border-radius: 0;
	box-shadow: none;
	background-color: var(--bg-2);
	padding: 25px 30px 0;
	text-transform: capitalize;
	font-size: 18px;
	border: none;
	padding: 20px 20px 0;
	font-family: "Chakra Petch", sans-serif;
	border-radius: 10px;
}
.gt-faq-wrapper .gt-faq-item .gt-faq-content .accordion-item .accordion-header .accordion-button::after {
	content: "\f078";
	font-family: "Font Awesome 6 Pro";
	background: transparent;
	font-weight: 500;
	transition: all 0.3s ease-in-out !important;
	color: var(--white);
}
.gt-faq-wrapper .gt-faq-item .gt-faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
	content: "\f077";
	font-family: "Font Awesome 6 Pro";
	background: transparent;
	font-weight: 500;
	color: var(--theme);
	transform: rotate(0);
}
.gt-faq-wrapper .gt-faq-item .gt-faq-content .accordion-item .accordion-header .accordion-button.collapsed {
	background-color: var(--bg-2);
	padding: 25px 20px;
	color: var(--white);
}
.gt-faq-wrapper .gt-faq-item .gt-faq-content .accordion-item .accordion-collapse .accordion-body {
	padding-right: 30px;
	padding-left: 50px;
	padding-top: 15px;
	color: var(--text);
	background-color: var(--bg-2);
	font-weight: 500;
	padding-bottom: 0;
	border-radius: 10px;
}
@media (max-width: 1399px) {
.gt-faq-wrapper .gt-faq-item .gt-faq-content .accordion-item .accordion-collapse .accordion-body {
	padding-right: 30px;
}
}
@media (max-width: 991px) {
.gt-faq-wrapper .gt-faq-item .gt-faq-content .accordion-item .accordion-collapse .accordion-body {
	padding-right: 30px;
}
}
@media (max-width: 575px) {
.gt-faq-wrapper .gt-faq-item .gt-faq-content .accordion-item .accordion-collapse .accordion-body {
	padding-left: 23px;
}
}
.gt-faq-wrapper .gt-faq-item .gt-faq-content .accordion-item .accordion-collapse .thumb {
	margin-top: 30px;
}
.gt-faq-wrapper .gt-faq-item .gt-faq-content .accordion-item .accordion-collapse .thumb img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
.gt-faq-wrapper .gt-contact-bg {
	position: relative;
	border-radius: 10px;
}
.gt-faq-wrapper .gt-contact-bg .gt-contact-content {
	padding: 40px;
	position: relative;
}
@media (max-width: 1199px) {
.gt-faq-wrapper .gt-contact-bg .gt-contact-content {
	padding: 30px;
}
}
.gt-faq-wrapper .gt-contact-bg .gt-contact-content h3 {
	font-size: 32px;
	color: var(--white);
	margin-bottom: 10px;
}
@media (max-width: 1199px) {
.gt-faq-wrapper .gt-contact-bg .gt-contact-content h3 {
	font-size: 30px;
}
}
.gt-faq-wrapper .gt-contact-bg .gt-contact-content p {
	border-bottom: 1.2px solid rgba(191, 191, 191, 0.24);
	padding-bottom: 24px;
	margin-bottom: 24px;
	color: var(--white);
}
.gt-faq-wrapper .gt-contact-bg .gt-contact-content .gt-contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}
.gt-faq-wrapper .gt-contact-bg .gt-contact-content .gt-contact-item .gt-icon {
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	border: 1.2px solid rgba(191, 191, 191, 0.24);
	color: var(--theme);
	font-size: 24px;
}
.gt-faq-wrapper .gt-contact-bg .gt-contact-content .gt-contact-item .gt-list li {
	font-size: 16px;
	font-weight: 700;
	font-family: "Chakra Petch", sans-serif;
	color: var(--white);
}
@media (max-width: 1199px) {
.gt-faq-wrapper .gt-contact-bg .gt-contact-content .gt-contact-item .gt-list li {
	font-size: 14px;
}
}
.gt-faq-wrapper .gt-contact-bg .gt-contact-content .gt-contact-item .gt-list li span {
	color: var(--white);
}
.gt-faq-wrapper .gt-contact-bg .gt-contact-content .gt-contact-item .gt-list li a {
	color: var(--white);
}
.gt-faq-wrapper.gt-bg-wrapper {
	position: relative;
	padding: 120px 0;
}
@media (max-width: 1199px) {
.gt-faq-wrapper.gt-bg-wrapper {
	padding: 100px 0;
}
}
@media (max-width: 991px) {
.gt-faq-wrapper.gt-bg-wrapper {
	padding: 80px 0;
}
}
.gt-faq-wrapper.gt-bg-wrapper::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(28, 29, 32, 0.85);
}
.gt-faq-wrapper.gt-bg-wrapper .gt-faq-item {
	position: relative;
	text-align: center;
}
@media (max-width: 575px) {
.gt-faq-wrapper.gt-bg-wrapper .gt-faq-item {
	margin-top: 30px;
}
}
.game-feature-box-items {
	margin-top: 30px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: #1C1D20;
	padding: 90px 75px;
	text-align: center;
	position: relative;
	transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
.game-feature-box-items {
	padding-left: 40px;
	padding-right: 40px;
}
}
.game-feature-box-items .shape-1 {
	position: absolute;
	top: 20px;
	left: 20px;
}
.game-feature-box-items .shape-1 svg path {
	transition: all 0.4s ease-in-out;
}
.game-feature-box-items .shape-2 {
	position: absolute;
	bottom: 20px;
	right: 20px;
}
.game-feature-box-items .shape-2 svg path {
	transition: all 0.4s ease-in-out;
}
.game-feature-box-items .icon {
	width: 65px;
	height: 65px;
	line-height: 65px;
	border-radius: 50%;
	background-color: #0B0E13;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	z-index: 1;
	-webkit-transition: all 900ms ease;
	transition: all 900ms ease;
}
.game-feature-box-items .icon::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--theme);
	border-radius: 50%;
	transform: translateY(-101%);
	opacity: 0;
	transition: all 0.4s ease-in-out;
	visibility: hidden;
	z-index: -1;
}
.game-feature-box-items .icon svg {
	-webkit-transition: all 900ms ease;
	transition: all 900ms ease;
}
.game-feature-box-items .icon svg path {
	transition: all 0.4s ease-in-out;
}
.game-feature-box-items h4 {
	font-size: 20px;
	font-weight: 400;
	margin-top: 15px;
	text-transform: capitalize;
}
.game-feature-box-items:hover {
	border: 1px solid var(--theme);
}
.game-feature-box-items:hover .shape-1 svg path {
	fill: var(--theme);
}
.game-feature-box-items:hover .shape-2 svg path {
	fill: var(--theme);
}
.game-feature-box-items:hover .icon::before {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.game-feature-box-items:hover .icon svg {
	-webkit-transform: rotateY(360deg);
	transform: rotateY(360deg);
}
.game-feature-box-items:hover .icon svg path {
	fill: #0B0E13;
}
.game-feature-box-2 {
	background-color: var(--theme);
	margin-top: 30px;
	padding-top: 10px;
	overflow: hidden;
	border-radius: 10px;
}
.superhero-feature-box {
	margin-top: 30px;
	border-radius: 10px;
	padding-top: 10px;
}
.superhero-feature-box .thumb {
	margin-left: -70px;
}
.video-info-items {
	padding: 150px 0;
	text-align: center;
}
@media (max-width: 767px) {
.video-info-items {
	padding: 120px 0;
}
}
.video-info-items .title {
	color: rgba(255, 255, 255, 0.25);
	text-align: center;
	font-size: 200px;
	font-weight: 400;
	letter-spacing: -4px;
	text-transform: uppercase;
	line-height: 1;
}
@media (max-width: 1600px) {
.video-info-items .title {
	font-size: 140px;
}
}
@media (max-width: 1399px) {
.video-info-items .title {
	font-size: 90px;
}
}
@media (max-width: 1199px) {
.video-info-items .title {
	display: none;
}
}
.video-info-items .video-btn {
	display: inline-block;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	line-height: 100px;
	background-color: var(--theme);
	color: var(--header);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.video-section-2 {
	position: relative;
	z-index: 9;
}
.video-section-2::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(180deg, #0B0E13 5.77%, rgba(11, 14, 19, 0) 51.44%, #0B0E13 97.12%);
}
.video-play-banner {
	margin-top: 60px;
	position: relative;
}
.video-play-banner .video-play {
	height: 600px;
	border-radius: 10px;
	object-fit: cover;
	width: 100%;
}
.gt-gaming-feature-wrapper .gt-gaming-left-item {
	position: relative;
}
.gt-gaming-feature-wrapper .gt-gaming-left-item .gt-gaming-feature-image {
	max-width: 600px;
}
@media (max-width: 1199px) {
.gt-gaming-feature-wrapper .gt-gaming-left-item .gt-gaming-feature-image {
	max-width: initial;
}
}
.gt-gaming-feature-wrapper .gt-gaming-left-item .gt-gaming-feature-image img {
	width: 100%;
	height: 100%;
	clip-path: polygon(7% 0, 100% 0, 100% 100%, 75% 100%, 0 100%, 0 17%);
}
.gt-gaming-feature-wrapper .gt-gaming-left-item .gt-red-shape {
	margin-top: 50px;
	max-width: 450px;
	margin-left: 150px;
	clip-path: polygon(0 0, 100% 0, 100% 76%, 90% 100%, 0 100%, 0% 50%);
}
@media (max-width: 1199px) {
.gt-gaming-feature-wrapper .gt-gaming-left-item .gt-red-shape {
	max-width: initial;
}
}
.gt-gaming-feature-wrapper .gt-gaming-left-item .gt-red-shape img {
	width: 100%;
	height: 100%;
}
.gt-gaming-feature-wrapper .gt-gaming-left-item .gt-bike-image {
	max-width: 516px;
	position: absolute;
	right: 50px;
	bottom: 0;
	transform: translateX(-100%);
	animation: slideInLeft 1.5s ease-out forwards;
}
.gt-gaming-feature-wrapper .gt-gaming-left-item .gt-bike-image img {
	width: 100%;
	height: 100%;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content {
	overflow: hidden;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-gaming-text {
	margin-top: 30px;
}
@keyframes slideBorder {
 0% {
 left: 0;
 right: 0;
}
 100% {
 left: 100%;
}
}
@keyframes slideBorders {
 0% {
 right: -90px;
 left: auto;
}
 100% {
 right: 100%;
 left: auto;
}
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding: 30px 0;
	margin-top: 35px;
	position: relative;
	margin-bottom: 50px;
}
@media (max-width: 1199px) {
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list {
	flex-wrap: wrap;
	gap: 25px;
}
}
@media (max-width: 767px) {
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list {
	margin-top: 30px;
	margin-bottom: 30px;
}
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list::before {
	position: absolute;
	top: -1px;
	left: 0;
	content: "";
	width: 90px;
	height: 1px;
	background: linear-gradient(90deg, #CBFE1C 30%, rgba(11, 14, 19, 0) 100%);
	animation: slideBorder 3s linear infinite alternate;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list::after {
	position: absolute;
	bottom: -1px;
	right: 0;
	left: 0;
	content: "";
	width: 90px;
	height: 1px;
	background: linear-gradient(90deg, #CBFE1C 30%, rgba(11, 14, 19, 0) 100%);
	animation: slideBorders 3s linear infinite alternate;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list li {
	display: flex;
	gap: 10px;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list li .gt-content {
	max-width: 270px;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list li .gt-content h4 {
	font-size: 24px;
	margin-bottom: 10px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 700;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list li .gt-content span {
	font-size: 18px;
	font-weight: 400;
}
@media (max-width: 1199px) {
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list li .gt-content span {
	font-size: 17px;
}
}
@media (max-width: 991px) {
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list li .gt-content span {
	font-size: 15px;
}
}
@media (max-width: 575px) {
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list li .gt-content span {
	font-size: 14px;
}
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-theme-btn {
	z-index: 999;
	display: inline-block;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-theme-btn.gt-style-border:hover .gt-text-btn::before {
	background-color: var(--theme);
}
.webkit-text-item {
	text-align: center;
	position: relative;
	margin-bottom: -20px;
}
@media (max-width: 1199px) {
.webkit-text-item {
	margin-bottom: 0;
}
}
.webkit-text-item h2 {
	text-transform: uppercase;
	line-height: 150%;
	color: transparent;

	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: white;
	background: transparent;
	animation: strokeColorChange 4s linear infinite;
}
.webkit-text-item h2 span {
	margin-right: 150px;
	display: inline-block;
}
@media (max-width: 1199px) {
.webkit-text-item h2 span {
	margin-right: 0;
}
}
.webkit-text-item .post-box {
	position: absolute;
	left: 20%;
	top: 16px;
	background-color: var(--white);
	transform: rotate(-15deg);
	border-radius: 100px;
	padding: 10px 20px;
	color: var(--bg);
	line-height: 1;
}
@media (max-width: 1199px) {
.webkit-text-item .post-box {
	display: none;
}
}
.webkit-text-item::before {
	position: absolute;
	content: "";
	left: 0;
	top: 50%;
	right: 0;
	height: 1px;
	width: 100%;
	background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 1199px) {
.webkit-text-item::before {
	display: none;
}
}
.gt-webkit-text-section {
	position: relative;
}
.gt-webkit-text-section .gt-blur-shape {
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
	top: 140%;
}
@media (max-width: 1199px) {
.gt-webkit-text-section .gt-blur-shape {
	display: none;
}
}
.gt-gaming-expertise-section {
	position: relative;
}
.gt-gaming-expertise-section .gt-section-title-area .drive-shape img {
	width: 100%;
	height: 100%;
}
@media (max-width: 1199px) {
.gt-gaming-expertise-section .gt-section-title-area .drive-shape {
	display: none;
}
}
.gt-gaming-expertise-section .right-shape {
	position: absolute;
	top: -100px;
	right: 0;
}
@media (max-width: 1199px) {
.gt-gaming-expertise-section .right-shape {
	display: none;
}
}
.gt-gaming-expertise-section .bottom-shape {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -52%;
}
.gt-progress-wrapper {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 60px;
	margin-top: 60px;
	position: relative;
	z-index: 99;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items {
	width: 100%;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items:not(:last-child) {
	margin-bottom: 25px;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items .pro-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items .pro-head .point {
	font-size: 18px;
	font-weight: 400;
	color: var(--white);
	font-family: "Days One", sans-serif;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items .pro-head .title {
	font-size: 18px;
	font-weight: 400;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items .progress {
	background: var(--white);
	justify-content: flex-start;
	align-items: center;
	position: relative;
	display: flex;
	height: 5px;
	width: 100%;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items .progress-value {
	animation: load 3s normal forwards;
	border-radius: 0;
	background: rgb(173, 255, 0);
	height: 5px;
	width: 0;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items .style-two {
	animation: load2 3s normal forwards;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items .style-three {
	animation: load3 3s normal forwards;
}
@keyframes load {
 0% {
 width: 0;
}
 100% {
 width: 90%;
}
}
@keyframes load2 {
 0% {
 width: 0;
}
 100% {
 width: 70%;
}
}
@keyframes load3 {
 0% {
 width: 0;
}
 100% {
 width: 55%;
}
}
.champion-card-item {
	margin-top: 30px;
}
.champion-card-item .champion-image {
	position: relative;
	height: 456px;
	border-radius: 10px;
}
.champion-card-item .champion-image::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(0, 0, 0, 0.4);
	opacity: 1;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}
.champion-card-item .champion-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	object-fit: cover;
}
.champion-card-item .champion-image .video-btn {
	width: 46px;
	height: 46px;
	line-height: 46px;
	display: inline-block;
	background-color: var(--theme);
	color: var(--header);
	text-align: center;
	border-radius: 50%;
	position: absolute;
	font-size: 18px;
	left: -30px;
	top: 30px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}
.champion-card-item .champion-image .champion-content {
	position: absolute;
	left: 30px;
	bottom: -30px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}
.champion-card-item .champion-image .champion-content span {
	background-color: var(--header);
	color: var(--theme);
	font-weight: 700px;
	padding: 10px;
	line-height: 1;
	border-radius: 100px;
	display: inline-block;
	margin-bottom: 20px;
}
@media (max-width: 1600px) {
.champion-card-item .champion-image .champion-content h4 {
	font-size: 20px;
}
}
.champion-card-item .champion-image .champion-content h4 a {
	color: var(--white);
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}
.champion-card-item .champion-image .champion-content h4 a:hover {
	color: var(--theme);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.champion-section .card-slider {
	margin-left: -150px;
	margin-right: -150px;
}
@media (max-width: 1399px) {
.champion-section .card-slider {
	margin-left: 0;
	margin-right: 0;
}
}
.champion-section .swiper-slide.swiper-slide-active .champion-card-item {
	border: 3px solid var(--theme);
	border-radius: 10px;
}
.champion-section .swiper-slide.swiper-slide-active .champion-card-item .champion-image::before {
	opacity: 1;
	visibility: visible;
}
.champion-section .swiper-slide.swiper-slide-active .champion-card-item .champion-image .video-btn {
	opacity: 1;
	visibility: visible;
	left: 30px;
}
.champion-section .swiper-slide.swiper-slide-active .champion-card-item .champion-image .champion-content {
	opacity: 1;
	visibility: visible;
	bottom: 30px;
}
.champion-section .section-title-area .right-ber {
	display: flex;
	align-items: center;
	gap: 80px;
	margin-top: -70px;
}
@media (max-width: 1399px) {
.champion-section .section-title-area .right-ber {
	margin-top: 0;
	gap: 30px;
}
}
.champion-section .section-title-area .right-ber .array-btn {
	display: flex;
	align-items: center;
	gap: 30px;
}
@media (max-width: 1399px) {
.champion-section .section-title-area .right-ber .array-btn {
	gap: 20px;
}
}
.champion-section .section-title-area .right-ber .array-btn .array-prev {
	width: 54px;
	height: 54px;
	line-height: 54px;
	text-align: center;
	border-radius: 100px;
	background-color: var(--white);
	color: var(--header);
	transition: all 0.4s ease-in-out;
}
.champion-section .section-title-area .right-ber .array-btn .array-prev:hover {
	background-color: var(--theme);
}
.champion-section .section-title-area .right-ber .array-btn .array-next {
	width: 54px;
	height: 54px;
	line-height: 54px;
	text-align: center;
	border-radius: 100px;
	background-color: var(--theme);
	color: var(--header);
}
.champion-section .section-title-area .right-ber .array-btn .array-next:hover {
	background-color: var(--white);
}
.champion-section .section-title-area .right-ber .nav {
	display: flex;
	align-items: center;
	gap: 50px;
}
@media (max-width: 1399px) {
.champion-section .section-title-area .right-ber .nav {
	gap: 18px;
	flex-wrap: wrap;
}
}
.champion-section .section-title-area .right-ber .nav li {
	font-size: 18px;
	font-weight: 700;
}
@media (max-width: 1399px) {
.champion-section .section-title-area .right-ber .nav li {
	font-size: 16px;
}
}
.champion-section .section-title-area .right-ber .nav li .nav-link {
	color: var(--text);
	transition: all 0.4s ease-in-out;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	position: relative;
}
.champion-section .section-title-area .right-ber .nav li .nav-link.active {
	position: relative;
	color: var(--theme);
}
.champion-section .section-title-area .right-ber .nav li .nav-link.active::before {
	position: absolute;
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 30px;
	background-color: var(--theme);
	top: 7px;
	left: -12px;
}
.feature-record-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 60px;
	padding-bottom: 60px;
}
@media (max-width: 1399px) {
.feature-record-wrapper {
	flex-wrap: wrap;
	gap: 30px;
	padding-bottom: 30px;
}
}
.feature-record-wrapper .feature-record-item {
	text-align: center;
}
.feature-record-wrapper .feature-record-item .icon img {
	transition: 0.3s;
}
.feature-record-wrapper .feature-record-item .content {
	margin-top: 15px;
}
.feature-record-wrapper .feature-record-item .content h2 {
	color: var(--theme);
	font-size: 36px;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.feature-record-wrapper .feature-record-item .content p {
	font-weight: 700;
	color: var(--white);
}
.feature-record-wrapper .feature-record-item.style-2 {
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	padding-left: 90px;
}
@media (max-width: 1399px) {
.feature-record-wrapper .feature-record-item.style-2 {
	padding-left: 0;
	border-left: none;
}
}
.feature-record-wrapper .feature-record-item:hover .icon img {
	animation: zoomIn 0.5s linear;
}
.gallery-section .container-fluid {
	padding: 0 255px;
}
@media (max-width: 1899px) {
.gallery-section .container-fluid {
	padding: 0 70px;
}
}
@media (max-width: 1600px) {
.gallery-section .container-fluid {
	padding: 0 50px;
}
}
@media (max-width: 1399px) {
.gallery-section .container-fluid {
	padding: 0 30px;
}
}
@media (max-width: 575px) {
.gallery-section .container-fluid {
	padding: 0 15px;
}
}
.gallery-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
.gt-top-feature-wrapper .gt-top-feature-image {
	position: relative;
	z-index: 9;
}
.gt-top-feature-wrapper .gt-top-feature-image .gt-bg-shape {
	position: absolute;
	left: -51%;
	top: -30%;
	z-index: -1;
}
@media (max-width: 1199px) {
.gt-top-feature-wrapper .gt-top-feature-image .gt-bg-shape {
	display: none;
}
}
@media (max-width: 1399px) {
.gt-top-feature-wrapper .gt-top-feature-image img {
	width: 100%;
	height: 100%;
}
}
.gt-top-feature-wrapper .gt-top-feature-content .gt-feature-text {
	max-width: 560px;
	margin-top: 30px;
}
.gt-top-feature-wrapper .gt-top-feature-content .gt-feature-icon {
	margin-top: 35px;
}
.gt-top-feature-wrapper .gt-top-feature-content .gt-feature-icon li {
	display: flex;
	align-items: center;
	gap: 15px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 25px 25px;
	line-height: 1.8;
	transition: all 0.4s ease-in-out;
}
@media (max-width: 470px) {
.gt-top-feature-wrapper .gt-top-feature-content .gt-feature-icon li {
	flex-wrap: wrap;
	gap: 15px;
}
}
.gt-top-feature-wrapper .gt-top-feature-content .gt-feature-icon li:not(:last-child) {
	margin-bottom: 15px;
}
.gt-top-feature-wrapper .gt-top-feature-content .gt-feature-icon li .gt-icon {
	border-radius: 6px;
	background: #1C1D20;
	width: 77px;
	height: 90px;
	line-height: 90px;
	text-align: center;
	transition: all 0.4s ease-in-out;
}
.gt-top-feature-wrapper .gt-top-feature-content .gt-feature-icon li .gt-content {
	flex-basis: 80%;
}
@media (max-width: 470px) {
.gt-top-feature-wrapper .gt-top-feature-content .gt-feature-icon li .gt-content {
	flex-basis: 100%;
}
}
.gt-top-feature-wrapper .gt-top-feature-content .gt-feature-icon li .gt-content h3 {
	font-size: 24px;
	margin-bottom: 10px;
}
@media (max-width: 470px) {
.gt-top-feature-wrapper .gt-top-feature-content .gt-feature-icon li .gt-content h3 {
	font-size: 20px;
}
}
.gt-top-feature-wrapper .gt-top-feature-content .gt-feature-icon li .gt-content p {
	font-size: 15px;
}
.gt-top-feature-wrapper .gt-top-feature-content .gt-feature-icon li:hover {
	background: #1C1D20;
}
.gt-top-feature-wrapper .gt-top-feature-content .gt-feature-icon li:hover .gt-icon {
	background-color: var(--white);
}
.gt-top-feature-wrapper .gt-top-feature-content .gt-feature-icon li:hover .gt-icon img {
	filter: brightness(0) saturate(100%);
}
.gt-counter-section-3 {
	margin: 0 60px;
	padding: 60px 0;
}
@media (max-width: 1600px) {
.gt-counter-section-3 {
	margin: 0 30px;
}
}
@media (max-width: 1399px) {
.gt-counter-section-3 {
	margin: 0;
}
}
.gt-counter-box-3 {
	height: 328.5px;
	width: 100%;
	border-radius: 330px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
.gt-counter-box-3 {
	border-radius: 50%;
	margin: 0 auto;
	height: 280px;
	width: 280px;
}
}
@media (max-width: 991px) {
.gt-counter-box-3 {
	height: 328.5px;
	width: 100%;
}
}
@media (max-width: 767px) {
.gt-counter-box-3 {
	width: 260px;
	height: 260px;
}
}
@media (max-width: 470px) {
.gt-counter-box-3 {
	width: 210px;
	height: 210px;
}
}
.gt-counter-box-3 .gt-content {
	text-align: center;
	padding-top: 130px;
}
@media (max-width: 1399px) {
.gt-counter-box-3 .gt-content {
	padding: 8px;
	padding-top: 100px;
	padding-bottom: 0;
}
}
@media (max-width: 991px) {
.gt-counter-box-3 .gt-content {
	padding-top: 130px;
	padding-left: 5px;
	padding-right: 5px;
}
}
@media (max-width: 767px) {
.gt-counter-box-3 .gt-content {
	padding-top: 90px;
}
}
@media (max-width: 575px) {
.gt-counter-box-3 .gt-content {
	padding-top: 80px;
}
}
@media (max-width: 470px) {
.gt-counter-box-3 .gt-content {
	padding-top: 60px;
}
}
.gt-counter-box-3 .gt-content h2 {
	font-size: 35px;
	font-weight: 400;
	display: inline-flex;
	gap: 5px;
}
@media (max-width: 470px) {
.gt-counter-box-3 .gt-content h2 {
	font-size: 28px;
}
}
.gt-counter-box-3 .gt-content h2 span {
	font-size: 75px;
	font-weight: 700;
}
@media (max-width: 1399px) {
.gt-counter-box-3 .gt-content h2 span {
	font-size: 80px;
}
}
@media (max-width: 767px) {
.gt-counter-box-3 .gt-content h2 span {
	font-size: 60px;
}
}
@media (max-width: 470px) {
.gt-counter-box-3 .gt-content h2 span {
	font-size: 40px;
}
}
.gt-counter-box-3 .gt-content p {
	font-size: 18px;
	font-weight: 400;
	margin-top: 10px;
}
@media (max-width: 991px) {
.gt-counter-box-3 .gt-content p {
	font-size: 14px;
}
}
.gt-counter-box-3:hover {
	background-color: var(--white);
}
.gt-counter-box-3:hover h2 {
	color: var(--header);
}
.gt-counter-box-3:hover p {
	color: var(--header);
}
.gt-cooming-soon-section {
	position: relative;
}
.gt-cooming-soon-section::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(1, 1, 1, 0.6);
}
.gt-coming-soon-items {
	position: relative;
	text-align: center;
	margin-top: 50px;
}
.gt-coming-soon-items .text {
	font-size: 35px;
	font-weight: 500;
	letter-spacing: 20px;
	margin-bottom: 15px;
}
@media (max-width: 1199px) {
.gt-coming-soon-items .text {
	letter-spacing: 10px;
}
}
@media (max-width: 575px) {
.gt-coming-soon-items .text {
	font-size: 28px;
}
}
.gt-coming-soon-items p {
	max-width: 744px;
	margin: 0 auto;
	text-align: center;
	color: var(--white);
}
.gt-coming-soon-items .gt-coming-soon-time {
	display: flex;
	align-items: center;
	justify-content: center;
	align-items: center;
	gap: 30px;
	position: relative;
	margin-top: 50px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 20px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	margin-bottom: 60px;
}
@media (max-width: 1199px) {
.gt-coming-soon-items .gt-coming-soon-time {
	flex-wrap: wrap;
}
}
.gt-coming-soon-items .gt-coming-soon-time .gt-timer-content {
	text-align: center;
}
.gt-coming-soon-items .gt-coming-soon-time .gt-timer-content:not(:last-child) {
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	padding-right: 30px;
}
.gt-coming-soon-items .gt-coming-soon-time .gt-timer-content h2 {
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
	color: var(--white);
}
@media (max-width: 575px) {
.gt-coming-soon-items .gt-coming-soon-time .gt-timer-content h2 {
	font-size: 30px;
}
}
.gt-coming-soon-items .gt-coming-soon-time .gt-timer-content p {
	font-weight: 700;
	color: var(--text);
	text-transform: uppercase;
}
.gt-coming-soon-items form {
	max-width: 664px;
	width: 100%;
	text-align: center;
	margin: 0 auto;
}
@media (max-width: 575px) {
.gt-coming-soon-items form {
	text-align: left;
}
}
.gt-coming-soon-items .form-clt {
	position: relative;
	margin-top: 40px;
}
.gt-coming-soon-items .form-clt input {
	width: 100%;
	outline: none;
	border: none;
	background-color: var(--white);
	line-height: 1;
	padding: 23px;
	max-width: 664px;
	color: var(--bg-2);
	border-radius: 10px;
}
@media (max-width: 470px) {
.gt-coming-soon-items .form-clt input {
	font-size: 14px;
}
}
.gt-coming-soon-items .form-clt .theme-btn {
	position: absolute;
	top: 7px;
	right: 7px;
	bottom: 7px;
	text-align: center;
}
.gt-coming-soon-items .form-clt .theme-btn::before {
	background-color: var(--header);
}
.gt-coming-soon-items .form-clt .theme-btn::after {
	background-color: var(--header);
}
.gt-coming-soon-items .form-clt .theme-btn:hover {
	color: var(--white);
}
.gt-coming-soon-items .gt-social-icon {
	gap: 15px;
	margin-top: 40px;
	justify-content: center;
}
.gt-coming-soon-items .gt-social-icon a {
	display: inline-block;
	width: 48px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	background-color: var(--white);
	color: rgb(28, 29, 32);
	border-radius: 100px;
}
.gt-coming-soon-items .gt-social-icon a:hover {
	background-color: var(--theme);
	color: var(--header);
}
.gt-bg-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
.gt-gaming-feature-wrapper .gt-gaming-left-item {
	position: relative;
}
.gt-gaming-feature-wrapper .gt-gaming-left-item .gt-gaming-feature-image {
	max-width: 600px;
}
@media (max-width: 1199px) {
.gt-gaming-feature-wrapper .gt-gaming-left-item .gt-gaming-feature-image {
	max-width: initial;
}
}
.gt-gaming-feature-wrapper .gt-gaming-left-item .gt-gaming-feature-image img {
	width: 100%;
	height: 100%;
	clip-path: polygon(7% 0, 100% 0, 100% 100%, 75% 100%, 0 100%, 0 17%);
}
.gt-gaming-feature-wrapper .gt-gaming-left-item .gt-red-shape {
	margin-top: 50px;
	max-width: 450px;
	margin-left: 150px;
	clip-path: polygon(0 0, 100% 0, 100% 76%, 90% 100%, 0 100%, 0% 50%);
}
@media (max-width: 1199px) {
.gt-gaming-feature-wrapper .gt-gaming-left-item .gt-red-shape {
	max-width: initial;
}
}
.gt-gaming-feature-wrapper .gt-gaming-left-item .gt-red-shape img {
	width: 100%;
	height: 100%;
}
.gt-gaming-feature-wrapper .gt-gaming-left-item .gt-bike-image {
	max-width: 516px;
	position: absolute;
	right: 50px;
	bottom: 0;
	transform: translateX(-100%);
	animation: slideInLeft 1.5s ease-out forwards;
}
.gt-gaming-feature-wrapper .gt-gaming-left-item .gt-bike-image img {
	width: 100%;
	height: 100%;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content {
	overflow: hidden;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-gaming-text {
	margin-top: 30px;
}
@keyframes slideBorder {
 0% {
 left: 0;
 right: 0;
}
 100% {
 left: 100%;
}
}
@keyframes slideBorders {
 0% {
 right: -90px;
 left: auto;
}
 100% {
 right: 100%;
 left: auto;
}
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding: 30px 0;
	margin-top: 35px;
	position: relative;
	margin-bottom: 50px;
}
@media (max-width: 1199px) {
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list {
	flex-wrap: wrap;
	gap: 25px;
}
}
@media (max-width: 767px) {
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list {
	margin-top: 30px;
	margin-bottom: 30px;
}
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list::before {
	position: absolute;
	top: -1px;
	left: 0;
	content: "";
	width: 90px;
	height: 1px;
	background: linear-gradient(90deg, #CBFE1C 30%, rgba(11, 14, 19, 0) 100%);
	animation: slideBorder 3s linear infinite alternate;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list::after {
	position: absolute;
	bottom: -1px;
	right: 0;
	left: 0;
	content: "";
	width: 90px;
	height: 1px;
	background: linear-gradient(90deg, #CBFE1C 30%, rgba(11, 14, 19, 0) 100%);
	animation: slideBorders 3s linear infinite alternate;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list li {
	display: flex;
	gap: 10px;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list li .gt-content {
	max-width: 270px;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list li .gt-content h4 {
	font-size: 24px;
	margin-bottom: 10px;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list li .gt-content span {
	font-size: 18px;
	font-weight: 400;
}
@media (max-width: 1199px) {
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list li .gt-content span {
	font-size: 17px;
}
}
@media (max-width: 991px) {
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list li .gt-content span {
	font-size: 15px;
}
}
@media (max-width: 575px) {
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-icon-list li .gt-content span {
	font-size: 14px;
}
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-theme-btn {
	color: var(--white);
	z-index: 999;
	display: inline-block;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-theme-btn.gt-style-border:hover {
	color: var(--header);
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-theme-btn.gt-style-border:hover .gt-text-btn {
	border: 1px solid #CBFE1C;
}
.gt-gaming-feature-wrapper .gt-gaming-feature-content .gt-theme-btn.gt-style-border:hover .gt-text-btn::before {
	background-color: var(--theme);
}
.gt-video-wrapper {
	position: relative;
	padding: 180px 120px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 9;
	border-radius: 10px;
}
@media (max-width: 1199px) {
.gt-video-wrapper {
	padding: 60px;
	flex-wrap: wrap;
	gap: 30px;
}
}
@media (max-width: 991px) {
.gt-video-wrapper {
	padding: 50px;
}
}
@media (max-width: 767px) {
.gt-video-wrapper {
	padding: 40px;
}
}
@media (max-width: 575px) {
.gt-video-wrapper {
	padding: 30px;
}
}
.gt-video-wrapper::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(180deg, rgba(11, 14, 19, 0) 0%, rgba(11, 14, 19, 0.9) 100%);
	z-index: -1;
}
.gt-video-wrapper .gt-video-content h6 {
	color: var(--header);
	background-color: var(--theme);
	padding: 5px 8px;
	margin-bottom: 20px;
	display: inline-block;
	font-size: 14px;
	border-radius: 4px;
	text-transform: capitalize;
}
.gt-video-wrapper .gt-video-content h2 {
	color: var(--white);
}
.gt-video-wrapper .gt-video-content .gt-theme-btn {
	margin-top: 40px;
	display: inline-block;
	color: var(--header);
	background-color: var(--white);
}
.gt-video-wrapper .gt-video-content .gt-theme-btn:hover {
	background: var(--theme);
	color: var(--header);
}
.gt-video-wrapper .video-btn {
	background-color: var(--white);
	color: var(--header);
	display: inline-block;
	font-size: 16px;
	height: 84px;
	width: 84px;
	line-height: 84px;
	border-radius: 50%;
	text-align: center;
	position: relative;
}
@media (max-width: 767px) {
.gt-video-wrapper .video-btn {
	width: 70px;
	height: 70px;
	line-height: 70px;
}
}
.gt-video-wrapper .video-btn::before {
	position: absolute;
	content: "";
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 132px;
	height: 132px;
	border: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 767px) {
.gt-video-wrapper .video-btn::before {
	width: 90px;
	height: 90px;
	line-height: 90px;
}
}
.champion-section {
	margin-top: 120px;
}
@media (max-width: 1399px) {
.champion-section {
	margin-top: 0;
}
}
.footer-section {
	position: relative;
	z-index: 9;
}
.footer-section::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	z-index: -1;
	background: linear-gradient(180deg, #0B0E13 0%, rgba(11, 14, 19, 0.7) 100%);
}
.footer-top-wrapper {
	padding: 80px 0 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media (max-width: 991px) {
.footer-top-wrapper {
	flex-wrap: wrap;
	gap: 50px;
}
}
.footer-top-wrapper .social-icon a {
	display: inline-block;
	width: 61px;
	height: 61px;
	line-height: 61px;
	border-radius: 100px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: #1C1D20;
	text-align: center;
	font-size: 22px;
	margin-right: -22px;
}
.footer-top-wrapper .social-icon a i {
	-webkit-transition: all 900ms ease;
	transition: all 900ms ease;
}
.footer-top-wrapper .social-icon a:hover {
	color: var(--theme);
	border: 1px solid var(--theme);
}
.footer-top-wrapper .social-icon a:hover i {
	-webkit-transform: rotateY(360deg);
	transform: rotateY(360deg);
}
@media (max-width: 1199px) {
.footer-top-wrapper .footer-logo img {
	width: 120px;
}
}
.footer-top-wrapper .location-info {
	display: flex;
	align-items: center;
	gap: 20px;
}
.footer-top-wrapper .location-info .icon {
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: #1C1D20;
	display: inline-block;
	width: 61px;
	height: 61px;
	line-height: 61px;
	font-size: 22px;
	text-align: center;
	color: var(--theme);
}
.footer-top-wrapper .location-info p {
	color: var(--white);
	font-size: 16px;
	font-weight: 700;
	text-transform: capitalize;
	max-width: 260px;
}
.footer-widget-wrapper {
	padding: 10px 0 40px;
}
.footer-widget-wrapper .footer-widget-items {
	margin-top: 30px;
}
.footer-widget-wrapper .footer-widget-items .widget-head {
	margin-bottom: 20px;
}
.footer-widget-wrapper .footer-widget-items .widget-head h3 {
	text-transform: capitalize;
}
.footer-widget-wrapper .footer-widget-items .widget-head h3 span {
	color: var(--theme);
}
.footer-widget-wrapper .footer-widget-items .footer-list-items li:not(:last-child) {
	margin-bottom: 10px;
}
.footer-widget-wrapper .footer-widget-items .footer-list-items li a {
	color: #E0E0E0;
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
}
.footer-widget-wrapper .footer-widget-items .footer-list-items li a:hover {
	color: var(--theme);
	margin-left: 5px;
}
.footer-bottom-text {
	text-align: center;
	padding: 20px 0;
	color: var(--white);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 2.8px;
	text-transform: capitalize;
}
.footer-bottom-text b {
	color: var(--theme);
}
.gt-newsletter-wrapper {
	padding: 55px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 9;
	position: relative;
}
.gt-newsletter-wrapper::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(90deg, #1C1D20 0%, rgba(28, 29, 32, 0) 100%);
	z-index: -1;
}
.gt-newsletter-wrapper .shape {
	position: absolute;
	left: 47%;
	transform: translateX(-50%);
	bottom: 0;
}
@media (max-width: 1199px) {
.gt-newsletter-wrapper .shape {
	display: none;
}
}
@media (max-width: 1199px) {
.gt-newsletter-wrapper {
	flex-wrap: wrap;
	gap: 30px;
}
}
@media (max-width: 991px) {
.gt-newsletter-wrapper {
	padding: 50px;
}
}
@media (max-width: 767px) {
.gt-newsletter-wrapper {
	padding: 40px;
}
}
@media (max-width: 575px) {
.gt-newsletter-wrapper {
	padding: 20px;
}
}
.gt-newsletter-wrapper h4 {
	color: var(--white);
}
@media (max-width: 575px) {
.gt-newsletter-wrapper h4 {
	font-size: 17px;
}
}
.gt-newsletter-wrapper form {
	max-width: 515px;
	width: 100%;
}
.gt-newsletter-wrapper .form-clt {
	position: relative;
}
.gt-newsletter-wrapper .form-clt .input-icon {
	top: 50%;
	left: 25px;
	transform: translateY(-50%);
	position: absolute;
}
@media (max-width: 575px) {
.gt-newsletter-wrapper .form-clt .input-icon {
	left: 10px;
}
}
.gt-newsletter-wrapper .form-clt input {
	width: 100%;
	outline: none;
	border: none;
	background-color: var(--white);
	color: #9FA0A2;
	text-transform: uppercase;
	line-height: 1;
	padding: 19px 70px;
	border-radius: 10px;
	max-width: 515px;
}
@media (max-width: 575px) {
.gt-newsletter-wrapper .form-clt input {
	padding: 19px 50px;
	font-size: 12px;
}
}
.gt-newsletter-wrapper .form-clt input::placeholder {
 color: #9FA0A2;
}
.gt-newsletter-wrapper .form-clt .theme-btn {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	color: var(--header);
	background-image: none;
	background: var(--theme);
	text-transform: uppercase;
	height: 59px;
	clip-path: polygon(0 0, 100% 0%, 100% 100%, 11% 100%);
	border-radius: 10px;
}
.gt-newsletter-wrapper .form-clt .theme-btn::before {
	background-color: var(--header);
	clip-path: polygon(0 0, 100% 0%, 100% 100%, 11% 100%);
	border-radius: 0;
}
.gt-newsletter-wrapper .form-clt .theme-btn::after {
	background-color: var(--header);
	clip-path: polygon(0 0, 100% 0%, 100% 100%, 11% 100%);
	border-radius: 0;
}
.gt-newsletter-wrapper .form-clt .theme-btn:hover {
	color: var(--white);
}
@media (max-width: 575px) {
.gt-newsletter-wrapper .form-clt .theme-btn {
	padding: 0px 30px;
	font-size: 12px;
	height: 54px;
}
}
.gt-footer-widget-wrapper {
	padding: 60px 0 70px;
}
@media (max-width: 991px) {
.gt-footer-widget-wrapper {
	padding: 50px 0 80px;
}
}
.gt-footer-widget-wrapper .gt-footer-widget-items {
	margin-top: 30px;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-widget-head {
	margin-bottom: 30px;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-widget-head h5 {
	color: var(--white);
	font-size: 20px;
	font-weight: 400;
	text-transform: capitalize;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content p {
	max-width: 450px;
	text-transform: capitalize;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .gt-social-icon {
	gap: 15px;
	margin-top: 40px;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .gt-social-icon a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background-color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: var(--bg-2);
	color: var(--white);
	transition: all 0.4s ease-in-out;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .gt-social-icon a i {
	-webkit-transition: all 900ms ease;
	transition: all 900ms ease;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .gt-social-icon a:hover {
	border: 1px solid var(--theme);
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .gt-social-icon a:hover a {
	color: var(--theme);
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-content .gt-social-icon a:hover i {
	-webkit-transform: rotateY(360deg);
	transform: rotateY(360deg);
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-list-area li {
	transition: all 0.4s ease-in-out;
	text-transform: capitalize;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-list-area li:not(:last-child) {
	margin-bottom: 20px;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-list-area li a {
	color: var(--text);
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-list-area li:hover {
	margin-left: 5px;
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-list-area li:hover a {
	color: var(--theme);
}
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-app {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-top: 30px;
}
 @media (max-width: 1399px) {
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-app img {
	width: 100%;
	height: 100%;
}
}
@media (max-width: 1199px) {
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-app {
	flex-wrap: wrap;
}
}
@media (max-width: 575px) {
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-app {
	gap: 20px;
}
}
@media (max-width: 575px) {
.gt-footer-widget-wrapper .gt-footer-widget-items .gt-footer-app .app-image {
	width: 142px;
	height: 50px;
}
}
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 40px 0;
	font-size: 14px;
}
@media (max-width: 767px) {
.footer-bottom {
	text-align: center;
}
}
.footer-bottom .footer-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media (max-width: 1199px) {
.footer-bottom .footer-wrapper {
	flex-wrap: wrap;
	gap: 15px;
}
}
@media (max-width: 767px) {
.footer-bottom .footer-wrapper {
	justify-content: center;
}
}
.footer-bottom .footer-wrapper .gt-footer-list {
	display: flex;
	align-items: center;
	gap: 30px;
}
.footer-bottom .footer-wrapper .gt-footer-list li {
	text-transform: capitalize;
}
.footer-bottom .footer-wrapper .gt-footer-list li a {
	color: #ABABAB;
}
.footer-bottom .footer-wrapper .gt-footer-list li a:hover {
	color: var(--theme);
}
.gt-footer-section {
	position: relative;
	z-index: 9;
	padding-bottom: 60px;
	margin-top: 120px;
}
@media (max-width: 1199px) {
.gt-footer-section {
	margin-top: 100px;
	padding-bottom: 30px;
}
}
@media (max-width: 991px) {
.gt-footer-section {
	margin-top: 80px;
}
}
.gt-footer-section::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(180deg, #0B0E13 0%, rgba(11, 14, 19, 0) 100%);
	z-index: -1;
}
.footer-main-bg {
	background-color: #1C1D20;
	margin: 60px;
	margin-top: 0;
	padding-bottom: 0;
	margin-bottom: 0;
	clip-path: polygon(77% 0, 93% 0, 100% 22%, 100% 85%, 100% 100%, 32% 100%, 0 100%, 0% 43%, 0 0);
	position: relative;
}
@media (max-width: 1399px) {
.footer-main-bg {
	margin-left: 30px;
	margin-right: 30px;
	clip-path: none;
}
}
@media (max-width: 1199px) {
.footer-main-bg {
	margin-left: 22px;
	margin-right: 22px;
}
}
@media (max-width: 991px) {
.footer-main-bg {
	margin-left: 22px;
	margin-right: 22px;
}
}
.footer-main-bg .left-shape {
	position: absolute;
	top: 30px;
	left: 0;
}
@media (max-width: 1600px) {
.footer-main-bg .left-shape {
	display: none;
}
}
.footer-main-bg .right-shape {
	position: absolute;
	bottom: 0;
	right: 0;
}
@media (max-width: 1600px) {
.footer-main-bg .right-shape {
	display: none;
}
}
.footer-wrapper-3 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 60px 0;
}
@media (max-width: 1399px) {
.footer-wrapper-3 {
	flex-wrap: wrap;
	gap: 20px;
}
}
.footer-wrapper-3 .left-content {
	display: flex;
	align-items: center;
	gap: 25px;
}
@media (max-width: 1399px) {
.footer-wrapper-3 .left-content {
	flex-wrap: wrap;
	gap: 15px;
}
}
@media (max-width: 1199px) {
.footer-wrapper-3 .left-content .logo-image img {
	width: 120px;
}
}
.footer-wrapper-3 .left-content p {
	color: var(--white);
	font-weight: 700;
	text-transform: uppercase;
	border-left: 1px solid var(--white);
	padding-left: 25px;
}
@media (max-width: 575px) {
.footer-wrapper-3 .left-content p {
	border-left: none;
	padding-left: 0;
	font-size: 14px;
}
}
.footer-wrapper-3 .footer-right-list {
	display: flex;
	align-items: center;
	gap: 60px;
}
@media (max-width: 1399px) {
.footer-wrapper-3 .footer-right-list {
	flex-wrap: wrap;
	gap: 20px;
}
}
.footer-wrapper-3 .footer-right-list li {
	text-transform: uppercase;
	font-weight: 700;
}
@media (max-width: 575px) {
.footer-wrapper-3 .footer-right-list li {
	font-size: 14px;
}
}
.footer-wrapper-3 .footer-right-list li a {
	color: var(--white);
}
.footer-wrapper-3 .footer-right-list li a:hover {
	color: var(--theme);
}
.footer-bg-section-3 {
	position: relative;
	z-index: 9;
	border-radius: 40px;
	margin: 30px 60px;
}
@media (max-width: 1600px) {
.footer-bg-section-3 {
	margin: 50px 50px;
}
}
@media (max-width: 1399px) {
.footer-bg-section-3 {
	margin: 30px 30px;
}
}
.footer-bg-section-3::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	border-radius: 40px;
	background: rgba(0, 0, 0, 0.5);
	z-index: -1;
}
.footer-widget-wrapper-5 {
	margin-top: 140px;
	padding: 100px 0;
}
@media (max-width: 1399px) {
.footer-widget-wrapper-5 {
	margin-top: 50px;
}
}
@media (max-width: 991px) {
.footer-widget-wrapper-5 {
	padding: 80px 0;
	margin-top: 50px;
}
}
.footer-widget-wrapper-5 .footer-single-item-5 {
	margin-top: 30px;
}
.footer-widget-wrapper-5 .footer-single-item-5 .footer-content p {
	max-width: 476px;
	text-transform: capitalize;
	margin-top: 15px;
}
.footer-widget-wrapper-5 .footer-single-item-5 .footer-content .footer-app {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-top: 40px;
}
@media (max-width: 1199px) {
.footer-widget-wrapper-5 .footer-single-item-5 .footer-content .footer-app {
	flex-wrap: wrap;
}
}
.footer-widget-wrapper-5 .footer-single-item-5 .widget-head {
	margin-bottom: 30px;
}
.footer-widget-wrapper-5 .footer-single-item-5 .widget-head h5 {
	color: var(--white);
	text-transform: capitalize;
	position: relative;
	font-family: "Chakra Petch", sans-serif;
}
.footer-widget-wrapper-5 .footer-single-item-5 .widget-head h5::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(90deg, #CBFE1C 0%, #7CFFE5 50%, #090D12 100%);
	width: 124px;
	height: 1px;
	top: 40px;
}
.footer-widget-wrapper-5 .footer-single-item-5 .list-area li {
	transition: all 0.4s ease-in-out;
	font-weight: 400;
	text-transform: capitalize;
}
.footer-widget-wrapper-5 .footer-single-item-5 .list-area li:not(:last-child) {
	margin-bottom: 20px;
}
.footer-widget-wrapper-5 .footer-single-item-5 .list-area li a {
	color: var(--text);
	font-size: 16px;
	font-weight: 400;
}
.footer-widget-wrapper-5 .footer-single-item-5 .list-area li:hover {
	margin-left: 5px;
}
.footer-widget-wrapper-5 .footer-single-item-5 .list-area li:hover a {
	color: var(--theme);
}
.footer-widget-wrapper-5 .footer-single-item-5 .footer-newsletter p {
	max-width: 491px;
	margin-bottom: 15px;
	text-transform: capitalize;
}
.footer-widget-wrapper-5 .footer-single-item-5 .footer-newsletter form {
	max-width: 492px;
	width: 100%;
}
.footer-widget-wrapper-5 .footer-single-item-5 .footer-newsletter .form-clt {
	position: relative;
}
.footer-widget-wrapper-5 .footer-single-item-5 .footer-newsletter .form-clt .input-icon {
	top: 50%;
	left: 25px;
	transform: translateY(-50%);
	position: absolute;
}
@media (max-width: 575px) {
.footer-widget-wrapper-5 .footer-single-item-5 .footer-newsletter .form-clt .input-icon {
	top: 23%;
}
}
.footer-widget-wrapper-5 .footer-single-item-5 .footer-newsletter .form-clt input {
	width: 100%;
	outline: none;
	border: none;
	background-color: var(--white);
	color: #9FA0A2;
	text-transform: uppercase;
	line-height: 1;
	padding: 19px 70px;
	border-radius: 0;
	max-width: 492px;
}
.footer-widget-wrapper-5 .footer-single-item-5 .footer-newsletter .form-clt input::placeholder {
 color: #9FA0A2;
}
.footer-widget-wrapper-5 .footer-single-item-5 .footer-newsletter .form-clt .theme-btn {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	color: var(--header);
	background-image: none;
	background: var(--theme);
	text-transform: uppercase;
	height: 59px;
	clip-path: polygon(0 0, 100% 0%, 100% 100%, 11% 100%);
	border-radius: 0;
}
.footer-widget-wrapper-5 .footer-single-item-5 .footer-newsletter .form-clt .theme-btn::before {
	background-color: var(--header);
	clip-path: polygon(0 0, 100% 0%, 100% 100%, 11% 100%);
	border-radius: 0;
}
.footer-widget-wrapper-5 .footer-single-item-5 .footer-newsletter .form-clt .theme-btn::after {
	background-color: var(--header);
	clip-path: polygon(0 0, 100% 0%, 100% 100%, 11% 100%);
	border-radius: 0;
}
.footer-widget-wrapper-5 .footer-single-item-5 .footer-newsletter .form-clt .theme-btn:hover {
	color: var(--white);
}
@media (max-width: 470px) {
.footer-widget-wrapper-5 .footer-single-item-5 .footer-newsletter .form-clt .theme-btn {
	position: static;
	margin-top: 20px;
}
}
.footer-bottom-5 {
	position: relative;
}
.footer-bottom-5::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(270deg, #CBFE1C 0%, #7CFFE5 50%, #090D12 100%);
	width: 288px;
	height: 1px;
	top: 40px;
}
@media (max-width: 1399px) {
.footer-bottom-5::before {
	display: none;
}
}
.footer-bottom-5::after {
	position: absolute;
	content: "";
	right: 0;
	background: linear-gradient(90deg, #CBFE1C 0%, #7CFFE5 50%, #090D12 100%);
	width: 288px;
	height: 1px;
	top: 40px;
}
@media (max-width: 1399px) {
.footer-bottom-5::after {
	display: none;
}
}
.footer-bottom-5 .footer-wrapper {
	display: flex;
	align-items: center;
	gap: 130px;
	padding: 20px 56px;
	justify-content: center;
	background-color: #0F151C;
	width: 756px;
	margin: 0 auto;
	clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 100%);
	clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
}
@media (max-width: 1399px) {
.footer-bottom-5 .footer-wrapper {
	flex-wrap: wrap;
	gap: 30px;
	width: initial;
	padding: 20px;
}
}
@media (max-width: 575px) {
.footer-bottom-5 .footer-wrapper {
	clip-path: initial !important;
}
}
.footer-bottom-5 .footer-wrapper p {
	text-transform: uppercase;
	color: #9FA0A2;
}
.footer-bottom-5 .footer-wrapper .social-icon {
	display: flex;
	align-items: center;
	gap: 16px;
}
.footer-bottom-5 .footer-wrapper .social-icon a {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background-color: #090D12;
	color: var(--white);
}
.footer-bottom-5 .footer-wrapper .social-icon a:hover {
	background: var(--theme);
	color: var(--header);
}
.footer-section-5 {
	margin-top: -80px;
}
.game-wrapper {
	margin-top: 100px;
	position: relative;
}
@media (max-width: 1199px) {
.game-wrapper {
	margin-top: 0;
}
}
.game-wrapper .top-image {
	position: absolute;
	top: -200px;
	right: 100px;
	bottom: 0;
	z-index: 9;
}
@media (max-width: 1600px) {
.game-wrapper .top-image {
	max-width: 300px;
	height: 700px;
}
.game-wrapper .top-image img {
	width: 100%;
	height: 100%;
}
}
@media (max-width: 1199px) {
.game-wrapper .top-image {
	display: none;
}
}
.game-wrapper .top-image .radius-shape {
	position: absolute;
	top: 40%;
	left: -100px;
	transform: translateY(-50%);
	z-index: 1;
}
.game-wrapper .top-image .radius-shape img {
	border-radius: 0;
}
.game-wrapper .top-image::before {
	position: absolute;
	top: -40px;
	right: -60px;
	content: "";
	border-radius: 1000px;
	border: 1px solid var(--theme);
	height: 990.905px;
	width: 443.047px;
}
@media (max-width: 1600px) {
.game-wrapper .top-image::before {
	display: none;
}
}
.game-wrapper .top-image img {
	border-radius: 272px;
}
.game-wrapper .game-image-items {
	margin-top: 30px;
	position: relative;
	z-index: 9;
	overflow: hidden;
	border-radius: 20px;
}
.game-wrapper .game-image-items::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	border-radius: 20px;
	background: linear-gradient(180deg, rgba(203, 254, 28, 0) 40%, #CBFE1C 100%);
	transform: scale(1, 0);
	transition: transform 500ms ease;
	transform-origin: bottom center;
	clip-path: polygon(12% 0, 100% 0, 100% 100%, 75% 100%, 0 100%, 0 18%);
	z-index: -1;
}
.game-wrapper .game-image-items img {
	width: 100%;
	height: 100%;
	border-radius: 20px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.game-wrapper .game-image-items .game-content {
	position: absolute;
	bottom: -130px;
	left: 30px;
	right: 30px;
	z-index: 9;
	transition: all 0.4s ease-in-out;
	opacity: 0;
	visibility: hidden;
}
.game-wrapper .game-image-items .game-content h3 {
	font-size: 20px;
}
.game-wrapper .game-image-items .game-content h3 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
	color: #0B0E13;
}
.game-wrapper .game-image-items .game-content h3 a:hover {
	color: #0B0E13;
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, #0B0E13 0%, #0B0E13 100%);
}
.game-wrapper .game-image-items ul {
	position: absolute;
	top: -70px;
	left: 30px;
	right: 30px;
	display: flex;
	align-items: center;
	gap: 10px;
	z-index: 9;
	transition: all 0.4s ease-in-out;
	opacity: 0;
	visibility: hidden;
}
.game-wrapper .game-image-items ul li {
	font-size: 14px;
	font-weight: 700;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--theme);
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: #1C1D20;
	padding: 9px;
	line-height: 1;
}
.game-wrapper .game-image-items ul li img {
	margin-right: 8px;
	width: 16px;
	height: initial;
}
.game-wrapper .game-image-items:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.game-wrapper .game-image-items:hover::before {
	transform: scale(1, 1);
	transform-origin: bottom center;
	z-index: 1;
}
.game-wrapper .game-image-items:hover ul {
	opacity: 1;
	visibility: visible;
	top: 30px;
}
.game-wrapper .game-image-items:hover .game-content {
	opacity: 1;
	visibility: visible;
	bottom: 30px;
}
.game-wrapper .game-slider {
	margin-left: -60%;
}
@media (max-width: 1199px) {
.game-wrapper .game-slider {
	margin-left: 0;
}
}
.game-wrapper .game-arrow-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 50px;
}
@media (max-width: 1199px) {
.game-wrapper .game-arrow-button {
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 30px;
}
}
.game-feature-section {
	border-radius: 40px;
	background: #1C1D20;
	margin: 0 60px;
}
@media (max-width: 1600px) {
.game-feature-section {
	margin: 0 35px;
}
}
@media (max-width: 1399px) {
.game-feature-section {
	margin: 0 30px;
}
}
@media (max-width: 1199px) {
.game-feature-section {
	margin: 0 25px;
}
}
.game-feature-section .section-title-2 h2 span {
	color: var(--theme);
}
.gt-gaming-card-item {
	margin-top: 30px;
	clip-path: polygon(12% 0, 100% 0, 100% 100%, 75% 100%, 0 100%, 0 18%);
}
.gt-gaming-card-item .gt-gaming-image {
	position: relative;
	overflow: hidden;
}
@media (max-width: 575px) {
.gt-gaming-card-item .gt-gaming-image {
	height: 300px;
}
.gt-gaming-card-item .gt-gaming-image img {
	object-fit: cover;
}
}
.gt-gaming-card-item .gt-gaming-image img {
	width: 100%;
	height: 100%;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.gt-gaming-card-item .gt-gaming-image::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	/*background: linear-gradient(180deg, rgba(11, 14, 19, 0) 0%, #ffc107 100%);*/
	transform: scale(1, 0);
	transition: transform 500ms ease;
	transform-origin: bottom center;
	clip-path: polygon(12% 0, 100% 0, 100% 100%, 75% 100%, 0 100%, 0 18%);
}
.gt-gaming-card-item .gt-gaming-image .icon {
	width: 51px;
	height: 46px;
	background-color: var(--theme);
	color: var(--header);
	position: absolute;
	top: 30px;
	right: -30px;
	text-align: center;
	line-height: 45px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
	clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 80% 100%, 0% 100%, 0% 20%);
}
.gt-gaming-card-item .gt-gaming-image .icon i {
	color: var(--header);
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
	font-size: 18px;
}
.gt-gaming-card-item .gt-gaming-image .icon:hover {
	background-color: var(--header);
}
.gt-gaming-card-item .gt-gaming-image .icon:hover i {
	color: var(--white);
}
.gt-gaming-card-item .gt-gaming-image .gt-gaming-content {
	position: absolute;
	left: 30px;
	bottom: -30px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}
.gt-gaming-card-item .gt-gaming-image .gt-gaming-content h6 {
	color: var(--theme);
	background-color: var(--header);
	padding: 8px 12px;
	border: 1px solid var(--theme);
	margin-bottom: 20px;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	font-family: "Chakra Petch", sans-serif;
	text-transform: uppercase;
}
.gt-gaming-card-item .gt-gaming-image .gt-gaming-content h3 {
	font-size: 26px;
	text-transform: capitalize;
}
@media (max-width: 1199px) {
.gt-gaming-card-item .gt-gaming-image .gt-gaming-content h3 {
	font-size: 20px;
}
}
.gt-gaming-card-item .gt-gaming-image .gt-gaming-content h3 a {
	color: var(--header);
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}
.gt-gaming-card-item .gt-gaming-image .gt-gaming-content h3 a:hover {
	color: var(--header);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--header) 0%, var(--header) 100%);
}
.gt-gaming-card-item:hover .gt-gaming-image::before {
	transform: scale(1, 1);
	transform-origin: bottom center;
	z-index: 1;
}
.gt-gaming-card-item:hover .gt-gaming-image img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.gt-gaming-card-item:hover .gt-gaming-image .icon {
	opacity: 1;
	visibility: visible;
	right: 30px;
}
.gt-gaming-card-item:hover .gt-gaming-image .gt-gaming-content {
	opacity: 1;
	visibility: visible;
	bottom: 30px;
}
.game-slider-pagination {
	position: relative;
	text-align: center;
	margin: 50px auto 0;
	max-width: 1330px;
	display: flex;
	align-items: center;
	align-items: center;
}
@media (max-width: 1399px) {
.game-slider-pagination {
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}
}
.game-slider-pagination .game-progress {
	width: 100%;
	background-color: rgba(255, 255, 255, 0.2);
}
.game-slider-pagination .swiper-pagination-progressbar {
	background-color: rgba(255, 255, 255, 0.2);
}
.game-slider-pagination .game-swiper-pagination {
	height: 2px;
	max-width: 1170px;
	margin: 0 auto;
}
.game-slider-pagination .game-progress .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: var(--theme);
}
.game-section-2 .project-dot .swiper-pagination-bullet {
	width: 200px;
	height: 2px;
	border-radius: 0;
	background: rgba(255, 255, 255, 0.2);
	opacity: 1;
	transition: 0.6s;
	margin: 0 !important;
}
 @media (max-width: 1199px) {
.game-section-2 .project-dot .swiper-pagination-bullet {
	width: 80px;
}
}
.game-section-2 .project-dot .swiper-pagination-bullet-active {
	opacity: 1;
	background: var(--theme);
}
.project-dot {
	max-width: 1173px;
}
.gt-popular-game-items {
	margin-top: 30px;
	transition: all 0.4s ease-in-out;
	border: 1px solid transparent;
	position: relative;
	z-index: 9;
}
.gt-popular-game-items::before {
	position: absolute;
	top: -14px;
	left: 30px;
	content: "";
	width: 1px;
	clip-path: polygon(10% 0, 100% 0, 100% 43%, 100% 82%, 100% 100%, 0 100%, 0 81%, 0 16%, 14% 0);
	height: 90px;
	background: var(--theme);
	transform: rotate(45deg);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 11;
}
.gt-popular-game-items::after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	border: 1px solid var(--theme);
	clip-path: polygon(10% 0, 100% 0, 100% 43%, 100% 82%, 100% 100%, 0 100%, 0 81%, 0 13%, 14% 0);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 11;
}
.gt-popular-game-items .gt-thumb {
	position: relative;
	overflow: hidden;
}
.gt-popular-game-items .gt-thumb::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(180deg, rgba(2, 2, 2, 0) 0%, #ADFF00 100%);
	transition: all 0.4s ease-in-out;
	opacity: 0;
	visibility: hidden;
	clip-path: polygon(10% 0, 100% 0, 100% 43%, 100% 82%, 100% 100%, 0 100%, 0 81%, 0 16%, 14% 0);
}
.gt-popular-game-items .gt-thumb img {
	width: 100%;
	height: 100%;
	clip-path: polygon(10% 0, 100% 0, 100% 43%, 100% 82%, 100% 100%, 0 100%, 0 81%, 0 16%, 14% 0);
}
.gt-popular-game-items .gt-thumb .gt-content {
	position: absolute;
	bottom: -130px;
	left: 30px;
	right: 30px;
	transition: all 0.4s ease-in-out;
	opacity: 0;
	visibility: hidden;
	z-index: 999;
}
.gt-popular-game-items .gt-thumb .gt-content .post-cat {
	font-size: 16px;
	font-weight: 400;
	display: inline-block;
	background-color: var(--theme);
	color: var(--header);
	border: 1px solid var(--theme);
	padding: 10px;
	line-height: 1;
	margin-bottom: 15px;
}
.gt-popular-game-items .gt-thumb .gt-content .post-cat:hover {
	background-color: var(--white);
	color: var(--header);
}
.gt-popular-game-items .gt-thumb .gt-content h3 {
	font-size: 24px;
	text-transform: capitalize;
}
.gt-popular-game-items .gt-thumb .gt-content h3 a {
	color: var(--white);
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}
.gt-popular-game-items .gt-thumb .gt-content h3 a:hover {
	color: var(--theme);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.gt-popular-game-items .app-store {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 99;
	position: relative;
}
.gt-popular-game-items .app-store .app {
	border-radius: 4px;
	overflow: hidden;
}
.gt-popular-game-items:hover::before, .gt-popular-game-items:hover::after {
	opacity: 1;
	visibility: visible;
}
.gt-popular-game-items:hover .gt-thumb::before {
	opacity: 1;
	visibility: visible;
	z-index: 999;
}
.gt-popular-game-items:hover .gt-thumb .gt-content {
	opacity: 1;
	visibility: visible;
	bottom: 30px;
}
.gt-popular-game-items:hover .app-store {
	opacity: 1;
	visibility: visible;
}
.gt-popular-game-section {
	position: relative;
	z-index: 9;
}
.gt-popular-game-section .gt-popular-slider {
	padding-top: 50px;
}
.gt-popular-game-section .bg-shape {
	position: absolute;
	top: -46px;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}
.gt-popular-game-section .bg-shape img {
	width: 100%;
	height: 100%;
}
.gt-popular-game-section .game-slider-pagination {
	position: relative;
	text-align: center;
	margin: 30px auto 0;
	display: flex;
	align-items: center;
	align-items: center;
}
@media (max-width: 1399px) {
.gt-popular-game-section .game-slider-pagination {
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}
}
.gt-popular-game-section .game-slider-pagination .game-progress {
	width: 100%;
	background-color: rgba(255, 255, 255, 0.2);
}
.gt-popular-game-section .game-slider-pagination .swiper-pagination-progressbar {
	background-color: rgba(255, 255, 255, 0.2);
}
.gt-popular-game-section .game-slider-pagination .game-swiper-pagination {
	height: 2px;
	margin: 0 auto;
}
.gt-popular-game-section .game-slider-pagination .game-progress .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: var(--theme);
}
.gt-popular-game-section .swiper-slide.swiper-slide-active .gt-popular-game-items::before, .gt-popular-game-section .swiper-slide.swiper-slide-active .gt-popular-game-items::after {
	opacity: 1;
	visibility: visible;
	z-index: 9;
}
.gt-popular-game-section .swiper-slide.swiper-slide-active .gt-popular-game-items .gt-thumb::before {
	opacity: 1;
	visibility: visible;
	z-index: 999;
}
.gt-popular-game-section .swiper-slide.swiper-slide-active .gt-popular-game-items .gt-thumb .gt-content {
	opacity: 1;
	visibility: visible;
	bottom: 30px;
}
.gt-popular-game-section .swiper-slide.swiper-slide-active .gt-popular-game-items .app-store {
	opacity: 1;
	visibility: visible;
}
.gt-game-feature-thumb {
	position: relative;
}
@media (max-width: 991px) {
.gt-game-feature-thumb {
	height: 400px;
}
.gt-game-feature-thumb img {
	object-fit: cover;
}
}
.gt-game-feature-thumb img {
	width: 100%;
	height: 100%;
	clip-path: polygon(10% 0, 100% 0, 100% 43%, 100% 82%, 100% 100%, 0 100%, 0 80%, 0 15%, 11% 0);
}
.gt-game-feature-thumb .gt-game-fuature-content {
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
}
.gt-game-feature-thumb .gt-game-fuature-content .post-discount {
	font-size: 16px;
	font-weight: 400;
	display: inline-block;
	background-color: var(--theme);
	color: var(--header);
	padding: 7px 9px;
	line-height: 1;
	margin-bottom: 15px;
}
@media (max-width: 470px) {
.gt-game-feature-thumb .gt-game-fuature-content .post-discount {
	font-size: 14px;
}
}
.gt-game-feature-thumb .gt-game-fuature-content h3 {
	font-size: 30px;
	text-transform: capitalize;
}
@media (max-width: 470px) {
.gt-game-feature-thumb .gt-game-fuature-content h3 {
	font-size: 20px;
}
}
.gt-game-feature-thumb .gt-game-fuature-content h3 a {
	color: var(--white);
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}
.gt-game-feature-thumb .gt-game-fuature-content h3 a:hover {
	color: var(--theme);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.gt-game-feature-thumb .video-btn {
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	border-radius: 50%;
	color: var(--header);
	background-color: var(--white);
}
.gt-game-feature-thumb .video-btn.ripple::before, .gt-game-feature-thumb .video-btn.ripple::after {
	width: 60px;
	height: 60px;
}
.gt-upcoming-main-wrapper {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 60px;
}
@media (max-width: 1600px) {
.gt-upcoming-main-wrapper {
	padding-top: 30px;
}
}
@media (max-width: 575px) {
.gt-upcoming-main-wrapper {
	margin-top: 30px;
	padding-top: 30px;
}
}
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper {
	background-color: #1C1D20;
	padding: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
	border: 1px solid #1C1D20;
	transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper {
	flex-wrap: wrap;
	gap: 30px;
}
}
@media (max-width: 470px) {
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper {
	padding: 25px;
}
}
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper .gt-streaming-image {
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	padding-right: 30px;
}
@media (max-width: 1199px) {
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper .gt-streaming-image {
	border-right: none;
	padding-right: 0;
	flex-basis: 100%;
}
}
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper .gt-streaming-image img {
	width: 100%;
	height: 100%;
}
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper .gt-streaming-content {
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	max-width: 535px;
}
@media (max-width: 1199px) {
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper .gt-streaming-content {
	border-right: none;
}
}
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper .gt-streaming-content .gt-post {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 10px;
}
@media (max-width: 1199px) {
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper .gt-streaming-content .gt-post {
	flex-wrap: wrap;
	gap: 10px;
}
}
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper .gt-streaming-content .gt-post li i {
	margin-right: 8px;
}
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper .gt-streaming-content h3 {
	font-size: 30px;
	margin-bottom: 10px;
}
@media (max-width: 1199px) {
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper .gt-streaming-content h3 {
	font-size: 20px;
}
}
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper .gt-streaming-content h3 a {
	color: var(--white);
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper .gt-streaming-content h3 a:hover {
	color: var(--white);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper .gt-streaming-content p {
	font-size: 18px;
}
@media (max-width: 1199px) {
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper .gt-streaming-content p {
	font-size: 16px;
}
}
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper .gt-social-item h6 {
	margin-bottom: 20px;
	font-weight: 400;
	font-size: 18px;
}
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper .gt-social-item .gt-social {
	display: flex;
	align-items: center;
	gap: 10px;
}
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper .gt-social-item .gt-social:not(:last-child) {
	margin-bottom: 10px;
}
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper .gt-social-item .gt-social li {
	padding: 11px 18px;
	line-height: 1;
	border: 1px solid rgba(255, 255, 255, 0.2);
	font-size: 14px;
	font-weight: 700;
	color: var(--white);
	background-color: transparent;
	transition: all 0.4s ease-in-out;
	width: 137px;
	position: relative;
	z-index: 9;
}
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper .gt-social-item .gt-social li::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 101%;
	height: 100%;
	content: "";
	border-radius: 0;
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: top right;
	transform-origin: top right;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: linear-gradient(90deg, #CBFE1C 0%, rgba(203, 254, 28, 0) 100%);
	transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
	transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
	transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	z-index: -1;
}
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper .gt-social-item .gt-social li:hover::before {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transform-origin: bottom left;
	transform-origin: bottom left;
}
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper .gt-social-item .gt-social li:hover i {
	webkit-transform: rotateY(360deg);
	transform: rotateY(360deg);
}
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper .gt-social-item .gt-social li:hover a {
	position: relative;
	z-index: 9;
}
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper .gt-social-item .gt-social li:hover i {
	margin-right: 6px;
	-webkit-transition: all 900ms ease;
	transition: all 900ms ease;
}
@media (max-width: 470px) {
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper .gt-social-item .gt-social li {
	width: 117px;
	padding: 8px;
}
}
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper .gt-social-item .gt-social li:hover {
	border: 1px solid rgba(255, 255, 255, 0.2);
}
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper .gt-social-item .gt-social li i {
	margin-right: 10px;
	color: var(--white);
}
.gt-upcoming-main-wrapper .gt-upcoming-streaming-wrapper:hover {
	border: 1px solid var(--theme);
}
.gt-upcoming-streaming-section {
	position: relative;
}
.gt-upcoming-streaming-section .top-shape {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -37%;
}
@media (max-width: 1199px) {
.gt-upcoming-streaming-section .top-shape {
	top: -20%;
}
}
.gt-upcoming-streaming-section .section-title-area .nav {
	display: flex;
	align-items: center;
	gap: 30px;
}
.gt-upcoming-streaming-section .section-title-area .nav .nav-item .nav-link {
	color: #AFAFAF;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}
.gt-upcoming-streaming-section .section-title-area .nav .nav-item .nav-link.active {
	color: var(--theme);

}
.tab-content {
	margin-top: 60px;
	padding-top: 60px;
}
@media (max-width: 470px) {
.tab-content {
	margin-top: 30px;
	padding-top: 30px;
}
}
.tab-content .match-card-item {
	border-radius: 10px;
	background-color: var(--header);
}
.tab-content .match-card-item .match-top-item {
	border-radius: 10px 10px 0 0;
	background: rgba(255, 255, 255, 0.2);
	padding: 20px;
	transition: all 0.4s ease-in-out;
}
.tab-content .match-card-item .match-top-item .match-list {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.tab-content .match-card-item .match-top-item .match-list li {
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--white);
	transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
.tab-content .match-card-item .match-top-item .match-list li {
	font-size: 16px;
}
}
.tab-content .match-card-item .match-top-item .match-list li svg {
	margin-right: 10px;
	margin-top: -5px;
}
.tab-content .match-card-item .match-bottom-item {
	padding: 20px 20px 30px;
}
.tab-content .match-card-item .match-bottom-item .logo-main-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.tab-content .match-card-item .match-bottom-item .logo-main-item .logo-item {
	display: flex;
	align-items: center;
	gap: 15px;
}
.tab-content .match-card-item .match-bottom-item .logo-main-item .logo-item h6 {
	font-weight: 400;
	color: var(--white);
	text-transform: uppercase;
}
.tab-content .match-card-item .match-bottom-item .logo-main-item .number {
	color: var(--theme);
	font-weight: 400;
	width: 42px;
	height: 42px;
	line-height: 42px;
	text-align: center;
	border-radius: 100px;
	background-color: rgba(203, 254, 28, 0.1);
}
.tab-content .match-card-item .match-bottom-item .list li {
	color: var(--white);
	font-weight: 700;
}
@media (max-width: 575px) {
.tab-content .match-card-item .match-bottom-item .list li {
	font-size: 14px;
}
}
.tab-content .match-card-item .match-bottom-item .list li:not(:last-child) {
	margin-bottom: 30px;
}
.tab-content .match-card-item .match-bottom-item .list li span {
	color: var(--text);
	display: inline-block;
	margin-left: 10px;
}
@media (max-width: 991px) {
.tab-content .match-card-item .match-bottom-item .list li span {
	margin-left: 0;
}
}
.tab-content .match-card-item .match-bottom-item .list li svg {
	margin-left: 10px;
	margin-top: -5px;
}
.tab-content .match-card-item:hover .match-top-item {
	background-color: var(--theme);
}
.tab-content .match-card-item:hover .match-top-item .match-list li {
	color: var(--header);
}
.tab-content .match-card-item:hover .match-top-item .match-list li svg path {
	fill: var(--header);
}
.match-section {
	margin: 0 60px;
	border-radius: 40px;
	background: var(--bg-2);
	position: relative;
}
@media (max-width: 1600px) {
.match-section {
	margin: 0 50px;
}
}
@media (max-width: 1399px) {
.match-section {
	margin: 0 30px;
}
}
@media (max-width: 575px) {
.match-section {
	margin: 0 15px;
}
}
@media (max-width: 575px) {
.match-section.style-top {
	margin-top: 80px;
}
}
.match-section .line-slider {
	margin-top: 0;
	position: absolute;
	top: 220px;
}
@media (max-width: 1399px) {
.match-section .line-slider {
	top: 190px;
}
}
@media (max-width: 991px) {
.match-section .line-slider {
	top: 250px;
}
}
@media (max-width: 767px) {
.match-section .line-slider {
	top: 320px;
}
}
@media (max-width: 575px) {
.match-section .line-slider {
	top: 364px;
}
}
.match-section .section-title-area .nav {
	display: flex;
	align-items: center;
	gap: 20px;
}
@media (max-width: 1399px) {
.match-section .section-title-area .nav {
	gap: 10px;
}
}
@media (max-width: 991px) {
.match-section .section-title-area .nav {
	gap: 20px;
}
}
@media (max-width: 575px) {
.match-section .section-title-area .nav {
	flex-wrap: wrap;
}
}
.match-section .section-title-area .nav li {
	font-size: 16px;
	font-weight: 700;
}
@media (max-width: 1399px) {
.match-section .section-title-area .nav li {
	font-size: 16px;
}
}
.match-section .section-title-area .nav li .nav-link {
	color: var(--theme);
	transition: all 0.4s ease-in-out;
	padding: 20px 30px;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	border: 1px solid var(--theme);
}
@media (max-width: 1399px) {
.match-section .section-title-area .nav li .nav-link {
	padding: 15px 10px;
}
}
@media (max-width: 991px) {
.match-section .section-title-area .nav li .nav-link {
	padding: 20px 30px;
}
}
.match-section .section-title-area .nav li .nav-link.active {
	position: relative;
	background-color: var(--theme);
	color: var(--header);
}
.our-club-payer-item {
	margin-top: 30px;
}
.our-club-payer-item .player-image {
	position: relative;
}
.our-club-payer-item .player-image img {
	width: 100%;
	height: 100%;
	border-radius: 12px;
}
.our-club-payer-item .player-image .number {
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #0B0E13;
	top: 20px;
	right: 20px;
	position: absolute;
	background: transparent;
	color: transparent;
	opacity: 0.24;
	transition: all 0.4s ease-in-out;
}
.our-club-payer-item .player-image .number.style-2 {
	-webkit-text-stroke-color: var(--white);
}
.our-club-payer-item .player-image .player-content {
	position: absolute;
	bottom: 45px;
	text-align: center;
	left: 40px;
	right: 40px;
	transition: all 0.4s ease-in-out;
}
@media (max-width: 1600px) {
.our-club-payer-item .player-image .player-content {
	left: 30px;
	right: 30px;
}
}
.our-club-payer-item .player-image .player-content h4 {
	text-transform: uppercase;
	margin-bottom: 10px;
}
@media (max-width: 1600px) {
.our-club-payer-item .player-image .player-content h4 {
	font-size: 20px;
}
}
.our-club-payer-item .player-image .player-content h4 a {
	color: var(--white);
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}
.our-club-payer-item .player-image .player-content h4 a:hover {
	color: var(--theme);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.our-club-payer-item .player-image .content-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	bottom: -23px;
	left: 30px;
	right: 30px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	border-top: 1px solid rgba(199, 201, 206, 0.16);
	padding-top: 16px;
}
@media (max-width: 1600px) {
.our-club-payer-item .player-image .content-item {
	left: 20px;
	right: 20px;
}
}
.our-club-payer-item .player-image .content-item .content {
	text-align: center;
}
.our-club-payer-item .player-image .content-item .content h6 {
	text-transform: capitalize;
	font-family: "Chakra Petch", sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: var(--white);
}
@media (max-width: 1600px) {
.our-club-payer-item .player-image .content-item .content h6 {
	font-size: 12px;
}
}
@media (max-width: 1399px) {
.our-club-payer-item .player-image .content-item .content h6 {
	font-size: 14px;
}
}
.our-club-payer-item .player-image .content-item .content h5 {
	font-size: 24px;
	font-weight: 900;
	color: var(--white);
}
@media (max-width: 1600px) {
.our-club-payer-item .player-image .content-item .content h5 {
	font-size: 20px;
}
}
.our-club-payer-item .player-image .content-item .content span {
	font-size: 12px;
	font-weight: 400;
	color: var(--white);
	display: inline-block;
}
.our-club-payer-item .player-image .content-item .content .title {
	color: var(--theme);
	font-size: 16px;
	font-weight: 700;
}
.our-club-payer-item:hover .player-image .player-content {
	margin-bottom: 100px;
}
.our-club-payer-item:hover .player-image .number {
	background: transparent;
	color: var(--header);
	-webkit-text-stroke-width: var(--header);
	-webkit-text-stroke-color: var(--header);
	opacity: 1;
}

.our-club-payer-item:hover .player-image .number.style-2 {
	-webkit-text-stroke-width: var(--white);
	-webkit-text-stroke-color: var(--white);
	color: var(--white);
	opacity: 1;
}
.our-club-payer-item:hover .player-image .content-item {
	opacity: 1;
	visibility: visible;
	bottom: 23px;
}
.our-club-player-section .player-slider {
	margin-left: -150px;
	margin-right: -150px;
}
@media (max-width: 1399px) {
.our-club-player-section .player-slider {
	margin-left: 0;
	margin-right: 0;
}
}
.our-club-player-section .section-title-area .section-title {
	display: flex;
	align-items: start;
	gap: 15px;
	margin-top: 0;
}
.our-club-player-section .section-title-area .section-title img {
	margin-top: 10px;
}
.our-club-player-section .section-title-area .right-content {
	display: flex;
	align-items: center;
	gap: 168px;
}
@media (max-width: 1399px) {
.our-club-player-section .section-title-area .right-content {
	gap: 20px;
}
}
.our-club-player-section .section-title-area .right-content p {
	max-width: 397px;
}
@media (max-width: 1399px) {
.our-club-player-section .section-title-area .right-content p {
	font-size: 14px;
}
}
.our-club-player-section .section-title-area .right-content .array-btn {
	display: flex;
	align-items: center;
	gap: 30px;
}
@media (max-width: 1399px) {
.our-club-player-section .section-title-area .right-content .array-btn {
	gap: 20px;
}
}
.our-club-player-section .section-title-area .right-content .array-btn .array-prev {
	width: 54px;
	height: 54px;
	line-height: 54px;
	text-align: center;
	border-radius: 100px;
	background-color: var(--white);
	color: var(--header);
	transition: all 0.4s ease-in-out;
}
.our-club-player-section .section-title-area .right-content .array-btn .array-prev:hover {
	background-color: var(--theme);
}
.our-club-player-section .section-title-area .right-content .array-btn .array-next {
	width: 54px;
	height: 54px;
	line-height: 54px;
	text-align: center;
	border-radius: 100px;
	background-color: var(--theme);
	color: var(--header);
}
.our-club-player-section .section-title-area .right-content .array-btn .array-next:hover {
	background-color: var(--white);
}
.gaming-exciting-card-item {
	margin-top: 30px;
	background-color: #0F151C;
}
.gaming-exciting-card-item .gaming-image {
	overflow: hidden;
	height: 326px;
}
.gaming-exciting-card-item .gaming-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gaming-exciting-card-item .gaming-content {
	padding: 24px 45px;
}
@media (max-width: 767px) {
.gaming-exciting-card-item .gaming-content {
	padding: 30px;
}
}
@media (max-width: 470px) {
.gaming-exciting-card-item .gaming-content {
	padding: 24px;
}
}
.gaming-exciting-card-item .gaming-content .date-list {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 10px;
}
@media (max-width: 1199px) {
.gaming-exciting-card-item .gaming-content .date-list {
	flex-wrap: wrap;
	gap: 10px;
}
}
.gaming-exciting-card-item .gaming-content .date-list li i {
	margin-right: 10px;
	color: #9FA0A2;
}
.gaming-exciting-card-item .gaming-content h4 {
	margin-bottom: 30px;
	text-transform: capitalize;
}
@media (max-width: 470px) {
.gaming-exciting-card-item .gaming-content h4 {
	font-size: 19px;
	line-height: 140%;
}
}
.gaming-exciting-card-item .gaming-content h4 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
	color: var(--white);
}
.gaming-exciting-card-item .gaming-content h4 a:hover {
	color: var(--theme);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.gaming-exciting-card-item .gaming-content .theme-btn {
	background-color: transparent;
	border: 1px solid var(--white);
	color: var(--white);
}
.gaming-exciting-card-item .gaming-content .theme-btn::before {
	background-color: var(--theme);
}
.gaming-exciting-card-item .gaming-content .theme-btn::after {
	background-color: var(--theme);
}
.gaming-exciting-card-item .gaming-content .theme-btn:hover {
	border: 1px solid var(--theme);
	color: var(--header);
}
.exiting-bg-image {
	position: relative;
	padding: 40px 30px;
	margin-top: 30px;
}
@media (max-width: 470px) {
.exiting-bg-image {
	padding: 40px 25px;
}
}
.exiting-bg-image::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(28, 29, 32, 0.8);
}
.exiting-bg-image .exiting-content {
	position: relative;
}
.exiting-bg-image .exiting-content .icon {
	margin-bottom: 28px;
}
.exiting-bg-image .exiting-content p {
	font-size: 30px;
	font-style: italic;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 61px;
	margin-bottom: 61px;
	line-height: 150%;
	color: var(--white);
	letter-spacing: -0.6px;
	text-transform: capitalize;
}
@media (max-width: 1199px) {
.exiting-bg-image .exiting-content p {
	padding-bottom: 30px;
	margin-bottom: 30px;
	font-size: 18px;
}
}
.exiting-bg-image .exiting-content .info-item {
	display: flex;
	align-items: center;
	gap: 12px;
}
.exiting-bg-image .exiting-content .info-item .content h3 {
	font-size: 30px;
	text-transform: uppercase;
}
@media (max-width: 1199px) {
.exiting-bg-image .exiting-content .info-item .content h3 {
	font-size: 20px;
}
}
.exiting-bg-image .exiting-content .info-item .content span {
	font-weight: 500;
}
.gaming-exciting-section .section-title-area .theme-btn {
	background-color: transparent;
	border: 1px solid var(--white);
	color: var(--white);
}
.gaming-exciting-section .section-title-area .theme-btn::before {
	background-color: var(--theme);
}
.gaming-exciting-section .section-title-area .theme-btn::after {
	background-color: var(--theme);
}
.gaming-exciting-section .section-title-area .theme-btn:hover {
	border: 1px solid var(--theme);
	color: var(--header);
}
.gt-game-case-study-wrapper {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	margin-top: 50px;
}
@media (max-width: 1199px) {
.gt-game-case-study-wrapper {
	margin-top: 30px;
}
}
.gt-game-case-study-wrapper .gt-game-case-slider {
	height: 675px;
}
@media (max-width: 1399px) {
.gt-game-case-study-wrapper .gt-game-case-slider {
	height: 582px;
}
}
.gt-game-case-study-wrapper .gt-game-case-image {
	margin-top: 50px;
	position: relative;
}
.gt-game-case-study-wrapper .gt-game-case-image::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(0deg, rgba(11, 14, 19, 0.8) 0%, rgba(11, 14, 19, 0) 60%);
	z-index: 1;
}
@media (max-width: 1199px) {
.gt-game-case-study-wrapper .gt-game-case-image {
	height: 550px;
}
.gt-game-case-study-wrapper .gt-game-case-image img {
	object-fit: cover;
	clip-path: polygon(92% 0, 100% 9%, 100% 43%, 100% 100%, 68% 100%, 7% 100%, 0 92%, 0% 45%, 0 0) !important;
}
}
@media (max-width: 1199px) {
.gt-game-case-study-wrapper .gt-game-case-image {
	margin-top: 30px;
}
}
.gt-game-case-study-wrapper .gt-game-case-image img {
	width: 100%;
	height: 100%;
	clip-path: polygon(92% 0, 100% 20%, 100% 43%, 100% 100%, 68% 100%, 7% 100%, 0 82%, 0% 45%, 0 0);
}
.gt-game-case-study-wrapper .gt-game-case-image .gt-game-case-content {
	position: absolute;
	bottom: 60px;
	left: 80px;
	z-index: 9;
}
@media (max-width: 767px) {
.gt-game-case-study-wrapper .gt-game-case-image .gt-game-case-content {
	bottom: 30px;
	left: 30px;
	right: 30px;
}
}
.gt-game-case-study-wrapper .gt-game-case-image .gt-game-case-content .gt-box {
	font-size: 16px;
	font-weight: bold;
	color: var(--header);
	line-height: 1;
	background-color: var(--theme);
	padding: 10px;
	display: inline-block;
	margin-bottom: 15px;
}
.gt-game-case-study-wrapper .gt-game-case-image .gt-game-case-content h3 {
	font-size: 40px;
}
@media (max-width: 470px) {
.gt-game-case-study-wrapper .gt-game-case-image .gt-game-case-content h3 {
	font-size: 28px;
}
}
.gt-game-case-study-wrapper .gt-game-case-image .gt-game-case-content h3 a {
	color: var(--white);
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}
.gt-game-case-study-wrapper .gt-game-case-image .gt-game-case-content h3 a:hover {
	color: var(--theme);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.gt-game-case-study-wrapper .gt-game-case-image .gt-game-case-content p {
	color: var(--white);
	font-weight: 400;
	font-size: 16px;
	max-width: 560px;
	margin-top: 15px;
}
.gt-game-case-study-wrapper .gt-game-case-image .gt-number {
	font-weight: bold;
	font-size: 60px;
	text-decoration: none;
	color: transparent;
	-webkit-text-stroke: 1.2px var(--white);
	position: absolute;
	bottom: 100px;
	right: 60px;
	z-index: 9;
}
@media (max-width: 767px) {
.gt-game-case-study-wrapper .gt-game-case-image .gt-number {
	bottom: 160px;
	right: 30px;
}
}
@media (max-width: 470px) {
.gt-game-case-study-wrapper .gt-game-case-image .gt-number {
	bottom: 190px;
}
}
.gt-game-case-study-section {
	position: relative;/* Progress Bar Styles */
  /* Dot Styles */
}
.gt-game-case-study-section .progress-bar-wrapper {
	position: relative;
	width: 100%;
	height: 2px;
	background: rgba(255, 255, 255, 0.2);
	margin-top: 60px;
}
.gt-game-case-study-section .progress-line {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, #CBFE1C 0%, rgba(153, 5, 5, 0) 100%);
	transition: width 1.3s linear;
}
.gt-game-case-study-section .dots-container {
	display: flex;
	width: 100%;
	z-index: 999;
	justify-content: space-between;
}
.gt-game-case-study-section .dot {
	width: 10px;
	height: 10px;
	background-color: #3C3E42;
	border-radius: 50%;
	transition: background-color 0.3s, transform 0.3s;
	margin-top: -5px;
	z-index: 999;
	position: relative;
}
.gt-game-case-study-section .dot.active {
	background-color: theme-color; /* Active dot color */
	transform: scale(1.2); /* Make active dot a little larger */
}
.gt-progress-wrapper {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 60px;
	margin-top: 60px;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items {
	width: 100%;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items:not(:last-child) {
	margin-bottom: 25px;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items .pro-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items .pro-head .point {
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
}
.gt-progress-wrapper .gt-progress-wrap .pro-items .progress {
	background: var(--white);
	justify-content: flex-start;
	align-items: center;
	position: relative;
	display: flex;
	height: 5px;
	width: 100%;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items .progress-value {
	animation: load 3s normal forwards;
	border-radius: 0;
	background: rgb(255, 8, 8);
	height: 5px;
	width: 0;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items .style-two {
	animation: load2 3s normal forwards;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items .style-three {
	animation: load3 3s normal forwards;
}
@keyframes load {
 0% {
 width: 0;
}
 100% {
 width: 90%;
}
}
@keyframes load2 {
 0% {
 width: 0;
}
 100% {
 width: 70%;
}
}
@keyframes load3 {
 0% {
 width: 0;
}
 100% {
 width: 55%;
}
}
.gt-epic-gallery-item {
	margin-bottom: 30px;
}
.gt-epic-gallery-item.gt-style-2 {
	margin-top: 30px;
}
.gt-epic-gallery-item .gt-gallery-iamge {
	position: relative;
	z-index: 9;
	overflow: hidden;
}
.gt-epic-gallery-item .gt-gallery-iamge img {
	width: 100%;
	height: 100%;
}
.gt-epic-gallery-item .gt-gallery-iamge .icon {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	color: var(--white);
	z-index: 999;
	font-size: 40px;
}
.gt-epic-gallery-item .gt-gallery-iamge:before, .gt-epic-gallery-item .gt-gallery-iamge:after {
	content: "";
	position: absolute;
	height: 100%;
	width: 50%;
	top: 0;
	left: 0;
	background: rgba(203, 254, 28, 0.5);
	transform: translateX(-100%) rotate(15deg);
	transition: all 0.4s ease-in-out;
	opacity: 0;
	visibility: hidden;
}
.gt-epic-gallery-item .gt-gallery-iamge:after {
	left: auto;
	right: 0;
	transform: translateX(100%) rotate(-15deg);
}
.gt-epic-gallery-item:hover .gt-gallery-iamge .icon {
	top: 50%;
	opacity: 1;
	visibility: visible;
}
.gt-epic-gallery-item:hover .gt-gallery-iamge:before, .gt-epic-gallery-item:hover .gt-gallery-iamge:after {
	transform: none;
	opacity: 1;
	visibility: visible;
}
.gt-gallery-slider {
	margin-left: -12%;
	margin-right: -12%;
}
@media (max-width: 1199px) {
.gt-gallery-slider {
	margin-left: 0;
	margin-right: 0;
}
}
.gt-progress-wrapper {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 60px;
	margin-top: 60px;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items {
	width: 100%;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items:not(:last-child) {
	margin-bottom: 25px;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items .pro-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items .pro-head .point {
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
}
.gt-progress-wrapper .gt-progress-wrap .pro-items .progress {
	background: var(--white);
	justify-content: flex-start;
	align-items: center;
	position: relative;
	display: flex;
	height: 5px;
	width: 100%;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items .progress-value {
	animation: load 3s normal forwards;
	border-radius: 0;
	background: var(--theme);
	height: 5px;
	width: 0;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items .style-two {
	animation: load2 3s normal forwards;
}
.gt-progress-wrapper .gt-progress-wrap .pro-items .style-three {
	animation: load3 3s normal forwards;
}
@keyframes load {
 0% {
 width: 0;
}
 100% {
 width: 90%;
}
}
@keyframes load2 {
 0% {
 width: 0;
}
 100% {
 width: 70%;
}
}
@keyframes load3 {
 0% {
 width: 0;
}
 100% {
 width: 55%;
}
}
.gt-game-detaills-wrapper .gt-details-post-item .gt-game-details-item .gt-details-image img {
	width: 100%;
	height: 100%;
}
.gt-game-detaills-wrapper .gt-details-post-item .gt-game-details-item .gt-details-content {
	margin-top: 20px;
}
.gt-game-detaills-wrapper .gt-details-post-item .gt-game-details-item .gt-details-content h3 {
	font-size: 36px;
	margin-bottom: 10px;
}
@media (max-width: 767px) {
.gt-game-detaills-wrapper .gt-details-post-item .gt-game-details-item .gt-details-content h3 {
	font-size: 30;
}
}
@media (max-width: 575px) {
.gt-game-detaills-wrapper .gt-details-post-item .gt-game-details-item .gt-details-content h3 {
	font-size: 25px;
}
}
.gt-game-detaills-wrapper .gt-details-post-item .gt-list-wrapper {
	margin-top: 40px;
	margin-bottom: 40px;
}
@media (max-width: 1199px) {
.gt-game-detaills-wrapper .gt-details-post-item .gt-list-wrapper {
	margin-top: 30px;
	margin-bottom: 30px;
}
}
.gt-game-detaills-wrapper .gt-details-post-item .gt-list-wrapper .gt-list-item h4 {
	margin-bottom: 15px;
}
.gt-game-detaills-wrapper .gt-details-post-item .gt-list-wrapper .gt-list-item .gt-list {
	margin-top: 20px;
}
.gt-game-detaills-wrapper .gt-details-post-item .gt-list-wrapper .gt-list-item .gt-list li {
	font-size: 16px;
}
@media (max-width: 575px) {
.gt-game-detaills-wrapper .gt-details-post-item .gt-list-wrapper .gt-list-item .gt-list li {
	font-size: 14px;
}
}
.gt-game-detaills-wrapper .gt-details-post-item .gt-list-wrapper .gt-list-item .gt-list li:not(:last-child) {
	margin-bottom: 10px;
}
.gt-game-detaills-wrapper .gt-details-post-item .gt-list-wrapper .gt-list-item .gt-list li i {
	color: var(--theme);
	margin-right: 5px;
}
.gt-game-detaills-wrapper .gt-details-post-item .gt-list-wrapper .gt-thumb img {
	width: 100%;
	height: 100%;
}
.gt-game-detaills-wrapper .gt-details-post-item .gt-game-sideber {
	background-color: var(--bg-2);
	padding: 50px 110px;
	position: relative;
	z-index: 9;
	margin-bottom: 60px;
}
@media (max-width: 1199px) {
.gt-game-detaills-wrapper .gt-details-post-item .gt-game-sideber {
	padding: 60px;
	margin-bottom: 30px;
}
}
@media (max-width: 991px) {
.gt-game-detaills-wrapper .gt-details-post-item .gt-game-sideber {
	padding: 50px;
}
}
@media (max-width: 767px) {
.gt-game-detaills-wrapper .gt-details-post-item .gt-game-sideber {
	padding: 40px;
}
}
@media (max-width: 575px) {
.gt-game-detaills-wrapper .gt-details-post-item .gt-game-sideber {
	padding: 30px;
}
}
.gt-game-detaills-wrapper .gt-details-post-item .gt-game-sideber .icon {
	position: absolute;
	left: 30px;
	top: 30px;
}
@media (max-width: 991px) {
.gt-game-detaills-wrapper .gt-details-post-item .gt-game-sideber .icon {
	left: 20px;
	top: 20px;
}
}
@media (max-width: 575px) {
.gt-game-detaills-wrapper .gt-details-post-item .gt-game-sideber .icon {
	display: none;
}
}
.gt-game-detaills-wrapper .gt-details-post-item .gt-game-sideber .gt-x-shape {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
}
.gt-game-detaills-wrapper .gt-details-post-item .gt-game-sideber .gt-x-shape img {
	width: 100%;
	height: 100%;
}
.gt-game-detaills-wrapper .gt-details-post-item .gt-game-sideber p {
	font-size: 18px;
	font-style: italic;
	color: var(--white);
}
@media (max-width: 1199px) {
.gt-game-detaills-wrapper .gt-details-post-item .gt-game-sideber p {
	font-size: 16px;
}
}
.gt-game-detaills-wrapper .gt-details-post-item .gt-faq-item .gt-faq-content h4 {
	margin-bottom: 10px;
}
.gt-game-detaills-wrapper .gt-details-post-item .gt-faq-item .gt-faq-content p {
	margin-bottom: 20px;
}
.gt-game-detaills-wrapper .gt-details-post-item .gt-faq-item .gt-faq-content .accordion-item {
	border: 0;
	background-color: var(--bg-2);
	box-shadow: var(--box-shadow);
}
.gt-game-detaills-wrapper .gt-details-post-item .gt-faq-item .gt-faq-content .accordion-item .accordion-header .accordion-button {
	font-weight: 400;
	color: var(--theme);
	border: 0;
	border-radius: 0;
	box-shadow: none;
	background-color: var(--bg-2);
	padding: 25px 30px 0;
	text-transform: capitalize;
	font-size: 18px;
	border: none;
	padding: 20px 20px 0;
}
.gt-game-detaills-wrapper .gt-details-post-item .gt-faq-item .gt-faq-content .accordion-item .accordion-header .accordion-button::after {
	content: "\f078";
	font-family: "Font Awesome 6 Pro";
	background: transparent;
	font-weight: 500;
	transition: all 0.3s ease-in-out !important;
	color: var(--white);
}
.gt-game-detaills-wrapper .gt-details-post-item .gt-faq-item .gt-faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
	content: "\f077";
	font-family: "Font Awesome 6 Pro";
	background: transparent;
	font-weight: 500;
	color: var(--theme);
	transform: rotate(0);
}
.gt-game-detaills-wrapper .gt-details-post-item .gt-faq-item .gt-faq-content .accordion-item .accordion-header .accordion-button.collapsed {
	background-color: var(--bg-2);
	padding: 25px 20px;
	color: var(--white);
}
.gt-game-detaills-wrapper .gt-details-post-item .gt-faq-item .gt-faq-content .accordion-item .accordion-collapse .accordion-body {
	padding-right: 30px;
	padding-left: 50px;
	padding-top: 15px;
	color: var(--text);
	background-color: var(--bg-2);
	font-weight: 500;
	padding-bottom: 0;
}
@media (max-width: 1399px) {
.gt-game-detaills-wrapper .gt-details-post-item .gt-faq-item .gt-faq-content .accordion-item .accordion-collapse .accordion-body {
	padding-right: 30px;
}
}
@media (max-width: 991px) {
.gt-game-detaills-wrapper .gt-details-post-item .gt-faq-item .gt-faq-content .accordion-item .accordion-collapse .accordion-body {
	padding-right: 30px;
}
}
@media (max-width: 575px) {
.gt-game-detaills-wrapper .gt-details-post-item .gt-faq-item .gt-faq-content .accordion-item .accordion-collapse .accordion-body {
	padding-left: 23px;
}
}
.gt-game-detaills-wrapper .gt-details-post-item .gt-faq-item .gt-faq-content .accordion-item .accordion-collapse .thumb {
	margin-top: 30px;
}
.gt-game-detaills-wrapper .gt-details-post-item .gt-faq-item .gt-faq-content .accordion-item .accordion-collapse .thumb img {
	width: 100%;
	height: 100%;
}
.gt-game-detaills-wrapper .gt-main-sideber .gt-single-sideber-widget {
	padding: 30px;
	background-color: var(--bg-2);
	margin-bottom: 30px;
}
@media (max-width: 470px) {
.gt-game-detaills-wrapper .gt-main-sideber .gt-single-sideber-widget {
	padding: 25px;
}
}
.gt-game-detaills-wrapper .gt-main-sideber .gt-single-sideber-widget h4 {
	border-bottom: 1.5px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 10px;
	margin-bottom: 40px;
	text-transform: uppercase;
}
.gt-game-detaills-wrapper .gt-main-sideber .gt-single-sideber-widget .gt-sideber-box {
	position: relative;
	transition: all 0.4s ease-in-out;
	border-left: 3px solid var(--theme);
	margin-bottom: 20px;
}
.gt-game-detaills-wrapper .gt-main-sideber .gt-single-sideber-widget .gt-sideber-box::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(90deg, rgba(203, 254, 28, 0.5) 0%, rgba(94, 121, 1, 0.5) 100%);
	transition: all 0.4s ease-in-out;
	opacity: 0;
	visibility: hidden;
}
.gt-game-detaills-wrapper .gt-main-sideber .gt-single-sideber-widget .gt-sideber-box .gt-box-item {
	padding: 18px 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}
@media (max-width: 1199px) {
.gt-game-detaills-wrapper .gt-main-sideber .gt-single-sideber-widget .gt-sideber-box .gt-box-item {
	flex-wrap: wrap;
	padding: 18px 10px;
	gap: 10px;
}
}
@media (max-width: 991px) {
.gt-game-detaills-wrapper .gt-main-sideber .gt-single-sideber-widget .gt-sideber-box .gt-box-item {
	padding: 18px 30px;
}
}
@media (max-width: 470px) {
.gt-game-detaills-wrapper .gt-main-sideber .gt-single-sideber-widget .gt-sideber-box .gt-box-item {
	padding: 18px 10px;
	gap: 0;
}
}
.gt-game-detaills-wrapper .gt-main-sideber .gt-single-sideber-widget .gt-sideber-box .gt-box-item h6 {
	text-transform: uppercase;
	font-family: "Chakra Petch", sans-serif;
}
@media (max-width: 1199px) {
.gt-game-detaills-wrapper .gt-main-sideber .gt-single-sideber-widget .gt-sideber-box .gt-box-item h6 {
	font-size: 16px;
}
}
@media (max-width: 991px) {
.gt-game-detaills-wrapper .gt-main-sideber .gt-single-sideber-widget .gt-sideber-box .gt-box-item h6 {
	font-size: 16px;
}
}
@media (max-width: 470px) {
.gt-game-detaills-wrapper .gt-main-sideber .gt-single-sideber-widget .gt-sideber-box .gt-box-item h6 {
	font-size: 14px;
}
}
.gt-game-detaills-wrapper .gt-main-sideber .gt-single-sideber-widget .gt-sideber-box .gt-box-item .icon {
	color: var(--white);
}
.gt-game-detaills-wrapper .gt-main-sideber .gt-single-sideber-widget .gt-sideber-box:hover::before {
	width: 100%;
	opacity: 1;
	visibility: visible;
}
.gt-game-detaills-wrapper .gt-main-sideber .gt-single-sideber-widget .gt-sideber-box:hover .gt-box-item h6 {
	color: var(--white);
	position: relative;
}
.gt-game-detaills-wrapper .gt-main-sideber .gt-single-sideber-widget .gt-sideber-box:hover .gt-box-item .icon {
	color: var(--white);
}
.gt-game-detaills-wrapper .gt-main-sideber .gt-contact-bg {
	position: relative;
}
.gt-game-detaills-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content {
	padding: 40px;
	position: relative;
}
@media (max-width: 1199px) {
.gt-game-detaills-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content {
	padding: 30px;
}
}
.gt-game-detaills-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content h3 {
	font-size: 32px;
	color: var(--white);
	margin-bottom: 10px;
}
@media (max-width: 1199px) {
.gt-game-detaills-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content h3 {
	font-size: 30px;
}
}
.gt-game-detaills-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content p {
	border-bottom: 1.2px solid rgba(191, 191, 191, 0.24);
	padding-bottom: 24px;
	margin-bottom: 24px;
	color: var(--white);
}
.gt-game-detaills-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}
.gt-game-detaills-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item .gt-icon {
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	border: 1.2px solid rgba(191, 191, 191, 0.24);
	color: var(--theme);
	font-size: 24px;
}
.gt-game-detaills-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item .gt-list li {
	font-size: 16px;
	font-weight: 700;
	font-family: "Days One", sans-serif;
	color: var(--white);
}
@media (max-width: 1199px) {
.gt-game-detaills-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item .gt-list li {
	font-size: 14px;
}
}
.gt-game-detaills-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item .gt-list li span {
	color: var(--white);
}
.gt-game-detaills-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item .gt-list li a {
	color: var(--white);
}
.gt-gaming-card-item-5 {
	margin-top: 30px;
	clip-path: polygon(12% 0, 100% 0, 100% 100%, 75% 100%, 0 100%, 0 18%);
}
.gt-gaming-card-item-5 .gt-gaming-image {
	position: relative;
	overflow: hidden;
}
.gt-gaming-card-item-5 .gt-gaming-image img {
	width: 100%;
	height: 100%;
}
.gt-gaming-card-item-5 .gt-gaming-image::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(180deg, rgba(2, 2, 2, 0) 0%, #ADFF00 100%);
	transform: scale(1, 0);
	transition: transform 500ms ease;
	transform-origin: bottom center;
	clip-path: polygon(12% 0, 100% 0, 100% 100%, 75% 100%, 0 100%, 0 18%);
}
.gt-gaming-card-item-5 .gt-gaming-image .icon {
	width: 51px;
	height: 46px;
	border: 1px solid var(--white);
	position: absolute;
	top: 30px;
	right: -30px;
	text-align: center;
	line-height: 45px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
	clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 80% 100%, 0% 100%, 0% 20%);
}
.gt-gaming-card-item-5 .gt-gaming-image .icon::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: transparent;
	border: 1px solid var(--white);
	clip-path: polygon(20% 0%, 100% 0%, 100% 80%, 80% 100%, 0% 100%, 0% 20%);
	width: 1px;
	height: 14px;
	top: -3px;
	left: 3px;
	transform: rotate(45deg);
	transition: all 0.4s ease-in-out;
}
.gt-gaming-card-item-5 .gt-gaming-image .icon i {
	color: var(--white);
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}
.gt-gaming-card-item-5 .gt-gaming-image .icon:hover {
	background-color: var(--theme);
	border: 1px solid var(--theme);
}
.gt-gaming-card-item-5 .gt-gaming-image .icon:hover i {
	transform: rotate(0);
	color: var(--header);
}
.gt-gaming-card-item-5 .gt-gaming-image .icon:hover::before {
	border: 1px solid var(--theme);
}
.gt-gaming-card-item-5 .gt-gaming-image .gt-gaming-content {
	position: absolute;
	left: 30px;
	bottom: -30px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}
.gt-gaming-card-item-5 .gt-gaming-image .gt-gaming-content h6 {
	color: var(--header);
	background-color: var(--theme);
	padding: 5px;
	border: 1px solid var(--theme);
	margin-bottom: 20px;
	display: inline-block;
	font-size: 14px;
	border-radius: 4px;
}
.gt-gaming-card-item-5 .gt-gaming-image .gt-gaming-content h3 {
	font-size: 26px;
}
@media (max-width: 1199px) {
.gt-gaming-card-item-5 .gt-gaming-image .gt-gaming-content h3 {
	font-size: 20px;
}
}
.gt-gaming-card-item-5 .gt-gaming-image .gt-gaming-content h3 a {
	color: var(--white);
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}
.gt-gaming-card-item-5 .gt-gaming-image .gt-gaming-content h3 a:hover {
	color: var(--white);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}
.gt-gaming-card-item-5:hover .gt-gaming-image::before {
	transform: scale(1, 1);
	transform-origin: bottom center;
	z-index: 1;
}
.gt-gaming-card-item-5:hover .gt-gaming-image .icon {
	opacity: 1;
	visibility: visible;
	right: 30px;
}
.gt-gaming-card-item-5:hover .gt-gaming-image .gt-gaming-content {
	opacity: 1;
	visibility: visible;
	bottom: 30px;
}
.gt-game-section-5 .container-fluid {
	margin: 0 10px;
}
@media (max-width: 1199px) {
.gt-game-section-5 .container-fluid {
	margin: 0 0;
}
}
 @media (max-width: 1199px) {
.menu-thumb {
	/*display: none !important;*/
}
}
.header-main {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}
.header-main .logo .header-logo img {
	width: 150px;
}
.header-main .main-menu ul {
	margin-bottom: 0;
}
.header-main .main-menu ul li {
	position: relative;
	list-style: none;
	display: inline-block;
	margin-inline-end: 28px;
}
.header-main .main-menu ul li:last-child {
	margin-inline-end: 0;
}
.header-main .main-menu ul li a {
	display: inline-block;
	font-size: 16px;
	/*font-weight: 700;*/
	letter-spacing: -0.34px;
	color: var(--white);
	/*font-family: "Chakra Petch", sans-serif;*/
	padding: 20px 0;
	text-align: left;
	position: relative;
	transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a i {
	margin-left: 4px;
	font-size: 14px;
}
.header-main .main-menu ul li a:hover {
	color: var(--theme) !important;
}
.header-main .main-menu ul li .submenu {
	position: absolute;
	top: 115%;
	inset-inline-start: 0;
	min-width: 260px;
	padding: 20px 0;
	z-index: 99999;
	visibility: hidden;
	opacity: 0;
	transform-origin: top center;
	color: var(--header);
	transform: translateY(-10px);
	transition: all 0.4s ease-in-out;
	border-top: 6px solid var(--theme);
	background-color: #0B0E13;
	box-shadow: rgba(0, 0, 0, 0.9) 0px 8px 24px;
}
.header-main .main-menu ul li .submenu li {
	display: block;
	width: 100%;
	margin: 0;
}
.header-main .main-menu ul li .submenu li a {
	position: relative;
	z-index: 11;
	font-size: 17px;
	/*font-weight: 700;*/
	letter-spacing: -0.34px;
	color: var(--header);
	line-height: 38px;
	padding: 0px 0px 0px 32px;
	padding-right: 22px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-main .main-menu ul li .submenu li a::before {
	content: "";
	position: absolute;
	width: 0px;
	height: 2px;
	background: var(--theme);
	left: 14px;
	bottom: 18px;
	transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li a:hover {
	color: var(--theme) !important;
}
.header-main .main-menu ul li .submenu li:last-child a {
	border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
	inset-inline-start: 100%;
	top: 0;
	visibility: hidden;
	opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
	color: var(--theme) !important;
	margin-left: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::before {
	width: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
	color: var(--theme);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
	-webkit-transform: translateY(1);
	-moz-transform: translateY(1);
	-ms-transform: translateY(1);
	-o-transform: translateY(1);
	transform: translateY(1);
	visibility: visible;
	opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
	position: absolute;
	top: 50%;
	inset-inline-end: 25px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
	width: 1650px;
	padding: 30px 30px 10px 30px;
	opacity: 0;
	left: -660px;
	visibility: hidden;
	padding: 30px 30px 10px 30px;
}
.header-main .main-menu ul li .has-homemenu.style-2 {
	left: -315px;
}
@media (max-width: 1399px) {
.header-main .main-menu ul li .has-homemenu {
	width: 1000px;
}
}
.header-main .main-menu ul li .has-homemenu .homemenu-items {
	display: flex;
	align-items: center;
	gap: 15px;
	justify-content: space-between;
}
@media (max-width: 991px) {
.header-main .main-menu ul li .has-homemenu .homemenu-items {
	flex-wrap: wrap;
}
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
	position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
	position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	margin-top: 20px;
}
@media (max-width: 1399px) {
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn {
	font-size: 14px;
	min-width: 140px;
}
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn {
	padding: 18px 30px;
	justify-content: center;
	line-height: 1;
	color: var(--header);
	border-radius: 100px;
	clip-path: none !important;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn:hover {
	color: var(--header) !important;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
	background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	content: "";
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
	visibility: visible;
	opacity: 1;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
	opacity: 1;
	visibility: visible;
	margin-top: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
	opacity: 1;
	visibility: visible;
	bottom: 50%;
	transform: translateY(50%);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
	width: 100%;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
	text-align: center;
	margin: 15px auto;
	display: inline-block;
	font-size: 18px;
	font-weight: 400;
	font-family: "Chakra Petch", sans-serif;
}
.header-main .main-menu ul li:hover > a {
	color: var(--theme);
}
.header-main .main-menu ul li:hover > a::after {
	color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0px);
}
.header-main .header-right {
	gap: 80px;
}
@media (max-width: 1399px) {
.header-main .header-right {
	gap: 20px;
}
}
.header-main .sidebar__toggle {
	cursor: pointer;
	font-size: 20px;
}
.header-1 .container {
	max-width: 1730px;
}
.header-1 .header-main {
	padding: 15px 0;
}
.header-1.header-6 {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 999;
}
.header-1 .social-icon a {
	display: inline-block;
	width: 55px;
	height: 55px;
	line-height: 55px;
	border-radius: 100px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: #1C1D20;
	text-align: center;
	font-size: 22px;
	margin-right: -22px;
}
.header-1 .social-icon a i {
	-webkit-transition: all 900ms ease;
	transition: all 900ms ease;
}
.header-1 .social-icon a:hover {
	color: var(--theme);
	border: 1px solid var(--theme);
}
.header-1 .social-icon a:hover i {
	-webkit-transform: rotateY(360deg);
	transform: rotateY(360deg);
}
.header-1 .bar-icon {
	display: flex;
	align-items: center;
	gap: 20px;
}
.header-1 .bar-icon .search-toggler, .header-1 .bar-icon .sidebar__toggle {
	width: 60px;
	height: 60px;
	line-height: 55px;
	display: inline-block;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.2);
	text-align: center;
}
@media (max-width: 575px) {
.header-1 .bar-icon .search-toggler, .header-1 .bar-icon .sidebar__toggle {
	width: 50px;
	line-height: 45px;
	height: 50px;
}
}
.header-2 {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 999;
	background: #000;
}
@media (max-width: 1899px) {
.header-2 {
/*overflow: hidden;*/
}
}
.header-2 .header-left {
	display: flex;
	align-items: center;
	gap: 70px;
}
@media (max-width: 1399px) {
.header-2 .header-left {
	gap: 0;
}
}
@media (max-width: 1399px) {
.header-2 .header-left .sidebar__toggle {
	display: none;
}
}
.header-2 .container-fluid {
	padding: 0 60px;
}
@media (max-width: 1600px) {
.header-2 .container-fluid {
	padding: 0 50px;
}
}
@media (max-width: 1399px) {
.header-2 .container-fluid {
	padding: 0 30px;
}
}
@media (max-width: 575px) {
.header-2 .container-fluid {
	padding: 0 15px;
}
}
@media (max-width: 1399px) {
.header-2 .header-main .logo .header-logo img {
	width: 120px;
}
}
.header-2 .header-main .header-right .main-menu ul li a {
	color: var(--white);
}
.header-2 .header-main .header-right .header-right-icon {
	display: flex;
	align-items: center;
	gap: 60px;
}
@media (max-width: 1600px) {
.header-2 .header-main .header-right .header-right-icon {
	gap: 30px;
}
}
.header-2 .header-main .header-right .header-right-icon .header-button .theme-btn.style-2 {
	background: var(--white);
	padding-left: 15px;
}
.header-2 .header-main .header-right .header-right-icon .header-button .theme-btn.style-2 .left-line {
	position: relative;
	width: 6px;
	left: -8px;
}
.header-2 .header-main .header-right .header-right-icon .header-button .theme-btn.style-2 .left-line::before {
	background: var(--theme);
	width: 5px;
	height: 100%;
	left: -7px;
	position: absolute;
	content: "";
}
.header-2 .header-main .header-right .header-right-icon .header-button .theme-btn.style-2::before {
	background: linear-gradient(90deg, #ffc107 0%, #a57b00 100%);
}
.header-2 .header-main .header-right .header-right-icon .header-button .theme-btn.style-2::after {
	background: linear-gradient(90deg, #ffc107 0%, #a57b00 100%);
}
@media (max-width: 1199px) {
.header-2 .header-main .header-right .header-right-icon .header-button {
	/*display: none;*/
}
}
@media (max-width: 1399px) {
.header-2 .header-main .header-right .header-right-icon .sidebar__toggle {
	border-radius: 40px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: #0B0E13;
	width: 40px;
	height: 40px;
	line-height: 36px;
	text-align: center;
}
}
.header-2.header-3 {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 999;
}
.header-2.header-3 .header-main .main-menu ul li a {
	color: var(--white);
}
.header-2.header-3 .header-right .header-right-icon .header-button .theme-btn {
	border-radius: 10px;
}
.header-2.header-3 .header-right .header-right-icon .search-toggler {
	border: 1px solid rgba(255, 255, 255, 0.2);
	width: 51px;
	height: 51px;
	line-height: 51px;
	text-align: center;
	border-radius: 100px;
}
.header-2.header-3 .header-right .header-right-icon .sidebar__toggle {
	border: 1px solid rgba(255, 255, 255, 0.2);
	width: 51px;
	height: 51px;
	line-height: 51px;
	text-align: center;
	border-radius: 100px;
}
.header-2.header-4 .container-fluid {
	padding: 0 155px;
}
@media (max-width: 1600px) {
.header-2.header-4 .container-fluid {
	padding: 0 50px;
}
}
@media (max-width: 1399px) {
.header-2.header-4 .container-fluid {
	padding: 0 30px;
}
}
@media (max-width: 575px) {
.header-2.header-4 .container-fluid {
	padding: 0 15px;
}
}
.header-2.header-4 .header-main .main-menu ul li a {
	color: var(--white);
}
.header-2.header-4 .header-right .header-right-icon {
	gap: 48px;
}
@media (max-width: 1399px) {
.header-2.header-4 .header-right .header-right-icon .sidebar__toggle {
	border-radius: 0;
	border: none;
	background: transparent;
	line-height: 0;
	text-align: initial;
}
}
.header-2.header-7 {
	border-bottom: 1px solid rgba(152, 152, 152, 0.32);
	background-color: #1D1D1D;
}
.header-2.style-5 {
	border-bottom: 1px solid rgba(159, 160, 162, 0.24);
}
.header-2.new-bg {
	background: linear-gradient(180deg, #020202 0%, rgba(18, 21, 17, 0) 100%);
}
.sticky {
	position: fixed !important;
	top: 0 !important;
	left: 0;
	width: 100%;
	z-index: 9999;
	transition: all 0.9s;
	background-color: #0B0E13;
	-webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
	animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
	box-shadow: rgba(0, 0, 0, 0.9) 0px 8px 24px;
}
.sticky.header-1 .header-right {
	padding-bottom: 0;
	margin-top: 0;
}
.sticky.header-2.new-bg {
	background: #0B0E13;
}
.style-offcanvas-2 {
	position: relative;
}
.style-offcanvas-2 .offcanvas__close {
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--theme);
	position: absolute;
	top: 60px;
	right: 60px;
}
@media (max-width: 1199px) {
.style-offcanvas-2 .offcanvas__close {
	top: 25px;
	right: 25px;
}
}
.style-offcanvas-2 .offcanvas__close i {
	color: var(--header);
}
.style-offcanvas-2 .offcanvas-image {
	position: absolute;
	right: 0;
}
@media (max-width: 1899px) {
.style-offcanvas-2 .offcanvas-image {
	max-width: 600px;
}
.style-offcanvas-2 .offcanvas-image img {
	width: 100%;
	height: 100%;
}
}
@media (max-width: 1199px) {
.style-offcanvas-2 .offcanvas-image {
	display: none;
}
}
.style-offcanvas-2 .offcanvas__wrapper {
	padding-top: 0;
	padding-left: 0;
	padding-right: 0;
	position: relative;
}
.style-offcanvas-2 .offcanvas__wrapper .offcanvas__close button {
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--header) !important;
}
.style-offcanvas-2 .offcanvas__wrapper .offcanvas__close:hover {
	background-color: var(--black);
}
.style-offcanvas-2 .offcanvas__info::before {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 1px;
	height: 100%;
	content: "";
	background: rgba(255, 255, 255, 0.2);
	left: 39%;
}
@media (max-width: 1899px) {
.style-offcanvas-2 .offcanvas__info::before {
	display: none;
}
}
.style-offcanvas-2 .mean-nav ul li a {
	font-size: 40px !important;
	font-weight: 700 !important;
	color: #ABABAB !important;
}
@media (max-width: 575px) {
.style-offcanvas-2 .mean-nav ul li a {
	font-size: 20px !important;
}
}
.style-offcanvas-2 .mean-nav > ul > li > a:hover {
	color: var(--theme) !important;
}
.style-offcanvas-2 .mean-container .mean-nav ul li li a {
	padding: 10px 0 !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	color: #ABABAB !important;
}
@media (max-width: 575px) {
.style-offcanvas-2 .mean-container .mean-nav ul li li a {
	font-size: 17px !important;
}
}
.style-offcanvas-2 .mean-container .mean-nav ul li li a:hover {
	color: var(--theme) !important;
}
.style-offcanvas-2 .mean-container .mean-nav ul li > a.mean-expand i {
	font-size: 24px I !important;
}
.offcanvas__info {
	background: var(--black) none repeat scroll 0 0;
	border-left: 2px solid var(--theme);
	position: fixed;
	right: 0;
	top: 0;
	width: 450px;
	height: 100%;
	-webkit-transform: translateX(calc(100% + 80px));
	-moz-transform: translateX(calc(100% + 80px));
	-ms-transform: translateX(calc(100% + 80px));
	-o-transform: translateX(calc(100% + 80px));
	transform: translateX(calc(100% + 80px));
	-webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
	-moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
	transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
	z-index: 9999999;
	overflow-y: scroll;
	overscroll-behavior-y: contain;
	scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
 display: none;
}
.offcanvas__info.style-2 {
	left: 0;
	right: initial;
	transform: translateX(calc(-100% - 80px));
}
@media (max-width: 1399px) {
.offcanvas__info.style-2 {
	left: initial;
	right: 0;
	transform: translateX(calc(100% + 80px));
}
}
.offcanvas__info.info-open {
	opacity: 1;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}
.offcanvas__wrapper {
	position: relative;
	height: 100%;
	padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas__content .text {
	color: var(--white);
}
@media (max-width: 1399px) {
.offcanvas__wrapper .offcanvas__content .offcanvas__logo img {
	width: 120px;
}
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--theme);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
	color: var(--header);
}
.offcanvas__wrapper .offcanvas__content .sideber-image {
	margin-top: 50px;
	margin-bottom: 30px;
}
.offcanvas__wrapper .offcanvas__content .sideber-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
	margin-top: 0;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
	margin-top: 30px;
}
@media (max-width: 575px) {
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
	display: none;
}
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
	font-size: 20px;
	font-weight: 400;
	text-transform: capitalize;
}
@media (max-width: 575px) {
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
	font-size: 14px;
}
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
	margin-bottom: 30px;
}
@media (max-width: 575px) {
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
	margin-bottom: 20px;
}
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
	color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
	margin-right: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
	color: var(--theme);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
	text-transform: initial;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
	width: 100%;
	padding: 20px 40px;
	text-transform: capitalize !important;
}
.offcanvas__wrapper .social-icon {
	margin-top: 40px;
}
@media (max-width: 575px) {
.offcanvas__wrapper .social-icon {
	margin-top: 30px;
}
}
.offcanvas__wrapper .social-icon a {
	display: inline-block;
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 100px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: #1C1D20;
	text-align: center;
	font-size: 22px;
	margin-right: -22px;
}
.offcanvas__wrapper .social-icon a i {
	-webkit-transition: all 900ms ease;
	transition: all 900ms ease;
}
.offcanvas__wrapper .social-icon a:hover {
	color: var(--theme);
	border: 1px solid var(--theme);
}
.offcanvas__wrapper .social-icon a:hover i {
	-webkit-transform: rotateY(360deg);
	transform: rotateY(360deg);
}
.offcanvas__overlay {
	position: fixed;
	height: 100%;
	width: 100%;
	background: #151515;
	z-index: 900;
	top: 0;
	opacity: 0;
	visibility: hidden;
	right: 0;
}
.offcanvas__overlay.overlay-open {
	opacity: 0.8;
	visibility: visible;
}
 @media (max-width: 450px) {
.offcanvas__info {
	width: 300px;
}
}
@media (max-width: 575px) {
.offcanvas__wrapper {
	padding: 20px;
}
}
.gt-breadcrumb-wrapper {
	position: relative;
	margin-top: 110px;
}
.gt-breadcrumb-wrapper.bg-cover {
	background-size: initial;
}
.gt-breadcrumb-wrapper .gt-left-shape {
	position: absolute;
	bottom: 0;
	left: 60px;
}
@media (min-width: 2401px) and (max-width: 2560px) {
.gt-breadcrumb-wrapper .gt-left-shape {
	left: 360px;
}
}
@media (min-width: 2201px) and (max-width: 2400px) {
.gt-breadcrumb-wrapper .gt-left-shape {
	display: none;
}
}
@media (min-width: 1900px) and (max-width: 2200px) {
.gt-breadcrumb-wrapper .gt-left-shape {
	display: none;
}
}
@media (max-width: 1899px) {
.gt-breadcrumb-wrapper .gt-left-shape {
	display: none;
}
}
.gt-breadcrumb-wrapper .gt-left-shape img {
	height: 100%;
}
.gt-breadcrumb-wrapper .gt-right-shape {
	position: absolute;
	top: 0;
	right: 55px;
}
@media (min-width: 2401px) and (max-width: 2560px) {
.gt-breadcrumb-wrapper .gt-right-shape {
	right: 14%;
}
}
@media (min-width: 2201px) and (max-width: 2400px) {
.gt-breadcrumb-wrapper .gt-right-shape {
	display: none;
}
}
@media (min-width: 1900px) and (max-width: 2200px) {
.gt-breadcrumb-wrapper .gt-right-shape {
	display: none;
}
}
@media (max-width: 1899px) {
.gt-breadcrumb-wrapper .gt-right-shape {
	display: none;
}
}
.gt-breadcrumb-wrapper .gt-right-shape img {
	height: 100%;
}
.gt-breadcrumb-wrapper .gt-blur-shape {
	position: absolute;
	top: 0%;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}
@media (max-width: 1199px) {
.gt-breadcrumb-wrapper .gt-blur-shape {
	display: none;
}
}
.gt-breadcrumb-wrapper .gt-page-heading {
	position: relative;
	padding: 65px 0 65px;
	z-index: 9;
	text-align: center;
}
@media (max-width: 767px) {
.gt-breadcrumb-wrapper .gt-page-heading {
	flex-wrap: wrap;
	justify-content: center;
	gap: 50px;
}
}
.gt-breadcrumb-wrapper .gt-page-heading h1 {
	color: var(--white);
	font-size: 66px;
	position: relative;
	z-index: 9;
	font-weight: 400;
	text-transform: capitalize;
}
@media (max-width: 1199px) {
.gt-breadcrumb-wrapper .gt-page-heading h1 {
	font-size: 65px;
}
}
@media (max-width: 991px) {
.gt-breadcrumb-wrapper .gt-page-heading h1 {
	font-size: 45px;
}
}
@media (max-width: 767px) {
.gt-breadcrumb-wrapper .gt-page-heading h1 {
	font-size: 35px;
}
}
@media (max-width: 575px) {
.gt-breadcrumb-wrapper .gt-page-heading h1 {
	font-size: 28px;
}
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items {
	display: inline-flex;
	justify-content: center;
	margin-top: 20px;
	gap: 10px;
	justify-content: center;
}
@media (max-width: 1199px) {
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items {
	flex-wrap: wrap;
}
}
@media (max-width: 575px) {
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items {
	margin-top: 15px;
}
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li {
	color: var(--white);
	text-transform: capitalize;
	font-weight: 400;
	font-size: 16px;
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li.color {
	color: var(--theme);
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li a {
	color: var(--white);
	transition: all 0.4s ease-in-out;
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li a:hover {
	color: var(--theme);
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li a i {
	color: var(--theme);
	margin-right: 5px;
}
.gt-breadcrumb-wrapper .gt-page-heading .gt-breadcrumb-items li i {
	color: var(--white);
}
.gt-error-items {
	text-align: center;
}
.gt-error-items .gt-error-image {
	margin-bottom: 50px;
}
@media (max-width: 1199px) {
.gt-error-items .gt-error-image {
	margin-bottom: 40px;
}
}
.gt-error-items .gt-error-image img {
	width: 100%;
	height: 100%;
}
.gt-error-items h2 {
	font-size: 36px;
	font-weight: 500;
	margin-bottom: 50px;
	text-transform: capitalize;
}
@media (max-width: 1199px) {
.gt-error-items h2 {
	margin-bottom: 40px;
}
}
@media (max-width: 575px) {
.gt-error-items h2 {
	font-size: 25px;
}
}
.style-offcanvas-2 .offcanvas__info {
	width: 100%;
	background-color: #0B0E13;
	border-left: none;
	padding: 100px;
	overflow-y: initial;
}
@media (max-width: 1899px) {
.style-offcanvas-2 .offcanvas__info {
	overflow-y: scroll;
}
}
@media (max-width: 991px) {
.style-offcanvas-2 .offcanvas__info {
	padding: 100px 40px;
}
}
.style-offcanvas-2 .offcanvas__top {
	border-top: none;
}
.gt-error-items {
	text-align: center;
}
.gt-error-items .gt-error-image {
	margin-bottom: 50px;
}
@media (max-width: 1199px) {
.gt-error-items .gt-error-image {
	margin-bottom: 40px;
}
}
.gt-error-items .gt-error-image img {
	width: 100%;
	height: 100%;
}
.gt-error-items h2 {
	font-size: 36px;
	font-weight: 500;
	margin-bottom: 50px;
	text-transform: capitalize;
}
@media (max-width: 1199px) {
.gt-error-items h2 {
	margin-bottom: 40px;
}
}
@media (max-width: 575px) {
.gt-error-items h2 {
	font-size: 25px;
}
}

::-webkit-scrollbar {
 width: 8px;
 height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
 box-shadow: inset 0 0 5px var(--bg);
 border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
 background: var(--theme);
 border-radius: 10px;
}
.fix {
	overflow: hidden;
}
.ralt {
	position: relative;
}
.ripple {
	position: relative;
}
.ripple::before, .ripple::after {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100px;
	height: 100px;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(203, 254, 28, 0.5);
	-webkit-animation: rippleOne 3s infinite;
	animation: rippleOne 3s infinite;
}
.ripple::before {
	-webkit-animation-delay: 0.9s;
	animation-delay: 0.9s;
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
}
.ripple::after {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
}
.array-button {
	gap: 16px;
	position: relative;
	z-index: 9;
}
@media (max-width: 1199px) {
.array-button {
	flex-wrap: wrap;
}
}
.array-button .array-prev {
	width: 55px;
	height: 55px;
	line-height: 50px;
	text-align: center;
	background-color: var(--white);
	color: var(--header);
	transition: all 0.4s ease-in-out;
	border-radius: 50%;
	overflow: hidden;
}
@media (max-width: 575px) {
.array-button .array-prev {
	width: 50px;
	height: 50px;
	line-height: 50px;
}
}
.array-button .array-prev i {
	transform: rotate(45deg);
	transition: all 0.4s ease-in-out;
}
.array-button .array-prev:hover {
	background-color: var(--theme);
	color: var(--header);
}
.array-button .array-prev:hover i {
	transform: rotate(90deg);
}
.array-button .array-next {
	width: 55px;
	height: 55px;
	line-height: 55px;
	text-align: center;
	background-color: var(--white);
	color: var(--header);
	transition: all 0.4s ease-in-out;
	border-radius: 50%;
}
@media (max-width: 575px) {
.array-button .array-next {
	width: 50px;
	height: 50px;
	line-height: 50px;
}
}
.array-button .array-next i {
	transform: rotate(45deg);
	transition: all 0.4s ease-in-out;
}
.array-button .array-next:hover {
	background-color: var(--theme);
	color: var(--header);
}
.array-button .array-next:hover i {
	transform: rotate(90deg);
}
.swiper-dot {
	text-align: center;
}
.swiper-dot .swiper-pagination-bullet {
	width: 5px;
	height: 5px;
	transition: 0.6s;
	background-color: var(--white);
	border-radius: 0;
	opacity: 1;
	position: relative;
}
.swiper-dot .swiper-pagination-bullet:not(:last-child) {
	margin-right: 15px;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--theme);
	border: 1px solid var(--theme);
	transition: 0.6s;
	position: relative;
	width: 5px;
	height: 5px;
	border-radius: 0;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	border: 1px solid var(--theme);
	width: 20px;
	height: 20px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.swiper-dot-2 {
	text-align: center;
}
.swiper-dot-2 .swiper-pagination-bullet {
	width: 5px;
	height: 5px;
	transition: 0.6s;
	background-color: var(--white);
	border-radius: 30px;
	opacity: 1;
	position: relative;
}
.swiper-dot-2 .swiper-pagination-bullet:not(:last-child) {
	margin-bottom: 30px;
}
.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--theme);
	border: 1px solid var(--theme);
	transition: 0.6s;
	position: relative;
	width: 5px;
	height: 5px;
	border-radius: 30px;
}
.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	border: 1px solid var(--theme);
	width: 20px;
	height: 20px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
}
.bg-cover {
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	background-position: center;
}
.slide-transtion {
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
}
.brand-slide-element {
	width: auto;
	display: inline-block;
}
.footer-bg {
	background-color: var(--header);
}
.page-nav-wrap {
	margin-top: 60px;
}
.page-nav-wrap ul li {
	display: inline-block;
}
.page-nav-wrap ul li.active .page-numbers {
	background-color: var(--theme);
	color: var(--white);
}
.page-nav-wrap ul li .page-numbers {
	display: inline-block;
	width: 48px;
	height: 48px;
	text-align: center;
	line-height: 48px;
	border-radius: 0;
	background: var(--bg);
	color: var(--header);
	font-weight: 400;
	transition: all 0.3s ease-in-out;
	margin: 0 2px;
}
.page-nav-wrap ul li .page-numbers.current {
	background-color: var(--theme);
	color: var(--white);
}
@media (max-width: 767px) {
.page-nav-wrap ul li .page-numbers {
	margin-top: 10px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
}
}
.page-nav-wrap ul li .page-numbers i {
	margin-top: 2px;
	color: var(--theme);
	transition: all 0.4s ease-in-out;
}
.page-nav-wrap ul li .page-numbers:hover {
	background-color: var(--theme);
	color: var(--white);
}
.page-nav-wrap ul li .page-numbers:hover i {
	color: var(--white);
}
.swiper-number4 {
	text-align: center;
}
.swiper-number4 .swiper-number-bullet {
	transition: 0.6s;
	opacity: 1;
	border: 1px transparent;
	position: relative;
	color: var(--white);
}
.swiper-number4 .swiper-number-bullet.swiper-number-bullet-active {
	background-color: var(--theme);
	transition: 0.6s;
	position: relative;
	width: 35px;
	border-radius: 30px;
}
.sticky-style {
	position: sticky !important;
	top: 100px;
}
.gt-slide-transtion {
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
}
.gt-brand-slide-element {
	width: auto;
	display: inline-block;
}
.p-relative {
	position: relative;
}
.array-buttons {
	display: flex;
	align-items: center;
	gap: 20px;
}
@media (max-width: 1199px) {
.array-buttons {
	flex-wrap: wrap;
}
}
.array-buttons .array-prev {
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	background-color: transparent;
	color: var(--white);
	transition: all 0.4s ease-in-out;
	border: 1px solid var(--white);
}
@media (max-width: 575px) {
.array-buttons .array-prev {
	width: 50px;
	height: 50px;
	line-height: 50px;
}
}
.array-buttons .array-prev i {
	transform: rotate(45deg);
	transition: all 0.4s ease-in-out;
}
.array-buttons .array-prev:hover {
	background-color: var(--theme);
	border: 1px solid var(--theme);
}
.array-buttons .array-prev:hover i {
	transform: rotate(90deg);
}
.array-buttons .array-next {
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	background-color: var(--white);
	color: var(--theme);
	transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
.array-buttons .array-next {
	width: 50px;
	height: 50px;
	line-height: 50px;
}
}
.array-buttons .array-next i {
	transform: rotate(45deg);
	transition: all 0.4s ease-in-out;
}
.array-buttons .array-next:hover {
	background-color: var(--theme);
	color: var(--white);
}
.array-buttons .array-next:hover i {
	transform: rotate(90deg);
}
.swiper-dot-5 {
	text-align: center;
	margin-top: 40px;
}
.swiper-dot-5 .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	transition: 0.6s;
	background: #6F7278;
	border-radius: 10px;
	opacity: 1;
	position: relative;
}
.swiper-dot-5 .swiper-pagination-bullet:not(:last-child) {
	margin-right: 15px;
}
.swiper-dot-5 .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--theme);
	transition: 0.6s;
	position: relative;
	width: 10px;
	height: 10px;
	border-radius: 10;
}
.t-uppercase {
	text-transform: uppercase;
}
.custom-cursor {
	width: 30px;
	height: 30px;
	border: 2px solid var(--theme);
	border-radius: 50%;
	position: fixed;
	transform: translate(-50%, -50%);
	pointer-events: none;
	transition: transform 0.1s ease, background 0.2s ease;
	z-index: 9999;
}
.boder-10 {
	border-radius: 10px;
}
.hero-1 {
	padding: 100px 0 0;
	position: relative;
}
@media (max-width: 1399px) {
.hero-1 {
	padding: 110px 0 0;
}
}
@media (max-width: 991px) {
.hero-1 {
	padding: 100px 0 0;
}
}
.hero-1 .line-slider {
	position: absolute;
	top: -56px;
	left: 0;
	right: 0;
}
@media (max-width: 1399px) {
.hero-1 .line-slider {
	top: -60px;
}
}
.hero-1 .line-slider2 {
	margin-top: 100px;
}
@media (max-width: 1399px) {
.hero-1 .line-slider2 {
	margin-top: 60px;
}
}
.hero-1 .hero-bb {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.2);
	overflow: hidden;
}
.hero-1 .hero-bb span {
	position: absolute;
	bottom: 0;
	height: 1px;
	width: 20px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, #CBFE1C 50.96%, rgba(255, 255, 255, 0.1) 100%);
	animation: moveLine 1s linear infinite;
}
.hero-1 .hero-bb .line-1 {
	left: 0;
	animation-delay: 0s;
}
.hero-1 .hero-bb .line-2 {
	left: 25%;
	animation-delay: 0.2s;
}
.hero-1 .hero-bb .line-3 {
	left: 50%;
	animation-delay: 0.4s;
}
.hero-1 .hero-bb .line-4 {
	left: 75%;
	animation-delay: 0.6s;
}
.hero-1 .hero-bb .line-5 {
	right: 0;
	animation-delay: 0.8s;
}
@keyframes moveLine {
 0% {
 transform: translateX(150%);
}
 100% {
 transform: translateX(-150%);
}
}
.hero-1 .right-shape {
	position: absolute;
	bottom: -20%;
	right: 0;
}
@media (max-width: 1199px) {
.hero-1 .right-shape {
	display: none;
	bottom: 34%;
	right: -10%;
}
}
.hero-1 .right-shape-2 {
	display: none;
}
@media (max-width: 575px) {
.hero-1 .right-shape-2 {
	bottom: 34%;
	right: 0;
	display: block;
	position: absolute;
	z-index: -1;
}
.hero-1 .right-shape-2 img {
	width: 100%;
	height: 100%;
}
}
.hero-1 .black-box {
	display: none;
}
@media (max-width: 575px) {
.hero-1 .black-box {
	display: block;
	position: absolute;
	top: 43%;
	left: 7px;
}
}
.hero-1 .hero-image {
	position: absolute;
	bottom: 0;
	right: 75px;
	z-index: 999;
}
@media (max-width: 1199px) {
.hero-1 .hero-image {
	display: none;
}
}
@media (max-width: 575px) {
.hero-1 .hero-image {
	right: 4%;
	max-width: 200px;
	top: 20%;
	display: initial;
}
.hero-1 .hero-image img {
	width: 100%;
}
}
.hero-1 .container {
	max-width: 1730px;
}
.hero-1 .hero-content {
	max-width: 1386px;
	position: relative;
	z-index: 9;
}
.hero-1 .hero-content h1 {
	position: relative;
}
@media (max-width: 1399px) {
.hero-1 .hero-content h1 {
	line-height: 130%;
}
}
@media (max-width: 1399px) {
.hero-1 .hero-content h1 {
	font-size: 85px;
}
}
@media (max-width: 1199px) {
.hero-1 .hero-content h1 {
	font-size: 85px;
}
}
@media (max-width: 991px) {
.hero-1 .hero-content h1 {
	font-size: 65px;
}
}
@media (max-width: 767px) {
.hero-1 .hero-content h1 {
	font-size: 55px;
}
}
@media (max-width: 575px) {
.hero-1 .hero-content h1 {
	font-size: 38px;
}
}
@media (max-width: 420px) {
.hero-1 .hero-content h1 {
	font-size: 36px;
	line-height: 112%;
}
}
.hero-1 .hero-content h1 .sub-text {
	color: var(--theme);
	font-size: 53px;
	letter-spacing: -1.2px;
	text-transform: uppercase;
	position: absolute;
	top: 37px;
	right: 176px;
}
@media (max-width: 1399px) {
.hero-1 .hero-content h1 .sub-text {
	position: absolute;
	top: 0;
	font-size: 40px;
	right: 165px;
}
}
@media (max-width: 991px) {
.hero-1 .hero-content h1 .sub-text {
	position: absolute;
	top: 0;
	right: 30px;
	font-size: 35px;
}
}
@media (max-width: 767px) {
.hero-1 .hero-content h1 .sub-text {
	font-size: 17px;
	position: absolute;
	top: 0;
}
}
@media (max-width: 420px) {
.hero-1 .hero-content h1 .sub-text {
	font-size: 14px;
	right: 36px;
	position: absolute;
	top: 0;
}
}
.hero-1 .hero-content h1 .dot-shape {
	position: absolute;
	top: 0;
	left: 34%;
}
@media (max-width: 1399px) {
.hero-1 .hero-content h1 .dot-shape {
	top: -20px;
	left: 27%;
}
}
@media (max-width: 991px) {
.hero-1 .hero-content h1 .dot-shape {
	top: -20px;
	left: 28%;
}
}
@media (max-width: 575px) {
.hero-1 .hero-content h1 .dot-shape {
	top: -24px;
	left: 30%;
}
.hero-1 .hero-content h1 .dot-shape img {
	width: 60px;
}
}
.hero-1 .hero-content .video-wrap {
	display: flex;
	align-items: center;
	gap: 15px;
	position: absolute;
	bottom: 36%;
	left: 39.5%;
}
@media (max-width: 1399px) {
.hero-1 .hero-content .video-wrap {
	position: static;
	margin-top: 30px;
}
}
@media (min-width: 390px) and (max-width: 450px) {
.hero-1 .hero-content .video-wrap {
	position: absolute;
	bottom: 79%; /* example */
	left: 33.5%;
}
.hero-1 .hero-content .video-wrap .box-shape {
	display: none;
}
}
@media (max-width: 380px) {
.hero-1 .hero-content .video-wrap {
	position: absolute;
	bottom: 82%;
	left: 33.5%;
}
.hero-1 .hero-content .video-wrap .box-shape {
	display: none;
}
}
.hero-1 .hero-content .video-wrap .video-btn {
	width: 112px;
	height: 112px;
	line-height: 116px;
	border-radius: 50%;
	color: #0B0E13;
	background-color: var(--theme);
	display: inline-block;
	text-align: center;
	font-size: 25px;
	position: relative;
	z-index: 9;
	overflow: hidden;
}
@media (max-width: 575px) {
.hero-1 .hero-content .video-wrap .video-btn {
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 10px;
}
}
.hero-1 .hero-content .video-wrap .video-btn::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--white);
	border-radius: 50%;
	transform: translateY(-101%);
	opacity: 0;
	transition: all 0.4s ease-in-out;
	visibility: hidden;
	z-index: -1;
}
.hero-1 .hero-content .video-wrap .video-btn:hover::before {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.hero-1 .hero-content .counter-wrap {
	display: flex;
	align-items: center;
	gap: 100px;
	margin-top: 35px;
	margin-bottom: 35px;
}
@media (max-width: 1199px) {
.hero-1 .hero-content .counter-wrap {
	gap: 30px;
	flex-wrap: wrap;
	margin-top: 30px;
	margin-bottom: 30px;
}
}
@media (max-width: 575px) {
.hero-1 .hero-content .counter-wrap {
	margin-top: 280px;
}
}
.hero-1 .hero-content .counter-wrap .counter-item {
	position: relative;
	padding-left: 15px;
}
@media (max-width: 575px) {
.hero-1 .hero-content .counter-wrap .counter-item {
	padding-left: 10px;
}
}
.hero-1 .hero-content .counter-wrap .counter-item::before {
	position: absolute;
	top: 38px;
	bottom: 0;
	left: -27px;
	content: "";
	width: 52px;
	height: 1px;
	background: linear-gradient(90deg, #0B0E13 0%, #CBFE1C 51.44%, #0B0E13 100%);
	transform: rotate(-90deg);
}
.hero-1 .hero-content .counter-wrap .counter-item h2 {
	font-size: 28px;
	margin-bottom: 5px;
}
@media (max-width: 575px) {
.hero-1 .hero-content .counter-wrap .counter-item p {
	font-size: 14px;
}
}
.hero-1 .hero-text {
	max-width: 350px;
	font-size: 16px;
	font-weight: 400;
	position: absolute;
	bottom: 8%;
	right: 29%;
	z-index: 9;
}
@media (max-width: 1399px) {
.hero-1 .hero-text {
	position: static;
	margin-top: 30px;
}
}
@media (max-width: 767px) {
.hero-1 .hero-text {
	right: 14%;
	font-size: 15px;
	bottom: 40%;
	position: absolute;
}
}
@media (max-width: 420px) {
.hero-1 .hero-text {
	font-size: 15px;
	bottom: 42%;
	right: 4%;
	position: absolute;
}
}
.hero-2 {
	position: relative;
	z-index: 9;
	padding: 220px 0 0;
	height: 100vh;
}
@media (max-width: 1399px) {
.hero-2 {
	padding: 110px 0 0;
}
}
.hero-2 .top-shape {
	position: absolute;
	top: -8%;
	left: 0;
	z-index: -1;
}
@media (max-width: 1399px) {
.hero-2 .top-shape {
	left: 0;
}
}
@media (max-width: 1199px) {
.hero-2 .top-shape {
	display: none;
}
}
.hero-2 .top-line {
	position: absolute;
	top: -10%;
	left: 0;
}
@media (max-width: 1399px) {
.hero-2 .top-line {
	display: none;
}
}
.hero-2 .left-shape {
	position: absolute;
	bottom: 120px;
	left: 0;
}
@media (max-width: 575px) {
.hero-2 .left-shape {
	bottom: 120px;
	display: block;
}
.hero-2 .left-shape img {
	width: 35px;
	height: 180px;
}
}
.hero-2 .right-shape {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
}
@media (max-width: 991px) {
.hero-2 .right-shape {
	display: block;
}
}
@media (max-width: 575px) {
.hero-2 .right-shape {
	display: none;
}
}
.hero-2 .right-shape-3 {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
	display: none;
}
@media (max-width: 575px) {
.hero-2 .right-shape-3 {
	display: block;
}
.hero-2 .right-shape-3 img {
	width: 100%;
	height: 100%;
}
}
.hero-2 .blur-shape {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
	display: none;
}
@media (max-width: 575px) {
.hero-2 .blur-shape {
	display: block;
}
}
.hero-2 .right-shape2 {
	position: absolute;
	right: 0;
	top: 17%;
}
@media (max-width: 991px) {
.hero-2 .right-shape2 {
	top: 35%;
}
}
@media (max-width: 575px) {
.hero-2 .right-shape2 {
	top: 48%;
}
.hero-2 .right-shape2 img {
	width: 35px;
	height: 180px;
}
}
.hero-2 .bottom-shape {
	position: absolute;
	bottom: 1px;
	left: 0;
}
@media (max-width: 1199px) {
.hero-2 .bottom-shape {
	display: none;
}
}
.hero-2 .game-controll {
	position: absolute;
	left: 100px;
	bottom: 70px;
}
@media (max-width: 1399px) {
.hero-2 .game-controll {
	display: none;
}
}
.hero-2 .game-controll-bg {
	position: absolute;
	bottom: -10%;
	left: 0;
	z-index: -1;
}
@media (max-width: 1399px) {
.hero-2 .game-controll-bg {
	display: none;
}
}
.hero-2 .hero-image {
	position: absolute;
	bottom: 0;
	right: 0;
}
@media (max-width: 1399px) {
.hero-2 .hero-image {
	max-width: 470px;
}
.hero-2 .hero-image img {
	width: 100%;
	height: 100%;
}
}
@media (max-width: 1199px) {
.hero-2 .hero-image {
	position: static;
	max-width: 500px;
	margin: 0 auto;
}
.hero-2 .hero-image img {
	width: 100%;
	height: 100%;
}
}
@media (max-width: 575px) {
.hero-2 .hero-image {
	max-width: 300px;
}
.hero-2 .hero-image img {
	width: 100%;
	height: 100%;
}
}
.hero-2::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: #000000d9;/*z-index: 1;*/
}
.hero-2 .hero-content {
	margin-left: 70px;
	position: relative;
}
@media (max-width: 1399px) {
.hero-2 .hero-content {
	margin-left: 0;
}
}
@media (max-width: 1199px) {
.hero-2 .hero-content {
	margin-left: 0;
	padding-bottom: 30px;
}
}
.hero-2 .hero-content .sub-title {
	color: var(--theme);
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 4px;
	text-transform: uppercase;
	line-height: 1;
	display: inline-block;
}
@media (max-width: 470px) {
.hero-2 .hero-content .sub-title {
	font-size: 14px;
	letter-spacing: 1.2px;
}
}
.hero-2 .hero-content h1 {
	line-height: 100%;
	text-transform: uppercase;
	font-size: 60px;
	color: var(--theme);
	line-height: 66px;
	letter-spacing: 1px;
}
@media (max-width: 1600px) {
.hero-2 .hero-content h1 {
	font-size: 60px;
}
}
@media (max-width: 1399px) {
.hero-2 .hero-content h1 {
	font-size: 28px;
}
}
@media (max-width: 1199px) {
.hero-2 .hero-content h1 {
	line-height: 130%;
	font-size: 94px;
}
}
@media (max-width: 991px) {
.hero-2 .hero-content h1 {
	font-size: 60px;
}
}
@media (max-width: 767px) {
.hero-2 .hero-content h1 {
	font-size: 69px;
}
}
@media (max-width: 575px) {
.hero-2 .hero-content h1 {
	font-size: 55px;
}
}
@media (max-width: 470px) {
.hero-2 .hero-content h1 {
	font-size: 45px;
	line-height: 108%;
}
}
.hero-2 .hero-content h1 span {
	color: var(--white);
}
.hero-2 .hero-content .hero-sub-content {
	max-width: 435px;
	margin: 50px auto 0;
}
@media (max-width: 1399px) {
.hero-2 .hero-content .hero-sub-content {
	margin: 40px auto 0;
	max-width: initial;
}
}
@media (max-width: 1199px) {
.hero-2 .hero-content .hero-sub-content {
	margin-top: 25px;
}
}
@media (max-width: 575px) {
.hero-2 .hero-content .hero-sub-content {
	margin-top: 10px;
}
}
.hero-2 .hero-content .hero-sub-content p {
	font-size: 18px;
	font-weight: 400;
	color: var(--white);
	margin-bottom: 40px;
}
@media (max-width: 1399px) {
.hero-2 .hero-content .hero-sub-content p {
	font-size: 16px;
	max-width: 435px;
}
}
@media (max-width: 991px) {
.hero-2 .hero-content .hero-sub-content p {
	font-size: 16px;
	margin-bottom: 30px;
}
}
@media (max-width: 470px) {
.hero-2 .hero-content .hero-sub-content p {
	font-size: 14px;
	margin-bottom: 25px;
}
}
.gt-hero-4 {
	padding: 100px 0 0;
	position: relative;
	z-index: 9;
}
.gt-hero-4 .left-shape {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}
@media (max-width: 1199px) {
.gt-hero-4 .left-shape {
	display: none;
}
}
.gt-hero-4 .left-shape img {
	width: 100%;
	height: 100%;
}
.gt-hero-4 .container-fluid {
	padding: 0 100px;
}
@media (max-width: 1600px) {
.gt-hero-4 .container-fluid {
	padding: 0 50px;
}
}
@media (max-width: 1399px) {
.gt-hero-4 .container-fluid {
	padding: 0 40px;
}
}
@media (max-width: 1199px) {
.gt-hero-4 .container-fluid {
	padding: 0 30px;
}
}
.gt-hero-4::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(85deg, rgba(2, 2, 2, 0) 3.84%, rgba(2, 2, 2, 0.48)) 96.98%;
	z-index: -1;
}
@media (max-width: 1399px) {
.gt-hero-4 {
	padding-bottom: 150px;
}
}
@media (max-width: 991px) {
.gt-hero-4 {
	padding-bottom: 0;
}
}
.gt-hero-4 .gt-hero-image {
	direction: rtl;
}
@media (max-width: 1600px) {
.gt-hero-4 .gt-hero-image {
	direction: initial;
}
.gt-hero-4 .gt-hero-image img {
	width: 100%;
	height: 100%;
}
}
@media (max-width: 767px) {
.gt-hero-4 .gt-hero-image {
	text-align: center;
}
}
.gt-hero-4 .gt-hero-content {
	margin-left: 80px;
}
@media (max-width: 1199px) {
.gt-hero-4 .gt-hero-content {
	margin-left: 0;
}
}
@media (max-width: 767px) {
.gt-hero-4 .gt-hero-content {
	text-align: center;
}
}
.gt-hero-4 .gt-hero-content .sub-title {
	color: var(--theme);
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 4px;
	text-transform: uppercase;
	line-height: 1;
	font-family: "Chakra Petch", sans-serif;
	margin-bottom: 25px;
}
@media (max-width: 470px) {
.gt-hero-4 .gt-hero-content .sub-title {
	font-size: 14px;
	letter-spacing: initial;
}
}
.gt-hero-4 .gt-hero-content h1 {
	color: var(--white);
	font-family: "Days One";
	font-size: 72px;
	font-weight: 400;
	line-height: 123%;
	letter-spacing: 0.36px;
	text-transform: uppercase;
}
@media (max-width: 1600px) {
.gt-hero-4 .gt-hero-content h1 {
	font-size: 47px;
}
}
@media (max-width: 1399px) {
.gt-hero-4 .gt-hero-content h1 {
	font-size: 52px;
}
}
@media (max-width: 1199px) {
.gt-hero-4 .gt-hero-content h1 {
	font-size: 42px;
}
}
@media (max-width: 767px) {
.gt-hero-4 .gt-hero-content h1 {
	font-size: 48px;
}
}
@media (max-width: 575px) {
.gt-hero-4 .gt-hero-content h1 {
	font-size: 38px;
}
}
@media (max-width: 470px) {
.gt-hero-4 .gt-hero-content h1 {
	font-size: 28px;
}
}
.gt-hero-4 .gt-hero-content p {
	font-size: 18px;
	max-width: 690px;
	color: var(--white);
	margin-top: 25px;
	line-height: 180%;
}
@media (max-width: 575px) {
.gt-hero-4 .gt-hero-content p {
	font-size: 16px;
	margin-bottom: 10px;
}
}
@media (max-width: 470px) {
.gt-hero-4 .gt-hero-content p {
	font-size: 13px;
}
}
.gt-hero-4 .gt-hero-content .gt-hero-button {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 35px;
}
@media (max-width: 1199px) {
.gt-hero-4 .gt-hero-content .gt-hero-button {
	flex-wrap: wrap;
}
}
@media (max-width: 767px) {
.gt-hero-4 .gt-hero-content .gt-hero-button {
	justify-content: center;
	margin-top: 30px;
}
}
.gt-hero-4 .gt-hero-content .gt-hero-button .gt-theme-btn.gt-style-border:hover .gt-text-btn {
	border: 1px solid rgba(189, 5, 5, 0.8);
}
.gt-hero-4 .gt-hero-content .gt-hero-button .gt-theme-btn.gt-style-border:hover .gt-text-btn::before {
	background-color: var(--theme);
}
.gt-hero-6 {
	position: relative;
	padding: 70px 0px 0;
	z-index: 9;
}
@media (max-width: 1199px) {
.gt-hero-6 {
	padding-bottom: 70px;
	padding-top: 120px;
}
}
@media (max-width: 991px) {
.gt-hero-6 {
	padding-bottom: 0;
	padding-top: 120px;
}
}
.gt-hero-6 .line-shape {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -20px;
	z-index: 999;
}
@media (max-width: 1199px) {
.gt-hero-6 .line-shape {
	display: none;
}
}
.gt-hero-6 .gt-overlay-image {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
}
@media (max-width: 1199px) {
.gt-hero-6 .gt-overlay-image {
	display: none;
}
}
.gt-hero-6 .gt-line-shape-animation {
	height: 104px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 12;
}
.gt-hero-6 h1 {
	font-size: 72px;
	text-transform: uppercase;
	margin-top: 30px;
}
@media (max-width: 1199px) {
.gt-hero-6 h1 {
	font-size: 46px;
}
}
@media (max-width: 767px) {
.gt-hero-6 h1 {
	font-size: 48px;
}
}
@media (max-width: 575px) {
.gt-hero-6 h1 {
	font-size: 40px;
}
}
@media (max-width: 470px) {
.gt-hero-6 h1 {
	font-size: 35px;
}
}
.gt-hero-6 h2 {
	position: absolute;
	left: 10px;
	top: 0;
	bottom: 0;
	font-size: 250px;
	letter-spacing: -5px;
	transform: rotate(-90deg);
	color: transparent;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: rgba(255, 255, 255, 0.2);
	background: transparent;
	animation: strokeColorChange1 4s linear infinite;
}
@media (max-width: 1600px) {
.gt-hero-6 h2 {
	display: none;
}
}
.gt-hero-6 .gt-text {
	position: absolute;
	right: -38%;
	top: 0;
	bottom: 0;
	font-size: 250px;
	letter-spacing: -5px;
	transform: rotate(-90deg);
	color: transparent;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: rgba(255, 255, 255, 0.2);
	background: transparent;
	animation: strokeColorChange2 4s linear infinite;
}
@media (max-width: 1600px) {
.gt-hero-6 .gt-text {
	display: none;
}
}
.gt-hero-6 .gt-hero-content .text {
	font-size: 40px;
	font-weight: 400;
	color: var(--white);
	white-space: nowrap;
	overflow: hidden;
	animation: typing 3s steps(30, end) 1s infinite alternate, blink 0.7s step-end infinite;
}
@media (max-width: 991px) {
.gt-hero-6 .gt-hero-content .text {
	font-size: 36px;
}
}
@media (max-width: 767px) {
.gt-hero-6 .gt-hero-content .text {
	font-size: 30px;
}
}
@media (max-width: 575px) {
.gt-hero-6 .gt-hero-content .text {
	font-size: 24px;
}
}
.gt-hero-6 .gt-hero-content .text span {
	color: var(--theme);
}
.gt-hero-6 .gt-hero-content .gt-content-ber {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 25px;
	margin-bottom: 25px;
	max-width: 577px;
}
@media (max-width: 1199px) {
.gt-hero-6 .gt-hero-content .gt-content-ber {
	flex-wrap: wrap;
}
}
.gt-hero-6 .gt-hero-content .gt-content-ber h6 {
	letter-spacing: 1.8px;
	font-weight: 400;
	text-transform: uppercase;
}
.gt-hero-6 .gt-hero-content .gt-content-ber .gt-social-item {
	display: flex;
	align-items: center;
	gap: 10px;
}
.gt-hero-6 .gt-hero-content .gt-content-ber .gt-social-item li {
	padding: 10px;
	line-height: 1;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	font-size: 14px;
	font-weight: 700;
	color: var(--white);
}
.gt-hero-6 .gt-hero-content .gt-content-ber .gt-social-item li i {
	margin-right: 10px;
	color: var(--white);
}
.gt-hero-6 .gt-hero-content p {
	max-width: 577px;
	font-size: 16px;
	font-weight: 400;
	color: var(--white);
}
.gt-hero-6 .gt-hero-content .gt-theme-btn {
	z-index: 999;
	margin-top: 50px;
	display: inline-block;
}
.gt-hero-6 .gt-hero-image {
	position: relative;
	z-index: 9;
	margin-bottom: -70px;
}
@media (max-width: 1199px) {
.gt-hero-6 .gt-hero-image {
	margin-bottom: 0;
}
.gt-hero-6 .gt-hero-image img {
	width: 100%;
	height: 100%;
}
}
.gt-hero-6 .gt-hero-image .x-shape {
	position: absolute;
	left: -120px;
	top: 50px;
	z-index: -1;
}
@media (max-width: 1600px) {
.gt-hero-6 .gt-hero-image .x-shape {
	display: none;
}
}
.gt-hero-6 .gt-hero-image .x-shape img {
	width: initial;
	height: inherit;
}
.hero-3 {
	padding: 95px 0 50px;
	position: relative;
}
@media (max-width: 1399px) {
.hero-3 {
	padding: 100px 0;
}
}
@media (max-width: 991px) {
.hero-3 {
	padding: 150px 0;
}
}
@media (max-width: 767px) {
.hero-3 {
	margin-bottom: 80px;
}
}
.hero-3 .top-shape {
	position: absolute;
	z-index: 9;
	top: 0px;
	right: 86px;
	z-index: -1;
	height: 896px;
}
@media (max-width: 1600px) {
.hero-3 .top-shape {
	right: 160px;
	z-index: -1;
	height: 636px;
}
}
@media (max-width: 1399px) {
.hero-3 .top-shape {
	height: 475px;
	right: 0;
}
}
@media (max-width: 991px) {
.hero-3 .top-shape {
	height: 360px;
	right: -20px;
}
}
@media (max-width: 575px) {
.hero-3 .top-shape {
	display: none;
}
}
.hero-3 .top-shape img {
	width: 100%;
	height: 100%;
}
.hero-3 .right-shape {
	position: absolute;
	top: 0;
	right: 0;
}
@media (max-width: 1399px) {
.hero-3 .right-shape {
	display: none;
}
}
.hero-3 .radius-shape {
	display: none;
	right: -35px;
	top: -50px;
	position: absolute;
}
@media (max-width: 575px) {
.hero-3 .radius-shape {
	display: block;
}
}
.hero-3 .container-fluid {
	padding: 0 60px;
}
@media (max-width: 1600px) {
.hero-3 .container-fluid {
	padding: 0 50px;
}
}
@media (max-width: 1399px) {
.hero-3 .container-fluid {
	padding: 0 30px;
}
}
@media (max-width: 575px) {
.hero-3 .container-fluid {
	padding: 0 15px;
}
}
@media (max-width: 1600px) {
.hero-3 .hero-image {
	max-width: 890px;
}
}
@media (max-width: 575px) {
.hero-3 .hero-image {
	max-width: 332px;
}
}
.hero-3 .hero-image img {
	width: 100%;
	height: 100%;
}
.hero-3 .hero-image-slider {
	width: 1320px;
}
@media (max-width: 1399px) {
.hero-3 .hero-image-slider {
	width: initial;
}
}
.hero-3 .hero-slider {
	margin-left: -300px;
}
@media (max-width: 1399px) {
.hero-3 .hero-slider {
	margin-left: -190px;
}
}
@media (max-width: 1199px) {
.hero-3 .hero-slider {
	margin-left: 0;
}
}
.hero-3 .hero-content {
	position: relative;
	margin-top: 100px;
}
@media (max-width: 1600px) {
.hero-3 .hero-content {
	margin-top: 0;
}
}
.hero-3 .hero-content h6 {
	letter-spacing: 3.2px;
	text-transform: uppercase;
	color: var(--text);
	font-family: "Chakra Petch", sans-serif;
}
@media (max-width: 575px) {
.hero-3 .hero-content h6 {
	font-size: 13px;
	margin-bottom: 10px;
}
}
.hero-3 .hero-content h1 {
	color: var(--white);
	font-size: 70px;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 114%;
}
@media (max-width: 1600px) {
.hero-3 .hero-content h1 {
	font-size: 60px;
}
}
@media (max-width: 1399px) {
.hero-3 .hero-content h1 {
	font-size: 60px;
}
}
@media (max-width: 991px) {
.hero-3 .hero-content h1 {
	font-size: 50px;
}
}
@media (max-width: 767px) {
.hero-3 .hero-content h1 {
	font-size: 40px;
}
}
@media (max-width: 575px) {
.hero-3 .hero-content h1 {
	font-size: 30px;
	line-height: 115%;
}
.hero-3 .hero-content h1 img {
	width: 40px;
	margin-left: 10px;

	margin-top: -10px;
}
}
.hero-3 .hero-content h1.wave-text {
	transform: translateX(100px);
	opacity: 0;
	transition: all 1s ease;
}
.hero-3 .hero-content h1.wave-text.active {
	transform: translateX(0);
	opacity: 1;
}
.hero-3 .hero-content h1 span {
	color: var(--theme);
}
.hero-3 .hero-content h1 span.style-2 {
	display: inline-block;
	margin-left: 50px;
}
@media (max-width: 1399px) {
.hero-3 .hero-content h1 span.style-2 {
	margin-left: 0;
}
}
.hero-3 .hero-content h1 b {
	margin-left: 120px;
	font-family: "Days One", sans-serif !important;
	font-weight: 400;
}
@media (max-width: 1399px) {
.hero-3 .hero-content h1 b {
	margin-left: 0;
}
}
.hero-3 .video-content {
	display: flex;
	align-items: center;
	gap: 45px;
	justify-content: end;
	margin-top: 70px;
}
@media (max-width: 1600px) {
.hero-3 .video-content {
	gap: 30px;
}
}
@media (max-width: 1399px) {
.hero-3 .video-content {
	margin-top: 25px;
	justify-content: start;
	flex-wrap: wrap;
	gap: 20px;
}
}
.hero-3 .video-content .video-btn {
	background-color: var(--black);
	color: var(--theme);
	display: inline-block;
	font-size: 26px;
	height: 112px;
	width: 112px;
	line-height: 112px;
	border-radius: 100px;
	text-align: center;
	z-index: 999;
}
@media (max-width: 1600px) {
.hero-3 .video-content .video-btn {
	width: 100px;
	height: 100px;
	line-height: 100px;
}
}
@media (max-width: 1399px) {
.hero-3 .video-content .video-btn {
	width: 70px;
	height: 70px;
	line-height: 70px;
	background-color: var(--white);
	color: var(--header);
}
}
@media (max-width: 991px) {
.hero-3 .video-content .video-btn {
	position: absolute;
	top: 22%;
	right: 14%;
}
}
@media (max-width: 575px) {
.hero-3 .video-content .video-btn {
	position: absolute;
	top: 20%;
	color: var(--theme);
	right: 7%;
	background-color: rgba(255, 255, 255, 0.1);
}
}
.hero-3 .video-content p {
	max-width: 415px;
	text-transform: uppercase;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	padding-left: 45px;
}
@media (max-width: 1600px) {
.hero-3 .video-content p {
	padding-left: 30px;
	max-width: 300px;
	font-size: 14px;
}
}
@media (max-width: 1399px) {
.hero-3 .video-content p {
	padding-left: 45px;
	max-width: 415px;
}
}
@media (max-width: 575px) {
.hero-3 .video-content p {
	padding-left: 0;
	border-left: none;
}
}
.hero-3 .right-item {
	display: flex;
	align-items: center;
	gap: 100px;
	position: absolute;
	right: 60px;
	bottom: 80px;
}
@media (max-width: 575px) {
.hero-3 .right-item {
	bottom: 0;
	right: 20px;
	gap: 140px;
}
}
.hero-3 .right-item .dot-number {
	display: flex;
	align-items: center;
	gap: 20px;
	z-index: 999;
}
.hero-3 .right-item .dot-number .swiper-pagination-bullet {
	background: none !important;
	width: auto !important;
	height: auto !important;
	margin: 0 !important;
	transition: all 0.4s ease-in-out;
}
.hero-3 .right-item .dot-number .swiper-pagination-bullet-active .dot-num span {
	color: var(--white);
	font-size: 24px;
	transition: all 0.4s ease-in-out;
}
.hero-3 .right-item .dot-number .dot-num {
	transition: all 0.4s ease-in-out;
}
.hero-3 .right-item .dot-number .dot-num span {
	font-size: 17px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.5);
	transition: all 0.4s ease-in-out;
}
.hero-3 .right-item .array-btn {
	display: flex;
	align-items: center;
	gap: 30px;
}
@media (max-width: 575px) {
.hero-3 .right-item .array-btn {
	gap: 20px;
}
}
.hero-3 .right-item .array-btn .array-prev {
	width: 54px;
	height: 54px;
	line-height: 54px;
	text-align: center;
	border-radius: 100px;
	background-color: var(--white);
	color: var(--header);
	transition: all 0.4s ease-in-out;
}
.hero-3 .right-item .array-btn .array-prev:hover {
	background-color: var(--theme);
}
.hero-3 .right-item .array-btn .array-next {
	width: 54px;
	height: 54px;
	line-height: 54px;
	text-align: center;
	border-radius: 100px;
	background-color: #1C1D20;
	color: var(--header);
	transition: all 0.4s ease-in-out;

}
.hero-3 .right-item .array-btn .array-next:hover {
	background-color: var(--white);
}
.hero-3 .right-item .array-btn .array-next:hover svg path {
	fill: var(--header);
}
.hero-5 {
	position: relative;
	padding: 230px 0 90px;
}
.hero-5 .array-buttons {
	display: grid;
	gap: 20px;
}
@media (max-width: 1600px) {
.hero-5 .array-buttons {
	display: none;
}
}
.hero-5 .array-buttons .array-prev {
	position: absolute;
	top: 50%;
	left: 60px;
	background-color: var(--white);
	color: var(--header);
	font-size: 18px;
}
.hero-5 .array-buttons .array-prev i {
	transform: rotate(-45deg);
}
.hero-5 .array-buttons .array-prev:hover {
	background-color: var(--theme);
}
.hero-5 .array-buttons .array-next {
	position: absolute;
	top: 58%;
	left: 60px;
	background-color: transparent;
	color: var(--white);
	font-size: 18px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-5 .array-buttons .array-next i {
	transform: rotate(-45deg);
}
.hero-5 .array-buttons .array-next:hover {
	background-color: var(--theme);
	color: var(--header);
}
@media (max-width: 1199px) {
.hero-5 {
	padding: 140px 0 90px;
}
}
@media (max-width: 575px) {
.hero-5 {
	padding: 120px 0 90px;
}
}
.hero-5::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(180deg, rgba(11, 14, 19, 0.1) 35%, #0B0E13 100%);
}
.hero-5::after {
	position: absolute;
	content: "";
	background-color: rgba(255, 255, 255, 0.2);
	bottom: 0;
	left: 40px;
	width: 96%;
	height: 1px;
}
.hero-5 .hero-content {
	position: relative;
}
.hero-5 .hero-content span {
	background-color: var(--theme);
	line-height: 1;
	padding: 8px;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: -0.28px;
	display: inline-block;
	margin-bottom: 15px;
	color: var(--header);
}
.hero-5 .hero-content h1 {
	font-size: 38px;
	margin-bottom: 15px;
	letter-spacing: 0.64px;
	line-height: 114%;
}
@media (max-width: 575px) {
.hero-5 .hero-content h1 {
	font-size: 28px;
}
}
.hero-5 .hero-content p {
	color: var(--white);
}
@media (max-width: 575px) {
.hero-5 .hero-content p {
	font-size: 14px;
}
}
.hero-5 .hero-content .social {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-top: 20px;
}
@media (max-width: 1199px) {
.hero-5 .hero-content .social {
	flex-wrap: wrap;
	gap: 21px;
}
}
.hero-5 .hero-content .social li {
	font-weight: 400;
	color: var(--white);
}
.hero-5 .hero-content .social li i {
	margin-right: 5px;
	color: var(--white);
}
.hero-5 .slider-container {
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-right: -60%;
}
@media (max-width: 1600px) {
.hero-5 .slider-container {
	margin-right: 0;
}
}
.hero-5 .slider-container .slide {
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.5s ease;
	overflow: hidden;
	position: relative;
}
.hero-5 .slider-container .slide .video-btn {
	opacity: 0;
}
.hero-5 .slider-container .slide.small {
	width: 491px;
	height: 108px;
}
.hero-5 .slider-container .slide.active {
	width: 686px;
	height: 379px;
	opacity: 1;
	margin: 20px 0;
}
.hero-5 .slider-container .slide.active .video-btn {
	width: 56px;
	height: 56px;
	line-height: 56px;
	display: inline-block;
	background-color: #090D12;
	color: var(--white);
	text-align: center;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 1;
}
.hero-5 .slider-container .slide.active .video-btn::before {
	position: absolute;
	content: "";
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 88px;
	height: 88px;
	border: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 767px) {
.hero-5 .slider-container .slide.active .video-btn::before {
	width: 70px;
	height: 70px;
	line-height: 70px;
}
}
.hero-5 .slider-container .slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero-7 {
	padding: 200px 0 90px;
	z-index: 9;
	position: relative;
}
@media (max-width: 1399px) {
.hero-7 {
	padding: 150px 0 90px;
}
}
@media (max-width: 991px) {
.hero-7 {
	padding: 130px 0 80px;
}
}
.hero-7 .left-image {
	position: absolute;
	left: 0;
	bottom: 0;
	top: 180px;
	bottom: 90px;
	z-index: -1;
}
@media (max-width: 1399px) {
.hero-7 .left-image {
	display: none;
}
}
.hero-7 .left-image img {
	width: 100%;
	height: 100%;
}
.hero-7 .left-image-2 {
	position: absolute;
	left: 356px;
	bottom: 90px;
	top: 180px;
	z-index: -1;
}
@media (max-width: 1399px) {
.hero-7 .left-image-2 {
	display: none;
}
}
.hero-7 .left-image-2 img {
	width: 100%;
	height: 100%;
}
.hero-7 .right-image {
	position: absolute;
	right: 0;
	bottom: 90px;
	top: 180px;
	z-index: -1;
}
@media (max-width: 1399px) {
.hero-7 .right-image {
	display: none;
}
}
.hero-7 .right-image img {
	width: 100%;
	height: 100%;
}
.hero-7 .right-image-2 {
	position: absolute;
	right: 356px;
	bottom: 90px;
	top: 180px;
	z-index: -1;
}
@media (max-width: 1399px) {
.hero-7 .right-image-2 {
	display: none;
}
}
.hero-7 .right-image-2 img {
	width: 100%;
	height: 100%;
}
.hero-7 .blur-shape {
	position: absolute;
	bottom: 90px;
	left: -40px;
}
@media (max-width: 1399px) {
.hero-7 .blur-shape {
	display: none;
}
}
.hero-7 .blur-shape-2 {
	position: absolute;
	top: 180px;
	right: -40px;
}
@media (max-width: 1399px) {
.hero-7 .blur-shape-2 {
	display: none;
}
}
.hero-7 .hero-content {
	text-align: center;
}
.hero-7 .hero-content h6 {
	color: var(--white);
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.hero-7 .hero-content h1 {
	color: var(--white);
	font-size: 85px;
	font-weight: 400;
	margin-bottom: 20px;
	text-transform: uppercase;
	line-height: 108%;
}
@media (max-width: 1399px) {
.hero-7 .hero-content h1 {
	font-size: 50px;
}
}
@media (max-width: 991px) {
.hero-7 .hero-content h1 {
	font-size: 40px;
}
}
@media (max-width: 767px) {
.hero-7 .hero-content h1 {
	font-size: 30px;
}
}
@media (max-width: 575px) {
.hero-7 .hero-content h1 {
	font-size: 25px;
	letter-spacing: -1px;
}
}
.hero-7 .hero-content p {
	max-width: 895px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin: 0 auto;
}
.hero-7 .hero-content .hero-button {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-top: 48px;
	justify-content: center;
}
@media (max-width: 1399px) {
.hero-7 .hero-content .hero-button {
	flex-wrap: wrap;
	margin-top: 30px;
}
}
.hero-7 .hero-content .hero-button .theme-btn.border-btn {
	background-color: transparent;
	color: var(--white);
	border: 1px solid var(--white);
}
.hero-7 .hero-content .hero-button .theme-btn.border-btn::before {
	background-color: var(--theme);
}
.hero-7 .hero-content .hero-button .theme-btn.border-btn::after {
	background-color: var(--white);
}
.hero-7 .hero-content .hero-button .theme-btn.border-btn:hover {
	color: var(--header);
}
.marquee-wrapper {
	position: relative;
	overflow: hidden;
	white-space: nowrap;
	z-index: 9;
}
.marquee-wrapper .marqee-list {
	gap: 15px;
}
.text-slider {
	height: 120px;
}
.text-slider img {
	border-radius: 20px;
	width: 120px;
	height: 120px;
}
.marquee-inner {
	position: absolute;
	display: inline-flex;
	width: 200%;
	gap: 15px;
}
.marquee-list {
	float: left;
	width: 50%;
}
.marquee-item {
	float: left;
	transition: animation 0.2s ease-out;
}
.marquee-inner.to-left {
	animation: marqueeLeft 25s linear infinite;
}
 @keyframes marqueeLeft {
 0% {
 left: 0;
}
 100% {
 left: -100%;
}
}
.marquee-inner.to-right {
	animation: marqueeRight 25s linear infinite;
}
 @keyframes marqueeRight {
 0% {
 right: 0;
}
 100% {
 right: -100%;
}
}
.marque-section {
	position: relative;
}
.marque-section .gradient-shape {
	position: absolute;
	top: 0%;
	left: 20%;
}
@media (max-width: 1399px) {
.marque-section .gradient-shape {
	display: none;
}
}
.marque-section::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	content: "";
	background: linear-gradient(90deg, #0B0E13 0%, rgba(11, 14, 19, 0) 100%);
	width: 348px;
	height: 100%;
	z-index: 10;
}
@media (max-width: 1399px) {
.marque-section::before {
	display: none;
}
}
.marque-section::after {
	position: absolute;
	top: 0;
	bottom: 0;
	right: -10%;
	content: "";
	background: linear-gradient(90deg, #0B0E13 0%, rgba(11, 14, 19, 0) 100%);
	width: 348px;
	height: 100%;
	z-index: 10;
	transform: rotate(-90deg);
}
@media (max-width: 1399px) {
.marque-section::after {
	display: none;
}
}
.marque-section .download-app {
	border-radius: 60px;
	background: #1C1D20;
	position: relative;
	z-index: 9;
	max-width: 730px;
	margin: 60px auto 0;
	padding: 22px 25px;
	display: flex;
	align-items: center;
	gap: 30px;
}
@media (max-width: 767px) {
.marque-section .download-app {
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	text-align: center;
	border-radius: 20px;
}
}
.marque-section .download-app h5 {
	color: #ABABAB;
	font-size: 20px;
	font-weight: 400;
	text-transform: uppercase;
}
.marque-section .download-app .download-btn {
	display: flex;
	align-items: center;
	gap: 16px;
}
@media (max-width: 767px) {
.marque-section .download-app .download-btn {
	flex-wrap: wrap;
	justify-content: center;
}
}
.marque-section .download-app .download-btn .theme-btn svg {
	margin-right: 8px;
}
.trending-match-wrapper {
	background: #121511;
	padding: 60px 60px;
	margin-top: 60px;
	position: relative;
}
@media (max-width: 1199px) {
.trending-match-wrapper {
	padding: 40px;
	text-align: center;
}
}
@media (max-width: 767px) {
.trending-match-wrapper {
	padding: 35px;
	margin-top: 30px;
}
}
@media (max-width: 470px) {
.trending-match-wrapper {
	padding: 22px;
}
}
.trending-match-wrapper .linear-shape {
	position: absolute;
	top: -5%;
	left: -20%;
	z-index: -1;
}
@media (max-width: 1199px) {
.trending-match-wrapper .linear-shape {
	display: none;
}
}
.trending-match-wrapper .linear-shape-2 {
	position: absolute;
	bottom: -5%;
	right: -20%;
	z-index: -1;
}
@media (max-width: 1199px) {
.trending-match-wrapper .linear-shape-2 {
	display: none;
}
}
.trending-match-wrapper .vec-arrow {
	position: absolute;
	top: 0;
	right: 0;
}
@media (max-width: 1199px) {
.trending-match-wrapper .vec-arrow {
	display: none;
}
}
.trending-match-wrapper .trending-match-items {
	display: flex;
	align-items: center;
	gap: 60px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 40px;
	margin-bottom: 40px;
}
@media (max-width: 1199px) {
.trending-match-wrapper .trending-match-items {
	flex-wrap: wrap;
	justify-content: center;
	gap: 35px;
}
}
@media (max-width: 767px) {
.trending-match-wrapper .trending-match-items {
	flex-wrap: wrap;
	gap: 30px;
	padding-bottom: 25px;
	margin-bottom: 25px;
}
}
.trending-match-wrapper .trending-match-items.bb-none {
	margin-bottom: 0;
	border-bottom: none;
	padding-bottom: 0;
}
.trending-match-wrapper .trending-match-items .trending-match-left {
	background: #000;
	padding: 30px;
}
.trending-match-wrapper .trending-match-items .trending-match-left .gt-match-logo {
	display: flex;
	align-items: center;
	gap: 18px;
}
@media (max-width: 767px) {
.trending-match-wrapper .trending-match-items .trending-match-left .gt-match-logo .gt-match-thumb {
	display: block;
	justify-content: center;
	gap: 20px;
	max-width: 110px;
}
.trending-match-wrapper .trending-match-items .trending-match-left .gt-match-logo .gt-match-thumb img {
	width: 100%;
	height: 100%;
}
}
@media (max-width: 470px) {
.trending-match-wrapper .trending-match-items .trending-match-left .gt-match-logo .gt-match-thumb {
	flex-basis: 100%;
}
}
.trending-match-wrapper .trending-match-items .trending-match-left .gt-watch-now-items {
	margin-top: 20px;
}
.trending-match-wrapper .trending-match-items .trending-match-left .gt-watch-now-items span {
	font-weight: 700;
	color: #ABABAB;
	font-size: 20px;
}
.trending-match-wrapper .trending-match-items .trending-match-left .gt-watch-now-items .gt-watch-now-list {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 20px;
}
@media (max-width: 1399px) {
.trending-match-wrapper .trending-match-items .trending-match-left .gt-watch-now-items .gt-watch-now-list {
	flex-wrap: wrap;
}
}
@media (max-width: 1199px) {
.trending-match-wrapper .trending-match-items .trending-match-left .gt-watch-now-items .gt-watch-now-list {
	justify-content: center;
}
}
.trending-match-wrapper .trending-match-items .trending-match-left .gt-watch-now-items .gt-watch-now-list li {
	font-size: 14px;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 16px;
}
@media (max-width: 767px) {
.trending-match-wrapper .trending-match-items .trending-match-left .gt-watch-now-items .gt-watch-now-list li {
	flex-wrap: wrap;
}
}
.trending-match-wrapper .trending-match-items .trending-match-left .gt-watch-now-items .gt-watch-now-list li a {
	display: inline-block;
	color: var(--white);
	padding: 12px 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	line-height: 1;
	text-align: center;
	transition: all 0.4s ease-in-out;
	background: #1C1D20;
	position: relative;
	transition: all 0.4s ease-in-out;
	z-index: 9;
}
.trending-match-wrapper .trending-match-items .trending-match-left .gt-watch-now-items .gt-watch-now-list li a::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 101%;
	height: 100%;
	content: "";
	border-radius: 0;
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: top right;
	transform-origin: top right;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: linear-gradient(90deg, #CBFE1C 0%, rgba(203, 254, 28, 0) 100%);
	transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
	transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
	transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	z-index: -1;
}
.trending-match-wrapper .trending-match-items .trending-match-left .gt-watch-now-items .gt-watch-now-list li a i {
	margin-right: 6px;
	-webkit-transition: all 900ms ease;
	transition: all 900ms ease;
}
.trending-match-wrapper .trending-match-items .trending-match-left .gt-watch-now-items .gt-watch-now-list li a:hover {
	color: var(--white);
	border: 1px solid transparent;
}
.trending-match-wrapper .trending-match-items .trending-match-left .gt-watch-now-items .gt-watch-now-list li a:hover i {
	webkit-transform: rotateY(360deg);
	transform: rotateY(360deg);
}
.trending-match-wrapper .trending-match-items .trending-match-left .gt-watch-now-items .gt-watch-now-list li a:hover::before {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transform-origin: bottom left;
	transform-origin: bottom left;
}
.trending-match-wrapper .trending-match-items .trending-match-content {
	max-width: 500px;
	width: 100%;
}
@media (max-width: 1399px) {
.trending-match-wrapper .trending-match-items .trending-match-content {
	border: none;
	padding: 0;
}
}
.trending-match-wrapper .trending-match-items .trending-match-content .gt-date-list {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 15px;
}
@media (max-width: 1399px) {
.trending-match-wrapper .trending-match-items .trending-match-content .gt-date-list {
	gap: 20px;
	flex-wrap: wrap;
}
}
@media (max-width: 1199px) {
.trending-match-wrapper .trending-match-items .trending-match-content .gt-date-list {
	justify-content: center;
}
}
.trending-match-wrapper .trending-match-items .trending-match-content .gt-date-list li {
	font-size: 16px;
	font-weight: bold;
	color: #ABABAB;
}
.trending-match-wrapper .trending-match-items .trending-match-content .gt-date-list li i {
	margin-right: 10px;
}
.trending-match-wrapper .trending-match-items .trending-match-content h3 {
	font-size: 30px;
	margin-bottom: 15px;
}
@media (max-width: 991px) {
.trending-match-wrapper .trending-match-items .trending-match-content h3 {
	font-size: 28px;
}
}
@media (max-width: 575px) {
.trending-match-wrapper .trending-match-items .trending-match-content h3 {
	font-size: 20px;
}
}
.trending-match-wrapper .trending-match-items .trending-match-content h3 a {
	color: var(--white);
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}
.trending-match-wrapper .trending-match-items .trending-match-content h3 a:hover {
	color: var(--theme);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.trending-match-wrapper .trending-match-items .trending-match-content p {
	font-size: 18px;
}
@media (max-width: 767px) {
.trending-match-wrapper .trending-match-items .trending-match-content p {
	font-size: 16px;
}
}
.trending-match-section {
	position: relative;
}
.trending-match-section .left-shape {
	position: absolute;
	top: 120px;
	left: 0;
	animation: upDown 11s ease-in-out infinite;
}
@media (max-width: 1600px) {
.trending-match-section .left-shape {
	display: none;
}
}
.trending-match-section .right-shape {
	position: absolute;
	bottom: 120px;
	right: 0;
	animation: downUp 11s ease-in-out infinite;
}
@media (max-width: 1600px) {
.trending-match-section .right-shape {
	display: none;
}
}
@keyframes upDown {
 0% {
 top: 0;
}
 50% {
 top: calc(100% - 550px);
}
 100% {
 top: 0;
}
}
@keyframes downUp {
 0% {
 top: calc(100% - 550px);
}
 50% {
 top: 0;
}
 100% {
 top: calc(100% - 550px);
}
}
.gt-trending-match-items-2 {
	margin-top: 30px;
	padding: 35px 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #1C1D20;
}
@media (max-width: 1399px) {
.gt-trending-match-items-2 {
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
	text-align: center;
}
}
.gt-trending-match-items-2 .gt-match-logo {
	display: flex;
	align-items: center;
	gap: 18px;
}
@media (max-width: 470px) {
.gt-trending-match-items-2 .gt-match-logo {
	flex-wrap: wrap;
	text-align: center;
	justify-content: center;
}
}
.gt-trending-match-items-2 .gt-match-logo .gt-match-thumb {
	border-radius: 10px;
}
@media (max-width: 575px) {
.gt-trending-match-items-2 .gt-match-logo .gt-match-thumb {
	flex-basis: none;
	width: 100px;
	height: 100px;
}
}
.gt-trending-match-items-2 .gt-match-content {
	max-width: 525px;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	padding: 0 30px;
	padding-left: 40px;
}
@media (max-width: 1399px) {
.gt-trending-match-items-2 .gt-match-content {
	border: none;
	padding: 0;
}
}
.gt-trending-match-items-2 .gt-match-content .gt-date-list {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 15px;
}
@media (max-width: 1399px) {
.gt-trending-match-items-2 .gt-match-content .gt-date-list {
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}
}
.gt-trending-match-items-2 .gt-match-content .gt-date-list li {
	font-size: 16px;
	font-weight: bold;
	color: #ABABAB;
}
.gt-trending-match-items-2 .gt-match-content .gt-date-list li i {
	margin-right: 10px;
}
.gt-trending-match-items-2 .gt-match-content h3 {
	font-size: 30px;
	margin-bottom: 15px;
}
@media (max-width: 991px) {
.gt-trending-match-items-2 .gt-match-content h3 {
	font-size: 28px;
}
}
@media (max-width: 575px) {
.gt-trending-match-items-2 .gt-match-content h3 {
	font-size: 20px;
}
}
.gt-trending-match-items-2 .gt-match-content h3 a {
	color: var(--white);
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}
.gt-trending-match-items-2 .gt-match-content h3 a:hover {
	color: var(--theme);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.gt-trending-match-items-2 .gt-match-content p {
	font-size: 18px;
}
@media (max-width: 991px) {
.gt-trending-match-items-2 .gt-match-content p {
	font-size: 15px;
}
}
.gt-trending-match-items-2 .gt-watch-now-items span {
	font-weight: 700;
	color: #ABABAB;
}
.gt-trending-match-items-2 .gt-watch-now-items .gt-watch-now-list {
	display: grid;
	align-items: center;
	gap: 16px;
	margin-top: 20px;
}
.gt-trending-match-items-2 .gt-watch-now-items .gt-watch-now-list li {
	font-size: 14px;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 16px;
}
.gt-trending-match-items-2 .gt-watch-now-items .gt-watch-now-list li a {
	display: inline-block;
	color: var(--white);
	padding: 12px 22px;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	line-height: 1;
	min-width: 140px;
	text-align: center;
	transition: all 0.4s ease-in-out;
	position: relative;
	z-index: 9;
}
.gt-trending-match-items-2 .gt-watch-now-items .gt-watch-now-list li a::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 101%;
	height: 100%;
	content: "";
	border-radius: 0;
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: top right;
	transform-origin: top right;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: linear-gradient(90deg, #CBFE1C 0%, rgba(203, 254, 28, 0) 100%);
	transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
	transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
	transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	z-index: -1;
}
.gt-trending-match-items-2 .gt-watch-now-items .gt-watch-now-list li a i {
	margin-right: 6px;
	-webkit-transition: all 900ms ease;
	transition: all 900ms ease;
}
.gt-trending-match-items-2 .gt-watch-now-items .gt-watch-now-list li a:hover {
	color: var(--white);
	border: 1px solid transparent;
}
.gt-trending-match-items-2 .gt-watch-now-items .gt-watch-now-list li a:hover i {
	webkit-transform: rotateY(360deg);
	transform: rotateY(360deg);
}
.gt-trending-match-items-2 .gt-watch-now-items .gt-watch-now-list li a:hover::before {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transform-origin: bottom left;
	transform-origin: bottom left;
}
.gt-trending-match-4 {
	position: relative;
	z-index: 9;
}
.gt-trending-match-4 .gt-left-shape {
	position: absolute;
	left: 0;
	top: 45%;
	z-index: -1;
}
@media (max-width: 1199px) {
.gt-trending-match-4 .gt-left-shape {
	display: none;
}
}
@media (max-width: 991px) {
.gt-trending-match-4 .gt-section-title-area {
	justify-content: center;
}
}
@media (max-width: 1199px) {
.gt-trending-match-4 .gt-section-title-area .nav {
	gap: 20px;
	justify-content: center;
}
.gt-trending-match-4 .gt-section-title-area .nav .nav-link {
	font-size: 16px;
}
}
.gt-match-details-wrapper .gt-details-post .gt-detials-image {
	position: relative;
}
.gt-match-details-wrapper .gt-details-post .gt-detials-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
.gt-match-details-wrapper .gt-details-post .gt-detials-image .gt-image-item {
	display: flex;
	align-items: center;
	gap: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.gt-match-details-wrapper .gt-details-post .gt-detials-image .gt-image-item .gt-small-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
.gt-match-details-wrapper .gt-details-post .gt-date-list {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-top: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 20px;
	margin-bottom: 20px;
}
@media (max-width: 1199px) {
.gt-match-details-wrapper .gt-details-post .gt-date-list {
	flex-wrap: wrap;
	gap: 10px;
}
}
.gt-match-details-wrapper .gt-details-post .gt-date-list li i {
	margin-right: 10px;
	color: rgb(171, 171, 171);
}
.gt-match-details-wrapper .gt-details-content .gt-watch-now-items {
	margin-bottom: 30px;
}
.gt-match-details-wrapper .gt-details-content .gt-watch-now-items span {
	font-weight: 700;
	color: #ABABAB;
}
.gt-match-details-wrapper .gt-details-content .gt-watch-now-items .gt-watch-now-list {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 20px;
}
@media (max-width: 1199px) {
.gt-match-details-wrapper .gt-details-content .gt-watch-now-items .gt-watch-now-list {
	flex-wrap: wrap;
	gap: 20px;
}
}
.gt-match-details-wrapper .gt-details-content .gt-watch-now-items .gt-watch-now-list li {
	font-size: 14px;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 16px;
}
.gt-match-details-wrapper .gt-details-content .gt-watch-now-items .gt-watch-now-list li a {
	display: inline-block;
	color: var(--white);
	padding: 10px 22px;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	line-height: 1;
	min-width: 140px;
	text-align: center;
	transition: all 0.4s ease-in-out;
}
.gt-match-details-wrapper .gt-details-content .gt-watch-now-items .gt-watch-now-list li a i {
	margin-right: 6px;
}
.gt-match-details-wrapper .gt-details-content .gt-watch-now-items .gt-watch-now-list li a:hover {
	color: var(--white);
	background: linear-gradient(90deg, #CBFE1C 0%, #1C1D20 100%);
	border: 1px solid transparent;
}
.gt-match-details-wrapper .gt-details-content h3 {
	font-size: 32px;
	margin-bottom: 15px;
}
@media (max-width: 1199px) {
.gt-match-details-wrapper .gt-details-content h3 {
	font-size: 20px;
}
}
.gt-match-details-wrapper .gt-details-content h4 {
	margin-top: 20px;
	margin-bottom: 15px;
	text-transform: capitalize;
}
.gt-match-details-wrapper .gt-details-content .gt-list {
	margin-top: 30px;
	margin-bottom: 40px;
}
.gt-match-details-wrapper .gt-details-content .gt-list li {
	font-size: 16px;
	font-weight: 400;
}
.gt-match-details-wrapper .gt-details-content .gt-list li:not(:last-child) {
	margin-bottom: 12px;
}
.gt-match-details-wrapper .gt-details-content .gt-list li i {
	margin-right: 10px;
	color: var(--theme);
}
.gt-match-details-wrapper .gt-details-content .thumb {
	position: relative;
}
.gt-match-details-wrapper .gt-details-content .thumb img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
.gt-match-details-wrapper .gt-details-content .thumb .video-btn {
	background-color: var(--white);
	color: var(--header);
	display: inline-block;
	font-size: 16px;
	height: 84px;
	width: 84px;
	line-height: 84px;
	border-radius: 50%;
	text-align: center;
	position: relative;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
.gt-match-details-wrapper .gt-details-content .thumb .video-btn {
	width: 70px;
	height: 70px;
	line-height: 70px;
}
}
.gt-match-details-wrapper .gt-details-content .thumb .video-btn::before {
	position: absolute;
	content: "";
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 132px;
	height: 132px;
	border: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 767px) {
.gt-match-details-wrapper .gt-details-content .thumb .video-btn::before {
	width: 90px;
	height: 90px;
	line-height: 90px;
}
}
.gt-match-details-wrapper .gt-details-content .gt-match-details-box {
	padding: 30px;
	background-color: var(--bg-2);
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 40px;
	margin-bottom: 40px;
	border-radius: 8px;
}
@media (max-width: 1199px) {
.gt-match-details-wrapper .gt-details-content .gt-match-details-box {
	flex-wrap: wrap;
	gap: 30px;
}
}
.gt-match-details-wrapper .gt-details-content .gt-match-details-box .gt-list-item h4 {
	margin-top: 0;
}
.gt-match-details-wrapper .gt-details-content .gt-match-details-box .gt-list-item h4 span {
	color: var(--theme);
}
.gt-match-details-wrapper .gt-details-content .gt-match-details-box .gt-list-item .gt-list {
	margin-top: 0;
	margin-bottom: 0;
}
.gt-match-details-wrapper .gt-details-content .gt-match-details-box .gt-list-item .gt-list li {
	font-size: 16px;
	font-weight: 600;
}
.gt-match-details-wrapper .gt-details-content .gt-match-details-box .gt-list-item .gt-list li:not(:last-child) {
	margin-bottom: 12px;
}
.gt-match-details-wrapper .gt-details-content .gt-match-details-box .gt-list-item .gt-list li i {
	margin-right: 10px;
	color: var(--theme);
}
.gt-match-details-wrapper .gt-details-content .gt-match-details-box .gt-image-item {
	display: flex;
	align-items: center;
	gap: 10px;
}
.gt-match-details-wrapper .gt-details-content .gt-match-details-box .gt-image-item .gt-small-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
.gt-match-details-wrapper .gt-details-content .gt-comments-area {
	margin-top: 40px;
	padding: 30px;
	background-color: var(--bg-2);
	border-radius: 8px;
}
@media (max-width: 470px) {
.gt-match-details-wrapper .gt-details-content .gt-comments-area {
	padding: 25px;
}
}
.gt-match-details-wrapper .gt-details-content .gt-comments-area h4 {
	margin-bottom: 0;
	margin-top: 0;
}
.gt-match-details-wrapper .gt-details-content .gt-comments-area h4 span {
	color: var(--theme);
}
.gt-match-details-wrapper .gt-details-content .gt-comments-area .gt-blog-single-comment {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.gt-match-details-wrapper .gt-details-content .gt-comments-area .gt-blog-single-comment.gt-style-2 {
	border-bottom: none;
}
.gt-match-details-wrapper .gt-details-content .gt-comments-area .gt-blog-single-comment .image img {
	border-radius: 6px;
}
@media (max-width: 575px) {
.gt-match-details-wrapper .gt-details-content .gt-comments-area .gt-blog-single-comment {
	flex-wrap: wrap;
	gap: 20px;
}
}
.gt-match-details-wrapper .gt-details-content .gt-comments-area .gt-blog-single-comment .gt-content .head .con h5 {
	margin-bottom: 10px;
	font-size: 18px;
}
.gt-match-details-wrapper .gt-details-content .gt-comments-area .gt-blog-single-comment .gt-content .head .con .gt-date-list {
	display: flex;
	align-items: center;
	gap: 30px;
}
@media (max-width: 1199px) {
.gt-match-details-wrapper .gt-details-content .gt-comments-area .gt-blog-single-comment .gt-content .head .con .gt-date-list {
	flex-wrap: wrap;
	gap: 10px;
}
}
.gt-match-details-wrapper .gt-details-content .gt-comments-area .gt-blog-single-comment .gt-content .head .con .gt-date-list li i {
	margin-right: 10px;
	color: rgb(171, 171, 171);
}
.gt-match-details-wrapper .gt-details-content .gt-comments-area .gt-blog-single-comment .gt-content .reply {
	border-radius: 2px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 5px 18px;
	font-weight: 400;
	background-color: transparent;
	color: var(--white);
	transition: all 0.4s ease-in-out;
	border-radius: 10px;
}
.gt-match-details-wrapper .gt-details-content .gt-comments-area .gt-blog-single-comment .gt-content .reply:hover {
	background-color: var(--theme);
	color: var(--header);
}
.gt-match-details-wrapper .gt-details-content .gt-comment-form-wrap {
	padding: 30px;
	background-color: var(--bg-2);
	border-radius: 8px;
}
.gt-match-details-wrapper .gt-details-content .gt-comment-form-wrap h4 {
	margin-top: 0;
	margin-bottom: 0;
}
.gt-match-details-wrapper .gt-details-content .gt-comment-form-wrap p {
	margin-bottom: 20px;
}
.gt-match-details-wrapper .gt-details-content .gt-comment-form-wrap .form-clt span {
	color: var(--white);
	display: inline-block;
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 700;
}
.gt-match-details-wrapper .gt-details-content .gt-comment-form-wrap .form-clt input, .gt-match-details-wrapper .gt-details-content .gt-comment-form-wrap .form-clt textarea {
	width: 100%;
	outline: none;
	border: none;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.05);
	padding: 12px 20px;
	font-weight: 400;
	color: var(--text);
	border-radius: 8px;
}
.gt-match-details-wrapper .gt-details-content .gt-comment-form-wrap .form-clt input::placeholder, .gt-match-details-wrapper .gt-details-content .gt-comment-form-wrap .form-clt textarea::placeholder {
 color: var(--text);
}
.gt-match-details-wrapper .gt-details-content .gt-comment-form-wrap .form-clt textarea {
	padding-bottom: 70px;
	resize: none;
}
.gt-match-details-wrapper .gt-main-sideber .gt-single-sideber-widgett {
	padding: 30px;
	background-color: var(--bg-2);
	margin-bottom: 30px;
	border-radius: 10px;
}
@media (max-width: 470px) {
.gt-match-details-wrapper .gt-main-sideber .gt-single-sideber-widgett {
	padding: 25px;
}
}
.gt-match-details-wrapper .gt-main-sideber .gt-single-sideber-widgett h4 {
	border-bottom: 1.5px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 10px;
	margin-bottom: 40px;
	text-transform: capitalize;
}
.gt-match-details-wrapper .gt-main-sideber .gt-single-sideber-widgett .gt-sideber-box {
	position: relative;
	z-index: 9;
	transition: all 0.4s ease-in-out;
	border-left: 3px solid var(--theme);
	margin-bottom: 20px;
}
.gt-match-details-wrapper .gt-main-sideber .gt-single-sideber-widgett .gt-sideber-box::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 0;
	height: 100%;
	content: "";
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: cover;
	background: url("../../assets/img/inner-page/match-details/post-1.jpg");
	transition: all 0.4s ease-in-out;
	z-index: -1;
}
@media (max-width: 1199px) {
.gt-match-details-wrapper .gt-main-sideber .gt-single-sideber-widgett .gt-sideber-box::before {
	display: none;
}
}
.gt-match-details-wrapper .gt-main-sideber .gt-single-sideber-widgett .gt-sideber-box .gt-box-item {
	background-color: var(--bg);
	padding: 14px 30px;
}
@media (max-width: 470px) {
.gt-match-details-wrapper .gt-main-sideber .gt-single-sideber-widgett .gt-sideber-box .gt-box-item {
	padding: 14px 25px;
}
}
.gt-match-details-wrapper .gt-main-sideber .gt-single-sideber-widgett .gt-sideber-box .gt-box-item .gt-list {
	display: flex;
	align-items: center;
	gap: 15px;
}
@media (max-width: 1199px) {
.gt-match-details-wrapper .gt-main-sideber .gt-single-sideber-widgett .gt-sideber-box .gt-box-item .gt-list {
	flex-wrap: wrap;
	gap: 10px;
}
}
.gt-match-details-wrapper .gt-main-sideber .gt-single-sideber-widgett .gt-sideber-box .gt-box-item .gt-list li {
	transition: all 0.4s ease-in-out;
	text-transform: capitalize;
}
.gt-match-details-wrapper .gt-main-sideber .gt-single-sideber-widgett .gt-sideber-box .gt-box-item .gt-list li.text {
	display: inline-block;
	margin-left: 30px;
	transition: all 0.4s ease-in-out;
}
@media (max-width: 470px) {
.gt-match-details-wrapper .gt-main-sideber .gt-single-sideber-widgett .gt-sideber-box .gt-box-item .gt-list li.text {
	margin-left: 20px;
}
}
.gt-match-details-wrapper .gt-main-sideber .gt-single-sideber-widgett .gt-sideber-box .gt-box-item .gt-date-list {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-top: 10px;
}
@media (max-width: 1199px) {
.gt-match-details-wrapper .gt-main-sideber .gt-single-sideber-widgett .gt-sideber-box .gt-box-item .gt-date-list {
	flex-wrap: wrap;
	gap: 10px;
}
}
.gt-match-details-wrapper .gt-main-sideber .gt-single-sideber-widgett .gt-sideber-box .gt-box-item .gt-date-list li {
	font-size: 14px;
	font-weight: 400;
	transition: all 0.4s ease-in-out;
	text-transform: capitalize;
}
.gt-match-details-wrapper .gt-main-sideber .gt-single-sideber-widgett .gt-sideber-box .gt-box-item .gt-date-list li i {
	margin-right: 10px;
	color: rgb(171, 171, 171);
}
.gt-match-details-wrapper .gt-main-sideber .gt-single-sideber-widgett .gt-sideber-box:hover::before {
	width: 100%;
	z-index: 1;
}
.gt-match-details-wrapper .gt-main-sideber .gt-single-sideber-widgett .gt-sideber-box:hover .gt-box-item .gt-list {
	position: relative;
	z-index: 999;
}
.gt-match-details-wrapper .gt-main-sideber .gt-single-sideber-widgett .gt-sideber-box:hover .gt-box-item .gt-list li {
	color: var(--white);
}
.gt-match-details-wrapper .gt-main-sideber .gt-single-sideber-widgett .gt-sideber-box:hover .gt-box-item .gt-list li.text {
	color: var(--white);
}
.gt-match-details-wrapper .gt-main-sideber .gt-single-sideber-widgett .gt-sideber-box:hover .gt-box-item .gt-date-list {
	position: relative;
	z-index: 999;
}
.gt-match-details-wrapper .gt-main-sideber .gt-single-sideber-widgett .gt-sideber-box:hover .gt-box-item .gt-date-list li {
	color: var(--white);
}
.gt-match-details-wrapper .gt-main-sideber .gt-single-sideber-widgett .gt-sideber-box:hover .gt-box-item .gt-date-list li i {
	color: var(--white);
}
.gt-match-details-wrapper .gt-main-sideber .gt-contact-bg {
	position: relative;
	border-radius: 10px;
}
.gt-match-details-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content {
	padding: 40px;
	position: relative;
}
@media (max-width: 1199px) {
.gt-match-details-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content {
	padding: 30px;
}
}
.gt-match-details-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content h3 {
	font-size: 32px;
	color: var(--white);
	margin-bottom: 10px;
}
@media (max-width: 1199px) {
.gt-match-details-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content h3 {
	font-size: 30px;
}
}
.gt-match-details-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content p {
	border-bottom: 1.2px solid rgba(191, 191, 191, 0.24);
	padding-bottom: 24px;
	margin-bottom: 24px;
	color: var(--white);
}
.gt-match-details-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}
.gt-match-details-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item .gt-icon {
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	border: 1.2px solid rgba(191, 191, 191, 0.24);
	color: var(--theme);
	font-size: 24px;
}
.gt-match-details-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item .gt-list li {
	font-size: 16px;
	font-weight: 700;
	font-family: "Chakra Petch", sans-serif;
	color: var(--white);
}
@media (max-width: 1199px) {
.gt-match-details-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item .gt-list li {
	font-size: 14px;
}
}
.gt-match-details-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item .gt-list li span {
	color: var(--white);
}
.gt-match-details-wrapper .gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item .gt-list li a {
	color: var(--white);
}
.mean-container a.meanmenu-reveal {
	display: none;
}
.mean-container .mean-nav {
	background: none;
	margin-top: 0;
}
.mean-container .mean-bar {
	padding: 0;
	min-height: auto;
	background: none;
	background: none;
}
.mean-container .mean-nav > ul {
	padding: 0;
	margin: 0;
	width: 100%;
	list-style-type: none;
	display: block !important;
}
.mean-container a.meanmenu-reveal {
	display: none !important;
}
.mean-container .mean-nav ul li a {
	width: 100%;
	padding: 10px 0;
	color: var(--white);
	font-size: 17px;
	line-height: 2;
	font-weight: 700;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
	border: none;
}
.mean-container .mean-nav ul li a:hover {
	color: var(--theme);
}
.mean-container .mean-nav ul li a:last-child {
	border-bottom: 0;
}
.mean-container .mean-nav ul li a:hover {
	color: var(--theme);
}
.mean-container .mean-nav ul li a.mean-expand {
	margin-top: 5px;
	padding: 0 !important;
}
.mean-container .mean-nav ul li > a > i {
	display: none;
}
.mean-container .mean-nav ul li > a.mean-expand i {
	display: inline-block;
	font-size: 18px;
}
.mean-container .mean-nav > ul > li:first-child > a {
	border-top: 0;
}
.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
	transition: all 0.4s ease-in-out;
}
.mean-container .mean-nav ul li .mega-menu li a {
	height: 200px;
	width: 100%;
	padding: 0;
	border-top: 0;
	margin-bottom: 20px;
}
.mobile-menus .mean-nav ul li a {
	font-size: 30px !important;
	font-weight: 600 !important;
	font-family: "Chakra Petch", sans-serif !important;
}
@media (max-width: 767px) {
.mobile-menus .mean-nav ul li a {
	font-size: 18px !important;
}
}
.mobile-menus .mean-container .mean-nav ul li li a {
	font-size: 16px !important;
}
.mobile-menus .mean-nav {
	max-width: 530px;
}
@media (max-width: 1199px) {
.mobile-menus .mean-nav {
	max-width: initial;
}
}
.news-box-items {
	margin-top: 30px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	position: relative;
}
.news-box-items .thumb {
	overflow: hidden;
	position: relative;
	overflow: hidden;
}
.news-box-items .thumb img {
	width: 100%;
	height: 100%;
	border-radius: 10px 10px 0 0;
	display: block;
	object-fit: cover;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}
.news-box-items .thumb img:first-child {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	-webkit-transform: translateX(50%) scaleX(2);
	transform: translate(50%) scaleX(2);
	opacity: 0;
	-webkit-filter: blur(10px);
	filter: blur(10px);
}
.news-box-items .thumb.style-2 img {
	border-radius: 0 0 10px 10px;
}
.news-box-items .content {
	padding: 30px;
}
@media (max-width: 470px) {
.news-box-items .content {
	padding: 25px;
}
}
.news-box-items .content h3 {
	font-size: 24px;
	line-height: 125%;
	text-transform: capitalize;
}
@media (max-width: 1600px) {
.news-box-items .content h3 {
	font-size: 18px;
}
}
@media (max-width: 1199px) {
.news-box-items .content h3 {
	font-size: 20px;
}
}
@media (max-width: 991px) {
.news-box-items .content h3 {
	font-size: 18px;
}
}
@media (max-width: 575px) {
.news-box-items .content h3 {
	font-size: 22px;
}
}
@media (max-width: 470px) {
.news-box-items .content h3 {
	font-size: 18px;
}
}
.news-box-items .content h3 a {
	color: var(--white);
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}
.news-box-items .content h3 a:hover {
	color: var(--theme);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.news-box-items .content span {
	color: #AAA;
	display: inline-block;
	margin-top: 20px;
}
.news-box-items .content span i {
	color: var(--theme);
	margin-right: 5px;
}
.news-box-items:hover .thumb img:first-child {
	-webkit-transform: translateX(0) scaleX(1);
	transform: translate(0) scaleX(1);
	opacity: 1;
	-webkit-filter: blur(0);
	filter: blur(0);
}
.news-box-items:hover .thumb img:nth-child(2) {
	-webkit-transform: translateX(-50%) scaleX(2);
	transform: translateX(-50%) scaleX(2);
	opacity: 0;
	-webkit-filter: blur(10px);
	filter: blur(10px);
}
 @media (max-width: 1399px) {
.news-wrapper {
	margin-top: 60px;
}
}
.news-wrapper .news-right-items {
	margin-left: 50px;
}
@media (max-width: 1199px) {
.news-wrapper .news-right-items {
	margin-left: 0;
}
}
.news-wrapper .news-right-items .section-title {
	display: block;
}
.news-wrapper .news-right-items .section-title h2 {
	text-transform: capitalize;
}
@media (max-width: 1399px) {
.news-wrapper .news-right-items .section-title {
	display: none;
}
}
.news-wrapper .news-right-items .news-text {
	margin-top: 25px;
	margin-bottom: 40px;
}
.news-section-2 {
	position: relative;
	z-index: 9;
}
.news-section-2 .game-controll-shape {
	bottom: -25%;
	right: 0;
	position: absolute;
	z-index: -1;
}
@media (max-width: 1199px) {
.news-section-2 .game-controll-shape {
	display: none;
}
}
.news-section-2 .section-title {
	display: none;
}
@media (max-width: 1399px) {
.news-section-2 .section-title {
	display: block;
}
}
.gt-news-card-item-4 {
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 30px 0;
	margin-top: 30px;
}
.gt-news-card-item-4 .gt-news-image img {
	width: 100%;
	height: 100%;
}
.gt-news-card-item-4 .gt-news-content {
	padding: 30px 30px 0;
}
@media (max-width: 470px) {
.gt-news-card-item-4 .gt-news-content {
	padding: 30px 25px 0;
}
}
.gt-news-card-item-4 .gt-news-content h4 a {
	color: var(--white);
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}
.gt-news-card-item-4 .gt-news-content h4 a:hover {
	color: var(--white);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}
.gt-news-card-item-4 .gt-news-content .gt-post {
	margin-top: 15px;
}
.gt-news-card-item-4 .gt-news-content .gt-post li i {
	color: var(--theme);
	margin-right: 8px;
}
.gt-news-card-item-4.gt-style-2 {
	padding: 0;
}
.gt-news-card-item-4.gt-style-2 .gt-news-content {
	padding: 25px 30px 30px;
}
@media (max-width: 470px) {
.gt-news-card-item-4.gt-style-2 .gt-news-content {
	padding: 25px 25px 30px;
}
}
.news-card-items-3 {
	margin-top: 30px;
}
.news-card-items-3 .news-image {
	position: relative;
	z-index: 9;
}
.news-card-items-3 .news-image::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	border-radius: 10px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.news-card-items-3 .news-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
.news-card-items-3 .news-image .content {
	position: absolute;
	left: 31px;
	bottom: 30px;
}
@media (max-width: 1399px) {
.news-card-items-3 .news-image .content {
	left: 20px;
	bottom: 20px;
}
}
.news-card-items-3 .news-image .content span {
	color: var(--theme);
	display: inline-block;
	margin-bottom: 10px;
}
.news-card-items-3 .news-image .content span i {
	color: var(--theme);
	margin-right: 5px;
}
.news-card-items-3 .news-image .content h6 {
	font-weight: 400;
	text-transform: capitalize;
	line-height: 162%;
}
@media (max-width: 1399px) {
.news-card-items-3 .news-image .content h6 {
	font-size: 14px;
}
}
@media (max-width: 991px) {
.news-card-items-3 .news-image .content h6 {
	font-size: 16px;
}
}
.news-card-items-3 .news-image .content h6 a {
	color: var(--white);
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}
.news-card-items-3 .news-image .content h6 a:hover {
	color: var(--theme);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.news-card-items-3 .news-image .content.style-2 h4 {
	text-transform: capitalize;
	margin-bottom: 12px;
}
.news-card-items-3 .news-image .content.style-2 h4 a {
	color: var(--white);
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}
.news-card-items-3 .news-image .content.style-2 h4 a:hover {
	color: var(--theme);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.news-card-items-3 .news-image .content.style-2 p {
	color: var(--white);
	max-width: 630px;
}
.news-card-items-3 .news-image .content.style-2 .client-item {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 30px;
}
.news-card-items-3 .news-image .content.style-2 .client-item img {
	width: initial;
	height: initial;
}
.news-card-items-3 .news-image .content.style-2 .client-item span {
	font-size: 14px;
	font-weight: 700;
	color: var(--white);
}
.news-section-3 .section-title span {
	margin-bottom: 30px;
	display: inline-block;
}
.news-section-3 .section-title p {
	color: var(--white);
	max-width: 690px;
	margin: 0 auto;
	margin-top: 15px;
}
.gt-news-left-items {
	margin-top: 30px;
	background-color: #1C1D20;
}
.gt-news-left-items .gt-news-image {
	overflow: hidden;
	height: 326px;
}
.gt-news-left-items .gt-news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gt-news-left-items .gt-news-content {
	padding: 24px;
}
.gt-news-left-items .gt-news-content .gt-date-list {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 15px;
}
@media (max-width: 1199px) {
.gt-news-left-items .gt-news-content .gt-date-list {
	flex-wrap: wrap;
	gap: 10px;
}
}
.gt-news-left-items .gt-news-content .gt-date-list li i {
	margin-right: 10px;
	color: var(--theme);
}
.gt-news-left-items .gt-news-content h3 {
	font-size: 24px;
	margin-bottom: 30px;
}
@media (max-width: 470px) {
.gt-news-left-items .gt-news-content h3 {
	font-size: 19px;
	line-height: 140%;
}
}
.gt-news-left-items .gt-news-content h3 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
	color: var(--white);
}
.gt-news-left-items .gt-news-content h3 a:hover {
	color: var(--theme);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.gt-news-left-items .gt-news-content .gt-theme-btn .gt-text-btn {
	padding: 18px 30px;
	border: 1px solid var(--theme);
}
.gt-news-left-items .gt-news-content .gt-theme-btn .gt-text-btn::before {
	background-color: var(--theme);
}
.gt-news-left-items .gt-news-content .gt-theme-btn .gt-text-btn::after {
	background-color: var(--theme);
}
.gt-news-left-items .gt-news-content .gt-theme-btn:hover .gt-text-btn {
	color: var(--white);
}
.gt-news-right-items .gt-news-box-items {
	margin-top: 30px;
	background-color: #1C1D20;
	display: flex;
	align-items: center;
}
@media (max-width: 1399px) {
.gt-news-right-items .gt-news-box-items {
	display: block;
}
}
.gt-news-right-items .gt-news-box-items .gt-news-image {
	overflow: hidden;
}
@media (max-width: 1399px) {
.gt-news-right-items .gt-news-box-items .gt-news-image {
	height: 250px;
}
.gt-news-right-items .gt-news-box-items .gt-news-image img {
	object-fit: cover;
}
}
.gt-news-right-items .gt-news-box-items .gt-news-image img {
	width: 100%;
	height: 100%;
}
.gt-news-right-items .gt-news-box-items .gt-news-content {
	padding: 0 30px;
	max-width: 430px;
}
@media (max-width: 1399px) {
.gt-news-right-items .gt-news-box-items .gt-news-content {
	padding: 30px 30px;
}
}
.gt-news-right-items .gt-news-box-items .gt-news-content .gt-date-list {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 22px;
}
@media (max-width: 1199px) {
.gt-news-right-items .gt-news-box-items .gt-news-content .gt-date-list {
	flex-wrap: wrap;
	gap: 10px;
}
}
.gt-news-right-items .gt-news-box-items .gt-news-content .gt-date-list li i {
	margin-right: 10px;
	color: var(--theme);
}
@media (max-width: 1199px) {
.gt-news-right-items .gt-news-box-items .gt-news-content .gt-theme-btn {
	padding: 12px 30px;
}
}
.gt-news-right-items .gt-news-box-items .gt-news-content h3 {
	font-size: 24px;
	margin-bottom: 30px;
}
@media (max-width: 470px) {
.gt-news-right-items .gt-news-box-items .gt-news-content h3 {
	font-size: 19px;
	line-height: 140%;
}
}
.gt-news-right-items .gt-news-box-items .gt-news-content h3 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
	color: var(--white);
}
.gt-news-right-items .gt-news-box-items .gt-news-content h3 a:hover {
	color: var(--theme);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.gt-news-right-items .gt-news-box-items .gt-news-content .gt-theme-btn .gt-text-btn {
	padding: 18px 30px;
	border: 1px solid var(--theme);
}
.gt-news-right-items .gt-news-box-items .gt-news-content .gt-theme-btn .gt-text-btn::before {
	background-color: var(--theme);
}
.gt-news-right-items .gt-news-box-items .gt-news-content .gt-theme-btn .gt-text-btn::after {
	background-color: var(--theme);
}
.gt-news-right-items .gt-news-box-items .gt-news-content .gt-theme-btn:hover .gt-text-btn {
	color: var(--white);
}
.tab-content.style-5 {
	border-top: 1px solid rgba(159, 160, 162, 0.32);
	padding-top: 30px;
	margin-top: 48px;
}
@media (max-width: 1399px) {
.tab-content.style-5 {
	margin-top: 30px;
}
}
.tab-content .news-left-items-5 {
	margin-top: 30px;
	background-color: #0F151C;
}
@media (max-width: 1399px) {

.tab-content .news-left-items-5 {
	margin-top: 0;
}
}
.tab-content .news-left-items-5 .news-image {
	overflow: hidden;
	height: 326px;
}
.tab-content .news-left-items-5 .news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.tab-content .news-left-items-5 .news-content {
	padding: 24px;
}
.tab-content .news-left-items-5 .news-content .date-list {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 15px;
}
@media (max-width: 1199px) {
.tab-content .news-left-items-5 .news-content .date-list {
	flex-wrap: wrap;
	gap: 10px;
}
}
.tab-content .news-left-items-5 .news-content .date-list li {
	color: #9FA0A2;
	text-transform: uppercase;
}
.tab-content .news-left-items-5 .news-content .date-list li i {
	margin-right: 10px;
	color: #9FA0A2;
}
.tab-content .news-left-items-5 .news-content h3 {
	font-size: 24px;
	margin-bottom: 30px;
	text-transform: capitalize;
}
@media (max-width: 470px) {
.tab-content .news-left-items-5 .news-content h3 {
	font-size: 19px;
	line-height: 140%;
}
}
.tab-content .news-left-items-5 .news-content h3 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
	color: var(--white);
}
.tab-content .news-left-items-5 .news-content h3 a:hover {
	color: var(--theme);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.tab-content .news-left-items-5 .news-content .theme-btn {
	background-color: transparent;
	border: 1px solid var(--white);
	color: var(--white);
}
.tab-content .news-left-items-5 .news-content .theme-btn::before {
	background-color: var(--theme);
}
.tab-content .news-left-items-5 .news-content .theme-btn::after {
	background-color: var(--theme);
}
.tab-content .news-left-items-5 .news-content .theme-btn:hover {
	border: 1px solid var(--theme);
	color: var(--header);
}
.tab-content .news-right-items-5 .news-box-items-5 {
	margin-top: 30px;
	background-color: #0F151C;
	display: flex;
	align-items: center;
}
@media (max-width: 1399px) {
.tab-content .news-right-items-5 .news-box-items-5 {
	display: block;
}
}
.tab-content .news-right-items-5 .news-box-items-5 .news-image {
	overflow: hidden;
}
@media (max-width: 1399px) {
.tab-content .news-right-items-5 .news-box-items-5 .news-image {
	height: 250px;
}
.tab-content .news-right-items-5 .news-box-items-5 .news-image img {
	object-fit: cover;
}
}
.tab-content .news-right-items-5 .news-box-items-5 .news-image img {
	width: 100%;
	height: 100%;
}
.tab-content .news-right-items-5 .news-box-items-5 .news-content {
	padding: 0 30px;
	max-width: 430px;
}
@media (max-width: 1399px) {
.tab-content .news-right-items-5 .news-box-items-5 .news-content {
	padding: 30px 30px;
}
}
.tab-content .news-right-items-5 .news-box-items-5 .news-content .date-list {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 22px;
}
@media (max-width: 1199px) {
.tab-content .news-right-items-5 .news-box-items-5 .news-content .date-list {
	flex-wrap: wrap;
	gap: 10px;
}
}
.tab-content .news-right-items-5 .news-box-items-5 .news-content .date-list li i {
	margin-right: 10px;
	color: #9FA0A2;
}
.tab-content .news-right-items-5 .news-box-items-5 .news-content .theme-btn {
	background-color: transparent;
	border: 1px solid var(--white);
	color: var(--white);
}
.tab-content .news-right-items-5 .news-box-items-5 .news-content .theme-btn::before {
	background-color: var(--theme);
}
.tab-content .news-right-items-5 .news-box-items-5 .news-content .theme-btn::after {
	background-color: var(--theme);
}
.tab-content .news-right-items-5 .news-box-items-5 .news-content .theme-btn:hover {
	border: 1px solid var(--theme);
	color: var(--header);
}
.tab-content .news-right-items-5 .news-box-items-5 .news-content h3 {
	font-size: 24px;
	margin-bottom: 30px;
	text-transform: capitalize;
}
@media (max-width: 470px) {
.tab-content .news-right-items-5 .news-box-items-5 .news-content h3 {
	font-size: 19px;
	line-height: 140%;
}
}
.tab-content .news-right-items-5 .news-box-items-5 .news-content h3 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
	color: var(--white);
}
.tab-content .news-right-items-5 .news-box-items-5 .news-content h3 a:hover {
	color: var(--theme);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.tab-content .news-right-items-5 .news-box-items-5 .news-content .theme-btn .text-btn {
	padding: 18px 30px;
	border: 1px solid var(--theme);
}
.tab-content .news-right-items-5 .news-box-items-5 .news-content .theme-btn .text-btn::before {
	background-color: var(--theme);
}
.tab-content .news-right-items-5 .news-box-items-5 .news-content .theme-btn .text-btn::after {
	background-color: var(--theme);
}
.tab-content .news-right-items-5 .news-box-items-5 .news-content .theme-btn:hover .text-btn {
	color: var(--white);
}
.gt-news-card-item {
	margin-top: 30px;
	background-color: var(--bg-2);
	padding: 30px;
	clip-path: polygon(100% 0, 100% 90%, 90% 100%, 46% 100%, 0 100%, 0 0);
}
@media (max-width: 470px) {
.gt-news-card-item {
	padding: 25px;
}
}
.gt-news-card-item .gt-news-image {
	overflow: hidden;
}
.gt-news-card-item .gt-news-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
.gt-news-card-item .gt-news-content {
	margin-top: 30px;
}
.gt-news-card-item .gt-news-content .gt-list {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.gt-news-card-item .gt-news-content .gt-list li {
	font-weight: 700;
}
.gt-news-card-item .gt-news-content .gt-list li i {
	margin-right: 10px;
}
.gt-news-card-item .gt-news-content h4 {
	margin-bottom: 20px;
}
.gt-news-card-item .gt-news-content h4 a {
	color: var(--white);
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}
.gt-news-card-item .gt-news-content h4 a:hover {
	color: var(--white);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}
.gt-news-card-item .gt-news-content .icon {
	color: var(--white);
	margin-top: 15px;
	display: inline-block;
}
.gt-news-card-item .gt-news-content .icon i {
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}
.gt-news-card-item .gt-news-content .icon:hover i {
	transform: rotate(0);
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-5 {
	margin-bottom: 48px;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-5 .gt-news-image {
	overflow: hidden;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-5 .gt-news-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-5 .gt-news-content .gt-date-list {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 24px;
	margin-bottom: 15px;
}
@media (max-width: 1199px) {
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-5 .gt-news-content .gt-date-list {
	flex-wrap: wrap;
	gap: 10px;
}
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-5 .gt-news-content .gt-date-list li i {
	margin-right: 10px;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-5 .gt-news-content h3 {
	margin-bottom: 10px;
	font-size: 36px;
}
@media (max-width: 1199px) {
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-5 .gt-news-content h3 {
	font-size: 28px;
}
}
@media (max-width: 575px) {
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-5 .gt-news-content h3 {
	font-size: 20px;
}
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-5 .gt-news-content h3 a {
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-5 .gt-news-content h3 a:hover {
	color: var(--theme);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-5 .gt-news-content .theme-btn {
	margin-top: 50px;
	display: inline-block;
}
.gt-main-sideber .gt-single-sideber-widget {
	margin-bottom: 40px;
	background-color: var(--bg-2);
	padding: 30px;
	border-radius: 10px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form {
	width: 100%;
	position: relative;
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form input {
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.05);
	font-size: 18px;
	font-weight: 400;
	padding: 16px 20px;
	width: 100%;
	border: none;
	border-radius: 10px;
	color: var(--text);
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form button {
	position: absolute;
	right: -2px;
	top: 0;
	width: 58px;
	border-radius: 8px;
	font-size: 18px;
	height: 100%;
	background-color: var(--theme);
	color: var(--header);
	text-align: center;
	transition: all 0.3s ease-in-out;
}
.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form button:hover {
	background-color: var(--header);
	color: var(--white);
}
.gt-main-sideber .gt-single-sideber-widget .gt-widget-title {
	border-bottom: 1.5px solid rgba(191, 191, 191, 0.24);
	padding-bottom: 16px;
	margin-bottom: 30px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-widget-title h3 {
	font-size: 28px;
}
@media (max-width: 1199px) {
.gt-main-sideber .gt-single-sideber-widget .gt-widget-title h3 {
	font-size: 25px;
}
}
@media (max-width: 575px) {
.gt-main-sideber .gt-single-sideber-widget .gt-widget-title h3 {
	font-size: 20px;
}
}
.gt-main-sideber .gt-single-sideber-widget ul li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 16px;
	font-weight: 400;
	color: var(--header);
	transition: all 0.4s ease-in-out;
	border-radius: 0;
}
.gt-main-sideber .gt-single-sideber-widget ul li a {
	color: var(--white);
}
.gt-main-sideber .gt-single-sideber-widget ul li span {
	transition: all 0.4s ease-in-out;
	color: var(--white);
}
.gt-main-sideber .gt-single-sideber-widget ul li:not(:last-child) {
	margin-bottom: 20px;
}
.gt-main-sideber .gt-single-sideber-widget ul li:hover a {
	color: var(--theme);
}
.gt-main-sideber .gt-single-sideber-widget ul li:hover span {
	color: var(--theme);
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items {
	display: flex;
	align-items: center;
	gap: 20px;
}
@media (max-width: 1199px) {
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items {
	flex-wrap: wrap;
}
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items:not(:last-child) {
	margin-bottom: 20px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-thumb img {
	border-radius: 6px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content h6 {
	margin-bottom: 5px;
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content h6 a:hover {
	color: var(--theme);
}
.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content ul li {
	color: var(--text);
}
.gt-main-sideber .gt-contact-bg {
	position: relative;
	border-radius: 10px;
}
.gt-main-sideber .gt-contact-bg .gt-contact-content {
	padding: 40px;
	position: relative;
}
@media (max-width: 1199px) {
.gt-main-sideber .gt-contact-bg .gt-contact-content {
	padding: 30px;
}
}
.gt-main-sideber .gt-contact-bg .gt-contact-content h3 {
	font-size: 32px;
	color: var(--white);
	margin-bottom: 10px;
}
@media (max-width: 1199px) {
.gt-main-sideber .gt-contact-bg .gt-contact-content h3 {
	font-size: 30px;
}
}
.gt-main-sideber .gt-contact-bg .gt-contact-content p {
	border-bottom: 1.2px solid rgba(191, 191, 191, 0.24);
	padding-bottom: 24px;
	margin-bottom: 24px;
	color: var(--white);
}
.gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}
.gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item .gt-icon {
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	border: 1.2px solid rgba(191, 191, 191, 0.24);
	color: var(--theme);
	font-size: 24px;
}
.gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item .gt-list li {
	font-size: 16px;
	font-weight: 700;
	font-family: "Chakra Petch", sans-serif;
	color: var(--white);
}
@media (max-width: 1199px) {
.gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item .gt-list li {
	font-size: 14px;
}
}
.gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item .gt-list li span {
	color: var(--white);
}
.gt-main-sideber .gt-contact-bg .gt-contact-content .gt-contact-item .gt-list li a {
	color: var(--white);
}
.gt-news-details-wrapper .gt-details-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
.gt-news-details-wrapper .gt-news-details-content {
	margin-top: 24px;
}
.gt-news-details-wrapper .gt-news-details-content h3 {
	font-size: 36px;
	margin-bottom: 10px;
}
@media (max-width: 1199px) {
.gt-news-details-wrapper .gt-news-details-content h3 {
	font-size: 30px;
}
}
@media (max-width: 575px) {
.gt-news-details-wrapper .gt-news-details-content h3 {
	font-size: 25px;
}
}
.gt-news-details-wrapper .gt-news-details-content .gt-list {
	margin-top: 20px;
	margin-bottom: 20px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-list li {
	font-size: 16px;
	font-weight: 400;
}
.gt-news-details-wrapper .gt-news-details-content .gt-list li:not(:last-child) {
	margin-bottom: 12px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-list li i {
	margin-right: 10px;
	color: var(--theme);
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber {
	padding: 30px 40px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background-color: var(--bg-2);
	margin-bottom: 40px;
	margin-top: 40px;
	border-radius: 10px;
}
@media (max-width: 575px) {
.gt-news-details-wrapper .gt-news-details-content .gt-sideber {
	padding: 30px;
}
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber h6 {
	margin-bottom: 15px;
	line-height: 150%;
	letter-spacing: 0.5px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber .client-info-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media (max-width: 1199px) {
.gt-news-details-wrapper .gt-news-details-content .gt-sideber .client-info-item {
	flex-wrap: wrap;
	gap: 30px;
}
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber .client-info-item .client-info {
	display: flex;
	align-items: center;
	gap: 12px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber .client-info-item .client-info .image {
	border-radius: 100%;
}
.gt-news-details-wrapper .gt-news-details-content .gt-sideber .client-info-item .client-info h4 {
	font-size: 20px;
}
.gt-news-details-wrapper .gt-news-details-content .text {
	font-size: 24px;
	margin-top: 30px;
}
@media (max-width: 1199px) {
.gt-news-details-wrapper .gt-news-details-content .text {
	font-size: 20px;
}
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding: 30px 0;
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .tagcloud span {
	font-size: 20px;
	font-weight: 400;
	display: inline-block;
	margin-right: 8px;
	color: var(--white);
	text-transform: capitalize;
	font-family: "Days One", sans-serif;
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .tagcloud a {
	display: inline-block;
	padding: 12px 26px;
	line-height: 1;
	background: var(--bg-2);
	margin-right: 8px;
	text-transform: capitalize;
	font-weight: 400;
	transition: all 0.4s ease-in-out;
	border-radius: 30px;
}
@media (max-width: 1199px) {
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .tagcloud a {
	padding: 10px 18px;
}
}
@media (max-width: 1199px) {
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .tagcloud a {
	margin-bottom: 15px;
}
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .tagcloud a:hover {
	background-color: var(--theme);
	color: var(--white);
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .social-share a {
	font-size: 14px;
	color: var(--white);
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	background: #1C1D20;
	border-radius: 100px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .social-share a:not(:last-child) {
	margin-right: 10px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-tag-share-wrap .social-share a:hover {
	color: var(--header);
	background-color: var(--theme);
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area {
	margin-top: 40px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area .gt-blog-single-comment {
	border-bottom: 1.2px solid rgba(191, 191, 191, 0.24);
}
@media (max-width: 575px) {
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area .gt-blog-single-comment {
	flex-wrap: wrap;
	gap: 20px;
}
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area .gt-blog-single-comment .image img {
	border-radius: 6px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area .gt-blog-single-comment .gt-content .head .con h5 {
	margin-bottom: 10px;
	font-weight: 400;
	font-size: 20px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area .gt-blog-single-comment .gt-content .reply {
	border-radius: 2px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 5px 18px;
	font-weight: 400;
	color: var(--white);
	border-radius: 6px;
	transition: all 0.4s ease-in-out;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comments-area .gt-blog-single-comment .gt-content .reply:hover {
	background-color: var(--theme);
	color: var(--header);
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap {
	padding: 30px;
	background-color: var(--bg-2);
	border-radius: 8px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap h4 {
	margin-top: 0;
	margin-bottom: 0;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap p {
	margin-bottom: 20px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt span {
	color: var(--white);
	display: inline-block;
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 700;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt input, .gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt textarea {
	width: 100%;
	outline: none;
	border: none;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.05);
	padding: 12px 20px;
	font-weight: 400;
	color: var(--text);
	border-radius: 10px;
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt input::placeholder, .gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt textarea::placeholder {
 color: var(--text);
}
.gt-news-details-wrapper .gt-news-details-content .gt-comment-form-wrap .form-clt textarea {
	padding-bottom: 70px;
	resize: none;
}
.preloader {
	align-items: center;
	cursor: default;
	display: flex;
	height: 100%;
	justify-content: center;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 9999999;
}
.preloader .animation-preloader {
	z-index: 1000;
}
.preloader .animation-preloader .spinner {
	animation: spinner 1s infinite linear;
	border-radius: 50%;
	border: 3px solid rgba(0, 0, 0, 0.2);
	border-top-color: var(--theme);
	height: 9em;
	margin: 0 auto 3.5em auto;
	width: 9em;
}
@media (max-width: 767px) {
.preloader .animation-preloader .spinner {
	width: 7.5em;
	height: 7.5em;
	margin: 0 auto 1.5em auto;
}
}
.preloader .animation-preloader .txt-loading {
	font: bold 5em "Days One", sans-serif, "Chakra Petch", sans-serif;
	text-align: center;
	user-select: none;
}
@media (max-width: 767px) {
.preloader .animation-preloader .txt-loading {
	font-size: 2.5em;
}
}
.preloader .animation-preloader .txt-loading .letters-loading {
	color: var(--theme);
	position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
	animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
	animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
	animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
	animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
	animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
	animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
	animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
	animation: letters-loading 4s infinite;
	color: var(--header);
	content: attr(data-text-preloader);
	left: 0;
	opacity: 0;
	font-family: "Days One", sans-serif;
	position: absolute;
	top: -3px;
	transform: rotateY(-90deg);
}
.preloader p {
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 8px;
	color: var(--theme);
}
.preloader .loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font-size: 0;
	z-index: 1;
	pointer-events: none;
}
.preloader .loader .row {
	height: 100%;
}
.preloader .loader .loader-section {
	padding: 0px;
}
.preloader .loader .loader-section .bg {
	background-color: var(--bg);
	height: 100%;
	left: 0;
	width: 100%;
	transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
	opacity: 0;
	transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
	width: 0;
	transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}
.gt-back-to-top {
	background-color: var(--theme);
	width: 50px;
	height: 50px;
	line-height: 40px;
	color: var(--header);
	font-size: 16px;
	position: fixed;
	display: inline-block;
	z-index: 999;
	right: 30px;
	bottom: 30px;
	transition: all 0.4s ease-in-out;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
}
.gt-back-to-top:hover {
	background-color: var(--white);
	color: var(--header);
}
.gt-back-to-top.show {
	opacity: 1;
	visibility: visible;
	transform: translate(0);
}
.cursor-outer {
	-webkit-margin-start: -12px;
	margin-inline-start: -12px;
	margin-top: -12px;
	width: 30px;
	height: 30px;
	border: 1px solid var(--theme);
	background-color: var(--theme);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	z-index: 10000000;
	opacity: 0.34;
	-webkit-transition: all 0.4s ease-out 0s;
	transition: all 0.4s ease-out 0s;
}
.cursor-outer.cursor-hover {
	opacity: 0.14;
}
.cursor-outer.cursor-big {
	opacity: 0;
}
.mouseCursor {
	position: fixed;
	top: 0;
	inset-inline-start: 0;
	inset-inline-end: 0;
	bottom: 0;
	pointer-events: none;
	border-radius: 50%;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	visibility: hidden;
	text-align: center;
}
.mouseCursor.cursor-big {
	width: 20px;
	height: 20px;
	-webkit-margin-start: -12px;
	margin-inline-start: -12px;
	margin-top: -12px;
}
.cursor-inner {
	-webkit-margin-start: -3px;
	margin-inline-start: -3px;
	margin-top: -3px;
	width: 10px;
	height: 10px;
	z-index: 10000001;
	background-color: var(--theme);
	opacity: 1;
	-webkit-transition: all 0.24s ease-out 0s;
	transition: all 0.24s ease-out 0s;
}
.cursor-inner span {

	color: var(--text);
	line-height: 60px;
	opacity: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 12px;
}
.cursor-inner.cursor-big span {
	opacity: 1;
}
.cursor-inner.cursor-hover {
	-webkit-margin-start: -10px;
	margin-inline-start: -10px;
	margin-top: -10px;
	width: 30px;
	height: 30px;
	background-color: var(--theme);
	border: 1px solid #686363;
	opacity: 0;
}
.search-popup {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -2;
	-webkit-transition: all 1s ease;
	-khtml-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}
.search-popup__overlay {
	position: fixed;
	width: 224vw;
	height: 224vw;
	top: calc(90px - 112vw);
	right: calc(50% - 112vw);
	z-index: 3;
	display: block;
	-webkit-border-radius: 50%;
	-khtml-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	-webkit-transform: scale(0);
	-khtml-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: center;
	transform-origin: center;
	-webkit-transition: transform 0.8s ease-in-out;
	-khtml-transition: transform 0.8s ease-in-out;
	-moz-transition: transform 0.8s ease-in-out;
	-ms-transition: transform 0.8s ease-in-out;
	-o-transition: transform 0.8s ease-in-out;
	transition: transform 0.8s ease-in-out;
	transition-delay: 0s;
	transition-delay: 0.3s;
	-webkit-transition-delay: 0.3s;
	background-color: #000000;
	opacity: 0.7;
	cursor: url(../../assets/img/close.png), auto;
}
 @media (max-width: 767px) {
.search-popup__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transform: none;
	width: 100%;
	height: 100%;
	border-radius: 0;
	transform: translateY(-110%);
}
}
.search-popup__content {
	position: fixed;
	width: 0;
	max-width: 560px;
	padding: 30px 15px;
	left: 50%;
	top: 50%;
	opacity: 0;
	z-index: 3;
	-webkit-transform: translate(-50%, -50%);
	-khtml-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
	-khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
	-moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
	-ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
	-o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
	transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
	transition-delay: 0s, 0.8s, 0s;
	transition-delay: 0s, 0.4s, 0s;
	transition-delay: 0.2s;
	-webkit-transition-delay: 0.2s;
}
.search-popup__form {
	position: relative;
}
.search-popup__form input[type=search], .search-popup__form input[type=text] {
	width: 100%;
	height: 66px;
	border: none;
	outline: none;
	padding-left: 20px;
	background-color: var(--white);
	font-size: 16px;
	font-weight: 400;
	color: var(--text);
	transition: all 500ms ease;
}
.search-popup__form input[type=search]:focus, .search-popup__form input[type=text]:focus {
	color: var(--header);
}
.search-popup__form .search-btn {
	padding: 0;
	width: 66px;
	height: 66px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	right: -1px;
	border-radius: 0;
	font-size: 20px;
	color: var(--header);
	background-color: var(--theme);
	transition: all 0.4s ease-in-out;
}
.search-popup__form .search-btn:hover {
	background-color: var(--black);
}
.search-popup__form .eolexi-btn svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}
.search-popup.active {
	z-index: 9999;
}
.search-popup.active .search-popup__overlay {
	top: auto;
	bottom: calc(90px - 112vw);
	-webkit-transform: scale(1);
	-khtml-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	transition-delay: 0s;
	-webkit-transition-delay: 0s;
	opacity: 0.7;
	-webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
	-khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
	-moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
	-ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
	-o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
	transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}
 @media (max-width: 767px) {
.search-popup.active .search-popup__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transform: none;
	width: 100%;
	height: 100%;
	border-radius: 0;
	transform: translateY(0%);
}
}
.search-popup.active .search-popup__content {
	width: 100%;
	opacity: 1;
	transition-delay: 0.7s;
	-webkit-transition-delay: 0.7s;
}
.gt-page-nav-wrap ul {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
}
.gt-page-nav-wrap ul li {
	display: inline-block;
}
.gt-page-nav-wrap ul li:first-child a {
	color: var(--white);
	background-color: transparent;
	border: 1px none;
}
.gt-page-nav-wrap ul li:last-child a {
	color: var(--white);
	background-color: transparent;
	border: 1px none;
}
.gt-page-nav-wrap ul li .gt-page-numbers {
	display: inline-block;
	width: 54px;
	height: 54px;
	line-height: 54px;
	border-radius: 100%;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.2);
	font-weight: 600;
	transition: all 0.3s ease-in-out;
	color: var(--text);
	text-align: center;
	background-color: transparent;
}
.gt-page-nav-wrap ul li .gt-page-numbers.current {
	background-color: var(--theme);
	color: var(--white);
}
@media (max-width: 991px) {
.gt-page-nav-wrap ul li .gt-page-numbers {
	margin-top: 10px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 14px;
}
}
@media (max-width: 470px) {
.gt-page-nav-wrap ul li .gt-page-numbers {
	width: 40px;
	height: 40px;
	line-height: 40px;
}
}
.gt-page-nav-wrap ul li .gt-page-numbers.active {
	background-color: var(--theme);
	color: var(--header);
}
.gt-page-nav-wrap ul li .gt-page-numbers i {
	margin-top: 2px;
}
.gt-page-nav-wrap ul li .gt-page-numbers:hover {
	background-color: var(--theme);
	color: var(--header);
}
.smoke {
	position: fixed;
	width: 40px;
	height: 40px;
	background: linear-gradient(180deg, rgba(203, 254, 28, 0) 40%, #000 100%);
	pointer-events: none;
	border-radius: 50%;
	filter: blur(1px);
	opacity: 0.8;
	animation: fadeOutSmoke 1s forwards;
	will-change: transform, opacity;
}
 @keyframes fadeOutSmoke {
 0% {
 transform: scale(1) translateY(0);
 opacity: 0.7;
}
 100% {
 transform: scale(2) translateY(-20px);
 opacity: 0;
}
}
.smoke {
	position: absolute; /* better for scrolling pages */
	width: 20px;
	height: 20px;
	background: linear-gradient(180deg, rgba(203, 254, 28, 0) 40%, #ffc107 100%);
	pointer-events: none;
	border-radius: 50%;
	filter: blur(1px);
	opacity: 0.8;
	animation: fadeOutSmoke 1s ease-out forwards;
	will-change: transform, opacity;
}
 @keyframes fadeOutSmoke {
 0% {
 transform: scale(1) translateY(0);
 opacity: 0.7;
}
 100% {
 transform: scale(2) translateY(-20px);
 opacity: 0;
}
}
.gt-pricing-box-items-2 {
	padding: 40px;
	overflow: hidden;
	padding-bottom: 20px;
	position: relative;
	z-index: 9;
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
@media (max-width: 575px) {
.gt-pricing-box-items-2 {
	padding: 30px;
}
}
@media (max-width: 470px) {
.gt-pricing-box-items-2 {
	padding: 25px;
}
}
.gt-pricing-box-items-2 .gt-pricing-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 28px;
}
.gt-pricing-box-items-2 .gt-pricing-header .gt-icon {
	margin-bottom: 15px;
}
.gt-pricing-box-items-2 .gt-pricing-header h2 {
	margin-bottom: 15px;
}
@media (max-width: 470px) {
.gt-pricing-box-items-2 .gt-pricing-header p {
	font-size: 14px;
}
}
.gt-pricing-box-items-2 .gt-pricing-list {
	margin-top: 30px;
}
@media (max-width: 470px) {
.gt-pricing-box-items-2 .gt-pricing-list {
	margin-top: 20px;
}
}
.gt-pricing-box-items-2 .gt-pricing-list li {
	font-size: 16px;
	font-weight: 500;
	color: var(--white);
}
@media (max-width: 767px) {
.gt-pricing-box-items-2 .gt-pricing-list li {
	font-size: 14px;
}
}
.gt-pricing-box-items-2 .gt-pricing-list li img {
	margin-right: 10px;
}
.gt-pricing-box-items-2 .gt-pricing-list li:not(:last-child) {
	margin-bottom: 20px;
}
@media (max-width: 767px) {
.gt-pricing-box-items-2 .gt-pricing-list li:not(:last-child) {
	margin-bottom: 8px;
}
}
.gt-pricing-box-items-2 .gt-pricing-btn {
	text-align: center;
	margin-top: 70px;
	z-index: 9;
	position: relative;
}
.gt-pricing-box-items-2 .gt-pricing-btn.style-2:hover .gt-pricing-text {
	color: var(--header);
}
.gt-pricing-box-items-2 .gt-pricing-btn .gt-bg-shape {
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
	transition: all 0.4s ease-in-out;
}
.gt-pricing-box-items-2 .gt-pricing-btn .gt-bg-shape-hover {
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}
.gt-pricing-box-items-2 .gt-pricing-btn:hover .gt-bg-shape {
	opacity: 0;
	visibility: hidden;
}
.gt-pricing-box-items-2 .gt-pricing-btn:hover .gt-bg-shape-hover {
	opacity: 1;
	visibility: visible;
}
.gt-pricing-box-items-2 .gt-pricing-btn .gt-pricing-text {
	font-size: 20px;
	font-weight: bold;
	color: var(--header);
}
.gt-pricing-box-items-2 .gt-pricing-btn .gt-pricing-text i {
	transform: rotate(-45deg);
}
.gt-pricing-box-items-2 .gt-pricing-btn:hover .gt-pricing-text {
	color: var(--black);
}
.gt-pricing-box-items-2 .gt-price-tag {
	padding: 2px 4px;
	display: inline-block;
	background-color: var(--theme);
	font-size: 14px;
	text-align: center;
	color: var(--header);
	position: absolute;
	font-weight: 700;
	text-transform: uppercase;
	font-family: "Chakra Petch", sans-serif;
	top: 24px;
	right: -40px;
	transform: rotate(40.012deg);
	width: 172px;
}
@media (max-width: 470px) {
.gt-pricing-box-items-2 .gt-price-tag {
	font-size: 10px;
	top: 13px;
	right: -43px;
}
}
.gt-pricing-box-items-2 .gt-price-tag.gt-bg-white {
	background-color: var(--white);
	color: var(--header);
}
.gt-pricing-box-items-2 .gt-pricing-text.color-2 {
	color: var(--header);
}
.gt-pricing-box-items-2.gt-style-new {
	margin-top: 60px;
}
@media (max-width: 1199px) {
.gt-pricing-box-items-2.gt-style-new {
	margin-top: 30px;
}
}
.gt-pricing-box-items-2.gt-style-new .gt-price-tag.gt-bg-black {
	background-color: #0B0E13;
}
 @media (max-width: 575px) {
.gt-pricing-wrapper .gt-pricing-content {
	text-align: center;
}
}
.gt-pricing-wrapper .gt-pricing-content .gt-pricing-text {
	font-size: 18px;
	font-weight: 400;
	margin-top: 20px;
	margin-bottom: 40px;
}
@media (max-width: 767px) {
.gt-pricing-wrapper .gt-pricing-content .gt-pricing-text {
	margin-bottom: 30px;
	font-size: 16px;
}
}
@media (max-width: 470px) {
.gt-pricing-wrapper .gt-pricing-content .gt-pricing-text {
	margin-bottom: 20px;
	font-size: 14px;
}
}
@media (max-width: 575px) {
.gt-pricing-wrapper .gt-pricing-content .d-flex {
	justify-content: center;
}
}
.gt-pricing-wrapper .gt-pricing-content .nav {
	border: none;
}
.gt-pricing-wrapper .gt-pricing-content .nav .nav-tabs {
	border-bottom: 0;
	display: flex;
	justify-content: center;
}
.gt-pricing-wrapper .gt-pricing-content .nav .nav-link {
	font-size: 17px;
	font-weight: 700;
	text-transform: uppercase;
	border: 0;
	border-radius: 0;
	padding: 7px 56px;
	position: relative;
	background: transparent;
	z-index: 2;
	color: #ABABAB;
	margin-bottom: 0;
	transition: color 0.3s ease;
}
.gt-pricing-wrapper .gt-pricing-content .nav .nav-link:hover {
	color: var(--theme);
}
.gt-pricing-wrapper .gt-pricing-content .nav .nav-link::before {
	position: absolute;
	content: "";
	right: 0px;
	top: 50%;
	transform: translateY(-50%) translateX(50%);
	background: var(--theme);
	width: 75px;
	height: 32px;
	border-radius: 20px;
	border: 1px solid var(--theme);
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.gt-pricing-wrapper .gt-pricing-content .nav .nav-link::after {
	position: absolute;
	content: "";
	right: -33px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--header);
	z-index: 1;
	transition: right 0.3s ease;
}
.gt-pricing-wrapper .gt-pricing-content .nav .nav-link:first-child {
	padding-left: 0;
}
.gt-pricing-wrapper .gt-pricing-content .nav .nav-link:last-child {
	padding-right: 0;
}
.gt-pricing-wrapper .gt-pricing-content .nav .nav-link:last-child::after {
	display: none;
}
.gt-pricing-wrapper .gt-pricing-content .nav .nav-link:last-child::before {
	display: none;
}
.gt-pricing-wrapper .gt-pricing-content .nav .nav-link.active {
	color: var(--theme);
}
.gt-pricing-wrapper .gt-pricing-content .nav .nav-link.active::after {
	right: 8px;
}
.gt-pricing-box-items-3 {
	padding: 40px;
	overflow: hidden;
	padding-bottom: 20px;
	position: relative;
	z-index: 9;
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	background-color: var(--bg-2);
}
@media (max-width: 575px) {
.gt-pricing-box-items-3 {
	padding: 30px;
}
}
@media (max-width: 470px) {
.gt-pricing-box-items-3 {
	padding: 25px;
}
}
.gt-pricing-box-items-3 .gt-pricing-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 28px;
}
.gt-pricing-box-items-3 .gt-pricing-header .gt-icon {
	margin-bottom: 15px;
}
.gt-pricing-box-items-3 .gt-pricing-header h2 {
	margin-bottom: 15px;
}
@media (max-width: 470px) {
.gt-pricing-box-items-3 .gt-pricing-header p {
	font-size: 14px;
}
}
.gt-pricing-box-items-3 .gt-pricing-list {
	margin-top: 30px;
}
.gt-pricing-box-items-3 .gt-pricing-list li {
	font-size: 16px;
	font-weight: 500;
	color: var(--white);
	display: flex;
	align-items: center;
	gap: 15px;
}
.gt-pricing-box-items-3 .gt-pricing-list li:not(:last-child) {
	margin-bottom: 20px;
}
.gt-pricing-box-items-3 .gt-pricing-btn {
	text-align: center;
	margin-top: 70px;
	z-index: 9;
	position: relative;
}
.gt-pricing-box-items-3 .gt-pricing-btn .gt-bg-shape {
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.gt-pricing-box-items-3 .gt-pricing-btn .gt-pricing-text {
	font-size: 20px;
	font-weight: bold;
	color: var(--header);
}
.gt-pricing-box-items-3 .gt-pricing-btn .gt-pricing-text i {
	transform: rotate(-45deg);
}
.gt-pricing-box-items-3 .gt-price-tag {
	padding: 2px 4px;
	display: inline-block;
	background-color: var(--theme);
	font-size: 13px;
	text-align: center;
	color: var(--white);
	position: absolute;
	font-weight: 700;
	text-transform: uppercase;
	font-family: "Days One", sans-serif;
	top: 24px;
	right: -40px;
	transform: rotate(40.012deg);
	width: 172px;
}
.gt-pricing-box-items-3 .gt-price-tag.style-bg {
	color: var(--header);
}
@media (max-width: 470px) {
.gt-pricing-box-items-3 .gt-price-tag {
	font-size: 10px;
	top: 13px;
	right: -43px;
}
}
.gt-pricing-box-items-3 .gt-price-tag.gt-bg-white {
	background-color: var(--white);
	color: var(--theme);
}
.gt-pricing-box-items-3 .gt-pricing-text.color-2 {
	color: var(--header);
}
.gt-pricing-box-items-3.gt-style-new {
	margin-top: 60px;
}
@media (max-width: 1199px) {
.gt-pricing-box-items-3.gt-style-new {
	margin-top: 30px;
}
}
.gt-pricing-box-items-3.gt-style-new .gt-price-tag.gt-bg-black {
	background-color: #0B0E13;
}
.gt-pricing-wrapper-2 .gt-pricing-content .gt-pricing-text {
	font-size: 18px;
	font-weight: 600;
	margin-top: 20px;
	margin-bottom: 40px;
}
@media (max-width: 767px) {
.gt-pricing-wrapper-2 .gt-pricing-content .gt-pricing-text {
	margin-bottom: 30px;
	font-size: 16px;
}
}
@media (max-width: 470px) {
.gt-pricing-wrapper-2 .gt-pricing-content .gt-pricing-text {
	margin-bottom: 20px;
	font-size: 14px;
}
}
.gt-pricing-wrapper-2 .gt-pricing-content .nav {
	border: none;
}
.gt-pricing-wrapper-2 .gt-pricing-content .nav .nav-tabs {
	border-bottom: 0;
	display: flex;
	justify-content: center;
}
.gt-pricing-wrapper-2 .gt-pricing-content .nav .nav-link {
	font-size: 17px;
	font-weight: 700;
	text-transform: uppercase;
	border: 0;
	border-radius: 0;
	padding: 7px 56px;
	position: relative;
	background: transparent;
	z-index: 2;
	color: #ABABAB;
	margin-bottom: 0;
	transition: color 0.3s ease;
}
.gt-pricing-wrapper-2 .gt-pricing-content .nav .nav-link::before {
	position: absolute;
	content: "";
	right: 0px;
	top: 50%;
	transform: translateY(-50%) translateX(50%);
	background: var(--theme);
	width: 75px;
	height: 32px;
	border-radius: 20px;
	border: 1px solid var(--theme);
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.gt-pricing-wrapper-2 .gt-pricing-content .nav .nav-link::after {
	position: absolute;
	content: "";
	right: -33px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--header);
	z-index: 1;
	transition: right 0.3s ease;
}
.gt-pricing-wrapper-2 .gt-pricing-content .nav .nav-link:first-child {
	padding-left: 0;
}
.gt-pricing-wrapper-2 .gt-pricing-content .nav .nav-link:last-child {
	padding-right: 0;
}
.gt-pricing-wrapper-2 .gt-pricing-content .nav .nav-link:last-child::after {
	display: none;
}
.gt-pricing-wrapper-2 .gt-pricing-content .nav .nav-link:last-child::before {
	display: none;
}
.gt-pricing-wrapper-2 .gt-pricing-content .nav .nav-link.active {
	color: var(--theme);
}
.gt-pricing-wrapper-2 .gt-pricing-content .nav .nav-link.active::after {
	right: 8px;
}
.section-title {
	position: relative;
	z-index: 99;
	margin-bottom: 30px;
	margin-top: -6px;
}
@media (max-width: 767px) {
.section-title {
	margin-bottom: 0;
}
}
.section-title h6 {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -0.32px;
	line-height: 1;
	color: var(--theme);
	font-family: "Chakra Petch", sans-serif;
	position: relative;
	display: inline-block;
	margin-bottom: 25px;
	display: inline-block;
	position: relative;
	text-transform: uppercase;
}
.section-title h6::after {
	position: absolute;
	content: "";
	background: linear-gradient(90deg, #ffc107 0%, #0B0E13 100%);
	width: 116px;
	height: 1px;
	left: 0;
	bottom: -8px;
}
.section-title h2 {
	color: var(--white);
	text-transform: capitalize;
}
.section-title h2 span {
	color: var(--theme);
}
.section-title.style-3 h2 {
	font-size: 45px;
	color: var(--white);
	text-transform: capitalize;
}
@media (max-width: 1399px) {
.section-title.style-3 h2 {
	font-size: 34px;
}
}
@media (max-width: 1199px) {
.section-title.style-3 h2 {
	font-size: 34px;
}
}
@media (max-width: 991px) {
.section-title.style-3 h2 {
	font-size: 40px;
}
}
@media (max-width: 767px) {
.section-title.style-3 h2 {
	font-size: 35px;
}
}
@media (max-width: 575px) {
.section-title.style-3 h2 {
	font-size: 30px;
}
}
@media (max-width: 470px) {
.section-title.style-3 h2 {
	font-size: 25px;
}
}
@media (max-width: 575px) {
.section-title.style-3 p {
	margin-left: 0 !important;
}
}
.section-title-2 {
	position: relative;
	z-index: 99;
	margin-bottom: 30px;
	margin-top: -6px;
}
@media (max-width: 767px) {
.section-title-2 {
	margin-bottom: 0;
}
}
.section-title-2 h2 {
	text-transform: capitalize;
}
.section-title-2 h6 {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -0.32px;
	line-height: 1;
	color: var(--theme);
	font-family: "Chakra Petch", sans-serif;
	position: relative;
	display: inline-block;
	margin-bottom: 25px;
	display: inline-block;
	position: relative;
	padding-left: 60px;
	text-transform: uppercase;
	padding-right: 60px;
}
@media (max-width: 575px) {
.section-title-2 h6 {
	padding-left: 0;
	padding-right: 0;
}
}
.section-title-2 h6::before {
	position: absolute;
	content: "";
	background: linear-gradient(90deg, #CBFE1C 0%, #0B0E13 100%);
	width: 44px;
	height: 1px;
	left: 0;
	top: 8px;
	animation: borderAnim 2s infinite alternate ease-in-out;
}
@media (max-width: 575px) {
.section-title-2 h6::before {
	display: none;
}
}
.section-title-2 h6::after {
	position: absolute;
	content: "";
	background: linear-gradient(90deg, #CBFE1C 0%, #0B0E13 100%);
	width: 44px;
	height: 1px;
	right: 0;
	top: 8px;
	left: initial;
	animation: borderAnim 2s infinite alternate ease-in-out;
}
@media (max-width: 575px) {
.section-title-2 h6::after {
	display: none;
}
}
.section-title-area {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 9;
	margin-bottom: 30px;
}
.section-title-area .gt-section-title-2 {
	margin-bottom: 0;
}
.section-title-area .gt-section-title {
	margin-bottom: 0;
}
@media (max-width: 991px) {
.section-title-area {
	flex-wrap: wrap;
	gap: 30px;
}
}
@media (max-width: 767px) {
.section-title-area {
	margin-bottom: 0;
}
}
.section-title-area .rating span {
	font-size: 14px;
	font-weight: 400;
	color: rgb(136, 136, 136);
}
.section-title-area .rating .star {
	margin-top: 5px;
	color: rgb(255, 8, 8);
}
.section-title-area .nav {
	display: flex;
	align-items: center;
	gap: 40px;
}
.section-title-area .nav .nav-item .nav-link {
	font-size: 18px;
	font-weight: 700;
	color: #ABABAB;
	padding: 0;
}
.section-title-area .nav .nav-item .nav-link.active {
	color: var(--theme);
}
.section-title-area .nav .nav-item .nav-link.style-2 {
	color: #9FA0A2;
}
.section-title-area .nav .nav-item .nav-link.style-2.active {
	background: linear-gradient(90deg, #DDF247 0.25%, #7CFFE5 99.75%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: initial !important;
}
.center {
	text-align: center;
	margin: 0 auto;
}
.section-bg {
	background-color: var(--bg);
}
.section-bg-1 {
	background-color: var(--bg);
}
.section-padding {
	padding: 70px 0;
}
@media (max-width: 1199px) {
.section-padding {
	padding: 100px 0;
}
}
@media (max-width: 991px) {
.section-padding {
	padding: 80px 0;
}
}
.service-section-7 {
	position: relative;
	z-index: 9;
	overflow: hidden;
}
.service-section-7::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	z-index: -1;
	background: linear-gradient(0deg, rgba(29, 29, 29, 0.64) 0%, rgba(29, 29, 29, 0.64) 100%);
}
.service-wrapper-7 {
	padding-right: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	overflow: hidden;
}
@media (max-width: 1199px) {
.service-wrapper-7 {
	padding-right: 30px;
	flex-wrap: wrap;
	gap: 30px;
	padding-top: 100px;
	padding-bottom: 100px;
	padding-left: 30px;
}
}
@media (max-width: 1199px) {
.service-wrapper-7 {
	padding-top: 80px;
	padding-bottom: 80px;
}
}
.service-wrapper-7 .service-box {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	border-left: 1px solid rgba(152, 152, 152, 0.48);
	display: grid;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 120px 120px;
	padding-right: 70px;
	margin-top: -30px;
	position: relative;
	z-index: 9;
}
@media (max-width: 1899px) {
.service-wrapper-7 .service-box {
	padding-left: 90px;
	padding-right: 30px;
}
}
@media (max-width: 1199px) {
.service-wrapper-7 .service-box {
	padding: 30px;
	transform: rotate(0);
	writing-mode: horizontal-tb;
	border-left: none;
	padding-right: 0;
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	flex-basis: 100%;
}
}
.service-wrapper-7 .service-box::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(180deg, rgba(2, 2, 2, 0.09) 0%, #ADFF00 100%), url(../../assets/img/home-7/dot.png);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: -1;
}
.service-wrapper-7 .service-box:first-child {
	padding-right: 60px;
}
@media (max-width: 1899px) {
.service-wrapper-7 .service-box:first-child {
	padding-right: 30px;
}
}
@media (max-width: 1199px) {
.service-wrapper-7 .service-box:first-child {
	padding-right: 0;
}
}
.service-wrapper-7 .service-box:last-child {
	border-left: none;
}
.service-wrapper-7 .service-box span {
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	color: var(--white);
}
.service-wrapper-7 .service-box .title {
	font-size: 60px;
	font-weight: 700;
	display: block;
	max-height: 450px;
	text-align: left;
	text-transform: uppercase;
	font-family: "Chakra Petch", sans-serif;
}
@media (max-width: 1899px) {
.service-wrapper-7 .service-box .title {
	font-size: 40px;
}
}
@media (max-width: 1399px) {
.service-wrapper-7 .service-box .title {
	font-size: 30px;
}
}
@media (max-width: 1199px) {
.service-wrapper-7 .service-box .title {
	max-height: initial;
}
}
@media (max-width: 991px) {
.service-wrapper-7 .service-box .title {
	font-size: 42px;
}
}
@media (max-width: 767px) {
.service-wrapper-7 .service-box .title {
	font-size: 35px;
}
}
@media (max-width: 575px) {
.service-wrapper-7 .service-box .title {
	font-size: 30px;
}
}
@media (max-width: 470px) {
.service-wrapper-7 .service-box .title {
	font-size: 24px;
}
}
.service-wrapper-7 .service-box .title a {
	color: #5B5B5B;
}
@media (max-width: 1899px) {
.service-wrapper-7 .service-box .title a {
	color: var(--white);
}
}
.service-wrapper-7 .service-box:hover::before {
	opacity: 1;
	visibility: visible;
}
@media (max-width: 1899px) {
.service-wrapper-7 .service-box:hover::before {
	opacity: 0;
	visibility: hidden;
}
}
.service-wrapper-7 .service-box:hover .title a {
	color: var(--white);
}
.gt-service-details-wrapper .gt-nav-items {
	padding: 30px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
	overflow: hidden;
}
.gt-service-details-wrapper .gt-nav-items::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 90px;
	height: 1px;
	background: linear-gradient(90deg, #CBFE1C 0%, #0B0E13 100%);
	animation: slideBorder 6s linear infinite alternate;
}
.gt-service-details-wrapper .gt-nav-items::after {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	content: "";
	width: 90px;
	height: 1px;
	background: linear-gradient(90deg, #CBFE1C 0%, #0B0E13 100%);
	animation: slideBorders 6s linear infinite alternate;
}
@media (max-width: 1199px) {
.gt-service-details-wrapper .gt-nav-items::after {
	display: none;
}
}
.gt-service-details-wrapper .gt-nav-items .nav {
	display: flex;
	justify-content: space-between;
}
@media (max-width: 1199px) {
.gt-service-details-wrapper .gt-nav-items .nav {
	flex-wrap: wrap;
	gap: 20px;
}
}
@media (max-width: 470px) {
.gt-service-details-wrapper .gt-nav-items .nav {
	flex-wrap: wrap;
	gap: 18px;
}
}
.gt-service-details-wrapper .gt-nav-items .nav li {
	font-size: 18px;
	font-weight: 400;
}
@media (max-width: 470px) {
.gt-service-details-wrapper .gt-nav-items .nav li {
	font-size: 12px;
}
}
.gt-service-details-wrapper .gt-nav-items .nav li .nav-link {
	color: var(--white);
	transition: all 0.4s ease-in-out;
	padding: 30px 25px;
	line-height: 1;
	border: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
	text-transform: capitalize;
	border-radius: 4px;
}
@media (max-width: 1199px) {
.gt-service-details-wrapper .gt-nav-items .nav li .nav-link {
	padding: 25px 25px;
}
}
@media (max-width: 991px) {
.gt-service-details-wrapper .gt-nav-items .nav li .nav-link {
	padding: 20px 20px;
}
}
@media (max-width: 470px) {
.gt-service-details-wrapper .gt-nav-items .nav li .nav-link {
	padding: 16px 10px;
}
}
.gt-service-details-wrapper .gt-nav-items .nav li .nav-link.active {
	position: relative;
	background-color: var(--theme);
	color: var(--header);
}
.gt-service-details-wrapper .gt-nav-items .nav li .nav-link.active::before {
	position: absolute;
	content: "";
	width: 32px;
	height: 15px;
	background-color: var(--theme);
	left: 50%;
	top: 100%;
	transform: translateX(-50%);
	clip-path: polygon(16% 0, 49% 100%, 85% 0);
	transition: all 0.4s ease-in-out;
}
.gt-service-details-wrapper .tab-content .gt-details-post-item {
	margin-top: 60px;
}
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-image {
	margin-bottom: 20px;
}
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content h3 {
	font-size: 36px;
	margin-bottom: 15px;
}
@media (max-width: 991px) {
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content h3 {
	font-size: 30px;
}
}
@media (max-width: 767px) {
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content h3 {
	font-size: 25px;
}
}
@media (max-width: 575px) {
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content h3 {
	font-size: 20px;
}
}
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content p {
	margin-bottom: 15px;
}
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .text {
	margin-top: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 20px;
	margin-bottom: 30px;
}
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .gt-service-feature-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
}
@media (max-width: 1199px) {
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .gt-service-feature-wrapper {
	flex-wrap: wrap;
	gap: 30px;
}
}
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .gt-service-feature-wrapper .gt-feature-item .number {
	font-size: 18px;
	width: 44px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 100%;
	margin-bottom: 20px;
	transition: all 0.4s ease-in-out;
	position: relative;
	z-index: 1;
}
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .gt-service-feature-wrapper .gt-feature-item .number::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	top: 0;
	left: 0;
	transform: scale(0);
	background: var(--theme);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .gt-service-feature-wrapper .gt-feature-item .gt-content h5 {
	font-size: 18px;
	font-weight: 400;
}
@media (max-width: 575px) {
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .gt-service-feature-wrapper .gt-feature-item .gt-content h5 {
	font-size: 16px;
}
}
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .gt-service-feature-wrapper .gt-feature-item:hover .number {
	color: var(--header);
}
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .gt-service-feature-wrapper .gt-feature-item:hover .number:before {
	transform: scale(1);
}
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .thumb {
	position: relative;
}
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .thumb img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .thumb .video-btn {
	background-color: var(--white);
	color: var(--theme);
	display: inline-block;
	font-size: 16px;
	height: 84px;
	width: 84px;
	line-height: 84px;
	border-radius: 50%;
	text-align: center;
	position: relative;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .thumb .video-btn {
	width: 70px;
	height: 70px;
	line-height: 70px;
}
}
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .thumb .video-btn::before {
	position: absolute;
	content: "";
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 132px;
	height: 132px;
	border: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 767px) {
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .thumb .video-btn::before {
	width: 90px;
	height: 90px;
	line-height: 90px;
}
}
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .gt-text-2 {
	font-size: 36px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 20px;
	margin-top: 40px;
}
@media (max-width: 991px) {
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .gt-text-2 {
	font-size: 30px;
}
}
@media (max-width: 767px) {
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .gt-text-2 {
	font-size: 25px;
}
}
@media (max-width: 575px) {
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .gt-text-2 {
	font-size: 20px;
}
}
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .gt-service-icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 30px;
	margin-bottom: 60px;
}
@media (max-width: 1199px) {
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .gt-service-icon-wrapper {
	flex-wrap: wrap;
	gap: 30px;
}
}
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .gt-service-icon-wrapper .gt-icon-item {
	text-align: center;
}
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .gt-service-icon-wrapper .gt-icon-item .icon {
	margin-bottom: 15px;
}
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .gt-service-icon-wrapper .gt-icon-item .icon img {
	transition: all 0.4s ease-in-out;
	transition: transform 0.6s ease-in-out;
	transform-origin: center center;
}
@media (max-width: 1199px) {
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .gt-service-icon-wrapper .gt-icon-item .icon img {
	max-width: 80px;
}
}
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .gt-service-icon-wrapper .gt-icon-item h5 {
	color: var(--text);
	text-align: center;
	transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .gt-service-icon-wrapper .gt-icon-item h5 {
	font-size: 18px;
}
}
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .gt-service-icon-wrapper .gt-icon-item:hover .icon img {
	filter: brightness(0) invert(1);
	transform: scale(1.1);
}
.gt-service-details-wrapper .tab-content .gt-details-post-item .gt-details-content .gt-service-icon-wrapper .gt-icon-item:hover h5 {
	color: var(--theme);
}
.team-box-items {
	margin-top: 30px;
	display: flex;
	align-items: end;
	gap: 20px;
	opacity: 0.25;
	transition: all 0.4s ease-in-out;
}
.team-box-items .thumb {
	position: relative;
}
.team-box-items .thumb::before {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	content: "";
	background: linear-gradient(180deg, rgba(11, 14, 19, 0) 0%, #0B0E13 95%);
	width: 100%;
	height: 83px;
	transition: all 0.4s ease-in-out;
}
.team-box-items .thumb .social-icon {
	display: flex;
	align-items: center;
	position: absolute;
	bottom: 0;
	left: 0;
	gap: 8px;
	opacity: 0;
	transition: all 0.4s ease-in-out;
	visibility: hidden;
}
.team-box-items .thumb .social-icon a {
	display: inline-block;
	width: 43px;
	height: 43px;
	background-color: #000;
	line-height: 43px;
	text-align: center;
	border-radius: 50%;
	color: var(--white);
	z-index: 9;
	overflow: hidden;
	position: relative;
}
.team-box-items .thumb .social-icon a::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--theme);
	border-radius: 50%;
	transform: translateY(-101%);
	opacity: 0;
	transition: all 0.4s ease-in-out;
	visibility: hidden;
	z-index: -1;
}
.team-box-items .thumb .social-icon a i {
	-webkit-transition: all 900ms ease;
	transition: all 900ms ease;
}
.team-box-items .thumb .social-icon a i path {
	transition: all 0.4s ease-in-out;
}
.team-box-items .thumb .social-icon a:hover {
	color: var(--header);
}
.team-box-items .thumb .social-icon a:hover::before {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.team-box-items .thumb .social-icon a:hover i {
	-webkit-transform: rotateY(360deg);
	transform: rotateY(360deg);
}
.team-box-items .thumb img {
	width: 100%;
	height: 100%;
}
.team-box-items .content {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
}
.team-box-items .content h3 {
	font-size: 24px;
	font-weight: 400;
	letter-spacing: -0.48px;
	text-transform: capitalize;
}
.team-box-items .content h3 a {
	color: var(--white);
}
.team-box-items .content h3 a:hover {
	color: var(--theme);
}
.team-box-items:hover {
	opacity: 1;
}
.team-box-items:hover .thumb .social-icon {
	opacity: 1;
	visibility: visible;
}
.line-slider {
	position: relative;
	margin-top: 40px;
}
.line-slider::before {
	position: absolute;
	top: 18px;
	left: 0;
	right: 0;
	content: "";
	width: 100%;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.2);
}
.line-slider .line1 {
	width: 20px;
	height: 1px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, #CBFE1C 50.96%, rgba(255, 255, 255, 0.1) 100%);
	display: inline-block;
	position: relative;
	z-index: 9;
}
.line-slider2 {
	position: relative;
}
.line-slider2::before {
	position: absolute;
	top: 18px;
	left: 0;
	right: 0;
	content: "";
	width: 100%;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.2);
}
.line-slider2 .line1 {
	width: 20px;
	height: 1px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, #CBFE1C 50.96%, rgba(255, 255, 255, 0.1) 100%);
	display: inline-block;
	position: relative;
	z-index: 9;
}
.team-single-style-2 {
	margin-top: 30px;
	background: #1C1D20;
	box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.8);
	text-align: center;
	padding-top: 45px;
	position: relative;
	z-index: 9;
	overflow: hidden;
	border: 2px solid;
	border-image: linear-gradient(to top, #20280E, #CBFE1C) 1;
}
.team-single-style-2 .team-bg {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	opacity: 0.4;
	transition: all 0.4s ease-in-out;
}
.team-single-style-2 .thumb {
	position: relative;
	overflow: hidden;
}
.team-single-style-2 .thumb .team-content {
	background: #000;
	padding: 20px;
	position: absolute;
	bottom: 40px;
	left: 70px;
	right: 70px;
	transition: all 0.4s ease-in-out;
	bottom: -100px;
	opacity: 0;
	visibility: hidden;
}
@media (max-width: 1600px) {
.team-single-style-2 .thumb .team-content {
	left: 20px;
	right: 20px;
}
}
.team-single-style-2 .thumb .team-content p {
	color: var(--theme);
	font-size: 16px;
	font-weight: 400;
	margin-top: 5px;
}
.team-single-style-2 .thumb .team-content h3 a {
	color: var(--white);
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}
@media (max-width: 1199px) {
.team-single-style-2 .thumb .team-content h3 a {
	font-size: 20px;
}
}
.team-single-style-2 .thumb .team-content h3 a:hover {
	color: var(--theme);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.team-single-style-2 .social-icon {
	display: grid;
	align-items: center;
	position: absolute;
	top: 20px;
	left: -100px;
	gap: 8px;
	opacity: 0;
	transition: all 0.4s ease-in-out;
	visibility: hidden;
}
.team-single-style-2 .social-icon a {
	display: inline-block;
	width: 43px;
	height: 43px;
	background-color: #000;
	line-height: 43px;
	text-align: center;
	border-radius: 50%;
	color: var(--white);
	z-index: 9;
	overflow: hidden;
	position: relative;
}
.team-single-style-2 .social-icon a::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--theme);
	border-radius: 50%;
	transform: translateY(-101%);
	opacity: 0;
	transition: all 0.4s ease-in-out;
	visibility: hidden;
	z-index: -1;
}
.team-single-style-2 .social-icon a i {
	-webkit-transition: all 900ms ease;
	transition: all 900ms ease;
}
.team-single-style-2 .social-icon a i path {
	transition: all 0.4s ease-in-out;
}
.team-single-style-2 .social-icon a:hover {
	color: var(--header);
}
.team-single-style-2 .social-icon a:hover::before {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.team-single-style-2 .social-icon a:hover i {
	-webkit-transform: rotateY(360deg);
	transform: rotateY(360deg);
}
.team-single-style-2:hover .team-bg {
	opacity: 1;
}
.team-single-style-2:hover .thumb .team-content {
	opacity: 1;
	visibility: visible;
	bottom: 40px;
}
.team-single-style-2:hover .social-icon {
	opacity: 1;
	visibility: visible;
	left: 20px;
}
.team-slider-2 {
	margin-left: -35%;
}
@media (max-width: 1600px) {
.team-slider-2 {
	margin-left: -18%;
}
}
@media (max-width: 1399px) {
.team-slider-2 {
	margin-left: -30%;
}
}
@media (max-width: 1199px) {
.team-slider-2 {
	margin-left: 0;
}
}
.team-section {
	position: relative;
}
.team-section .radius-shape {
	position: absolute;
	top: 70px;
	left: 65px;
}
@media (max-width: 1399px) {
.team-section .radius-shape {
	display: none;
}
}
.team-section .team-slider {
	margin-right: -33%;
}
@media (max-width: 1199px) {
.team-section .team-slider {
	margin-right: 0;
}
}
.team-section-2 {
	position: relative;
}
@media (max-width: 1199px) {
.team-section-2 {
	margin-bottom: 0px;
}
}
@media (max-width: 991px) {
.team-section-2 {
	margin-bottom: 0px;
}
}
.team-section-2 .array-button {
	position: absolute;
	right: 150px;
	top: 50%;
	transform: translateY(-50%);
}
@media (max-width: 1399px) {
.team-section-2 .array-button {
	position: absolute;
	right: initial;
	transform: translateX(-50%);
	bottom: 0%;
	left: 50%;
	display: flex !important;
	top: initial;
}
}
.team-section-2 .array-button .array-prev:hover, .team-section-2 .array-button .array-next:hover {
	background-color: var(--header);
	color: var(--theme);
}
.team-section-2 .array-button .array-prev:hover svg path, .team-section-2 .array-button .array-next:hover svg path {
	fill: var(--theme);
}
.team-section-2 {
	position: relative;
}
.team-section-2 .team-shape {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
}
@media (max-width: 1199px) {
.team-section-2 .team-shape {
	display: none;
}
}
.team-section-2 .team-shape img {
	height: 100%;
}
.gt-team-section-4 {
	background: #121511;
	margin: 0 60px;
}
@media (max-width: 1600px) {
.gt-team-section-4 {
	margin: 0 50px;
}
}
@media (max-width: 1399px) {
.gt-team-section-4 {
	margin: 0 0;
}
}
.gt-team-wrapper-4 {
	margin-top: 60px;
}
@media (max-width: 767px) {
.gt-team-wrapper-4 {
	margin-top: 30px;
}
}
.gt-team-wrapper-4 .gt-team-area {
	position: relative;
	z-index: 9;
}
.gt-team-wrapper-4 .gt-team-area::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 0;
	height: 100%;
	content: "";
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: cover;
	background: url("../../assets/img/home-4/team/team-bg.jpg");
	transition: all 0.4s ease-in-out;
	z-index: -1;
}
@media (max-width: 991px) {
.gt-team-wrapper-4 .gt-team-area::before {
	display: none;
}
}
.gt-team-wrapper-4 .gt-team-area .gt-team-box-items-2 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 40px 0;
}
@media (max-width: 991px) {
.gt-team-wrapper-4 .gt-team-area .gt-team-box-items-2 {
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
	text-align: center;
}
}
.gt-team-wrapper-4 .gt-team-area .gt-team-box-items-2 .gt-team-content {
	flex-basis: 48%;
}
@media (max-width: 991px) {
.gt-team-wrapper-4 .gt-team-area .gt-team-box-items-2 .gt-team-content {
	flex-basis: 100%;
}
}
.gt-team-wrapper-4 .gt-team-area .gt-team-box-items-2 .gt-team-content span {
	font-size: 16px;
	font-weight: 700;
	color: var(--theme);
	display: inline-block;
	margin-bottom: 10px;
}
.gt-team-wrapper-4 .gt-team-area .gt-team-box-items-2 .gt-team-content h3 {
	font-size: 70px;
	font-weight: 400;
	letter-spacing: -1.6px;
	line-height: 1;
	text-transform: uppercase;
}
@media (max-width: 1399px) {
.gt-team-wrapper-4 .gt-team-area .gt-team-box-items-2 .gt-team-content h3 {
	font-size: 60px;
}
}
@media (max-width: 1199px) {
.gt-team-wrapper-4 .gt-team-area .gt-team-box-items-2 .gt-team-content h3 {
	font-size: 55px;
}
}
@media (max-width: 991px) {
.gt-team-wrapper-4 .gt-team-area .gt-team-box-items-2 .gt-team-content h3 {
	font-size: 65px;
}
}
@media (max-width: 767px) {
.gt-team-wrapper-4 .gt-team-area .gt-team-box-items-2 .gt-team-content h3 {
	font-size: 55px;
}
}
@media (max-width: 575px) {
.gt-team-wrapper-4 .gt-team-area .gt-team-box-items-2 .gt-team-content h3 {
	font-size: 43px;
}
}
@media (max-width: 470px) {
.gt-team-wrapper-4 .gt-team-area .gt-team-box-items-2 .gt-team-content h3 {
	font-size: 32px;
}
}
.gt-team-wrapper-4 .gt-team-area .gt-team-box-items-2 .gt-team-content h3 a {
	color: transparent;
	-webkit-text-stroke: 1px var(--white);
}
.gt-team-wrapper-4 .gt-team-area .gt-team-box-items-2 .gt-team-content h3 a:hover {
	color: var(--theme);
}
.gt-team-wrapper-4 .gt-team-area .gt-team-box-items-2 .gt-social-icon {
	gap: 15px;
}
@media (max-width: 991px) {
.gt-team-wrapper-4 .gt-team-area .gt-team-box-items-2 .gt-social-icon {
	flex-basis: 100%;
	justify-content: center;
}
}
.gt-team-wrapper-4 .gt-team-area .gt-team-box-items-2 .gt-social-icon a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background-color: #0B0E13;
	color: var(--white);
	transition: all 0.4s ease-in-out;
	border-radius: 50%;
}
.gt-team-wrapper-4 .gt-team-area .gt-team-box-items-2 .gt-social-icon a:hover {
	background-color: var(--theme);
	color: var(--header);
}
.gt-team-wrapper-4 .gt-team-area:hover::before {
	width: 100%;
}
.gt-team-wrapper-4 .gt-team-area:hover .gt-team-content h3 a {
	color: var(--white);
	-webkit-text-stroke: 0px var(--white);
}
.bor-top {
	border-top: 1px solid rgba(151, 151, 151, 0.24);
}
.gt-team-image-3 {
	margin-top: 30px;
	position: relative;
	overflow: hidden;
}
@media (max-width: 470px) {
.gt-team-image-3 {
	height: 400px;
}
.gt-team-image-3 img {
	object-fit: cover;
}
}
.gt-team-image-3 img {
	width: 100%;
	height: 100%;
}
.gt-team-image-3::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(180deg, rgba(255, 8, 8, 0) 0%, #CBFE1C 100%);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}
.gt-team-image-3 .gt-content {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	display: grid;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0;
	z-index: 9;
	position: absolute;
	bottom: 30px;
	left: -80px;
	border-right: 4px solid var(--white);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}
.gt-team-image-3 .gt-content h3 {
	font-size: 30px;
	font-weight: bold;
	font-family: "Chakra Petch", sans-serif;
}
.gt-team-image-3 .gt-content h3 a {
	color: var(--white);
}
.gt-team-image-3 .gt-content p {
	color: var(--white);
	font-weight: bold;
	font-size: 16px;
}
.gt-team-image-3 .gt-social-icon {
	gap: 20px;
	position: absolute;
	right: 30px;
	bottom: -50px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}
.gt-team-image-3 .gt-social-icon a {
	color: var(--white);
}
.gt-team-image-3:hover::before {
	opacity: 1;
	visibility: visible;
}
.gt-team-image-3:hover .gt-content {
	opacity: 1;
	visibility: visible;
	left: 30px;
}
.gt-team-image-3:hover .gt-social-icon {
	bottom: 28px;
	opacity: 1;
	visibility: visible;
}
.gt-team-section-3 {
	position: relative;
	z-index: 9;
}
.gt-team-section-3 .gt-team-slider-3 {
	margin: 0 -7%;
}
@media (max-width: 1199px) {
.gt-team-section-3 .gt-team-slider-3 {
	margin: 0;
}
}
.gt-team-section-3 .ellipse-bg-shape {
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}
@media (max-width: 1899px) {
.gt-team-section-3 .ellipse-bg-shape {
	display: none;
}
}
.gt-team-section-3 .dot-number {
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: end;
	position: relative;
	padding-left: 50px;
	padding-right: 70px;
}
@media (max-width: 1399px) {
.gt-team-section-3 .dot-number {
	padding-left: 0;
	padding-right: 0;
}
}
@media (max-width: 767px) {
.gt-team-section-3 .dot-number {
	display: none;
}
}
.gt-team-section-3 .dot-number::before {
	position: absolute;
	top: 12px;
	left: 0;
	content: "";
	width: 35px;
	height: 1px;
	background: linear-gradient(90deg, #CBFE1C 0%, #00130B 100%);
}
@media (max-width: 1399px) {
.gt-team-section-3 .dot-number::before {
	display: none;
}
}
.gt-team-section-3 .dot-number::after {
	position: absolute;
	top: 12px;
	right: 0;
	content: "";
	width: 35px;
	height: 1px;
	background: linear-gradient(90deg, #CBFE1C 0%, #00130B 100%);
}
@media (max-width: 1399px) {
.gt-team-section-3 .dot-number::after {
	display: none;
}
}
.gt-team-section-3 .dot-number .swiper-pagination-bullet-active .dot-num span {
	color: var(--theme);
}
.gt-team-section-3 .dot-number .dot-num span {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
}
.gt-team-section-3 .swiper-horizontal > .swiper-pagination-bullets, .gt-team-section-3 .swiper-pagination-bullets.swiper-pagination-horizontal, .gt-team-section-3 .swiper-pagination-custom, .gt-team-section-3 .swiper-pagination-fraction {
	width: initial;
	left: 0;
	bottom: 0;
}
.gt-team-section-3 .swiper-pagination-bullet {
	width: 0;
	border-radius: 0;
	height: 0;
}
.gt-team-section-3 .swiper-pagination-bullet:not(:last-child) {
	margin-right: 20px !important;
}
.gt-team-details-wrapper .gt-team-details-item .gt-details-iamge {
	z-index: 9;
	border-radius: 17.022px;
	border: 1.702px solid #CBFE1C;
	background: #1C1D20;
	padding: 30px 80px 0;
	text-align: center;
	position: relative;
}
@media (max-width: 1399px) {
.gt-team-details-wrapper .gt-team-details-item .gt-details-iamge {
	padding: 30px 30px 0;
}
}
.gt-team-details-wrapper .gt-team-details-item .gt-details-iamge img {
	width: 100%;
	height: 100%;
}
.gt-team-details-wrapper .gt-team-details-item .gt-details-iamge .shape-image {
	position: absolute;
	z-index: -1;
	left: 60px;
	top: 20px;
}
@media (max-width: 1399px) {
.gt-team-details-wrapper .gt-team-details-item .gt-details-iamge .shape-image {
	left: 0;
}
}
@media (max-width: 991px) {
.gt-team-details-wrapper .gt-team-details-item .gt-details-iamge .shape-image {
	left: 70px;
}
}
@media (max-width: 575px) {
.gt-team-details-wrapper .gt-team-details-item .gt-details-iamge .shape-image {
	left: 0;
}
}
.gt-team-details-wrapper .gt-team-details-item .gt-social-icon {
	gap: 15px;
	margin-top: 30px;
}
@media (max-width: 1199px) {
.gt-team-details-wrapper .gt-team-details-item .gt-social-icon {
	flex-wrap: wrap;
}
}
.gt-team-details-wrapper .gt-team-details-item .gt-social-icon span {
	display: inline-block;
	margin-right: 10px;
	color: var(--white);
}
.gt-team-details-wrapper .gt-team-details-item .gt-social-icon a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background-color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: var(--bg-2);
	color: var(--white);
	border-radius: 100px;
	transition: all 0.4s ease-in-out;
}
.gt-team-details-wrapper .gt-team-details-item .gt-social-icon a:hover {
	border: 1px solid var(--theme);
	color: var(--theme);
}
.gt-team-details-wrapper .gt-team-details-content .text {
	color: var(--theme);
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	margin-bottom: 20px;
}
.gt-team-details-wrapper .gt-team-details-content h2 {
	font-size: 48px;
	margin-bottom: 10px;
}
@media (max-width: 991px) {
.gt-team-details-wrapper .gt-team-details-content h2 {
	font-size: 40px;
}
}
@media (max-width: 575px) {
.gt-team-details-wrapper .gt-team-details-content h2 {
	font-size: 30px;
}
}
.gt-team-details-wrapper .gt-team-details-content h6 span {
	color: var(--white);
}
.gt-team-details-wrapper .gt-team-details-content p {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 0px;
	margin-top: 20px;
}
.gt-team-details-wrapper .gt-team-details-content .gt-progress-wrapper {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 20px;
	margin-top: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 30px;
	margin-bottom: 30px;
}
.gt-team-details-wrapper .gt-team-details-content .gt-progress-wrapper h4 {
	margin-bottom: 20px;
}
.gt-team-details-wrapper .gt-team-details-content .gt-progress-wrapper .gt-progress-wrap .pro-items {
	width: 100%;
}
.gt-team-details-wrapper .gt-team-details-content .gt-progress-wrapper .gt-progress-wrap .pro-items:not(:last-child) {
	margin-bottom: 25px;
}
.gt-team-details-wrapper .gt-team-details-content .gt-progress-wrapper .gt-progress-wrap .pro-items .pro-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
}
.gt-team-details-wrapper .gt-team-details-content .gt-progress-wrapper .gt-progress-wrap .pro-items .pro-head .point {
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
}
.gt-team-details-wrapper .gt-team-details-content .gt-progress-wrapper .gt-progress-wrap .pro-items .progress {
	background: var(--white);
	justify-content: flex-start;
	align-items: center;
	position: relative;
	display: flex;
	height: 5px;
	width: 100%;
}
.gt-team-details-wrapper .gt-team-details-content .gt-progress-wrapper .gt-progress-wrap .pro-items .progress-value {
	animation: load 3s normal forwards;
	border-radius: 0;
	background: rgb(203, 254, 28);
	height: 5px;
	width: 0;
}
.gt-team-details-wrapper .gt-team-details-content .gt-progress-wrapper .gt-progress-wrap .pro-items .style-two {
	animation: load2 3s normal forwards;
}
.gt-team-details-wrapper .gt-team-details-content .gt-progress-wrapper .gt-progress-wrap .pro-items .style-three {
	animation: load3 3s normal forwards;
}
@keyframes load {
 0% {
 width: 0;
}
 100% {
 width: 90%;
}
}
@keyframes load2 {
 0% {
 width: 0;
}
 100% {
 width: 70%;
}
}
@keyframes load3 {
 0% {
 width: 0;
}
 100% {
 width: 55%;
}
}
.gt-team-details-wrapper .gt-team-details-content .gt-text {
	border-top: none;
	padding-top: 0;
	margin-top: 10px;
}
.gt-team-details-wrapper .gt-team-details-content .gt-week-list-item {
	margin-top: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 40px;
	margin-bottom: 40px;
}
@media (max-width: 1199px) {
.gt-team-details-wrapper .gt-team-details-content .gt-week-list-item {
	flex-wrap: wrap;
	gap: 30px;
}
}
.gt-team-details-wrapper .gt-team-details-content .gt-week-list-item .gt-week-list li {
	display: flex;
	align-items: center;
	gap: 50px;
	color: var(--white);
}
.gt-team-details-wrapper .gt-team-details-content .gt-week-list-item .gt-week-list li span {
	color: rgb(171, 171, 171);
	font-weight: 500;
}
.gt-team-details-wrapper .gt-team-details-content .gt-week-list-item .gt-week-list li:not(:last-child) {
	margin-bottom: 10px;
}
.gt-team-details-wrapper .gt-team-details-content .gt-details-card-item-4 {
	margin-top: 30px;
}
.gt-team-details-wrapper .gt-team-details-content .gt-details-card-item-4 .gt-details-image {
	position: relative;
}
.gt-team-details-wrapper .gt-team-details-content .gt-details-card-item-4 .gt-details-image::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(28, 29, 32, 0.6);
}
.gt-team-details-wrapper .gt-team-details-content .gt-details-card-item-4 .gt-details-image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
.gt-team-details-wrapper .gt-team-details-content .gt-details-card-item-4 .gt-details-image .gt-content {
	position: absolute;
	left: 30px;
	bottom: 30px;
}
.gt-team-details-wrapper .gt-team-details-content .gt-details-card-item-4 .gt-details-image .gt-content h6 {
	font-size: 14px;
	margin-bottom: 20px;
}
.gt-team-details-wrapper .gt-team-details-content .gt-details-card-item-4 .gt-details-image .gt-content .gt-social-item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}
@media (max-width: 1600px) {
.gt-team-details-wrapper .gt-team-details-content .gt-details-card-item-4 .gt-details-image .gt-content .gt-social-item {
	flex-wrap: wrap;
}
}
.gt-team-details-wrapper .gt-team-details-content .gt-details-card-item-4 .gt-details-image .gt-content .gt-social-item li {
	padding: 10px;
	line-height: 1;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	font-size: 14px;
	font-weight: 700;
	color: var(--white);
	background-color: rgb(28, 29, 32);
	transition: all 0.4s ease-in-out;
}
.gt-team-details-wrapper .gt-team-details-content .gt-details-card-item-4 .gt-details-image .gt-content .gt-social-item li:hover {
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: linear-gradient(90deg, #CBFE1C 0%, #0B0E13 100%);
}
.gt-team-details-wrapper .gt-team-details-content .gt-details-card-item-4 .gt-details-image .gt-content .gt-social-item li i {
	margin-right: 10px;
	color: var(--white);
}
.gt-team-details-wrapper .gt-team-details-content .gt-team-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 30px;
	margin-top: 40px;
}
.gt-team-details-wrapper .gt-team-details-content .gt-team-bottom h4 {
	margin-bottom: 15px;
}
.gt-team-details-wrapper .gt-team-details-content .gt-team-bottom p {
	border-top: none;
}
.gt-team-details-wrapper .gt-team-details-content .gt-team-bottom .gt-image-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 40px;
	margin-bottom: 40px;
}
@media (max-width: 1199px) {
.gt-team-details-wrapper .gt-team-details-content .gt-team-bottom .gt-image-item {
	flex-wrap: wrap;
	gap: 30px;
}
}
.gt-team-details-wrapper .gt-team-details-content .gt-team-bottom .gt-image-item .icon-image img {
	transition: all 0.4s ease-in-out;
	transition: transform 0.6s ease-in-out;
	transform-origin: center center;
}
.gt-team-details-wrapper .gt-team-details-content .gt-team-bottom .gt-image-item .icon-image:hover img {
	transform: scale(1.15);
}
.gt-team-details-wrapper .gt-team-details-content .gt-team-bottom .theme-btn {
	background-color: transparent;
	border: 1px solid var(--white);
	color: var(--white);
}
.gt-team-details-wrapper .gt-team-details-content .gt-team-bottom .theme-btn::before {
	background-color: var(--theme);
}
.gt-team-details-wrapper .gt-team-details-content .gt-team-bottom .theme-btn::after {
	background-color: var(--theme);
}
.gt-team-details-wrapper .gt-team-details-content .gt-team-bottom .theme-btn:hover {
	border: 1px solid var(--theme);
	color: var(--header);
}
.gt-team-details-wrapper .gt-team-details-content .gt-team-bottom .theme-btn i {
	margin-left: 5px;
}
.gt-team-card-item {
	clip-path: polygon(9% 0, 100% 0, 100% 100%, 75% 100%, 0 100%, 0 15%);
}
.gt-team-card-item .gt-team-image {
	position: relative;
	overflow: hidden;
}
.gt-team-card-item .gt-team-image img {
	width: 100%;
	height: 100%;
}
.gt-team-card-item .gt-team-image::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(180deg, rgba(11, 14, 19, 0) 20.5%, #FF0808 100%);
	transform: scale(1, 0);
	transition: transform 500ms ease;
	transform-origin: bottom center;
}
.gt-team-card-item .gt-team-image .gt-team-content {
	position: absolute;
	left: 50%;
	bottom: -30px;
	transform: translateX(-50%);
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}
.gt-team-card-item .gt-team-image .gt-team-content .gt-social-icon {
	gap: 35px;
	justify-content: center;
	margin-bottom: 30px;
	position: relative;
	padding: 8px;
}
.gt-team-card-item .gt-team-image .gt-team-content .gt-social-icon::before {
	position: absolute;
	content: "";
	width: 370px;
	height: 1px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	left: -72%;
	top: 0;
}
.gt-team-card-item .gt-team-image .gt-team-content .gt-social-icon::after {
	position: absolute;
	content: "";
	width: 370px;
	height: 1px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	right: -72%;
	bottom: 0;
}
.gt-team-card-item .gt-team-image .gt-team-content .gt-social-icon a {
	display: inline-block;
	color: var(--white);
	transition: all 0.4s ease-in-out;
}
.gt-team-card-item .gt-team-image .gt-team-content .gt-social-icon a:hover {
	color: var(--theme);
}
.gt-team-card-item .gt-team-image .gt-team-content h3 {
	font-size: 30px;
}
@media (max-width: 1199px) {
.gt-team-card-item .gt-team-image .gt-team-content h3 {
	font-size: 20px;
}
}
.gt-team-card-item .gt-team-image .gt-team-content h3 a {
	color: var(--white);
	background-position: 0 95%;
	background-repeat: no-repeat;
	background-size: 0% 2px;
	display: inline;
}
.gt-team-card-item .gt-team-image .gt-team-content h3 a:hover {
	color: var(--white);
	background-size: 100% 2px;
	background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}
.gt-team-card-item .gt-team-image .gt-team-content p {
	color: var(--white);
}
.gt-team-card-item:hover .gt-team-image::before {
	transform: scale(1, 1);
	transform-origin: bottom center;
	z-index: 1;
}
.gt-team-card-item:hover .gt-team-image .gt-team-content {
	opacity: 1;
	visibility: visible;
	bottom: 30px;
}
/* ===========================
   TESTIMONIALS – Base
   =========================== */
.testimonial-section {
	position: relative;
	z-index: 9;
	border-radius: 40px;
	margin: 0 60px;
	width: calc(100% - 60px) !important;
}
@media (max-width: 1199px) {
.testimonial-section {
	padding-top: 100px;
}
}
.testimonial-section::before {
	/* your @include before; */
	z-index: -1;
	border-radius: 40px;
	background: linear-gradient(90deg, rgba(28, 29, 32, 0.2) 0%, #1C1D20 100%);
	content: "";
	position: absolute;
	inset: 0;
}
.testimonial-section .pin-area {
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.testimonial-section .pin-inner {
	width: 100%;
	max-width: 700px;
	height: 100%;
	position: relative;
}
.testimonial-section .testimonial-sticky-hover {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	padding: 20px;
	opacity: 0;
	max-width: 700px;
}
.testimonial-section .testimonial-sticky-hover h3 {
	margin-bottom: 10px;
}
.testimonial-section .testimonial-sticky-hover p {
	color: #555;
}
.testimonial-section .radius-shapee {
	position: absolute;
	right: 60px;
	bottom: 64px;
}
@media (max-width: 1399px) {
.testimonial-section .radius-shapee {
	display: none;
}
}
.testimonial-wrapper {
	height: 500vh;
}
.testimonial-wrapper .tetsimonial-box-items {

	border-radius: 20px;
	border: 6px solid var(--theme);
	background: #1C1D20;
	padding: 60px;
	text-align: center;
	max-width: 700px;
	margin-inline: auto;
}
.testimonial-wrapper .tetsimonial-box-items .client-thumb {
	position: relative;
	width: 293px;
	height: 293px;
	margin: 0 auto;
}
.testimonial-wrapper .tetsimonial-box-items .client-thumb img {
	border-radius: 50%;
	/* @include imgw; */
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.testimonial-wrapper .tetsimonial-box-items .client-thumb .quote-icon {
	width: 110px;
	height: 110px;
	line-height: 95px;
	border-radius: 50%;
	background-color: #0B0E13;
	border: 10px solid #1C1D20;
	position: absolute;
	bottom: 0;
	right: 0;
}
.testimonial-wrapper .tetsimonial-box-items .client-thumb .quote-icon img {
	width: auto;
	height: auto;
	border-radius: 0;
}
.testimonial-wrapper .tetsimonial-box-items .testi-content {
	margin-top: 45px;
}
.testimonial-wrapper .tetsimonial-box-items .testi-content p {
	color: #ABABAB;
	text-align: center;
	font-size: 24px;
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0.24px;
	text-transform: capitalize;
}
.testimonial-wrapper .tetsimonial-box-items .testi-content .client-info {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	margin-top: 60px;
	padding-top: 60px;
}
.testimonial-wrapper .tetsimonial-box-items .testi-content .client-info h6 {
	color: #FFF;
	text-align: center;
	font-size: 24px;
	font-weight: 400;
	text-transform: uppercase;
}
.testimonial-wrapper .tetsimonial-box-items .testi-content .client-info span {
	color: #CBFE1C;
	text-align: center;
	font-family: "Chakra Petch";
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
}

/* ===========================
   ≤ 1399px – Pixel Perfect
   =========================== */
@media (max-width: 1399.98px) {
.testimonial-section {
	margin: 0 40px;
	width: calc(100% - 40px) !important;
	border-radius: 32px;
}
.testimonial-section::before {
	border-radius: 32px;
}
.testimonial-section .pin-inner,  .testimonial-section .testimonial-sticky-hover {
	max-width: 640px;
}
.testimonial-wrapper .tetsimonial-box-items {
	max-width: 640px;
	padding: 48px;
	border-width: 5px;
}
.testimonial-wrapper .tetsimonial-box-items .client-thumb {
	width: 260px;
	height: 260px;
}
.testimonial-wrapper .tetsimonial-box-items .client-thumb .quote-icon {
	width: 96px;
	height: 96px;
	line-height: 84px;
	border-width: 8px;
}
.testimonial-wrapper .tetsimonial-box-items .testi-content {
	margin-top: 36px;
}
.testimonial-wrapper .tetsimonial-box-items .testi-content p {
	font-size: 22px;
}
.testimonial-wrapper .tetsimonial-box-items .testi-content .client-info {
	margin-top: 48px;
	padding-top: 48px;
}
.testimonial-wrapper .tetsimonial-box-items .testi-content .client-info h6 {
	font-size: 22px;
}
.testimonial-wrapper .tetsimonial-box-items .testi-content .client-info span {
	font-size: 15px;
}
}
/* ===========================
   ≤ 1199px
   =========================== */
@media (max-width: 1199.98px) {
.testimonial-section {
	margin: 0 30px;
	width: calc(100% - 30px) !important;
	border-radius: 28px;
}
.testimonial-section::before {
	border-radius: 28px;
}
.testimonial-section .pin-inner,  .testimonial-section .testimonial-sticky-hover {
	max-width: 560px;
}
.testimonial-wrapper .tetsimonial-box-items {
	max-width: 560px;
	padding: 40px;
}
.testimonial-wrapper .tetsimonial-box-items .client-thumb {
	width: 230px;
	height: 230px;
}
.testimonial-wrapper .tetsimonial-box-items .client-thumb .quote-icon {
	width: 86px;
	height: 86px;
	line-height: 76px;
	border-width: 8px;
}
.testimonial-wrapper .tetsimonial-box-items .testi-content {
	margin-top: 30px;
}
.testimonial-wrapper .tetsimonial-box-items .testi-content p {
	font-size: 20px;
}
.testimonial-wrapper .tetsimonial-box-items .testi-content .client-info {
	margin-top: 40px;
	padding-top: 40px;
}
.testimonial-wrapper .tetsimonial-box-items .testi-content .client-info h6 {
	font-size: 20px;
}
.testimonial-wrapper .tetsimonial-box-items .testi-content .client-info span {
	font-size: 14px;
}
}
/* ===========================
   ≤ 991px
   =========================== */
@media (max-width: 991.98px) {
.testimonial-section {
	margin: 0 20px;
	width: calc(100% - 20px) !important;
	border-radius: 24px;
}
.testimonial-section::before {
	border-radius: 24px;
}
.testimonial-section .pin-area {
	height: 100vh;
}
.testimonial-section .pin-inner,  .testimonial-section .testimonial-sticky-hover {
	max-width: 520px;
}
.testimonial-wrapper {
	height: 420vh; /* সামান্য কমালাম ছোট স্ক্রিনে */
}
.testimonial-wrapper .tetsimonial-box-items {
	max-width: 520px;
	padding: 32px;
}
.testimonial-wrapper .tetsimonial-box-items .client-thumb {
	width: 210px;
	height: 210px;
}
.testimonial-wrapper .tetsimonial-box-items .client-thumb .quote-icon {
	width: 78px;
	height: 78px;
	line-height: 68px;
	border-width: 6px;
}
.testimonial-wrapper .tetsimonial-box-items .testi-content {
	margin-top: 26px;
}
.testimonial-wrapper .tetsimonial-box-items .testi-content p {
	font-size: 18px;
}
.testimonial-wrapper .tetsimonial-box-items .testi-content .client-info {
	margin-top: 32px;
	padding-top: 32px;
}
.testimonial-wrapper .tetsimonial-box-items .testi-content .client-info h6 {
	font-size: 18px;
}
.testimonial-wrapper .tetsimonial-box-items .testi-content .client-info span {
	font-size: 13px;
}
}
/* ===========================
   ≤ 767px
   =========================== */
@media (max-width: 767.98px) {
.testimonial-section {
	margin: 0 16px;
	width: calc(100% - 16px) !important;
}
.testimonial-section .pin-inner,  .testimonial-section .testimonial-sticky-hover {
	max-width: 100%;
}
.testimonial-wrapper {
	height: 380vh;
}
.testimonial-wrapper .tetsimonial-box-items {
	padding: 24px;
}
.testimonial-wrapper .tetsimonial-box-items .client-thumb {
	width: 190px;
	height: 190px;
}
.testimonial-wrapper .tetsimonial-box-items .client-thumb .quote-icon {
	width: 70px;
	height: 70px;
	line-height: 60px;
	border-width: 6px;
}
.testimonial-wrapper .tetsimonial-box-items .testi-content p {
	font-size: 17px;
}
.testimonial-wrapper .tetsimonial-box-items .testi-content .client-info h6 {
	font-size: 17px;
}
.testimonial-wrapper .tetsimonial-box-items .testi-content .client-info span {
	font-size: 12px;
}
}
/* ===========================
   ≤ 575px
   =========================== */
@media (max-width: 575.98px) {
.testimonial-section {
	margin: 0 12px;
	width: calc(100% - 12px) !important;
	border-radius: 18px;
}
.testimonial-section::before {
	border-radius: 18px;
}
.testimonial-wrapper {
	height: 350vh;
}
.testimonial-wrapper .tetsimonial-box-items {
	padding: 20px;
	border-width: 5px;
}
.testimonial-wrapper .tetsimonial-box-items .client-thumb {
	width: 170px;
	height: 170px;
}
.testimonial-wrapper .tetsimonial-box-items .client-thumb .quote-icon {
	width: 64px;
	height: 64px;
	line-height: 54px;
	border-width: 5px;
}
}
.testimonial-box-items-2 {
	position: relative;
}
@media (max-width: 1399px) {
.testimonial-box-items-2 {
	/*background-color: rgb(28, 29, 32);*/
	padding: 35px;
}
}
@media (max-width: 1399px) {
.testimonial-box-items-2 {
	padding: 0px;
}
}
.testimonial-box-items-2 .border-shape {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
@media (max-width: 1399px) {
.testimonial-box-items-2 .border-shape {
	display: none;
}
}
.testimonial-box-items-2 .testimonial-box-slider .quote-icon {
	margin-bottom: 25px;
}
.testimonial-box-items-2 .testimonial-box-slider p {
	color: #ABABAB;
	font-size: 24px;
	font-style: italic;
	font-weight: 600;
	line-height: 138%;
	letter-spacing: 0.24px;
	text-transform: capitalize;
}
@media (max-width: 1399px) {
.testimonial-box-items-2 .testimonial-box-slider p {
	font-size: 21px;
}
}
@media (max-width: 991px) {
.testimonial-box-items-2 .testimonial-box-slider p {
	font-size: 19px;
}
}
@media (max-width: 575px) {
.testimonial-box-items-2 .testimonial-box-slider p {
	font-size: 17px;
}
}
.testimonial-box-items-2 .testimonial-box-slider .client-info-items {
	background: #1C1D20;
	padding: 27px;
	margin-top: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media (max-width: 1399px) {
.testimonial-box-items-2 .testimonial-box-slider .client-info-items {
	background-color: #0B0E13;
}
}
@media (max-width: 1199px) {
.testimonial-box-items-2 .testimonial-box-slider .client-info-items {
	flex-wrap: wrap;
	gap: 20px;
	padding: 20px;
	margin-top: 20px;
}
}
.testimonial-box-items-2 .testimonial-box-slider .client-info-items .client-info {
	display: flex;
	align-items: center;
	gap: 20px;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	padding-right: 80px;
}
@media (max-width: 1399px) {
.testimonial-box-items-2 .testimonial-box-slider .client-info-items .client-info {
	padding-right: 0;
	border-right: none;
}
}
.testimonial-box-items-2 .testimonial-box-slider .client-info-items .client-info .content h4 {
	font-size: 24px;
	font-family: "Chakra Petch", sans-serif;
	font-weight: 700;
	text-transform: uppercase;
}
@media (max-width: 575px) {
.testimonial-box-items-2 .testimonial-box-slider .client-info-items .client-info .content h4 {
	font-size: 18px;
}
}
.testimonial-box-items-2 .testimonial-box-slider .client-info-items .client-info .content span {
	color: #FFF;
	font-weight: 400;
	opacity: 0.5;
}
.testimonial-box-items-2 .testimonial-box-slider .client-info-items .star {
	color: var(--theme);
}
.testimonial-box-items-2 .testi-pagi {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 40px;
}
.testimonial-box-items-2 .testimonial-pagination {
	color: rgba(255, 255, 255, 0.5);
	font-size: 18px;
}
.testimonial-box-items-2 .testimonial-pagination .current {
	color: rgba(255, 255, 255, 0.5);
	transition: color 0.3s ease;
}
.testimonial-box-items-2 .testimonial-pagination .current.active {
	color: var(--theme);
}
.testimonial-right-items {
	margin-left: 20px;
}
@media (max-width: 1399px) {
.testimonial-right-items {
	margin-left: 0;
}
}
.testimonial-right-items .testimonial-image-1 {
	position: relative;
}
.testimonial-right-items .testimonial-image-1 .overlay-style {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
}
.testimonial-right-items .testimonial-image-1 .testimonial-counter {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
}
.testimonial-right-items .testimonial-image-1 .testimonial-counter img {
	width: initial;
	height: initial;
}
.testimonial-right-items .testimonial-image-1 img {
	width: 100%;
	height: 100%;
}
.gt-testimonial-wraper-4 {
	margin-right: -40%;
}
@media (max-width: 991px) {
.gt-testimonial-wraper-4 {
	margin-right: 0;
}
}
.gt-testimonial-wraper-4.gt-style-2 {
	margin-right: 0;
}
.gt-testimonial-wraper-4 .gt-testimonial-card-items-4 {
	margin-top: 30px;
	background-color: #1C1D20;
	padding: 45px 35px;
	position: relative;
}
@media (max-width: 767px) {
.gt-testimonial-wraper-4 .gt-testimonial-card-items-4 {
	padding: 35px;
}
}
@media (max-width: 575px) {
.gt-testimonial-wraper-4 .gt-testimonial-card-items-4 {
	padding: 30px;
}
}
@media (max-width: 470px) {
.gt-testimonial-wraper-4 .gt-testimonial-card-items-4 {
	padding: 25px;
}
}
.gt-testimonial-wraper-4 .gt-testimonial-card-items-4 .gt-client-info {
	display: flex;
	align-items: center;
	gap: 16px;
}
.gt-testimonial-wraper-4 .gt-testimonial-card-items-4 .gt-client-info .gt-content h6 {
	font-size: 18px;
	margin-bottom: 2px;
	font-weight: 400;
}
.gt-testimonial-wraper-4 .gt-testimonial-card-items-4 .gt-text {
	display: flex;
	gap: 24px;
	margin-top: 30px;
}
.gt-testimonial-wraper-4 .gt-testimonial-card-items-4 .gt-text p {
	font-size: 18px;
	font-weight: 600;
}
@media (max-width: 1199px) {
.gt-testimonial-wraper-4 .gt-testimonial-card-items-4 .gt-text p {
	font-size: 16px;
}
}
@media (max-width: 470px) {
.gt-testimonial-wraper-4 .gt-testimonial-card-items-4 .gt-text p {
	font-size: 14px;
}
}
.gt-testimonial-wraper-4 .gt-testimonial-card-items-4 .star {
	color: #FCD554;
	position: absolute;
	right: 35px;
	top: 60px;
}
@media (max-width: 470px) {
.gt-testimonial-wraper-4 .gt-testimonial-card-items-4 .star {
	display: none;
}
}
.gt-testimonial-section-4 {
	position: relative;
}
.gt-testimonial-section-4 .gt-testimonial-image {
	position: absolute;
	bottom: 80px;
	left: 0;
}
@media (max-width: 1399px) {
.gt-testimonial-section-4 .gt-testimonial-image {
	display: none;
}
}
.testimonial-wrapper-3 .testimonial-image {
	margin-left: 60px;
}
@media (max-width: 1399px) {
.testimonial-wrapper-3 .testimonial-image {
	margin-left: 0;
}
}
@media (max-width: 1399px) {
.testimonial-wrapper-3 .testimonial-image {
	height: 320px;
}
}
.testimonial-wrapper-3 .testimonial-image img {
	width: 100%;
	height: 100%;
}
.testimonial-wrapper-3 .testimonial-content {
	margin-left: 100px;
}
@media (max-width: 1399px) {
.testimonial-wrapper-3 .testimonial-content {
	margin-left: 0;
}
}
.testimonial-wrapper-3 .testimonial-content .icon-item {
	display: flex;
	align-items: center;
	gap: 30px;
}
@media (max-width: 1399px) {
.testimonial-wrapper-3 .testimonial-content .icon-item {
	flex-wrap: wrap;
}
}
.testimonial-wrapper-3 .testimonial-content .icon-item h2 {
	font-size: 45px;
	color: var(--white);
	text-transform: uppercase;
}
@media (max-width: 1399px) {
.testimonial-wrapper-3 .testimonial-content .icon-item h2 {
	font-size: 40px;
}
}
@media (max-width: 991px) {
.testimonial-wrapper-3 .testimonial-content .icon-item h2 {
	font-size: 35px;
}
}
@media (max-width: 767px) {
.testimonial-wrapper-3 .testimonial-content .icon-item h2 {
	font-size: 30;
}
}
@media (max-width: 575px) {
.testimonial-wrapper-3 .testimonial-content .icon-item h2 {
	font-size: 25px;
}
}
.testimonial-wrapper-3 .testimonial-content .icon-item h2 span {
	color: var(--theme);
}
.testimonial-wrapper-3 .testimonial-content .testi-content {
	margin-top: 100px;
}
@media (max-width: 1399px) {
.testimonial-wrapper-3 .testimonial-content .testi-content {
	margin-top: 30px;
}
}
.testimonial-wrapper-3 .testimonial-content .testi-content p {
	color: var(--white);
	text-transform: uppercase;
	font-size: 24px;
	font-weight: 700;
	max-width: 798px;
	letter-spacing: -0.48px;
	line-height: 150%;
	font-family: "Chakra Petch", sans-serif;
}
@media (max-width: 1399px) {
.testimonial-wrapper-3 .testimonial-content .testi-content p {
	font-size: 16px;
}
}
.testimonial-wrapper-3 .testimonial-content .testi-content p span {
	color: var(--theme);
}
.testimonial-wrapper-3 .testimonial-content .testi-content .quate-icon {
	margin-top: 100px;
}
@media (max-width: 1399px) {
.testimonial-wrapper-3 .testimonial-content .testi-content .quate-icon {
	margin-top: 30px;
}
}
.testimonial-section-3 {
	position: relative;
	z-index: 9;
}
@media (max-width: 1399px) {
.testimonial-section-3 {
	padding-top: 0;
}
}
.testimonial-section-3 .left-shape {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
}
@media (max-width: 1899px) {
.testimonial-section-3 .left-shape {
	left: -10%;
}
.testimonial-section-3 .left-shape img {
	width: 100%;
	height: 100%;
}
}
@media (max-width: 1600px) {
.testimonial-section-3 .left-shape {
	left: -10%;
}
.testimonial-section-3 .left-shape img {
	width: 100%;
	height: 100%;
}
}
@media (max-width: 1399px) {
.testimonial-section-3 .left-shape {
	display: none;
}
}
.testimonial-section-3 .right-shape {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
}
@media (max-width: 1899px) {
.testimonial-section-3 .right-shape {
	right: -11%;
}
.testimonial-section-3 .right-shape img {
	width: 100%;
	height: 100%;
}
}
@media (max-width: 1600px) {
.testimonial-section-3 .right-shape {
	right: -25%;
}
.testimonial-section-3 .right-shape img {
	width: 100%;
	height: 100%;
}
}
@media (max-width: 1399px) {
.testimonial-section-3 .right-shape {
	display: none;
}
}
.gt-testimonial-wrapper-3 .testimonial-content .gt-testimonial-card-item {
	padding: 50px 40px;
	background-color: var(--bg-2);
	clip-path: polygon(9% 0, 100% 0, 100% 100%, 75% 100%, 0 100%, 0 15%);
	max-width: 620px;
	border: 1px solid rgba(102, 102, 102, 0.2);
}
@media (max-width: 1199px) {
.gt-testimonial-wrapper-3 .testimonial-content .gt-testimonial-card-item {
	margin-top: 30px;
}
}
@media (max-width: 470px) {
.gt-testimonial-wrapper-3 .testimonial-content .gt-testimonial-card-item {
	padding: 50px 30px;
}
}
.gt-testimonial-wrapper-3 .testimonial-content .gt-testimonial-card-item .gt-client-info {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 30px;
}
.gt-testimonial-wrapper-3 .testimonial-content .gt-testimonial-card-item .gt-client-info .text h6 {
	margin-bottom: 5px;
}
.gt-testimonial-wrapper-3 .testimonial-content .gt-testimonial-card-item .gt-testi-content {
	display: flex;
	gap: 24px;
}
@media (max-width: 1199px) {
.gt-testimonial-wrapper-3 .testimonial-content .gt-testimonial-card-item .gt-testi-content {
	flex-wrap: wrap;
	gap: 20px;
}
}
.gt-testimonial-wrapper-3 .testimonial-content .gt-testimonial-card-item .gt-testi-content p {
	font-style: italic;
	font-size: 18px;
	font-weight: 600;
	color: var(--white);
	max-width: 489px;
}
@media (max-width: 1199px) {
.gt-testimonial-wrapper-3 .testimonial-content .gt-testimonial-card-item .gt-testi-content p {
	font-size: 16px;
}
}
.gt-testimonial-wrapper-3 .gt-testimonial-image {
	position: relative;
}
.gt-testimonial-wrapper-3 .gt-testimonial-image img {
	width: 100%;
	height: 100%;
}
.gt-testimonial-wrapper-3 .gt-testimonial-image .video-btn {
	width: 74px;
	height: 74px;
	line-height: 74px;
	display: inline-block;
	background-color: var(--white);
	color: var(--header);
	text-align: center;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.gt-testimonial-wrapper-3 .gt-testimonial-image .gt-ratting-content {
	position: absolute;
	top: 54%;
	transform: translateY(-50%);
	right: 0;
}
@media (max-width: 1199px) {
.gt-testimonial-wrapper-3 .gt-testimonial-image .gt-ratting-content {
	right: 0;
	left: 32%;
	top: 115%;
}
}
@media (max-width: 991px) {
.gt-testimonial-wrapper-3 .gt-testimonial-image .gt-ratting-content {
	top: 56%;
	transform: translateY(-50%);
	left: 70%;
}
}
@media (max-width: 575px) {
.gt-testimonial-wrapper-3 .gt-testimonial-image .gt-ratting-content {
	display: none;
}
}
.gt-testimonial-wrapper-3 .gt-testimonial-image .gt-ratting-content p {
	color: #888888;
}
.gt-testimonial-wrapper-3 .gt-testimonial-image .gt-ratting-content .gt-star {
	color: var(--theme);
}/*# sourceMappingURL=main.css.map */
.active a {
	color: #ffc107 !important;
}
.pl-100 {
	padding-left: 70px;
}
.slide {
	width: 100% !important;
	height: 100vh;
	overflow: hidden;
	position: absolute;
	/* background-color: #000; */
	right: 0px;
}
.slide video {
	position: relative;
	top: 0%;
	left: 0%;
	min-width: 100%;
	min-height: 100%;
	width: 100%;
	height: auto;
	z-index: -1;
	background-size: cover;
	object-fit: cover;
	height: 100vh;
}
.hero-2 .top-shape {
	left: 0;
	position: absolute;
	z-index: 999999;
}
.hero-section {
	display: flex;
	justify-content: center;
	align-items: center;
	perspective: 750px;
	overflow: hidden;
}
.logo {
	position: relative;
	z-index: 99;
}
.ft-90 {
	font-size: 50px !important;
}
.e-date {
	text-align: center;
	font-size: 20px;
	color: #fff;
	margin-top: 30px;
	position: relative;
}
:root {
 --bg-color: #191a21;
 --text-color: #e1e3eb;
 --light-text-color: #7268e6;
 --primary-color: #121212;
 --shape-size: 25vw;
	font-size: clamp(2px, 1.2vw, 16px);
}
.shape {
	display: grid;
	place-items: center;
	position: relative;
	width: 90%;
 height: calc((var(--shape-size) / 4) * 3);
	margin: 0 2rem;
	background-color: #12161e;
	border-radius: 50% / 10%;
	isolation: isolate;
	box-shadow: 0px 1px 3px rgba(9, 10, 15, 0.25), 0px 4px 16px rgba(9, 10, 15, 0.1), 0px 8px 24px rgba(9, 10, 15, 0.1), inset 0px 1px 1px #323543;
 &::before {
 content: "";
 position: absolute;
 top: calc(10% - 1.5px);
 right: -5%;
 bottom: calc(10% - 1.5px);
 left: -5%;
 background-color: inherit;
 border-radius: 5% / 50%;
 z-index: -1;
}
 &__text {
 color: var(--text-color);
 font-size: 5rem;
 font-weight: 700;
 text-align: center;
 &__small {
 font-size: 30%;
 display: block;
 color: var(--light-text-color);
}
}
}
.p-color {
	color: #ffc107;
}
.attendees {
/*background: linear-gradient(rgb(0 0 0 / 67%), rgb(0 0 0 / 89%)), url(../images/bg-2.jpg) center center no-repeat;
    background-size: cover;*/
    /*height: 70vh;*/
}
.attendees .list-group-item.orange {
	background: #3c3c3c !important;
	color: #fff;
}
.attendees .list-group-item {
	display: inline-flex;
	justify-content: space-between;
	color: #000;
	font-weight: 500;
	/* border-color: rgba(255, 255, 255, .15); */
	font-size: 24px;
	margin: 0px 10px;
	border: none;
}
.ap-height {
	height: 70vh;
}
h2.section-heading {
	font-size: 48px;
	text-transform: uppercase;
	color: #fff;
}
.circle {
	position: relative;
	margin: 0px;
	height: 150px;
	width: 150px;
	border-radius: 50%;
	padding: 25px 0px;
	line-height: 31px;
	color: #fff;
}
.circle:before {
	position: absolute;
	content: '';
	height: calc(100% + 10px);
	width: calc(100% + 10px);
	border: 1px dashed #ffffff;
	top: -13px;
	left: -3px;
	border-radius: inherit;
	animation: spin 10s linear infinite;
}
 @keyframes spin {
 100% {
 transform: rotateZ(360deg);
}
}
.con-title {
	font-size: 22px;
	color: #fff;
	font-weight: 400;
}
.con-box {
	Border: 1px solid #343434;
	background-image: linear-gradient(320deg, #1c1d20 92%, rgba(255, 255, 255, 0.11) 50% 50%);
	border-radius: 12px;
	text-align: center;
	padding: 20px 0px 30px !important;
}
.hero-2 .hero-content h1 {
	font-size: 48px;
	line-height: 46px;
}
.ft-28 {
	font-size: 28px;
}
.ft41 {
	font-size: 41px;
}
.ft35 {
	font-size: 39px;
}
.hastag {
	color: #ffc107;
}
.vh8 {
	height: 80vh;
}
.tabs-wrapper {
}
.tabs-wrapper input[type="radio"] {
	display: none;
}
.tabs-wrapper label {
	transition: background 0.4s ease-in-out, height 0.2s linear;
	display: inline-block;
	cursor: pointer;
	color: #dbdbd3;
	width: 20%;
	height: 3em;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	background: #000000;
	text-align: center;
	line-height: 3em;
}
.tabs-wrapper label:last-of-type {
	border-bottom: none;
}
.tabs-wrapper label:hover {
	background: #667876;/*@include transform (translate(0,-0.2em));*/
}
@media screen and (max-width: 1600px) {
.tabs-wrapper label {
	width: auto;
	padding: 0px 13px;
}
}
@media screen and (max-width: 900px) {
.tabs-wrapper label {
	width: 20%;
}
}
@media screen and (max-width: 600px) {
.tabs-wrapper label {
	width: 100%;
	display: block;
	border-bottom: 2px solid #4d4c47;
	border-radius: 0;
}
}
@media screen and (max-width: 600px) {
.tabs-wrapper {
	margin: 0;
}
}
#tab1:checked + label, #tab2:checked + label, #tab3:checked + label, #tab4:checked + label, #tab5:checked + label, #tab6:checked + label, #tab7:checked + label {
	background: #ff0000;
	color: #f2f2f2;
}
.tab-body {
	position: absolute;
	top: -9999px;
	/*opacity: 0;*/
	padding: 10px;
}
.tab-body h1 {
	font-size: 24px;
	font-weight: 600;
	color: #0f233d;
	margin-bottom: 15px;
	padding-bottom: 5px;
	border-bottom: 1px solid;
	font-family: "Poppins", sans-serif;
	letter-spacing: 2px;
}
.tab-body h3 {
	font-size: 18px;
	font-weight: 500;
	color: var(--bs-yellow);
	padding-bottom: 7px;
	border-bottom: solid 1px #222;
	margin-bottom: 8px;
	font-family: "Poppins", sans-serif;
}
.tab-body p {
	color: #ffffff;
}
.categ-box {
	background: #000;
	padding: 15px;
	margin-bottom: 15px;
}
.tab-body-wrapper {
	border-top: #ff0000 5px solid;
	border-bottom-right-radius: 3px;

	border-bottom-left-radius: 3px;
	border-top-right-radius: 3px;
	animation-delay: 0.2s;
	animation-duration: 1.5s;
	animation-name: show;
	animation-fill-mode: forwards;
}
@media screen and (max-width: 600px) {
.tab-body-wrapper {
	border: none;
	border-radius: 0;
}
}
#tab1:checked ~ .tab-body-wrapper #tab-body-1, #tab2:checked ~ .tab-body-wrapper #tab-body-2, #tab3:checked ~ .tab-body-wrapper #tab-body-3, #tab4:checked ~ .tab-body-wrapper #tab-body-4, #tab5:checked ~ .tab-body-wrapper #tab-body-5, #tab6:checked ~ .tab-body-wrapper #tab-body-6, #tab7:checked ~ .tab-body-wrapper #tab-body-7 {
	position: relative;
	top: 0px;
	/* Choose one - modify .tab-body opacity to 1 if you don't want any animation or set opacity to 1 here */
  /* @include animation(0.2s,0.8s,content-rotate-y); */
  /* @include animation(0.2s,0.8s,content-rotate-both); */
	animation-delay: 0.1s;
	animation-duration: 0.4s;
	animation-name: content-slide-bot;
	animation-fill-mode: forwards;/* @include animation(0.1s,1s,content-slide-bot); */
}
.steps {
	margin: 10px 0 30px;
	padding: 0;
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
	padding-left: 0px !important;/*width: 770px;*/
}
.steps li {
	float: left;
	margin-left: 0;
	/*width: 150px;*/
	height: 60px;
	list-style-type: none;
	padding: 10px 3px 10px 35px;
	border-right: 5px solid #161616;
	position: relative;
	color: #000;
	font-weight: 600;
	line-height: 38px !important;
	border-radius: 0px 6px 6px 0px;
}
.steps li:first-child {
	padding-left: 12px;
}
.steps li:nth-child(n+2)::before {
	position: absolute;
	top: 0;
	left: -1px;
	display: block;
	border-left: 25px solid #161616;
	border-top: 30px solid transparent;
	border-bottom: 30px solid transparent;
	width: 0;
	height: 0;
	content: " ";
}
.steps li:after {
	z-index: 1;
	position: absolute;
	top: 0;
	right: -24px;
	display: block;
	border-left: 25px solid #2487cb;
	border-top: 30px solid transparent;
	border-bottom: 30px solid transparent;
	width: 0;
	height: 0;
	content: " ";
}
.steps.flat-colorimeter li:first-child {
	background-color: #ffffff;
}
.steps.flat-colorimeter li:first-child::after {
	border-left-color: #ffffff;
}
.steps.flat-colorimeter li:nth-child(2) {
	background-color: #dbdbdb;
}
.steps.flat-colorimeter li:nth-child(2)::after {
	border-left-color: #dbdbdb;
}
.steps.flat-colorimeter li:nth-child(3) {
	background-color: #cfcfcf;
}
.steps.flat-colorimeter li:nth-child(3)::after {
	border-left-color: #cfcfcf;
}
.steps.flat-colorimeter li:nth-child(4) {
	background-color: #b3b3b3;
}
.steps.flat-colorimeter li:nth-child(4)::after {
	border-left-color: #b3b3b3;
}
.steps.flat-colorimeter li:nth-child(5) {
	background-color: #8d8d8d;
}
.steps.flat-colorimeter li:nth-child(5)::after {
	border-left-color: #8d8d8d;
}
.steps.flat-colorimeter li:last-child {
	background-color: #8d8d8d;
}
.steps.flat-colorimeter li:last-child::after {
	border-left-color: #8d8d8d;
}
.steps.flat-colorimeter li:nth-child(6) {
	background-color: #8d8d8d;
}
.steps.flat-colorimeter li:nth-child(6)::after {
	border-left-color: #8d8d8d;
}
.steps.flat-colorimeter li:last-child {
	background-color: #8d8d8d;
}
.steps.flat-colorimeter li:last-child::after {
	border-left-color: #8d8d8d;
}
.steps.flat-colorimeter li:nth-child(7) {
	background-color: #8d8d8d;
}
.steps.flat-colorimeter li:nth-child(7)::after {
	border-left-color: #8d8d8d;
}
.steps.flat-colorimeter li:last-child {
	background-color: #8d8d8d;
}
.steps.flat-colorimeter li:last-child::after {
	border-left-color: #8d8d8d;
}
.guidelines h4 {
	font-size: 18px;
	font-weight: 400;
	line-height: 150%;
	font-family: "Poppins", sans-serif;
	color: #ffc107;
}
.mandat {
	color: #F00;
}
.marked-txt {
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	text-align: right;
}
.register label {
	font-size: 16px;
}
.form-control {
	background: #20252e;
	color: #fff;
	border: none;
	margin-bottom: 9px; height:48px; border-radius:8px; font-size:15px;
}
.required {

	color: #F00;
}
.form-title {
	color: var(--bs-yellow);
	margin-top: 10px;
}
.form-categ-title {
	color: #ffffff;
	font-weight: 600;
	font-size: 20px;
	margin-top: 9px;
	margin-bottom: 6px;
}
.form-sub-categ {
	color: #e9c391;
	font-weight: 500;
	margin-bottom: 8px;
}
.subhead {
	font-size: 25px;
	font-weight: 400;
	line-height: 150%;
	font-family: "Poppins", sans-serif;
	color: #ffc107;
}
.small-head {
	font-size: 18px;
	font-weight: 400;
	line-height: 150%;
	font-family: "Poppins", sans-serif;
	color: #ffc107;
	margin-top: 10px;
}