/* FONT IMPORT */


/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

/* Local Font */

:root {
    --white: #fff;
    --black: #000;
    --primary: #EA0000;
    --secondary: #333333;
}

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

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

section {
    position: relative;
}

h1,
h2,
h3 {
    font-family: "Oswald", sans-serif;
}

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

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

figure {
    margin: 0;
}


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}


/* Cursor End */


/* PRELOADER */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--black);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}


/* PRELOADER */


/* GLOBAL CSS */

.themeBtn {
    background: transparent;
    font-size: 1.0625rem;
    color: var(--white);
    display: inline-block;
    padding: 0.875rem 2.15em;
    border-radius: 50px;
    line-height: normal;
    border: 1px solid var(--white);
}

.themeBtn:hover {
    background: var(--primary) !important;
    border-color: var(--primary);
    color: var(--white) !important;
}


/* !GLOBAL CSS */


/* NAV HEADER CSS */

.topBar {
    background: var(--white);
    padding: 1.25rem 0;
}

.socialMedia {
    display: flex;
    justify-content: space-between;
}

.socialMedia li a {
    background: var(--black);
    width: 40px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: var(--white);
    font-size: 1.125rem;
}

.socialMedia li a:hover {
    background: var(--primary);
    color: var(--white);
}

.topBar p {
    color: #010101;
    font-size: 0.875rem;
    text-align: center;
    margin: 0;
}

.topBar p a {
    color: #010101;
    text-decoration: underline !important;
}

.topList {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: end;
}

.userWrap {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.topList .btn-secondary {
    background: transparent;
    border: unset;
    color: var(--black);
    outline: unset !important;
    padding: 0 0;
    box-shadow: unset !important;
    font-size: 1.125rem;
}

.topList .dropdown-toggle::after {
    color: var(--primary);
}

.topList .btn-secondary.focus,
.btn-secondary:focus {
    box-shadow: unset !important;
    outline: unset !important;
}

.topList .btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show>.btn-secondary.dropdown-toggle {
    background: transparent;
    color: var(--black);
}

.topList .dropdown {
    border-left: 1px solid var(--black);
    padding-left: 1rem;
}

.topList a {
    color: var(--black);
    font-size: 1.25rem;
}

.navbar {
    margin-top: 1.125rem;
}

header {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 111;
    top: 0;
    width: 100%;
    transition: 0.3s ease-in-out;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-nav {
    align-items: center;
    gap: 2rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.0625rem;
    color: var(--white);
    padding: 0 0;
    display: inline-block;
    text-transform: capitalize;
    position: relative;
}

.navbar-nav .nav-item .nav-link:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 0;
    height: 2px;
    transition: 0.5s ease;
    bottom: -5px;
}

.navbar-nav .nav-item .nav-link:hover:before {
    width: 100%;
}

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


/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.main-slider {
    height: 1080px;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .swiper-pagination {
    bottom: 4rem;
    width: fit-content;
    left: 50%;
    transform: translateX(-50%);
}

.homeSlider .swiper-pagination-bullet {
    height: 11px;
    width: 11px;
    display: inline-block;
    margin: 0 0.5rem !important;
    opacity: 1;
    background: var(--white);
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.homeSlider .slide-inner:before,
.innerBanner:before {
    content: "";
    position: absolute;
    background: var(--black);
    inset: 0;
    opacity: 66%;
}

.slideOne {
    margin-top: 10rem;
}

.slideOne h1 {
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
    font-size: 6.25rem;
}

.slideOne p {
    color: var(--white);
    font-size: 1.75rem;
    line-height: 1.28;
    width: 94%;
    margin: 1.5rem 0 1.75rem 0;
    text-transform: capitalize;
}


/* !MAIN HERO SLIDER CSS */


/* Service Sec Css Start */

.serviceSec {
    background: #F1F1F1;
    padding: 4.0625rem 0 5rem 0;
}

.serviceSec .row {
    gap: 2.5rem 0;
}

.mainHeading {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 5.625rem;
    color: var(--black);
}

.serviceWrap {
    position: relative;
    overflow: hidden;
    border-radius: 2.5rem;
    cursor: pointer;
}

.serviceContent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    background: linear-gradient(0deg, #000000, #00000000);
    height: 86%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    padding-bottom: 3.75rem;
    transition: 0.8s ease;
}

.serviceWrap:hover .serviceContent {
    padding-bottom: 6rem;
}

.serviceContent h3 {
    color: var(--white);
    text-transform: uppercase;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.serviceContent .themeBtn {
    background: var(--white);
    color: var(--black);
}


/* Service Sec Css End */


/* Product Sec Css Start */

.productSec {
    padding: 2.8125rem 0 5.625rem 0;
}

.productWrap figure {
    background: #F1F1F1;
    text-align: center;
    padding: 4.375rem 0;
    overflow: hidden;
}

.productWrap figure img {
    transition: 0.8s ease;
}

.productWrap figure:hover img {
    transform: scale(1.1);
}

.productContent {
    margin-top: 0.625rem;
}

.productContent h3 {
    font-size: 1.5625rem;
    color: #121212;
    font-weight: 400;
}

.productContent span {
    font-weight: 500;
    color: var(--primary);
}

.productContent ul {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.productContent ul li i {
    font-size: 0.75rem;
    color: #D87238;
}

.productContent a {
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--black);
    border: 1px solid var(--black);
    border-radius: 50px;
    width: 100%;
    display: block;
    text-align: center;
    padding: 9px 0;
}

.productContent a:hover {
    background: var(--black);
    color: var(--white);
}


/* Product Sec Css End */


/* Event Sec Css Start */

.eventSec {
    background: #F1F1F1;
    padding: 5rem 0 2.8125rem 0;
}

.eventTabs ul {
    justify-content: center;
    gap: 3rem;
    margin: 1.2rem 0 3.5rem 0;
}

.eventTabs .nav-link {
    background: unset;
    border: unset;
    border-bottom: 3px solid transparent !important;
    text-transform: uppercase;
    font-size: 1.5625rem;
    color: var(--black);
    padding: 0 0;
    outline: unset;
    font-family: 'Oswald';
}

.eventTabs .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background: unset;
    color: var(--black);
    border-color: var(--primary) !important;
    border-radius: unset;
}

.eventWrap {
    position: relative;
}

.eventDate {
    position: absolute;
    top: 0;
    background: var(--primary);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: baseline;
    gap: 5px;
    padding: 1.125rem 2.4em;
    border-radius: 0 0 1rem 0;
}

.eventDate i {
    font-size: 1.125rem;
}

.eventContent {
    position: absolute;
    bottom: 3.125rem;
    left: 3.125rem;
}

.eventContent h3 {
    color: var(--white);
    font-size: 2.0625rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
}

.eventContent .themeBtn {
    font-size: 1.25rem;
    text-transform: uppercase;
}


/* Event Sec Css End */


/* Cornhole Sec Css Start */

.cornholeSec {
    padding: 3.4375rem 0 5.625rem 0;
}

.cornholeSec .eventTabs ul {
    gap: 5rem;
    margin: 2rem 0 2.5rem 0;
}

.cornholeContent {
    text-align: center;
    margin-top: 1.3rem;
}

.cornholeContent h3 {
    font-size: 2.5rem;
    color: var(--black);
    font-weight: 400;
}

.cornholeContent span {
    color: var(--primary);
    font-weight: 500;
}

.cornholeContent ul {
    display: flex;
    gap: 2px;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.cornholeContent ul li i {
    font-size: 0.75rem;
    color: #D87238;
}

.cornholeContent a {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--black);
    border: 2px solid var(--black);
    padding: 8px 2.2em;
    border-radius: 50px;
    display: inline-block;
}

.cornholeContent a:hover {
    background: var(--black);
    color: var(--white);
}


/* Cornhole Sec Css End */


/* Calender Sec Css Start */

.calenderSec {
    background: #F1F1F1;
    padding: 4.6875rem 0 5.625rem 0;
}

.evo-calendar,
.calendar-inner,
.calendar-events {
    background-color: var(--white);
    border-radius: 1.5625rem;
    border: 0;
}

.calendar-sidebar {
    background-color: var(--black);
    box-shadow: 15px 0 20px 0 rgba(0, 0, 0, 0.12);
    width: 250px;
}

.calendar-sidebar>span#sidebarToggler {
    box-shadow: 0px 3px 10px 0 rgba(0, 0, 0, 0.12);
    background: var(--black);
}

.sidebar-hide .calendar-inner {
    width: calc(100% - 0px);
}

button.icon-button>span.bars::after {
    width: 16px;
    height: 4px;
    border-radius: 4px;
}

.calendar-inner {
    margin-left: 17rem;
    padding-right: 8rem;
}

.calendar-sidebar>.calendar-months>li {
    padding: 8px 1.875rem;
    font-size: 1.1875rem;
    font-weight: 500;
}

button.icon-button>span.bars::before {
    width: 27px;
    height: 4px;
    border-radius: 4px;
}

button.icon-button>span.bars {
    width: 24px;
    height: 4px;
    border-radius: 4px;
}

.calendar-sidebar>.calendar-months>li.active-month {
    background: var(--primary) !important;
}

.day.calendar-active.calendar-today,
tr.calendar-body .calendar-day .day.calendar-active,
tr.calendar-body .calendar-day .day.calendar-active:hover {
    background: #171717 !important;
    border: unset !important;
    color: var(--white);
}

tr.calendar-body .calendar-day .day {
    color: var(--black);
    font-size: 1.375rem;
}

tr.calendar-header .calendar-header-day {
    font-size: 1.875rem;
    color: var(--black);
}

th[colspan="7"] {
    font-size: 3.125rem;
    color: var(--black);
    font-family: 'Oswald';
    font-weight: 500;
}


/* Calender Sec Css End */


/* Team Sec Css Start */

.teamSec {
    padding: 3.125rem 0 5.625rem 0;
}

.teamWrap figure {
    border-radius: 1.875rem;
    overflow: hidden;
}

.teamWrap figure img {
    transition: 0.5s ease;
}

.teamWrap:hover figure img {
    transform: scale(1.1);
}

.teamContent {
    background: #F5F5F5;
    border-radius: 1.875rem;
    text-align: center;
    padding: 4.6875rem 0 3.125rem 0;
    margin-top: -3rem;
    transition: 0.5s ease;
}

.teamWrap:hover .teamContent {
    background: var(--white);
    box-shadow: 0 4px 4px 0 rgb(0 0 0 / 25%);
}

.teamContent h3 {
    font-size: 2.5rem;
    color: var(--black);
    font-weight: 400;
}

.teamContent span {
    color: #474747;
    font-weight: 500;
}

.teamContent ul {
    justify-content: center;
    gap: 6px;
    margin: 0.875rem 0 1.25rem 0;
}

.teamContent ul li a {
    width: 50px;
    font-size: 1.25rem;
}

.teamContent .teamDetail {
    font-size: 1.25rem;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 500;
    border: 2px solid var(--black);
    display: inline-block;
    padding: 8px 2.1em;
    border-radius: 50px;
}

.teamContent .teamDetail:hover {
    background: var(--black);
    color: var(--white);
}


/* Team Sec Css End */


/* Insta Sec Css Start */

.instaSec {
    padding: 0 1.5625rem 1.5625rem 1.5625rem;
}

.instaWrap {
    position: relative;
}

.instaIcon {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgb(234 0 0 / 77%);
    font-size: 3rem;
    transform: scale(0);
    transition: 0.5s ease;
}

.instaWrap:hover .instaIcon {
    transform: scale(1);
}

.instaIcon a {
    color: var(--white);
}

.instaSlider .swiper-wrapper {
    transition-timing-function: linear;
}


/* Insta Sec Css End */


/* Footer Css Start */

footer {
    background: #EDEDED;
    padding-top: 5.625rem;
    position: relative;
}

footer h3 {
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    position: relative;
}

footer h3:before {
    content: "";
    position: absolute;
    background: #6388AE;
    width: 70px;
    height: 1px;
    bottom: -10px;
}

.links li a {
    color: #555555;
    text-transform: capitalize;
}

.links li+li {
    margin-top: 5px;
}

footer ul li a:hover {
    color: var(--primary);
}

.contactLinks li {
    display: flex;
    gap: 0.6875rem;
}

.contactLinks li a {
    color: #555555;
    line-height: 1.5;
}

.contactLinks li a span {
    font-size: 0.9375rem;
    font-weight: 500;
    display: block;
    color: var(--black);
}

.contactLinks li i {
    font-size: 1.375rem;
}

.contactLinks li+li {
    margin-top: 2.8125rem;
}

.contactLinks {
    margin-top: 2rem;
}

.footPara {
    font-size: 0.875rem;
    color: #555555;
}

.footForm {
    border-bottom: 2px solid var(--white);
    display: flex;
    align-items: center;
    height: 50px;
}

.footForm button {
    outline: unset;
    border: unset;
    background: transparent;
    color: var(--white);
    font-size: 1.25rem;
}

.footForm input {
    background: transparent;
    border: unset;
    font-size: 1.125rem;
    color: #2E2E2E;
    outline: unset;
    box-shadow: unset;
    width: 100%;
}

.footForm input::placeholder {
    color: #2E2E2E;
}

footer .socialMedia {
    justify-content: flex-start;
    gap: 7px;
    margin-top: 1.5625rem;
}

footer .socialMedia li a {
    width: 53px;
}

.copyRight p {
    color: var(--black);
    font-weight: 500;
    font-size: 1.25rem;
    text-align: center;
    margin: 0;
}

.copyRight {
    border-top: 1px solid #A2A2A2;
    margin-top: 5rem;
    padding: 2.5rem 0;
}

.messageBox {
    background: rgb(234 0 0 / 33%);
    width: 63px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 20px;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    transition: 0.5s ease;
}

.messageBox:hover {
    background: var(--black);
    color: var(--white);
}

.messageBox a {
    color: var(--primary);
    font-size: 1.5rem;
}


/* Footer Css End */


/* SEARCH BAR CSS */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 10000;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: #fff !important;
    background: rgba(0, 0, 0, 0);
    font-size: 55px;
    line-height: 65px;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-family: arial;
}

#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
    background-color: limegreen;
    border: black;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    opacity: 1;
    padding: 10px 17px;
    font-size: 27px;
    outline: unset;
    width: fit-content;
}

.srch-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.srch-btn .themeBtn {
    padding: 15px 120px;
    font-size: 20px;
}


/* !SEARCH BAR CSS */


/* Inner Css Start */

.innerBanner {
    background: url(../../upload/images/innerBan.png) center/cover;
    height: 585px;
    display: flex;
    align-items: center;
}

.innerBanner .slideOne h1 {
    font-size: 3.125rem;
}

.eventInner {
    background: unset;
}

.eventText h3,
.srvText h3 {
    color: var(--black);
    font-size: 3.125rem;
    font-weight: 400;
}

.eventText p {
    color: #5C5C5C;
    font-size: 1.125rem;
    line-height: 1.83;
    margin: 1rem 0 1.5rem 0;
}

.eventText a {
    color: var(--primary);
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid var(--primary);
    padding: 0.625rem 2em;
    display: inline-block;
    border-radius: 50px;
}

.eventText a:hover {
    background: var(--primary);
    color: var(--white);
}

.eventText {
    margin-top: 1rem;
}

.eventInner .tab-content .row+.row {
    margin-top: 5.3125rem;
}

.eventInner {
    padding: 5rem 0 6.25rem 0;
}

.galleryInner,
.productInner {
    padding: 5rem 0 7.5rem 0;
}

.galleryWrap a img {
    transition: 0.5s ease;
}

.galleryWrap {
    overflow: hidden;
    border-radius: 11px;
}

.galleryWrap:hover a img {
    transform: scale(1.1);
}

.galleryInner .row {
    gap: 2rem 0;
}

.serviceInner {
    padding: 5rem 0 8.75rem 0;
    margin-bottom: 1.5625rem;
}

.srvText h3 {
    text-transform: uppercase;
}

.srvText p {
    color: #5C5C5C;
    font-size: 1.125rem;
    line-height: 1.83;
    margin: 1rem 0 1.2rem 0;
}

.srvText .themeBtn {
    color: var(--black);
    border-color: var(--black);
}

.srvText {
    background: var(--white);
    border-radius: 0 2.5rem 2.5rem 0;
    padding: 2.1875rem 3.4375rem;
    height: 100%;
    min-height: 614px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.srvImg img {
    border-radius: 2.5rem 0 0 2.5rem;
}

.serviceInner .flex-row-reverse .srvImg img {
    border-radius: 0 2.5rem 2.5rem 0;
}

.serviceInner .flex-row-reverse .srvText {
    border-radius: 2.5rem 0 0 2.5rem;
}

.serviceInner .row+.row {
    margin-top: 1.875rem;
}

.productInner .row {
    gap: 4.375rem 0;
}

.teamInner .row {
    gap: 3.125rem 0;
}

.tournamentInner {
    padding: 5rem 0 9.375rem 0;
    margin-bottom: 1.5625rem;
}

/* About Us */
.about {
    padding-top: 5rem;
    background: #f1f1f1;
}

.about__content {
    text-align: center;
}

.about__content p {
    width: 42%;
    font-size: 1.125rem;
    text-transform: capitalize;
    margin: 0 auto;
}

.teamSec--about {
    background: #f1f1f1;
}

/* Inner Css End */


/* Product Details */
.Proreview {
    padding: 8rem 0 5rem;
}

.Proreview h2 {
    text-align: left;
    margin: 1rem 0;
    font-size: 3rem;
    color: var(--black);
}

.Proreview ul {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 2rem;
    color: #f7c00c;
    margin-bottom: 1rem;
}

.Proreview ul li span {
    padding-right: 1rem;
}

.Proreview p {
    font-size: 1.75rem;
    color: #a4a4a4;
}

.Proreview h5 {
    font-size: 2.1875rem;
}

.productSlider-for,
.productSlider-nav {
    overflow: hidden;
}

.productNav {
    background-color: #192026;
    padding: 1.875rem;
    border-radius: 15px;
}

ul.stckst li {
    font-size: 1.625rem;
    color: var(--primary);
    font-weight: 600;
}

ul.stckst li span {
    color: var(--black);
}

.productSlider-for figure {
    width: 100%;
    height: 524px;
}

.productSlider-nav figure {
    width: 100%;
    height: 120px;
    margin: 2rem 0 0;
}

.productSlider-nav img {
    border: 2px solid transparent;
    transition: all 300ms ease-in-out;
}

.productSlider-nav img:hover {
    border-color: var(--primary);
}

.rating-box {
    display: flex;
    align-items: center;
}

.rating-box .rating-container {
    direction: rtl !important;
}

.rating-box .rating-container label {
    display: inline-block;
    margin: 0;
    color: #d4d4d4;
    cursor: pointer;
    font-size: 2.2rem;
    transition: color 0.2s linear;
}

.rating-box .rating-container input {
    display: none;
}

.rating-box .rating-container label:hover,
.rating-box .rating-container label:hover~label,
.rating-box .rating-container input:checked~label {
    color: gold;
}

.rating-box span {
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 500;
    padding-left: 0.5rem;
}

.prodtl-txt p {
    font-size: 1.125rem;
}

.quantitySec h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--black);
}

.quantitySec .number {
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.number {
    background: transparent;
    padding: 1rem 0;
    border-radius: 7px;
    width: 100%;
    color: #282828;
    user-select: none;
}

.number input {
    width: 50px;
    background: transparent;
    border: none;
    height: 2rem;
    color: var(--black);
    text-align: center;
    outline: none;
    user-select: none;
}

.number .minus {
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    background-color: #2d363d;
    border-radius: 8px;
}

.number :is(.plus, .minus) {
    width: 40px;
    aspect-ratio: 1;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    background-color: var(--primary);
    border-radius: 8px;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.productNav figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
    padding: 1rem;
    border: 2px solid transparent;
}

.rating-container .active {
    color: gold !important;
}


/* cart css start */

.cart-list ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #dcdcdc;
    border-radius: 15px;
    position: relative;
}

.cart-list ul li {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cart-list ul li figure {
    width: 222px;
    height: 214px;
    border: 1px solid #dcdcdc;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-list ul li figure img {
    width: fit-content;
    max-height: 100% !important;
}

.cart-list ul li h4 {
    color: var(--black);
    width: 180px;
    line-height: 2.3rem;
    margin: 0 0 0.8rem;
}

.cart-list ul li h5 {
    font-size: 1.5625rem;
    color: var(--primary);
    font-weight: 600;
    margin: 0;
}

.cart-list .quantitySec .number {
    background: #f7f6fb;
    border: 1px solid #cccccc;
}

.cart-list .quantitySec .number .minus {
    border: 0;
    background: transparent;
    border-radius: 0;
}

.cart-list .quantitySec .number .plus {
    border: 0;
    background: transparent;
    border-radius: 0;
}

.cart-list .quantitySec {
    padding-right: 4rem;
}

.cart-list .quantitySec h6 {
    font-size: 1.25rem;
    margin: 0 0 20px;
}

.cart-list div {
    position: relative;
}

.cart-list div button.close {
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: #1c225a;
    opacity: 1;
    text-shadow: unset;
    color: var(--white);
    font-size: 15px;
    border-radius: 5px;
}

.cart-list div + div {
    margin-top: 1.5rem;
}

.cart-total {
    border-top: 1px solid #cccccc;
    margin-top: 1.5rem;
    padding-top: 2.5rem;
}

.cart-total h4 {
    font-size: 1.875rem;
    display: flex;
    align-items: flex-end;
    margin: 0 0 10px;
    gap: 15px;
}

.cart-total h4 small {
    font-size: 15px;
    color: #282828;
}

.cart-total p {
    font-size: 22px;
    color: #282828;
    font-weight: 500;
    font-style: italic;
    margin: 0 0 1.5rem;
    width: 62%;
    line-height: 2.25rem;
}

.quantitySec .number {
    padding: 0;
    font-size: 1rem;
}

.quantitySec .number .minus {
    background: #f7f6fb;
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cccccc;
    border-radius: 7px;
    padding: 0;
    cursor: pointer;
    color: #000;
}

.quantitySec .number .plus {
    background: #f7f6fb;
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cccccc;
    border-radius: 7px;
    padding: 0;
    cursor: pointer;
    color: #000;
}

.quantitySec .number input {
    width: 60px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #282828;
}
.number {
    background: transparent;
    padding: 1rem 0;
    border: 0;
    border-radius: 7px;
    width: 100%;
    color: #282828;
    display: flex;
    align-items: center;
}
.number input {
    background: transparent;
    border: none;
    height: 2rem;
    width: 50px;
    text-align: center;
    height: 39px;
}
.cart-page {
    padding: 5rem 0;
}
/* cart css end */

/* checkout css start */

.check-out-form .form-control {
    min-height: 60px;
    margin-bottom: 26px;
    border: 1px solid #707070;
    border-radius: 0;
    background: var(--white);
    width: 100%;
    font-size: 16px;
    padding: 0 1.8rem;
    font-weight: 500;
}
.check-out-section.chkot-pag {
    padding: 7rem 0;
    background: linear-gradient(to left, #373e43 47%, #1f2528 47%);
}

.checkout-heading {
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0 0 10px;
    font-family: "Aclonica", sans-serif;
    color: var(--white);
}

.shirt-heading ul {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.shirt-heading ul li a {
    font-size: 19px;
    color: var(--white);
    font-weight: 400;
}

.shirt-heading {
    margin: 0 0 4rem;
}

.shiping-heading {
    font-size: 1.875rem;
    font-weight: 500;
    margin: 0 0 1rem;
    color: var(--white);
}

.acount-log {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.acount-log span {
    font-size: 1rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.acount-log span a {
    color: var(--white);
}
.check-out-section input[type="checkbox"] {
    display: none;
}

.check-out-section input[type="checkbox"] + label {
    display: block;
    position: relative;
    padding-left: 32px;
    margin-bottom: 20px;
    color: var(--white);
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    font-size: 1rem;
}

.check-out-section input[type="checkbox"] + label:last-child {
    margin-bottom: 0;
}

.check-out-section input[type="checkbox"] + label:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--white);
    position: absolute;
    left: 0;
    top: 0px;
    opacity: 0.6;
    -webkit-transition: all 0.12s, border-color 0.08s;
    transition: all 0.12s, border-color 0.08s;
    bottom: 0;
    margin: auto;
}

.check-out-section input[type="checkbox"]:checked + label:before {
    width: 10px;
    top: -5px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.checkbox {
    padding-left: 0;
    margin-bottom: 2.5rem;
}
.check-out-form select {
    min-height: 60px;
    margin-bottom: 26px;
    border: 1px solid var(--white);
    border-radius: 0;
    background: var(--white);
    width: 100%;
    font-size: 19px;
    padding: 0 1.8rem;
    color: #1f2328;
}

.check-out-form .form-control::placeholder {
    color: #1f2328;
}

.check-out-form .themeBtn {
    /* border: 0; */
    /* background: #ce1115; */
    /* font-size: 21px; */
    /* padding: 1rem 2em; */
    /* margin-top: 1rem; */
    margin-left: 1rem;
    margin-top: 1.5rem;
}
.acount-log .shiping-heading {
    margin: 0;
    color: var(--white);
}
.checkbox.checkbox12 {
    margin-left: 1.1rem;
    margin-bottom: 1rem;
}

.biling-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(112 112 112 / 50%);
    padding-bottom: 2.5rem;
    padding-top: 1rem;
}

.biling-card div {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}

.biling-card div .content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.cola-shirt {
    padding-left: 6rem;
}

.biling-card div .content h5 {
    font-size: 28px;
    margin: 0 0 6px;
    font-family: "Aclonica", sans-serif;
    color: var(--white);
}

.biling-card div .content p {
    font-size: 14px;
    color: var(--white);
    margin: 0;
}

.biling-card div span {
    font-size: 12px;
    color: var(--white);
    font-weight: 500;
    display: table;
    margin-left: auto;
    margin-top: 20px;
}

.biling-card div figure {
    width: 166px;
    /* height: 120px; */
    /* background: #fafafa; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}
.biling-card div figure img {
    /* width: 65px; */
}
.discount span {
    background: var(--white);
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem 0.5rem 2rem;
}

.discount span label {
    font-size: 19px;
    color: #1f2328;
    font-weight: 400;
    margin: 0;
}

.discount span .themeBtn {
    margin: 0;
    background: #f84c1e;
    font-size: 1.125rem;
    padding: 0.8rem 1.8em;
}

.discount {
    padding: 1.8rem 0;
    border-bottom: 1px solid rgb(112 112 112 / 50%);
    display: flex;
    align-items: center;
}

.subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(112 112 112 / 50%);
    padding: 1.5rem 0;
}

.subtotal h4 {
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 300;
    width: 60px;
    line-height: 1.7;
    margin: 0;
}

.subtotal div {
    text-align: right;
}

.subtotal div span {
    font-size: 12px;
    color: var(--white);
    font-weight: 500;
}

.subtotal div h6 {
    color: var(--white);
    margin: 6px 0 0;
}
ul.total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0 0;
}

ul.total li {
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 400;
}
/* checkout css end */

.newthemeBtn {
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--primary);
    border: 1px solid var(--black);
    border-radius: 50px;
    width: 30%;
    display: block;
    text-align: center;
    padding: 9px 0;
}

.eventTabs {
    display: none;
}

.eventWrap figure {
    height: 800px;
}

.eventWrap figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
