@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
/* 
=== VARIABLES ===
 */

:root {
    /* colors */
    --bg-body: #0e1726;
    --bg-light: #0e1726;
    --bg-primary: #82cef1;
    --bg-secondry: #00E031;
    /* fonts color */
    --text-white: #fff;
    --text-dark: #000;
}

/* 
=== RESET PROPORTY ===
 */

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background-color: var(--bg-body);
    color: var(--text-white);
    overflow-x: hidden !important;
}

/* 
=== REUSABLE CODE ===
 */

.mainBtn {
    display: inline-block;
    text-decoration: none;
    background-color: var(--bg-secondry);
    color: var(--text-white);
    font-weight: 600;
    padding: 0.55rem 1.85rem;
    border-radius: 100vw;
    border: 1px solid var(--bg-secondry);
    transition: all 0.3s ease-in-out;
    font-size: 0.85rem;
}

.mainBtn:hover {
    background-color: transparent;
}

.mainBtn.outline {
    background-color: transparent;
}

::-webkit-scrollbar {
    width: 0.5rem;
}

::-webkit-scrollbar-thumb {
    background-color: var(--bg-secondry);
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

/* 
=== HEADER SECTION ===
 */

.headerSection {
    background-color: var(--bg-light);
    padding: 0.5rem 0;
}

.headerSection .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.headerSection .navBrand .logo {
    display: inline-block;
    text-decoration: none;
    color: var(--text-white);
    font-size: 2rem;
    font-weight: 600;
}

.headerSection .navBrand .logo img {
    max-width: 100px;
}

.headerSection .navAction {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.headerSection .navAction .lang {
    display: inline-block;
}

.headerSection .navAction .lang img {
    max-width: 40px;
}

/* HERO SECTION */

.heroSection {
    background-image: url(../img/heroImage.png);
    background-position: bottom;
    background-size: cover;
    height: 55vh;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.heroSection .heroContent .title {
    font-size: 2rem;
    font-weight: 600;
    text-shadow: 2px 2px #000000;
}

.heroSection .heroContent .mainBtn {
    font-size: 1.25rem;
    background-color: #ffea00;
    border-color: #ffea00;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    transition: 200ms all ease-in-out;
}

.heroSection .mainBtn:hover {
    opacity: 0.7;
}

/* VIDEO SECTION */

.videoSection {
    margin-top: 50px;
}

.videoSection .videoContent {
    padding: 3rem;
}

.videoSection .videoContent .title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.videoSection .videoContent .title span {
    color: var(--bg-secondry);
}

.videoSection .videoContent iframe {
    width: 100%;
    height: 600px;
}

/* level section */

.levelSection {
    margin-top: 3rem;
}

/* PLAYER SECTION */

.playerSection {
    background-color: #1c2a3d;
}

.playerSection .playerContent {
    display: flex;
    padding: 3rem 0;
}

.playerSection .playerContent .profile {
    width: 30%;
}

.playerSection .playerContent .profile .title {
    font-weight: 700;
}

.playerSection .playerContent .profile .title span {
    color: var(--bg-secondry);
}

.playerSection .playerContent .profile .playCard {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    height: 90%;
}

.playerSection .playerContent .profile .playCard .detail {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 2rem;
}

.playerSection .playerContent .profile .playCard .detail .value {
    margin-bottom: 0;
    color: var(--bg-secondry);
    font-weight: 600;
}

.playerSection .playerContent .profile .playCard .detail .content .level {
    margin-bottom: 0;
    text-align: end;
}

.playerSection .playerContent .profile .playCard .detail .content .number {
    margin-bottom: 0;
    display: inline-block;
    background-color: var(--text-white);
    color: var(--bg-light);
    padding: 0.25rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 700;
}

/* COMMISSION SECTION */

.comissionSection {
    margin-block: 100px;
}

.comissionSection .sectionHeading .title {
    text-align: center;
    font-weight: 700;
    font-size: 1.65rem;
    margin-bottom: 3rem;
}

.comissionSection .sectionHeading .title span {
    color: var(--bg-secondry);
}

.comissionSection .conCard {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: #101116;
    padding: 2rem 1rem;
    border-radius: 1rem;
    border: 1px solid #696969;
    margin-bottom: 2rem;
}

.comissionSection .conCard .cardImage {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.comissionSection .conCard .cardImage .mainImage {
    text-align: center;
}

.comissionSection .conCard .cardImage .mainImage p {
    margin-bottom: 0;
}

.comissionSection .conCard .cardImage .mainImage .pTitle {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.comissionSection .conCard .cardImage .mainImage img {
    width: 120px;
}

.comissionSection .conCard .cardImage .mainImage .con {
    font-size: 0.85rem;
}

.comissionSection .conCard .cardImage .mainImage .con span {
    color: #ffea00;
    line-height: 1;
}

.comissionSection .conCard .cardContent .title {
    font-size: 1.45rem;
    color: var(--bg-secondry);
    margin-bottom: 1rem;
}

.comissionSection .conCard .cardContent .text span {
    font-weight: 700;
    color: #ffea00;
}

.comissionSection .conCard .cardContent .value {
    display: inline-block;
    background-color: #ffea00;
    padding: 0.75rem 1.55rem;
    color: #000;
    font-weight: 700;
    border-radius: 0.5rem;
}

/* BOUNS SECTION */

.bounsSection {
    margin-bottom: 100px;
}

.bounsSection .sectionHeading .title {
    font-weight: 700;
    font-size: 1.65rem;
    margin-bottom: 1rem;
}

.bounsSection .sectionHeading .title span {
    color: var(--bg-secondry);
}

.bounsSection .table {
    border: 1px solid #333333 !important;
    border-radius: 0.5rem;
    overflow: hidden;
}

.bounsSection .table thead tr th {
    background-color: #186ee5;
    color: var(--text-white);
    text-align: center;
    border: 0;
}

.bounsSection .table tbody tr td {
    color: var(--text-white);
    text-align: center;
    border: 0;
    border-left: 1px solid #333333;
}

.bounsSection .table tbody tr {
    background-color: #101116;
}

.bounsSection .table tbody tr:nth-child(2) {
    background-color: #151720;
}

/* TERM SECTION */

.termSection {
    margin-bottom: 100px;
}

.termSection .sectionHeading .title {
    font-weight: 700;
    font-size: 1.65rem;
    margin-bottom: 1rem;
}

.termSection .sectionHeading .title span {
    color: var(--bg-secondry);
}

.termSection .termList li {
    margin-bottom: 0.5rem;
}

.termSection .termContent .text {
    margin-top: 2rem;
}

/* FERERRAL SECTION */

.refSection {
    margin-bottom: 100px;
    background-color: #101116;
    padding: 4rem 0;
    position: relative;
}

.refSection .whyImage {
    position: absolute;
    width: 150px;
    right: 30%;
    top: 6%;
}

.refSection .sectionHeading .title {
    font-weight: 700;
    font-size: 1.65rem;
    margin-bottom: 1rem;
}

.refSection .sectionHeading .title span {
    color: var(--bg-secondry);
}

.refSection .refContent .table {
    border: 1px solid var(--bg-secondry);
    border-radius: 1rem !important;
}

.refSection .refContent .table thead tr th {
    background-color: #030304;
    color: #fff;
    border: 0;
    border-bottom: 1px solid var(--bg-secondry);
    margin-bottom: 0;
    padding: 1rem 1rem;
}

.refSection .refContent .table thead tr th img {
    margin-right: 0.5rem;
}

.refSection .refContent .table thead tr th:last-child {
    background-color: var(--bg-secondry);
}

.refSection .refContent .table tbody tr td {
    background-color: #030304;
    color: var(--text-white);
    border: 0;
    padding: 0.55rem 1rem;
    width: 50%;
    font-size: 0.85rem;
}

.refSection .refContent .table tbody tr td img {
    margin-right: 0.5rem;
}

.refSection .refContent .table tbody tr td:last-child {
    background-color: #1e2c3f;
}

/* START SECTION */

.startSection {
    margin-top: 2rem;
    margin-bottom: 100px;
}

.startSection .sectionHeading .title {
    font-weight: 700;
    font-size: 1.65rem;
    margin-bottom: 3rem;
    text-align: center;
}

.startSection .sectionHeading .title span {
    color: var(--bg-secondry);
}

.startSection .startContent {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.startSection .startContent .startImage {
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.startSection .startContent .startImage:hover {
    transform: translateY(-10px);
}

/* MONEY SECTION */

.moneySection {
    background-color: #000;
}

.moneySection .telRow {
    justify-content: center;
    align-items: center;
}

.moneySection .sectionHeading {
    padding-top: 3rem;
}

.moneySection .sectionHeading .title {
    font-weight: 700;
    font-size: 1.85rem;
    margin-bottom: 4rem;
    text-align: center;
}

.moneySection .sectionHeading .title span {
    color: var(--bg-secondry);
}

.moneySection .container {
    background-image: linear-gradient(#00000095, #00000095), url(../img/content_bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.moneySection .moneyContent .whatsapp {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.moneySection .moneyContent .whatsapp .icon img {
    max-width: 50px;
}

.moneySection .moneyContent .whatsapp .title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0;
}

.moneySection .moneyContent .text {
    font-size: 2.35rem;
    font-weight: 700;
    text-transform: capitalize;
}

.moneySection .moneyContent .text span {
    color: var(--bg-secondry);
}

/* facebook section */

.facebookSection {
    padding-block: 100px;
    background-color: #1a1a22;
}

.facebookSection .fbRow {
    justify-content: center;
    align-items: center;
}

.facebookSection .fbContent .facebookIcon {
    margin-bottom: 2rem;
}

.facebookSection .fbContent .facebookIcon img {
    width: 300px;
}

.facebookSection .fbContent .text {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.facebookSection .fbContent .text span {
    color: var(--bg-secondry);
}

.facebookSection .fbContent .fb2 {
    float: right;
}

.teleSection .moneyContent .text {
    font-size: 2rem;
}

/* Contact section */

.contactSection {
    background-color: #111111;
    padding: 4rem 0;
}

.contactSection .sectionHeading .title {
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
}

.contactSection .sectionHeading .title::after {
    content: "";
    width: 35%;
    height: 3px;
    background-color: var(--bg-secondry);
    display: inline-block;
    margin-left: 1rem;
    position: absolute;
    right: 0;
    top: 50%;
}

.contactSection .sectionHeading .title::before {
    content: "";
    width: 35%;
    height: 3px;
    background-color: var(--text-white);
    display: inline-block;
    margin-left: 1rem;
    position: absolute;
    left: 0;
    top: 50%;
}

.contactSection .sectionHeading .title span {
    color: var(--bg-secondry);
}

.contactSection .contactContent {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contactSection .contactContent .contactImage img {
    width: 100%;
    mix-blend-mode: lighten;
}

.contactSection .contactContent .socialPanel {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background-color: #313131;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.contactSection .contactContent .socialPanel .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-white);
}

.contactSection .contactContent .socialPanel .icon img {
    width: 40px;
    height: auto;
    aspect-ratio: 2/2;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease-in-out;
}

.contactSection .contactContent .socialPanel .icon:hover img {
    transform: scale(1.2);
}

.contactSection .whatsappNumber {
    margin-bottom: 2rem;
}

.contactSection .whatsappNumber .icon {
    display: inline-block;
    color: var(--text-white);
    font-size: 1.55rem;
    font-weight: 700;
}

.contactSection .whatsappNumber .icon img {
    width: 50px;
    margin-right: 0.5rem;
}

.contactSection .contactContent .text {
    text-align: center;
    font-size: 1.35rem;
}

.contactSection .contactContent .text span {
    color: var(--bg-secondry);
}

.contactSection .contactContent .mainBtn {
    font-size: 1.5rem;
    border-radius: 0.5rem;
    text-shadow: 1px 1px #000;
    margin-top: 2rem;
    font-weight: 700;
}

.hvarnH.hvarnH.hvarnH.hvarnH.hvarnH.hvarnH {
    background-color: var(--bg-secondry) !important;
}

div#greetings-card {
    display: none !important;
}