@import url('https://fonts.googleapis.com/css2?family=Inter&family=Playfair+Display&display=swap');
:root {
    --baseblack: rgba(44, 38, 36, 1);
    --basewhite: rgba(249, 249, 248, 1);
    --textyellow: rgba(255, 213, 0, 1);
    --textorange: #ff6044;
    --blue: rgba(65, 174, 252, 1);
    --yellow: rgba(255, 192, 0, 1);
    --orange: #ff3232;
    --grey: #F0F0F0;
    --secondaryblue: rgba(0, 78, 155, 1);
}

body {
    overflow-x: none !important;
}

p {
    font-family: "Playfair display", serif;
    margin: 0 !important;
    padding: 0;
}

ul {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none !important;
    color: unset;
}

.all_caption_text {
    font-family: 'inter', sans-serif;
}

.nav-link {
    color: var(--baseblack) !important;
    font-family: "inter", sans-serif;
}

.cursor-container {
    width: 100vw;
    overflow: hidden;
}

.cursor {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    border-radius: 50%;
    background: transparent;
    pointer-events: none;
    z-index: 1011;
    border: 1px solid #838383;
    transition: all 0.2s ease-out;
    animation: moveCursor1 .5s infinite alternate;
}

.expand {
    background: transparent;
    animation: moveCursor2 .5s forwards;
    border: 1px solid var(--orange);
}

@keyframes moveCursor1 {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(.8);
    }
}

@keyframes moveCursor2 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(2.5);
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.primary-button {
    color: var(--basewhite) !important;
    background-color: var(--orange);
    display: inline-block;
    padding: 8px 16px !important;
    border-radius: 4px;
    border: unset;
    font-family: "inter", san-serif !important;
    font-size: 16px !important;
    transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
    font-size: 19px;
    cursor: pointer;
    max-height: 40px;
    z-index: 1;
    animation: scaleOut 0.3s ease-in-out forwards;
}

.primary-button:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.primary-button:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: #ffffff;
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.primary-button:hover {
    color: #ffffff;
    border: unset;
    background: #ddd;
    animation: scaleIn 0.2s ease-in-out forwards;
}

.primary-button:hover:before {
    top: -35%;
    background-color: #ff3232;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.primary-button:hover:after {
    top: -45%;
    background-color: #ff3232;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.secondary-button {
    color: var(--basewhite);
    background-color: #0d6efd;
    display: inline-block;
    padding: 8px 16px !important;
    border-radius: 4px;
    border: unset;
    font-family: "inter", san-serif !important;
    font-size: 16px !important;
    transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
    font-size: 19px;
    cursor: pointer;
    max-height: 40px;
    z-index: 1;
    animation: scaleOut 0.3s ease-in-out forwards;
}

.secondary-button:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.secondary-button:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: #ffffff;
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.secondary-button:hover {
    color: #ffffff;
    border: unset;
    background: #ddd;
    animation: scaleIn 0.2s ease-in-out forwards;
}

.secondary-button:hover:before {
    top: -35%;
    background-color: #0d6efd;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.secondary-button:hover:after {
    top: -45%;
    background-color: #0d6efd;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.shop-now-btn {
    color: var(--basewhite) !important;
    background-color: var(--orange) !important;
    padding: 4px 12px !important;
    border-radius: 4px !important;
    border: none;
    font-family: "inter", san-serif;
    font-size: 12px;
    cursor: pointer;
}

.explore-btn {
    display: flex;
    justify-content: center;
    font-family: "playfair display", serif;
    font-weight: 500;
    color: var(--baseblack);
    border: 1px solid var(--baseblack);
    border-radius: 40px;
    width: 100% !important;
    max-width: 500px !important;
}

.dropdown-item:hover {
    color: var(--orange) !important;
}

.card-hover-rotate {
    display: block;

    margin: 0 auto;
    transition: box-shadow 0.1s, transform 0.1s;
}

.card-hover-rotate:hover {
  cursor: pointer;
}


.landing-page {
    display: flex;
    flex-direction: column;
    gap: 40px;
    z-index: 1;
}

.headerNavBar {
    padding: 8px 1rem !important;
    position: fixed !important;
    background-color: var(--basewhite);
    z-index: 50;
    width: 100%;
}

.searchbar-container {
    flex-grow: 1;
    max-width: 600px;
    min-width: 150px;
}

.searchbar {
    width: 100%;
    height: 28px;
}

.searchbar {
    border: 1.5px solid var(--baseblack) !important;
    border-radius: 42px !important;
    padding: 6px;
}

.headerNavBar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--basewhite);
}

.nav-items-container {
    align-items: center;
    position: absolute;
    width: 100%;
    justify-content: center;
}

.nav-items-container .dropdown {
    font-family: "inter", sans-serif;
}

.nav-item {
    color: var(--baseblack) !important;
    background: none !important;
    border: none !important;
}

.cta-items {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-items-container {
    display: flex;
    gap: 40px;
    padding-right: 40px;
    font-size: 16px;
    font-family: "Playfair Display", sans-serif;
    color: var(--baseblack);
    letter-spacing: 0.8px;
    text-decoration: none;
}

.cart,
.Notification {
    font-size: 16px;
    font-family: "Playfair Display", sans-serif;
    color: var(--baseblack);
}

.nav-item-active {
    color: var(--orange) !important;
    font-weight: 600 !important;
}

.hamburger-menu {
    border: none !important;
    color: var(--orange) !important;
}

.tag-button {
    border: 1px solid #ddd;
    border-radius: 999px;
    background-color: #fff;
    padding: 6px 16px;
    font-size: 14px;
    text-wrap: nowrap;
    cursor: pointer;
    transition: background-color 0.2s;
    text-align: center;
}

.tag-button:hover {
    background-color: #f0f0f0;
}

.section-divider {
    border-left: 1px solid #e0e0e0;
    padding-left: 30px;
    margin-left: 30px;
}

.category-title {
    font-weight: 500;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

/*.product-nav-dropdown,*/
#lms-menu {
    align-content: center;
    left: 50% !important;
    top: 32px !important;
}

#game-menu {
    left: 50% !important;
    top: 32px !important;
}

#lms-menu .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    cursor: pointer;
    justify-self:center;
    width: fit-content;
}

#lms-menu .sub-item {
    display: flex;
    align-items: center;
    padding: .2rem;
    justify-content: center;
    font-size: 12px;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

#lms-menu .sub-item:hover,
.dropdown-position:hover {
    background-color: #f0f0f0;
}

#lms-menu .dropdown-position {
    position: relative;
}

#lms-menu .dropdown-menu {
    position: absolute;
    left: 83% !important;
    top: 16px !important;
    background: var(--basewhite);
    border-radius: 0 12px 12px 12px;
    border: 1px solid #ddd;
}

.nav-items-container .custom-dropdown * {
    font-family: "inter", sans-serif;
}

.product-nav-viewall {
    text-decoration: underline !important;
    cursor: pointer;
}
.Products-btn-nav{
    position:relative;
}

#lms-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f8f7f5;
    z-index: 999;
    display: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: fit-content;
    border-radius: 8px;
}

.product-nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f8f7f5;
    z-index: 999;
    display: none;
    
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: fit-content;
    border-radius: 8px;
}

.game-nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f8f7f5;
    z-index: 999;
    display: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: fit-content;
    border-radius: 8px;
}

.View-more {
    gap: 6.63px;
    background: var(--baseblack) !important;
    color: var(--basewhite);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 1;
    align-self: stretch;
    flex-grow: 1;
    border-radius: 16px;
    overflow: hidden;
}

.FooterSection {
    z-index: 3;
}

.newsletter {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 34px;
    align-items: center;
    background-color: var(--orange);
    position: relative;
}

.newsletter-title {
    font-family: "playfair", serif;
    color: var(--basewhite);
    font-size: 32px;
}

.Subscribe-type-area {
    position: relative;
    border-radius: 12px;
}

.Subscribe-button {
    position: absolute;
    top: 5px;
    right: 10px;
    background-color: var(--blue) !important;
    color: var(--basewhite) !important;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    padding: 2px 4px;
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: rgba(2gg, 255, 255, .8);
    color: var(--baseblack);
    backdrop-filter: blur(10px);
    text-align: center;
    border-radius: 8px;
    position: fixed;
    z-index: 1;
    right: 10px;
    top: 80px;
    max-width: 270px;
    border: 1px solid #ddd;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

#newsletter_message {
    font-family: "inter", sans-serif !important;
    font-size: 16px;
    padding-top: 5px;
}

@-webkit-keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 70px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 70px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 70px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        top: 70px;
        opacity: 1;
    }

    to {
        top: 0;
        opacity: 0;
    }
}

.search-box {
    position: relative;
    height: 39px !important;
}

.search-wrapper {
    width: 60%;
    min-width: 250px;
}

.newsleterCaption {
    color: var(--basewhite);
    text-align: center;
    max-width: 700px;
    padding: 0px 20px;
}

.footer {
    display: flex;
    flex-direction: column;
    padding: 32px 80px 64px 80px;
    gap: 56px;
    background-color: var(--baseblack);
}

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

.address-details>* {
    display: flex;
    color: var(--basewhite);
    gap: 14px;
}

.company-details,
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, .1);
    border-radius: 16px;
    text-align: center;
    align-items: center;
}

.footer-title-text {
    font-family: "Playfair Display-SemiBold", serif;
    font-weight: 500;
    font-size: 24px;
    color: var(--basewhite);
}

.footer-text {
    color: var(--basewhite);
    max-width: 235px;
    font-family: "inter", sans-serif;
    font-size: 16px;
}

.tilte-text {
    border-bottom: 2px solid var(--orange);
    width: fit-content;
}

.detail-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-media-icons {
    color: var(--basewhite);
}

.footer-2 {
    padding-bottom: 72px;
    padding-top: 32px;
    border-bottom: 1px solid var(--basewhite);
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.footer-2 .map-wrapper {
    border-radius: 16px !important;
    overflow: hidden;
}

.P-t,
.footer-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    font-family: "Playfair Display", serif;
    font-size: 16px;
    color: var(--basewhite);
}

.footer-3 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

a {
    text-decoration: none !important;
    color: var(--baseblack);
}

.SM-icons-holder {
    position: fixed;
    z-index: 49;
    display: inline-flex;
    flex-direction: column;
    gap: 20px;
    width: 55px;
    right: 5px;
    top:25%;
    /* height: 100vh; */
    justify-content: center;
    align-items: center;
    /*align-self: anchor-center;*/
}

.know-more-icon {
    background: var(--baseblack);
    padding: 0 10px;
    text-align: center;
    text-decoration: none;
    color: var(--basewhite);
    border-radius: 5px;
    font-size: 25px;
}

.chat-header {
    background: rgba(17, 36, 22, 0.7);
    backdrop-filter: blur(10px);
    color: var(--basewhite);
    padding: 10px 0;
    cursor: pointer;
    min-width: 300px;
}

.whatsapp-butn {
    border: none;
    background: var(--secondaryblue);
    color: var(--basewhite);
    padding: 10px;
    border-radius: 8px;
}

.message {
    max-width: 200px;
    padding: 5px;
    border-radius: 16px 16px 16px 0;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.6);
}

.chat-body {
    padding: 20px;
    gap: 30px;
    display: none;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.show-chat-body {
    display: flex;
    gap: 30px;
    height: 250px;
    justify-content: space-between;
}

.chat-holder {
    position: fixed;
    bottom: 0px;
    right: 5px;
    border-radius: 16px 16px 0px 0;
    z-index: 50;
    overflow: hidden;
}

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

.secondary-carousel {
    position: relative;
    justify-self: center;
    width: 370px;
}

.sec-carousel-img {
    position: absolute;
    width: 420px;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.sec-carousel-img.active {
    opacity: 1;
}

* {
    margin: 0;
}





@media screen and (max-width: 1500px) {
    .footer-text {
        font-size: 12px;
    }

    .footer-title-text {
        white-space: nowrap;
        font-size: 24px;
    }

    .map-wrapper {
        width: 300px;
    }

    .footer {
        padding-left: 40px;
        padding-right: 40px;
    }

    .company-details,
    .contact-details {
        padding: 24px;
        background: rgba(255, 255, 255, .1);
        border-radius: 16px;
        text-align: center;
        align-items: center;
    }

    .footer-2 .detail-list {
        align-items: center;
    }

    .footer-text {
        font-size: 16px;
        max-width: 400px;
    }
}



@media only screen and (max-width: 1360px) {
    .footer-2 {
        display: flex;
        padding: 0 auto;
    }

    .P-t,
    .footer-3 {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        font-family: "Playfair Display", serif;
        font-size: 15px;
        color: var(--basewhite);
    }
}

@media only screen and (max-width: 1024px) {
    .navbar-collapse {
        height: fit-content !important;
        padding-top:44px;
    }
}

@media only screen and (max-width: 991px) {
    .cursor {
        display: none;
    }

    .search-bar {
        display: none !important;
    }

    .nav-items-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        padding: 0 0 40px 0;
        border-bottom: 1px solid var(--baseblack);
        width: 100%;
        position: relative;
    }

    .cta-items {
        padding: 40px 0 0 0;
        flex-direction: column;
        align-items: center;
    }
    
    .headerNavBar #navbarSupportedContent{
        height:100vh !important;
    }
}



@media only screen and (max-width: 768px) {
    #lms-menu .dropdown-menu {
        top: 12px !important;
        left: 80% !important;
    }
    

    /*#lms-menu {*/
    /*    left: -50% !important;*/
    /*}*/
    
    .tag-button{
        font-size:10px;
        padding: 4px 12px;
    }
    .dropdown-title{
        font-size:12px;
    }
    .product-nav-dropdown.min-width{
        min-width:300px !important;
    }
}

form.master-inputs {
    width: 100%;
    display: flex;
    align-items: flex-end;
    padding: 32px;
    border: 1px solid #ddd;
    border-radius: 16px;
    flex-wrap: wrap;
    gap: 0;
}

a.Fefdylogo.nav-link.smoothScroll {
    width: 40px;
}

a.Fefdylogo.nav-link.smoothScroll img {
    width: 100%;
}

@keyframes mouseIn {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(.95)
    }
}

@keyframes mouseOut {
    from {
        transform: scale(.95)
    }

    to {
        transform: scale(1)
    }
}

@keyframes scaleIn {

    from {

        transform: scale(1);

    }



    to {

        transform: scale(1.05);

    }

}



@keyframes scaleOut {

    from {

        transform: scale(1.05);

    }



    to {

        transform: scale(1);

    }

}