/*----- General Styling Start -----*/

@import url('../fonts/stylesheet.css');

:root {
    --primaryColor: #D44A1C;
    --secondaryColor: #06B4DC;
}

body {
    font-family: 'Archivo';
    font-weight: 400;
    padding: 0 !important;
    color: #666;
}

.primaryColor {
    color: var(--primaryColor) !important;
}

.secondaryColor {
    color: var(--secondaryColor) !important;
}

.primaryBg {
    background: var(--primaryColor) !important;
}

.secondaryBg {
    background: var(--secondaryColor) !important;
}

.green {
    color: #00E10F;
}

.red {
    color: #ff0000;
}

.gray {
    color: #333;
}

.greenBg {
    background: #00E10F;
}

.redBg {
    background: #ff0000;
}

.lightBg {
    background: #f5f5f5;
}

.borderPrimary {
    border: 2px solid var(--primaryColor) !important;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #e0e0e0;
    border-radius: 0px;
}

::-webkit-scrollbar-thumb {
    background: var(--primaryColor);
    border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primaryColor);
}

button, a {
    font-size: 14px;
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Gilroy';
    color: #000;
}

p {
    font-size: 15px;
}

section {
    position: relative;
}

.textCard {
    font-size: 14px;
    border: 1px solid #c5c5c5;
    padding: 6rem 1rem;
    transition: 0.3s linear;
    height: 100%;
    background: #fff;
    position: relative;
    z-index: 11;
}

.textCard1 {
    font-size: 14px;
    border: 1px solid #c5c5c5;
    padding: 12rem 1rem;
    transition: 0.3s linear;
    height: 100%;
    background: #fff;
    position: relative;
    z-index: 11;
}

.textCard:hover {
    transform: scale(1.1);
}

.notButton {
    background: none;
    border: none;
}

.sectionTitle {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
}

.secondaryTitle {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
}

.detailTitle {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.strokeText {
    -webkit-text-stroke: 1px #fff;
    -webkit-text-fill-color: #fff0;
}

.oneLine {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.twoLines {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.threeLines {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.fourLines {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.smallText {
    font-size: 14px;
}

.pageTitleWrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pageTitle {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
    margin: 0;
}

.backLink {
    font-size: 18px;
    color: var(--primaryColor);
    transition: 0.3s linear;
    border: none;
    background: #ededed;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s linear;
}

.backLink:hover {
    color: #fff;
    background: var(--primaryColor);
}

.pageTitleInner .sectionTitle {
    margin: 0;
}

.mainCard {
    border: 4px solid #f5f5f5;
    padding: 1rem;
    position: relative;
    /* height: 100%; */
    z-index: 1;
}

.mainCard::before {
    content: '';
    position: absolute;
    border: 4px solid #BBF2FF;
    border-bottom: 0;
    width: calc(100% + 8px);
    height: 40%;
    left: -4px;
    top: -4px;
    transition: 0.3s linear;
    z-index: -1;
}

.mainCard:hover::before {
    border-color: var(--secondaryColor);
    height: 60%;

}

.basicCard {
    border: 4px solid #f5f5f5;
    padding: 1rem;
    position: relative;
    height: 100%;
    z-index: 1;
}

.basicCard2 {
    border: 4px solid #BBF2FF;
    padding: 1rem;
    position: relative;
    height: 100%;
    z-index: 1;
}

.customList li::marker {
    color: var(--primaryColor);
    font-size: 20px;
}

.coverImage img {
    object-fit: cover !important;
}

.containImage img {
    object-fit: contain !important;
}


/*----- General Styling End -----*/



/*----- Button Styling Start -----*/

.mainButton {
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    border: none;
    border-radius: 0;
    padding: 0.8rem 1.5rem;
    position: relative;
    transition: 0.3s linear;
    cursor: pointer;
    overflow: hidden;
}

.mainButton span, .mainButtonSmall span {
    transition: 0.3s linear;
}

.mainButton i {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    width: 1.2rem;
    height: 1.2rem;
    line-height: 1.2rem;
    transition: 0.3s linear;
}

.mainButton:before {
    content: "\f433";
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    position: absolute;
    top: -1rem;
    left: -1rem;
    font-size: 1rem;
    color: #fff;
    transition: 0.3s linear;
}

.mainButton:hover::before {
    animation: baseball linear 0.6s forwards;
}

.mainButtonSmall {
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    border: none;
    border-radius: 0;
    padding: 0.6rem 1rem;
    position: relative;
    transition: 0.3s linear;
    cursor: pointer;
    overflow: hidden;
}

.mainButtonSmall i {
    font-size: 0.5rem;
    margin-left: 0.4rem;
    width: 1rem;
    height: 1rem;
    line-height: 1rem;
    transition: 0.3s linear;
}

.primaryButton {
    background: var(--primaryColor);
    color: #fff !important;
}

.primaryButton i {
    background: var(--secondaryColor);
}

.secondaryButton {
    background: var(--secondaryColor);
    color: #fff !important;
}

.secondaryButton i {
    background: var(--primaryColor);
}

.lightButton {
    background: #efefef;
    color: #666 !important;
}

.roundButton {
    font-size: 16px;
    background: var(--primaryColor);
    color: #fff;
    border: none;
    border-radius: 99px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-left: auto;
    transition: 0.3s linear;
}

.roundButton:hover {
    background: var(--secondaryColor);
}

.actionButton {
    font-size: 14px;
    line-height: 1;
    background: var(--primaryColor);
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
}

.imageFrame {
    border: 4px solid #FFDED4;
}

.imageFrame2 {
    border: 4px solid #BBF2FF;
}

.imageFrame img, .imageFrame2 img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
}

.mapList * {
    color: var(--secondaryColor);
}


/*----- Button Styling End -----*/



/*----- Form Styling Start -----*/

.mainInputBox {
    margin-bottom: 1rem;
}

.mainLabel {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Gilroy';
    text-transform: uppercase;
    color: #333;
    margin-bottom: 4px;
}

.mainLabel2 {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Gilroy';
    text-transform: capitalize;
    color: #333;
    margin-bottom: 4px;
}

.mainText {
    font-size: 14px;
    color: #666;
}

.mainInput {
    background-color: #fff !important;
    font-weight: 400;
    padding: 10px 12px;
    font-size: 14px;
    color: #333;
    border: 2px solid #ededed;
    resize: none;
    position: relative;
    width: 100%;
    /* appearance: none; */
    margin-bottom: 6px;
}

.mainInput::placeholder {
    color: #c5c5c5;
}

.mainInput:focus,
select.mainInput:focus {
    outline: 0 !important
}

select.mainInput {
    outline: none;
    appearance: auto;
    text-transform: capitalize;
}

.checkBox label {
    font-size: 14px;
    font-weight: 600;
}

.passwordWrapper {
    position: relative;
}

.passDisplay {
    position: absolute;
    top: calc(50% - 2px);
    transform: translateY(-50%);
    right: 20px;
    background: none;
    border: none;
    line-height: 1;
}

.passDisplay i {
    cursor: pointer;
    color: #666;
}

/*----- Form Styling End -----*/



/*----- Tabs Styling Start -----*/

.customTabs .nav-item {
    flex-grow: 1;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.customTabs .nav-item button {
    width: 100%;
}

.customTabs .nav-link {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Gilroy';
    background: #efefef !important;
    text-transform: uppercase;
    color: #666;
    transition: 0.3s linear;
    padding: 0.8rem 1rem;
    margin-right: 1rem;
    border-radius: 0;
}

.customTabs .nav-link.active {
    color: #fff;
    background: var(--primaryColor) !important;
}

/*----- Tabs Styling End -----*/



/*----- Modal Styling Start -----*/

.modal-content {
    border: 4px solid #dfdfdf;
    border-radius: 0;
    padding: 1rem;
    position: relative;
}

.modalHeader {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 0.5rem;
}

/* 
.modalBody {
    text-align: center;
} */

.modalImage {
    margin-bottom: 1rem;
}

.modalImage img {
    width: 80px;
}

.modalHeading {
    font-size: 32px;
    font-weight: 500;
    margin: 0;
}

.modalBody {
    padding: 1rem 0;
}

.modalText {
    font-size: 15px;
}

.modalForm {
    padding: 0rem 1rem;
    margin-top: 2rem;
}

.modalFooter {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modalClose {
    font-size: 14px;
    background: #fff;
    color: var(--primaryColor);
    border: 2px solid var(--primaryColor);
    border-radius: 99px;
    width: 26px;
    aspect-ratio: 1/1;
    text-align: center;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s linear;
}

.imageModal {
    width: 100%;
}

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

/*----- Modal Styling End -----*/



/*----- Accordion Styling Start -----*/

.customAccordion .accordion-item {
    border: 4px solid #f5f5f5;
    margin-bottom: 1rem;
}

.customAccordion .accordion-button, .customAccordion .accordion-button:focus {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primaryColor);
    background: #fff;
    border-bottom: 2px solid #f5f5f5;
    box-shadow: none;
    gap: 1rem;
    align-items: baseline;
}

.customAccordion .accordion-button::after {
    content: '\f067';
    font-family: 'Font Awesome 5 Free';
    font-size: 16px;
    font-weight: 700;
    background: none;
    border: 2px solid var(--primaryColor);
    border-radius: 99px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-button:not(.collapsed)::after {
    content: '\f068';
    font-family: 'Font Awesome 5 Free';
    background: none;
}

.summaryAccordion .accordion-item {
    border: 4px solid #BBF2FF !important;
}

.summaryAccordion p {
    font-size: 14px;
}

.accordianModalAction {
    font-size: 13px;
    font-weight: 400;
    text-transform: capitalize;
    text-decoration: underline;
    color: var(--secondaryColor) !important;
    margin: 0 0.5rem;
}



/*----- Accordion Styling End -----*/


/*----- Header Styling Start -----*/

.headerWrapper {
    background: #12092F;
    padding: 0.5rem 0;
    width: 100%;
    transition: 0.3s linear;
    z-index: 99;
    height: 6rem;
}

.homeHeader {
    background: #fff0;
    box-shadow: inset 0 3rem 2rem 0.5rem #12092f;
    position: fixed;
}

.fixedHeader {
    position: fixed;
}

.userHeader .authBox {
    display: none;
}

.guestHeader .userBox {
    /* display: none; */
}

.guestHeader .userLink {
    display: none;
}

.navbar-brand img {
    width: 120px;
}

.navSide {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-grow: 1;
}

.navSide .nav-item {
    padding-left: 1rem;
}

.navSide .nav-link {
    font-size: 13px;
    text-transform: uppercase;
    display: block;
    /* width: 100%; */
    width: auto;
    color: #fff !important;
    text-align: left;
    /* padding-left: 1rem !important; */
    padding: 0 !important;
}

.navButton {
    display: block;
    background: none;
    border: none;
}

.navSide .dropdown-menu {
    border: 2px solid #fff;
    border-radius: 5px;
    background: #f2f2f2;
    padding: 0;
    box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
}

.navSide .navDropdown,
.navDropend {
    position: relative;
}

.navDropdown button {
    margin-left: 0.5rem;
}

.navSide .navDropdown:hover>.navDropdownContent,
.navSide .navDropend:hover>.navDropendContent {
    display: inline-block;
}

.navSide .navDropdownContent li {
    list-style: none;
}

.navSide .navDropContent {
    border: 4px solid #f5f5f5;
    border-radius: 0;
    background: #fff;
    padding: 0;
    display: none;
    position: absolute;
}

.navSide .navDropContent {
    top: 100%;
    left: 0;
}

.navSide .navDropend .navDropContent {
    top: 0;
    right: auto;
    left: 100%;
}

.navSide .navDropend>.dropdown-toggle::after {
    transform: rotate(0deg);
    transition: 0.3s linear;
}

.navSide .navDropend:hover>.dropdown-toggle::after {
    transform: rotate(-90deg);
}

.navSide .dropdown-item {
    font-size: 14px;
    text-transform: capitalize;
    padding: 0.4rem 1.4rem;
    transition: 0.3s linear;
    position: relative;
    border-bottom: 1px solid #efefef;
}

.navSide .navDropContent button {
    margin: 0;
}

.navSide .navDropContent .nav-item {
    padding: 0;
}

.offcanvas.show .nav-item {
    margin-bottom: 1rem;
}

.navSide .dropdown-item:focus,
.navSide .dropdown-item:hover,
.navSide .dropdown-item:active {
    color: inherit;
    background-color: #fff0;
}

.navSide .navDropdownContent .dropdown-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0.5rem;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 99px;
    background: var(--secondaryColor);
    transition: 0.3s linear;
}

.navSide .navDropdownContent .dropdown-item:hover::before {
    background: var(--primaryColor);
}

.navEnd {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.authButton {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem !important;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s linear;
}

.authButton:hover {
    color: #fff;
}

.userBox {
    display: flex;
    align-items: center;
}

.userButton {
    color: #fff;
}

.ecommerceNav button, .ecommerceNav a {
    font-size: 18px;
    color: #fff;
    position: relative;
    padding: 0px 4px;
}

.cartCount {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 10px;
    background: var(--secondaryColor);
    width: 15px;
    aspect-ratio: 1/1;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar {
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 99px;
}

.avatar img {
    border-radius: 99px !important;
    width: 30px;
    height: 30px;
    object-fit: cover;
    object-position: center;
}

.notificationButton {
    font-size: 18px;
    color: #fff;
}

.offcanvasButton {
    background: var(--primaryColor);
    color: #fff !important;
    margin: 0rem 0.4rem;
}

.offcanvasButton:focus {
    box-shadow: none;
}

.navSide .offcanvas.show {
    background: var(--primaryColor);
    color: #fff;
}

.navSide .offCanvasClose {
    background-image: none !important;
    background: #fff;
    opacity: 1;
    border-radius: 99px;
    color: var(--primaryColor) !important;
    line-height: 1rem;
    transition: 0.3s linear;
}

.navSide .offCanvasClose:hover {
    transform: rotate(360deg);
}

.navSide .offcanvas.show .navDropContent {
    background: #fff0;
    position: relative;
    border: none;
    left: 0.5rem;
    margin-bottom: 0.5rem;
}

.navSide .offcanvas.show .navDropdownContent .dropdown-item {
    font-size: 14px;
    color: #fff;
    border-bottom: none !important;
    text-indent: 1rem;
    padding: 0.2rem 1rem;
}

/* .navSide .offcanvas.show .navDropendContent .dropdown-item {
    text-indent: 2rem;
} */


.searchBox {
    position: absolute;
    width: 100%;
    min-width: 360px;
    right: 0;
    top: 100%;
    border: 0.5rem solid var(--primaryColor);
    z-index: 2;
}

.searchBoxInput {
    margin: 0;
    padding-right: 2rem;
}

.ecommerceNav .searchButton {
    color: #000;
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
    z-index: 1;
}

/*----- Header Styling End -----*/



/*----- Footer Styling Start -----*/

footer * {
    color: #fff;
    transition: 0.3s linear;
}

.footerCta {
    background: var(--primaryColor);
    padding: 2rem 2rem;
    max-width: 991px;
    width: 100%;
    margin: 1rem auto -3rem;
    position: relative;
    z-index: 1;
}

.mainFooter {
    background: #1A1A1A;
    padding: 6rem 0rem 2rem;
}

.footerWidgetTitle {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Archivo';
    margin-bottom: 0.8rem;
}

.footerWidget ul {
    list-style: none;
    padding: 0;
}

.footerWidget li {
    font-size: 14px;
    margin-bottom: 0.5rem;
}

.footerWidget a, .footerWidget p {
    color: #ccc;
}

.footerWidget a:hover {
    color: var(--primaryColor);
}

.copyright {
    background: #000;
    text-align: center;
    padding: 1rem 0rem;
}

.copyright p {
    font-size: 14px;
    line-height: 1;
    margin: 0;
}


/*----- Footer Styling End -----*/



/*----- Page Banner Styling Start -----*/

.pageBanner {
    min-height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 1rem;
    color: #fff;
    background: url(../images/pageBanner.png) no-repeat center center;
    background-size: cover;
    /* background-attachment: fixed; */
}

.pageBannerTitle {
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
    color: #fff;
}

/*----- Page Banner Styling End -----*/



/*----- Banner Styling Start -----*/

.banner {
    background: url(./../images/banner.png) no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.bannerHeading {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
    font-style: italic;
    color: #fff;
}

.bannerHeading span {
    display: block;
}

.bannerBgText {
    display: inline-block !important;
    position: relative;
    z-index: 1;
}

.bannerBgText::before {
    position: absolute;
    content: '';
    background: var(--primaryColor);
    width: 100%;
    height: 0.7em;
    left: 0;
    bottom: 0;
    z-index: -1;
}

/*----- Banner Styling End -----*/



/*----- Services Styling Start -----*/

.serviceCard {
    color: #fff;
}

.serviceCard1 {
    background: url(./../images/card1.png) no-repeat center center;
    background-size: cover;
}

.serviceCard2 {
    background: url(./../images/card2.png) no-repeat center center;
    background-size: cover;
}

.serviceCard3 {
    background: url(./../images/card3.png) no-repeat center center;
    background-size: cover;
}

/*----- Services Styling End -----*/



/*----- Best Seller Styling Start -----*/

.bestSellers .owl-stage {
    padding-left: 0 !important;
}

.bestSeller {
    border: 1px solid #c5c5c5;
    position: relative;
    overflow: hidden;
}

.bestSeller:hover .bestSellerBack {
    bottom: 0;
}

.bestSeller img {
    height: 120px;
    object-fit: cover;
    object-position: center;
}

.bestSellerBack {
    background-color: var(--primaryColor);
    color: #fff;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -100%;
    padding: 1rem;
    transition: 0.3s linear;
}

/*----- Best Seller Styling End -----*/



/*----- Training Styling Start -----*/

.training {
    background: url(./../images/trainingBg.png) no-repeat;
    background-position: top;
    background-size: 100% 70%;
}

.trainingCard1 {
    background: url(./../images/trainingCard.png) no-repeat top center;
    background-size: cover;
    display: flex;
}

/*----- Training Styling End -----*/



/*----- About Styling Start -----*/

.about {
    margin-top: -11rem;
    padding-top: 12rem;
    padding-bottom: 1.5rem;
    background: url(./../images/aboutBg.png) no-repeat;
    background-size: 100% 90%;
    background-position: center center;
    background-attachment: fixed;
}

/*----- About Styling End -----*/



/*----- Trophy Gifts Styling Start -----*/

.suggestedProduct {
    border: 4px solid #f5f5f5;
    position: relative;
    height: 100%;
    z-index: 1;
}

.suggestedProduct img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9;
    object-fit: contain;
    object-position: center;
}

.suggestedProductContent {
    padding: 1rem;
    text-align: center;
}

.suggestedProductTitle {
    font-size: 16px;
    font-weight: 700;
    color: #333333;

}



/*----- Trophy Gifts Styling End -----*/



/*----- Bat Type Styling Start -----*/

.batType {
    background: url(./../images/batTypeBg.png) no-repeat;
    background-position: top;
    background-size: cover;
    background-attachment: fixed;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*----- Bat Type Styling End -----*/


/*----- Student Review Styling Start -----*/

.studentsReview {
    background: url(./../images/studentsReviewBg.png) no-repeat;
    background-position: top;
    background-size: cover;
}

.studentsReviewDetail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.studentsReviewImage img {
    max-width: 100%;
    width: 70px !important;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    border-radius: 99px;
}

.studentsReviewName * {
    color: #000;
    margin-bottom: 0;
}

.reviewStar i {
    font-size: 14px;
    color: var(--primaryColor);
}

.studentsReviewCard {
    max-width: 575px;
    margin: 0 auto;
    margin-bottom: 80px;
    position: relative;
}

.studentCardInner {
    box-shadow: 0px 3px 16px rgb(0 0 0 / 16%);
    background: #fff;
    padding: 1rem 2rem;
    transition: 0.3s linear;
    border-radius: 1rem;
    position: relative;
    z-index: 11;

}

.studentsReviewCard::before {
    content: '';
    position: absolute;
    bottom: -120px;
    left: 0px;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background: var(--primaryColor);
    border-radius: 1rem;
    opacity: 0.8;
    z-index: 2;
}

.studentsReviewCard::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -40px;
    transform: translateY(-50%);
    width: 80px;
    height: 120px;
    background: var(--secondaryColor);
    border-radius: 1rem;
    opacity: 0.5;
    z-index: 1;
}

.studentsReview-slide {
    position: relative;
}

.studentsReview-slide .owl-dots {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    right: 0;
}

.postReviewStar {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.postReviewStar input {
    display: none;
}

/*----- Student Review Styling End -----*/


/*----- Product Styling Start -----*/

.productCardImage {
    position: relative;
    z-index: 11;
}

.productCardImage img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: contain;
    object-position: center;
}


.productCardDetails {
    margin-top: 1rem;
}

.productCardTitle {
    font-size: 26px;
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
}

.productCardPrice {
    font-size: 20px;
    font-weight: 600;
    color: var(--primaryColor);
}

.productCardDescription {
    margin: 1rem 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.productCardDetails select.mainInput {
    width: auto;
}

.singleProductCard {
    border: 4px solid #f5f5f5;
    position: relative;
    height: 100%;
    padding: 1rem;
}

.singleProductCard::before {
    content: '';
    position: absolute;
    border-left: 4px solid var(--primaryColor);
    width: 4px;
    height: 50%;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s linear;
}

.singleProductCard::after {
    content: '';
    position: absolute;
    border-right: 4px solid var(--primaryColor);
    width: 4px;
    height: 50%;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s linear;
}

.singleProductCardImages {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.singleProductCardImages .singleProductCardImage {
    flex-grow: 1;
    margin: 0;
    text-align: center;
    padding: 0 2rem;
}

.singleProductCardImage:not(:last-child) {
    border-right: 2px solid #f5f5f5;
}

.singleProductCardImage img {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 4/1;
    object-fit: contain;
    object-position: center;
}


/*----- Product Styling End -----*/



/*----- Suggested Product Styling Start -----*/

.trophyGifts .owl-stage {
    padding-left: 0 !important;
}

.trophyGiftCard {
    box-shadow: 0px 0px 4px #c5c5c5;
    padding: 0.5rem;
    transition: 0.3s linear;
}

.trophyGiftCard:hover {
    box-shadow: 0px 0px 4px #666;
    transform: scale(0.98);
}

.trophyGiftCard img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
}

.trophyGiftContent {
    padding: 1rem;
}

.trophyGiftContent .secondaryTitle {
    min-height: 2.5em;
}

/*----- Suggested Product Styling End -----*/



/*-----Secondary Card Styling Start -----*/

.secondaryCard {
    border: none;
    padding: 0rem;
    height: 100%;
    box-shadow: 0px 3px 6px rgb(0 0 0 / 8%);
}

.secondaryCardImage {
    margin: 0;
}

.secondaryCardImage img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
}

.secondaryCardDetails {
    padding: 1.5rem 0.8rem;
}

.secondaryCardTitle {
    font-family: 'Archivo';
    font-size: 18px;
    font-weight: 500;
}

.secondaryCard .detailTitle {
    min-height: 2.5em;
}


/*-----Secondary Card Styling End -----*/


/*----- Product Review Styling Start -----*/

.reviewUserImage {
    margin-bottom: 1rem;
}

.reviewUserImage img {
    width: 80px;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    border: 4px solid #bbf2ff;
    border-radius: 99px;
}

.reviewUserName {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

/*----- Product Review Styling End -----*/


.buyInfoWrapper h3 {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.buyInfoWrapper h4 {
    font-size: 16px;
    font-weight: 600;
}



/*----- Custom Table Styling Start -----*/

.customTable {
    position: relative;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.customTable table {
    width: 100%;
    /* padding: 0 1rem; */
    border-collapse: separate;
    border-spacing: 0 0.5rem;
    white-space: nowrap;
}

.customTable thead tr {
    background: #BBF2FF;
    text-transform: uppercase;
}

.customTable tbody tr {
    background: #f5f5f5;
}

.customTable th, .customTable td {
    padding: 0.5rem;
}

/*----- Custom Table Styling End -----*/




/*----- Profile Styling Start -----*/

.userIimageFrame {
    display: table;
    border-radius: 99px;
    position: relative;
    margin: 0 auto;
}

.userIimageFrame img {
    height: 140px;
    object-fit: cover;
    object-position: center;
    border-radius: 99px;
}

.userIimageFrame .uploadCamera {
    font-size: 14px;
    position: absolute;
    bottom: 0px;
    right: 5px;
    background: #fff;
    color: #000;
    border-radius: 99px;
    box-shadow: 2px 2px 5px 1px #c1c1c1;
    text-align: center;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mainImage img {
    width: 280px;
    max-width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
}

/*----- Profile Styling End -----*/


/*----- Notification Styling Start -----*/

.notificationList {
    list-style: none;
    padding: 0;
    max-height: 18rem;
    margin: 0;
    overflow: auto;
}

.notificationBody {
    width: 320px;
    display: flex;
    gap: 1rem;
    white-space: normal;
    padding: 0.5rem 0rem;
    border-bottom: 1px solid #ccc;
}

.notificatonIcon {
    font-size: 14px;
    color: #999;
}

.notificationText {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.notificationInfo * {
    font-size: 12px;
    font-weight: 600;
    color: #999;
}

.allNotification {
    display: block;
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
    background: #fff;
    color: var(--primaryColor);
    text-align: center;
    border-top: 1px solid var(--primaryColor);
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    padding: 0.5rem;
    transition: 0.3s linear;
}

.allNotification:hover {
    background: var(--primaryColor);
    color: #fff;
}

.notificationBox {
    margin: 1rem;
    padding: 1.5rem 1rem;
    border-radius: 1rem;
}

.notiIcon {
    font-size: 1.8rem;
    color: var(--primaryColor);
}

.notiText {
    font-size: 16px;
    color: #666;
}

.notificationBelowInfo small {
    font-size: 14px;
    font-weight: 700;
    color: #0A1857;
}

.viewNoti {
    font-size: 16px;
    color: var(--primaryColor);
}

/*----- Notification Styling End -----*/



/*----- Cart Table Start -----*/


.cartTable table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.5rem;

}

.cartTable thead tr {
    background: #BBF2FF;
    text-transform: uppercase;
}

.cartTable th, .cartTable td {
    font-size: 14px;
    padding: 0.2rem 0.5rem;
}

.cartTable tbody tr {
    background: #f5f5f5;
}

.cartTable .qty {
    width: 100%;
    max-width: 40px;
}

.order-details p {
    margin: 0;
}

/*----- Cart Table End -----*/




/*----- Checkout Table Start -----*/

.checkoutTable {
    overflow-x: auto;
}

.checkoutTable table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
    white-space: nowrap;
}

.checkoutTable thead tr {
    background: #BBF2FF;
    text-transform: uppercase;
}

.checkoutTable th, .checkoutTable td {
    font-size: 14px;
    padding: 0.2rem 0.5rem;
}

.checkoutTable>table>tbody>tr {
    box-shadow: 0px 0.5px 0px 0.5px #666;
}

.finalOrderTable {
    font-size: 14px;
    text-align: end;

}

.finalOrderTable table {
    margin-left: auto;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
    white-space: nowrap;
}

.finalOrderTable table td {
    padding: 0rem 0.5rem;
}

/*----- Checkout Table End -----*/






/*----- Components Styling Start -----*/

.owl-carousel .item {
    padding: 1rem 0.5rem !important;
}

.owl-carousel .owl-nav button {
    background: var(--primaryColor) !important;
    border-radius: 99px !important;
    width: 30px;
    height: 30px;
    color: #fff !important;
    transition: 0.3s linear;
}

.owl-carousel .owl-nav button:hover {
    background: var(--secondaryColor) !important;
}

.owl-dot span {
    background: #fff !important;
    outline: 1px solid #c5c5c5 !important;
    outline-offset: 2px;
    width: 0.8rem !important;
    height: 0.8rem !important;
}

.owl-dot.active span {
    background: var(--primaryColor) !important;
}

.searchBar {
    position: relative;
    background: #fff;
    border: 2px solid var(--primaryColor);
    border-radius: 99px;
    padding: 0.4rem 0rem;
}

.searchBar input {
    background-color: #fff0;
    font-weight: 400;
    padding: 12px 180px 12px 15px;
    font-size: 14px;
    color: #000;
    border: none;
    resize: none;
    position: relative;
    width: 100%;
    appearance: none;
}

.searchBar input::placeholder {
    color: #000;
}

.searchBar input:focus {
    outline: 0 !important
}

.searchBar button {
    font-size: 14px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: 0.2rem;
}

.searchBar button i {
    margin-left: 0.5rem;
}

.paginationWrap {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: end;
}

.paginationWrap .pagination {
    box-shadow: 0px 2px 6px #e0e0e0;
    border-radius: 0.5rem;
    margin: 0;
}

.paginationWrap .pagination .page-item .page-link {
    color: #666;
    border: 1px solid #e0e0e0;
    border-radius: 0 !important;
    padding: 0.5rem 1rem;
}

.paginationWrap .pagination .page-item:first-child .page-link {
    color: var(--primaryColor);
    border-top-left-radius: 0.5rem !important;
    border-bottom-left-radius: 0.5rem !important;
}

.paginationWrap .pagination .page-item:last-child .page-link {
    color: var(--primaryColor);
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
}

.paginationWrap .pagination .page-item.active .page-link, .paginationWrap .pagination .page-item .page-link:hover {
    color: var(--primaryColor);
    color: #fff;
    background: var(--primaryColor);
}

/*----- Components Styling End -----*/


.contactMap iframe {
    width: 100%;
    aspect-ratio: 16/6;
}

/*----- Responsive Styling Start -----*/

@media(max-width: 1400px) {
    .sectionTitle {
        font-size: 30px;
    }

    .bannerHeading {
        font-size: 46px;
    }
}

@media(max-width: 1200px) {
    .navbar-brand img {
        width: 120px;
    }

    .studentsReviewCard::before {
        display: none;
    }

    .studentsReviewCard::after {
        display: none;
    }

    .studentsReviewCard {
        margin-bottom: 0;
    }

}

@media(max-width: 991px) {

    .pageTitle {
        font-size: 28px;
    }

    .backLink {
        font-size: 16px;
        width: 25px;
        height: 25px;
    }

    .pageBannerTitle {
        font-size: 28px;
    }

    .studentsReviewCard {
        max-width: 100%;
    }

    .productCardTitle {
        font-size: 22px;
    }

    .productCardPrice {
        font-size: 18px;
    }

    .singleProductCardImages {
        flex-direction: column;
    }

    .singleProductCardImage:not(:last-child) {
        border-right: none;
        border-bottom: 2px solid #f5f5f5;
    }
}

@media(max-width: 767px) {
    body {
        font-size: 14px;
    }

    .pageBanner {
        min-height: 360px;
    }

    .mainButton {
        font-size: 14px;
        padding: 12px 25px;
    }

    .mainLabel {
        font-size: 15px;
    }

    .sectionTitle {
        font-size: 28px;
    }

    .bannerHeading {
        font-size: 36px;
    }


    .contactDetails a {
        font-size: 28px;
    }

    .searchBar input {
        padding: 10px 140px 10px 15px;
    }

    .productCardTitle {
        font-size: 18px;
    }

    .productCardPrice {
        font-size: 16px;
    }
}

@media(max-width: 575px) {
    .navbar-brand img {
        width: 90px;
    }

    .authButton {
        font-size: 14px;
        padding: 0.4rem 0.8rem !important;
    }

    .bannerHeading {
        font-size: 32px;
    }

    .pageBanner {
        min-height: 280px;
        padding-bottom: 20px;
    }

    .mainButton {
        font-size: 13px;
        padding: 12px 20px;
    }

    .sectionTitle {
        font-size: 26px;
    }


    .artist h4 {
        font-size: 18px;
    }
}

@media(max-width: 360px) {
    .sectionTitle {
        font-size: 24px;
    }

}


/*----- Responsive Styling End -----*/


@keyframes baseball {
    0% {
        top: -1rem;
        left: -1rem;
        transform: scale(1) rotate(0deg);
    }

    20% {
        top: 50%;
        left: 20%;
        transform: scale(1.2) rotate(60deg);
    }

    40% {
        top: 100%;
        left: 40%;
        transform: scale(1.4) rotate(120deg);
    }

    60% {
        top: 50%;
        left: 60%;
        transform: scale(1.6) rotate(180deg);
    }

    80% {
        top: 0%;
        left: 80%;
        transform: scale(1.8) rotate(240deg);
    }

    100% {
        top: 0%;
        left: 98%;
        transform: scale(2) rotate(360deg);
    }

}









/*----- Colors Start -----*/

.colorsList {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.colorBox {
    text-align: center;
}

.colorBox input {
    display: none;
}

.colorBox label {
    border: 1px solid #fff0;
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: relative;
}

.colorBox .labelName {
    font-size: 13px;
    margin: 0;
    font-weight: 500;
}

.colorBox input:checked+label {
    border-color: #000;
}

.colorBox input:checked+label::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #00FF12;
}

.greyBg {
    background: #3a3b40;
}

.burgundyBg {
    background: #800020;
}

.camoGreenBg {
    background: #526525;
}

.carolinaBlueBg {
    background: #7BAFD4;
}

.orangeBg {
    background: #FFA500;
}

.blackBg {
    background: #000;
}

.redBg {
    background: #ff0000;
}

.tealBlueBg {
    background: #367588;
}

.violetBg {
    background: #8F00FF;
}

.electricOrangeBg {
    background: #ff3503;
}

/*----- Colors End -----*/



/*----- Flags Start -----*/

.flagsList {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.flagBox {
    text-align: center;
}

.flagBox input {
    display: none;
}

.flagBox label {
    border: 1px solid #fff0;
    cursor: pointer;
    position: relative;
}

.flagBox img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    object-position: center;
}

.flagBox input:checked+label {
    border-color: #000;
}

.flagBox input:checked+label::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #00FF12;
}

/*----- Flags End -----*/


/*----- Size Attribute Start -----*/

.productAttributes {
    margin: 1rem 0;
}

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

.sizeBox input {
    display: none;
}

.sizeBox label {
    border: none;
    width: 35px;
    height: 35px;
    background-color: #F5F5F5;
    color: #000;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.3s linear;
}


.sizeBox input:checked+label, .sizeBox label:hover {
    background: var(--primaryColor);
    color: #fff;
}

.star-rating {
    display: inline-block;
}
.star-rating input {
    display: none;
}
.star-rating label {
    float: right;
    color: #bbb;
    cursor: pointer;
    margin-right: 2px;
}
/* .star-rating label:before {
    content: '\2605';
    font-size: 28px;
} */
.star-rating input:checked~label {
    color: #D44A1C;
}

/*----- Size Attribute End -----*/