@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --mainBlue: #2424ff;
    --mainGreen: #76b901;
    --tekoFont: "Teko", sans-serif;
    --interFont: "Inter", sans-serif;
    --poppinsFont: "Poppins", sans-serif;
    --workSans: "Work Sans", sans-serif;
    --adminClr: #0c1425;
    --darkClr200: #111214;
    --darkClr100: #1b1b2b;
    --darkGreenClr: ;
    --mainCygan: #c6b9b9;
}
/* ===== CONSTANT STYLES */
/* SIZES */
.p-50 {
    padding: 50px 0;
}
.mb-50 {
    margin-bottom: 50px;
}
.mb-100 {
    margin-bottom: 100px;
}
.mt-100 {
    margin-top: 100px;
}
.p-70 {
    padding: 70px 0;
}
.gap-10 {
    gap: 3.8rem !important;
}
.gap-2 {
    gap: 2;
}
@media screen and (max-width: 890px) {
    .mb-50 {
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 700px) {
    .mb-50 {
        margin-bottom: 10px;
    }
}

.bg-lighter {
    background: #fdf5ff;
}

/* BUTTONS */
.btn-main {
    background: var(--mainBlue);
    color: #fff;
    border: none;
    outline: none;
    border-radius: 8px;
}
.btn-main:hover {
    color: var(--mainBlue);
    background: #fff;
}
.btn-gradient {
    border: 1px solid;
    border-image: linear-gradient(to bottom, #2424ff, #76b901);
    border-image-slice: 1;
    text-align: center;
    cursor: pointer;
    background: linear-gradient(
        to bottom,
        rgba(36, 36, 255, 1),
        rgba(255, 255, 255, 1)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-radius: 8px;
}
.btn-border-blue {
    border: 1px solid var(--mainBlue);
    color: var(--mainBlue);
    border-radius: 8px;
    background: #fff;
}

.btn-border-blue:hover {
    background: var(--mainBlue);
    color: #fff;
}
/* ===== END */

/* ===== PAGES GAMER, TEAM, PUBLISHER, EVENTS BANNER */
.pages-banner {
    height: 690px;
    width: 100%;
}

.pages-banner-text {
    position: absolute;
    left: 246px;
    top: 451px;
    font-family: "Teko", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 100px;
    line-height: 120px;
    color: #ffffff;
    text-shadow: 1px 1px 1px var(--mainBlue);
}
@media screen and (max-width: 890px) {
    .pages-banner {
        height: 310px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .pages-banner-text {
        position: relative;
        left: unset;
        top: unset;
        font-size: 45px;
    }
}
.pages-heading {
    font-family: var(--interFont);
    color: #113a39;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 50px;
    line-height: 69px;
    text-align: center;
}
.pages-desc {
    font-family: var(--interFont);
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
    text-align: center;
    color: #181832;
}
/* ===== END */
/* ===== GAMER TEAMS */
.card-team-img {
    width: 100%;
    height: auto;
}
/* steps */
.steps-sections {
    padding: 70px 0;
}
.steps-title {
    font-size: 40px;
    font-weight: 700;
    font-family: var(--tekoFont);
    color: #76b901;
    text-transform: uppercase;
}
.steps-grid {
    margin-top: 44px;
    display: flex;
    justify-content: space-between;
}
.steps-grid-col {
    display: flex;
    align-items: center;
    gap: 30px;
}
.step-count {
    font-size: 200px;
    font-family: var(--tekoFont);
    font-weight: 700;
    color: #76b901;
}
.step-title {
    font-size: 35px;
    letter-spacing: 1px;
    font-family: var(--tekoFont);
    color: #fff;
    font-weight: 600;
}
.step-desc {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--poppinsFont);
    max-width: 180px;
    color: #fff;
}
.step-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-bottom: 30px;
}

@media screen and (max-width: 890px) {
    .steps-grid {
        margin-top: 10px;
        flex-direction: column;
    }
}

/* ==== Home page banner */

.banner {
    background-image: url("../img/bannerImg.png");
    background-size: cover;
    background-position: center;
    position: relative;
    /* height: 590px; */
    height: 690px;
}

/* .banner::after {
    content: "";
    width: 100%;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(
        89.18deg,
        #1011133a 14.63%,
        rgba(16, 17, 19, 0.199) 99.33%
    );
} */

@media screen and (max-width: 700px) {
    .banner {
        display: flex;
        justify-content: center;
        align-items: center;
        background-size: cover;
        height: 350px;
    }
}
.explore-banner-title {
    z-index: 5;
    font-weight: 600;
    font-size: 115px;
    line-height: 80px;
    color: #fff;
    margin-bottom: 50px;
    margin-top: -80px;
    font-family: "Teko", sans-serif;
}

.explore-banner-subtitle {
    text-align: center;
    width: 738px;
    font-family: var(--interFont);
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
    color: #ffffff;
    z-index: 5;
    margin-bottom: 55px;
}
.banner-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
}
.joinBtn {
    width: 230px;
    height: 55px;
    background: var(--mainBlue);
    border-radius: 10px;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #fff;
    font-weight: bold;
}
.joinBtnWhite {
    width: 230px;
    height: 50px;
    background: #fff;
    border-radius: 10px;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #000;
    font-weight: bold;
}
.joinBtnWhite:hover {
    background: #2020ef;
    color: #fff;
}

.joinBtn:hover {
    z-index: 100;
    opacity: 1;
    background: #fff;
    color: var(--mainBlue);
    border: 1px solid var(--mainBlue);
}
@media screen and (max-width: 890px) {
    .explore-banner-title {
        font-size: 32px;
        line-height: normal;
        margin-bottom: 0;
    }
    .joinBtnWhite,
    .joinBtn {
        font-size: 12px;
    }
    .banner-btns {
        margin-top: 20px;
        flex-direction: column;
    }
    .banner-btns a {
        width: 100%;
        height: 44px;
    }
}

/* ==== top section homepage */
.top-section {
    padding: 100px 0 30px 0;
}
.top-sec-heading {
    font-family: var(--tekoFont);
    font-style: normal;
    font-weight: 600;
    font-size: 45px;
    line-height: 50px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--mainGreen);
    margin: 15px 0;
    padding: 0 15px;
}
@media screen and (max-width: 890px) {
    .top-section {
        padding: 10px 0;
    }
    .top-sec-heading {
        font-size: 20px;
        line-height: normal;
    }
}
.sec-col {
    z-index: 5;
    width: 100%;
    height: auto;
    background: #252539;
    box-shadow: 0px 1px 0px rgba(118, 185, 1, 0.2);
    border-radius: 10px;
}
.img-sec {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.img-sec img {
    width: 100%;
    height: 100%;
}
.img-sec img:hover {
    transform: scale(1.1);
    transition: 1s ease;
}
.title-sec {
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    color: #fff;
    font-family: var(--interFont);
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    padding: 15px 15px 0 15px;
}

.desc-sec {
    margin: auto;
    width: 100%;
    height: auto;
    padding: 15px;
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 21px;
    color: #ffffff;
}

.button-sec {
    margin: auto;
    width: 100%;
    padding: 15px;
    height: auto;
}

.startBtn {
    width: 100%;
    height: 44px;
    background: var(--mainBlue);
    border-radius: 6px;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
}

.startBtn:hover {
    color: var(--mainBlue);
    background: #fff;
    border: 2px solid var(--mainBlue);
}
.featuredTitle {
    color: var(--mainGreen);
    font-weight: 600;
    font-family: var(--tekoFont);
    font-size: 38px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
@media screen and (max-width: 890px) {
    .featuredTitle {
        /* font-size: 20px; */
    }
}
.fw-700 {
    font-weight: 700px;
}

.innFeaturedTitle {
    color: var(--darkClr100);
    font-weight: 600;
    font-family: var(--interFont);
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    /* margin-bottom: 10px; */
}
@media screen and (max-width: 890px) {
    .innFeaturedTitle {
        font-size: 16px;
    }
}
.innEvent {
    padding: 30px 35px 50px 35px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-radius: 30px;
}
.adjustEventPd {
    padding: 30px 35px 75px 35px !important;
}
.innEventHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--workSans);
}
.innDesc {
    font-size: 16px;
    font-family: var(--interFont);
    /* margin: 5px 0; */
}
.inGridEvent {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    grid-gap: 10px;
}

@media screen and (max-width: 890px) {
    .bannerAd {
        display: none;
    }
    .inGridEvent {
        grid-template-columns: 1fr;
        grid-gap: 14px;
    }
    .innEvent {
        padding: 30px 15px 40px 15px;
    }
    .adjustEventPd {
        padding: 30px 15px 40px 15px !important;
    }
}
.innAdvert {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 25px;
    color: #252539;
    background: #fff;
    border-radius: 10px;
}
.bg-skyblue {
    background: #f6f6ff;
}
a {
    color: #2424ff;
    font-size: 14px;
}
.bdr-none {
    border: none !important;
}

.inn-title-event {
    font-size: 14px;
    font-family: var(--interFont);
    font-weight: 600;
    color: #252539;
}
.inn-subtitle-event {
    font-size: 9px;
    font-family: var(--interFont);
    font-weight: 500;
    color: #252539;
}
.inn-date-event {
    font-size: 10px;
    margin-top: 7px;
    font-weight: 500;
    color: #252539;
}
.inn-event-info {
    display: flex;
    flex-direction: column;
    gap: 7px;
    color: #fff;
    font-family: var(--interFont);
    padding: 15px 20px;
}
.inRegisterBtn {
    border: 1px solid var(--mainBlue);
    color: var(--mainBlue);
    font-family: var(--interFont);
    font-size: 12px;
    font-weight: 500;
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    border-radius: 7px;
}
.bg-brown-grey {
    background: #f9f9f9;
}
.impact-participant-grid {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    grid-gap: 10px;
}
.inn-advert {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 25px;
    gap: 10px;
    background: #252539;
    color: #fff;
    border-radius: 10px;
}
.green-inn-advert {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 25px;
    gap: 10px;
    background: var(--mainGreen);
    color: #fff;
    border-radius: 10px;
}
.inn-title-ad {
    background: #3b3f46;
    color: #fff;
    font-size: 12px;
    font-family: var(--interFont);
    font-weight: 500;
    border-radius: 48px;
    padding: 10px 25px;
    margin-bottom: 7px;
    width: max-content;
}
.green-title-ad {
    background: #91c734 !important;
}
.inn-info-ad {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--interFont);
    /* line-height: 42px; */
    color: #fff;
    margin-bottom: 14px;
    margin-top: 20px;
}
.inn-card-postings-btn {
    background: var(--mainBlue);
    color: #fff;
    border-radius: 8px;
    width: 100%;
    padding: 10px 20px;
    border: none;
    outline: none;
    font-size: 12px;
    margin-top: 20px;
}
.green-inn-card-postings-btn {
    background: #fff;
    color: var(--mainGreen);
    border-radius: 8px;
    width: 100%;
    padding: 10px 20px;
    border: none;
    outline: none;
    font-size: 12px;
    margin-top: 20px;
}
.grid-inn {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    grid-gap: 1rem;
}

/* brands page */
.recentlyBrands {
    background: #252539;
    border-radius: 8px;
}
.recently-brands-img {
    width: 100%;
    height: 120px;
}
.recently-brands-img img {
    width: 100%;
    height: 100%;
}
.inn-recently-brand {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.recently-brand-title {
    font-family: var(--tekoFont);
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}
.recently-brand-subtitle {
    color: #c4c4c4;
    font-family: var(--poppinsFont);
    font-size: 12px;
    margin-bottom: 30px;
}
.base-recently-brand {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.base-recently-brand span {
    font-size: 12px;
    color: var(--mainGreen);
    font-weight: 500;
    font-family: var(--poppinsFont);
}
.followBtn {
    border: none;
    outline: none;
    color: #fff;
    background: var(--mainBlue);
    border-radius: 10px;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ========== form */
.formInput {
    width: 100%;
    height: 45px;
    border-radius: 7px;
    border: 3px solid #755786;
    padding: 10px 15px;
}
.formBox .fa,
.fas {
    font-weight: 900;
    color: var(--darkClr200);
    transform: translateY(-4px);
}
.confirmText {
    font-size: 12px;
    color: var(--darkClr200);
}

