:root {
    --white: #fff;
    --black: #000;
    --theme-blue: #002867;
    --theme-color: #bf1e2d;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

@media (min-width: 1700px) {
    .container {
        max-width: 1440px;
    }
}

section {
    position: relative;
    padding: 6rem 0;
}

p {
    font-size: 1.125rem;
    font-weight: 400;
    color: #828282;
    line-height: 1.722;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: "Poppins", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

figure {
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.navbar-brand img {
    max-height: 150px;
    transition: 0.3s ease-in-out;
}

header {
    position: fixed;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 99999;
    top: 0;
    width: 100%;
    background-color: var(--white);
    transition: 0.3s ease-in-out;
    box-shadow: 2px 0 5px #ddd;
}

header.sticky {
    top: 0;
}

.navbar-nav {
    gap: 1rem 2rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    font-weight: 400;
    color: #082822;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
}

.navbar-nav .nav-item .nav-link::after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -5px;
    z-index: 1;
    transition: transform 0.3s ease-in-out;
    background-color: var(--theme-color);
    transform-origin: center;
    transform: scaleX(0);
}

.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
    transform: scaleX(1);
}

.form-inline {
    margin-left: 1rem;
}

.main-slider {
    position: relative;
}

.carousel-caption {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    text-align: left;
    align-items: center;
    justify-content: center;
}

.main-slider h2 {
    font-size: 5.375rem;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0;
}

.main-slider h2 span {
    font-size: 2.1875rem;
    font-weight: 500;
    display: block;
}

.main-slider h3 {
    font-size: 3.5625rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
}

.main-slider h4 {
    font-size: 4.625rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
}

.main-slider p {
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 400;
    line-height: 1.667;
}

.main-slider .btn-group {
    gap: 1rem;
}

/* Theme Button Css Start */

.themeBtn {
    display: inline-block;
    font-size: 1rem;
    color: var(--white);
    font-weight: 400;
    line-height: 1;
    z-index: 1;
    text-transform: uppercase;
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
    position: relative;
    overflow: hidden;
    padding: 0.75em 2em;
    border-radius: 50px;
}

.themeBtn:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--theme-blue);
}

@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;
    }
}

.themeBtn:before,
.themeBtn:after {
    position: absolute;
    top: 50%;
    content: "";
    width: 20px;
    height: 20px;
    z-index: -1;
    background-color: var(--theme-blue);
    border-radius: 50%;
}

.themeBtn:before {
    left: -20px;
    transform: translate(-50%, -50%);
}

.themeBtn:after {
    right: -20px;
    transform: translate(50%, -50%);
}

.themeBtn:hover:before {
    -webkit-animation: criss-cross-left 0.8s both;
    animation: criss-cross-left 0.8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.themeBtn:hover:after {
    -webkit-animation: criss-cross-right 0.8s both;
    animation: criss-cross-right 0.8s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

/* Theme Button Css End */
.bottomWrap {
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0px 5px 35px 0px rgb(0 0 0 / 20%);
    /* height: 182px; */
    margin-top: -5rem;
    z-index: 10;
    position: relative;
    padding: 1.5rem 2.5rem;
}

.bottomWrap h2 {
    font-size: 2.125rem;
    color: var(--black);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0;
}

.bottomWrap .btn-group {
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: center;
}

.countdown ul {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.countdown ul li {
    font-size: 1rem;
    color: var(--black);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    text-align: center;
}

.countdown ul li span {
    display: block;
    font-size: 4.0625rem;
    font-weight: 600;
}

.bottomWrap .themeBtn {
    padding: 1rem 2rem;
}

.secHeading {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1;
    position: relative;
    text-transform: uppercase;
}

.secHeading span {
    display: block;
    font-size: 1.5rem;
    text-transform: capitalize;
}

/* aboutSec */
.aboutSec figure {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.aboutSec figure::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 4.5rem;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(
            to left,
            var(--theme-color) 50%,
            var(--theme-blue) 50%
    );
    transition: 0.5s ease-in-out;
}

.aboutSec figure:hover::before {
    transform: skew(-5deg, -3deg);
}

/* matchInfoSec */
.matchInfoSec {
    padding: 12rem 0;
    background: url(../images/bgImg.png) center/100% 100% no-repeat;
}

.tabsBar ul {
    justify-content: center;
    display: flex;
    gap: 1rem 2rem;
    margin-bottom: 2rem;
}

.tabsBar .nav-item .nav-link {
    background-color: transparent;
    font-size: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
    padding: 0 0 0.25rem;
    border-radius: 0;
    line-height: 1;
    border-bottom: 5px solid transparent;
}

.tabsBar .nav-item .nav-link.active {
    background-color: transparent;
    color: var(--theme-color);
    border-color: var(--theme-color);
}

.matchInfoSec .tab-content {
    text-align: center;
}

.matchInfoSec .countdown ul {
    justify-content: center;
    margin: 1.75rem 0 4rem;
    align-items: flex-start;
}

.matchInfoSec .countdown ul li {
    color: var(--white);
}

.matchInfoSec .tab-content p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1;
}

.matchInfoSec {
    font-size: 1.375rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.115;
    margin-bottom: 1rem;
}

.matchInfoSec .btn-group {
    margin-top: 0;
    gap: 0.25rem;
}

.matchInfoSec .btn-group .btn {
    background-color: var(--theme-blue);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--white);
    box-shadow: none;
    padding: 0.75em 1.5em;
    text-transform: uppercase;
}

.matchInfoSec .btn-group .btn:first-child {
    border-radius: 50px 0 0 50px;
}

.matchInfoSec .btn-group .btn:last-child {
    border-radius: 0px 50px 50px 0px;
}

.matchInfoSec .btn-group .btn:hover,
.matchInfoSec .btn-group .btn.active {
    background-color: var(--theme-color);
}

.galleryWrap {
    display: block;
    overflow: hidden;
    margin-bottom: 1.25rem;
    background: var(--black);
}

.galleryWrap img {
    opacity: 0.75;
    width: 100%;
    transition: opacity, ease all 2s;
    transform: scale(1);
}

.galleryWrap:hover img,
.galleryWrap:focus img {
    opacity: 1;
    transform: scale(1.1);
}

/* teamsSection */
.contentRow {
    display: flex;
    transform: scale(1.175);
    overflow: hidden;
}

.teamCard {
    background-color: var(--theme-blue);
    position: relative;
    overflow: hidden;
    height: 440px;
    transform: skewX(-30deg);
    border-top: 10px solid var(--white);
}

.teamCard + .teamCard {
    border-left: 10px solid var(--white);
}

.teamCard .content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: skewX(30deg);
}

.teamCard img {
    transform: skewX(30deg) scale(1.5);
}

.teamCard.first {
    background-color: var(--theme-blue);
}

.teamCard.second {
    background-color: var(--theme-color);
}

.teamCard.third {
    background-color: var(--theme-color);
}

.teamCard.fourth {
    background-color: var(--theme-blue);
}

.teamCard .content h3 {
    font-size: 3.75rem;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.551;
}

/* Events */
.ourEvents {
    background-repeat: no-repeat;
    background-position: right;
    padding-bottom: 16rem;
}

.eventThumb {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 2rem;
    transition: 0.4s ease-in-out;
    /* border-bottom: 1px solid #ccc; */
}

.eventThumb .img {
    position: relative;
}

.eventThumb .img img {
    box-shadow: 0px 2px 35px 0px rgba(0, 0, 0, 0.21);
    width: 100%;
    border-radius: 5px;
    /* clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 90%); */
}

.eventThumb .content span {
    font-size: 1.0625rem;
    font-weight: 600;
    font-style: italic;
    color: #030000;
}

.eventThumb .content {
    padding-top: 2rem;
}

.eventThumb .content span i {
    font-size: 1.2rem;
    color: var(--theme-color);
    margin-right: 0.3rem;
}

.eventThumb .content h4 {
    font-size: 1.625rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 1rem 0;
}

.eventThumb .content p {
    font-weight: 400;
    margin: 0;
    font-size: 1.125rem;
    color: #868686;
    line-height: 1.833;
}

.eventThumb .content p a {
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
}

.eventThumb.small {
    display: flex;
    align-items: flex-start;
    flex-flow: row wrap;
    gap: 0 1rem;
}

.eventThumb.small .img {
    width: 30%;
}

.eventThumb.small .content {
    width: calc(70% - 1rem);
}

.eventThumb.small .content h4 {
    font-size: 1.375rem;
    margin: 0.8rem 0 0.4rem;
}

.eventThumb.small .content p {
    font-size: 1.025rem;
}

.eventThumb:hover {
    /* box-shadow: 0px 3px 40px 0px rgba(0, 0, 0, 0.09); */
}

/* newsLtrSec */
.newsLtrSec figure {
    text-align: center;
}

.newsLtrSec figure img {
    margin-bottom: -8rem;
    margin-left: auto;
}

.newsLtrSec .form-group {
    position: relative;
    margin-bottom: 2rem;
}

.newsLtrSec .form-group .form-control {
    border: 1px solid #ebebeb;
    background-color: var(--white);
    box-shadow: 0px 3px 40px 0px rgba(0, 0, 0, 0.06);
    max-width: 702px;
    border-radius: 50px;
    height: 69px;
    padding-left: 3rem;
}

.newsLtrSec .form-group i {
    color: #828282;
    font-size: 1.25rem;
    position: absolute;
    top: 1.5rem;
    left: 1rem;
}

.newsLtrSec .form-group .form-control:focus {
    border-color: var(--theme-color);
}

/* Begin: footer */
footer {
    background: url(../images/footerBg.png) center top/cover no-repeat;
    padding-top: 18em;
    margin-top: -18rem;
    position: relative;
}

footer h3 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

footer .links,
footer .contInfo {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-flow: column;
    gap: 0.75rem 0;
}

footer .contInfo {
    gap: 1rem 0;
}

footer .links li a {
    font-size: 1.0625rem;
    color: var(--white);
    text-transform: uppercase;
}

footer .contInfo li a {
    display: flex;
    align-items: flex-start;
    gap: 0 2rem;
    line-height: 1.5;
}

footer .contInfo li a i {
    font-size: 1rem;
    color: var(--white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background-color: var(--theme-color);
    width: 40px;
    height: 40px;
}

footer .contInfo li a span {
    display: block;
    text-transform: none;
    font-size: 1.125rem;
    color: var(--white);
    line-height: 1;
}

footer .contInfo li a strong {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1rem;
    color: var(--white);
}

footer .links li a:hover,
footer .links li a:focus {
    color: var(--theme-color);
}

.copyRight {
    border-top: 1px solid #e3e3e3;
    padding: 2em 0;
    margin-top: 5em;
    align-items: center;
}

.copyRight p {
    font-size: 14px;
    color: var(--white);
    line-height: 1;
    margin: 0;
}

.footerSocial {
    display: flex;
    margin-top: 2rem;
    align-items: center;
    justify-content: center;
    gap: 0 6px;
}

.footerSocial a {
    font-size: 1rem;
    color: var(--white);
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--white);
    width: 50px;
    height: 50px;
}

.footerSocial a:hover {
    background-color: var(--theme-color);
    color: var(--white);
    border-color: var(--theme-color);
}

.copyRight .links {
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
}

.copyRight .payment {
    display: flex;
    gap: 0.25rem;
    justify-content: flex-start;
    align-items: center;
}

.copyRight .links li a {
    font-size: 14px;
    font-weight: 400;
    color: aliceblue;
    text-transform: unset;
    text-decoration: underline !important;
    line-height: 1;
}

.roleback {
    border-radius: 5px;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 1rem;
    border: 1px solid var(--theme-color);
    background-color: var(--theme-color);
    width: 36px;
    height: 36px;
    position: fixed;
    bottom: 2rem;
    z-index: 1;
    right: 10rem;
}

.roleback:hover {
    background-color: var(--white);
    color: var(--theme-color);
}

/* END: footer */

.main-slider.contactInner h2 {
    font-size: 4rem;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0;
}

.contactSection form {
    margin-top: 3rem;
}

.contactSection .form-group .form-control {
    border-radius: 0;
    border: 1px solid #ebeff3;
    height: 70px;
    width: 100%;
    background-color: #f6f6f6;
}

.contactSection .form-group textarea.form-control {
    height: 190px;
    width: 100%;
}

.contactSection.contactPAge span {
    color: #bf1e2d;
    padding-right: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.contactSection.contactPAge a {
    color: #828282;
}

.contactSection.contactPAge.registerPage .themeBtn {
    display: inline-block;
    font-size: 1rem;
    color: var(--white);
    font-weight: 400;
    line-height: 1;
    z-index: 1;
    text-transform: uppercase;
    background-color: var(--theme-blue);
    border: 1px solid var(--theme-blue);
    position: relative;
    overflow: hidden;
    padding: 0.75em 2rem;
    width: 100%;
    text-align: center;
    border-radius: 50px;
}

.contactSection.registerPage .form-group .form-control {
    border-radius: 5rem;
    border: 1px solid #ebeff3;
    height: 70px;
    width: 100%;
    background-color: #ffffff;
}

.registerPage form {
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 5px 35px 0px rgba(197, 197, 197, 0.24);
    margin-top: -10rem;
    padding: 2rem 3.5rem;
}

.gallerySec {
    padding-bottom: 16rem;
}

.aboutInner .row + .row {
    padding-top: 4rem;
}

.aboutSec .flex-row-reverse figure::before {
    top: 0;
}


/* nomination form css start */


.nominateLogo {
    text-align: center;
}

.nominateLogo h2 {
    margin: 1rem 0 4rem;
    color: #c80d0d;
    font-size: 1.125rem;
    font-weight: 600;
}

.nominateList h2 {
    font-size: 21px;
    color: #595d64;
    margin: 0 0 1.5rem;
}

.chkOne {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.chkOne label {
    margin: 0;
    color: #595d64;
    font-size: 14px;
}

.chkOne input {
    width: 15px;
    height: 15px;
}

.chkOne + .chkOne {
    margin-top: 0.7rem;
}

.nominateList {
    margin: 0 0 2rem;
}

.playerHeading {
    font-size: 21px;
    color: #595d64;
    margin: 2rem 0 1.4rem;
}

.playerField input {
    border: 1px solid #d4d4d4;
    background-color: transparent;
    width: 100%;
    height: 50px;
    margin: 0 0 5px;
    padding: 0 1rem;
}

.playerField label {
    margin: 0 0 10px;
    color: #061f9d;
    font-size: 14px;
    font-weight: 500;
    display: block;
}

.playerField select {
    border: 1px solid #d4d4d4;
    background-color: transparent;
    width: 100%;
    height: 50px;
    margin: 0 0 5px;
    padding: 0 1rem;
}

.fillHeading {
    text-align: center;
    margin: 2rem 0 1.5rem;
    color: rgb(184, 49, 47);
    font-weight: 600;
}

.linkHeading {
    color: rgb(184, 49, 47);
    text-align: center;
    font-weight: 600;
}

.playerField textarea {
    border: 1px solid #d4d4d4;
    background-color: transparent;
    width: 100%;
    height: 250px;
    margin: 0 0 5px;
    padding: 1rem 1rem;
    resize: none;
}

.playerField .themeBtn {
    display: table;
    margin: 2rem auto;
}

.nominateSec {
    padding-bottom: 14rem;
}

/* nomination form css end */

.faqSec {
    padding-bottom: 16rem;
}

.faqSec .accordion .card-header {
    background: var(--theme-color);
}

.faqSec .accordion .card-header button {
    color: #fff;
}

.faqSec .accordion .card + .card {
    margin-top: 1rem;
}

.faqSec .secHeading {
    margin-bottom: 1.5rem;
}
.newsLtrSec {
    padding-bottom: 22rem;
}