﻿:root {
    --color: #df4662fc;
    --color2: #161d27;
    --color2-dark: #0f131a;
}



.sb-header a,
.sb-header button {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: none;
    outline: none;
    background: none;
}

.sb-header img,
.sb-header video {
    display: block;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

.sb-header img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.sb-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 100;
    margin: 0 auto;
    box-shadow: 0px 5px 8px 0px rgba(50, 50, 50, 0.33) !important;
    /*z-index: 9999 !important;*/
    /*background-color: #fff;
            border-bottom: 1px solid #EEE;*/
}

/*.darkmode .header {
            background-color: var(--color2);
            border-bottom: 1px solid transparent;
        }*/

.sb-navbar {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    /*height: 65px;*/
    margin: 0 auto;
}

    .sb-navbar .navbar__left {
        display: flex;
        align-items: center;
        flex: 0 0 8%;
    }

@media (max-width: 766px) {
    .sb-navbar .navbar__left {
        flex: 0 0 auto;
    }
}

.sb-navbar .navbar__center {
    display: flex;
}

@media (max-width: 766px) {
    .sb-navbar .navbar__center {
        flex: 0 0 100%;
        order: 3;
        align-items: center;
    }
}

.sb-navbar .navbar__right {
    display: flex;
    flex: 0 0 17%;
    align-items: center;
    justify-content: flex-end;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
}

@media (max-width: 766px) {
    .sb-navbar .navbar__right {
        flex: 0 0 auto;
        align-items: center;
    }
}

.brand {
    display: flex;
    align-items: center;
    order: 1;
    padding-top: 2px;
}

.brand {
    width: 56px;
    height: 56px;
    background-color: #f14766;
    display: block;
    line-height: 56px;
    text-align: center;
    background: linear-gradient(0deg, rgba(225, 50, 91, 1) 0%, rgb(236 64 98) 50%, rgba(249, 81, 106, 1) 100%) !important;
}

    .brand .fa-home {
        font-size: 24px;
        color: #fff;
    }

    .brand svg {
        width: 60px;
        height: 60px;
    }

@media (max-width: 766px) {
    .menu {
        position: fixed;
        top: 0;
        left: -1px;
        width: 350px;
        max-width: 85%;
        height: 100%;
        z-index: 100;
        overflow: hidden;
        background-color: #fff;
        transform: translate(-100%);
        transition: all 0.4s ease-in-out;
    }

        .menu.is-active {
            transform: translate(0%);
        }

    .darkmode .menu {
        background-color: var(--color2);
    }
}

.menu .menu__header {
    display: none;
    border-bottom: 1px solid #DDD;
    transition: 0.25s;
}

.menu .menu__inner {
    margin: 0px
}

@media (max-width: 766px) {
    .menu .menu__header {
        position: relative;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 4rem;
        z-index: 110;
        visibility: hidden;
        background: transparent;
    }

        .menu .menu__header.is-active {
            visibility: visible;
            background-color: #fff;
        }

            .menu .menu__header.is-active > .menu__arrow {
                display: flex;
            }

    .darkmode .menu .menu__header.is-active {
        background-color: var(--color2);
    }
}

@media (max-width: 766px) {
    .menu .menu__header .menu__arrow {
        display: none;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        width: 3rem;
    }

        .menu .menu__header .menu__arrow:hover i {
            color: var(--color);
        }

        .menu .menu__header .menu__arrow > i {
            font-size: 1.5rem;
            color: #000;
            transition: all 0.25s ease;
        }

    .darkmode .menu .menu__header .menu__arrow > i {
        color: #fff;
    }
}

@media (max-width: 766px) {
    .menu .menu__header .menu__title {
        cursor: pointer;
        font-weight: 500;
        text-transform: capitalize;
        color: #000;
        transition: all 0.25s ease;
    }

        .menu .menu__header .menu__title:hover {
            color: var(--color);
        }

    .darkmode .menu .menu__header .menu__title {
        color: #fff;
    }
}

@media (max-width: 766px) {
    .menu .menu__inner {
        height: 100%;
        margin-top: -3rem;
        overflow-y: auto;
        overflow-x: hidden;
    }
}

.menu .menu__inner .menu__item {
    position: static;
    display: inline-block;
    /*padding-right: 20px;*/
    /*padding: 21px 20px 20px 0;*/
}

    .menu .menu__inner .menu__item:last-child {
        padding-right: 0;
    }

    .menu .menu__inner .menu__item:hover > .menu__link {
        color: rgba(255,255,255,.85);
        background-color: #2b2d3f;
    }

.darkmode .menu .menu__inner .menu__item:hover > .menu__link {
    color: var(--color);
    font-weight: 600;
}

@media (max-width: 766px) {
    .menu .menu__inner .menu__item {
        display: block;
        padding: 0;
    }
}

@media (min-width: 767px) {
    .menu .menu__inner .menu__item:hover > .menu__link i {
        transform: rotate(-90deg);
    }
}

@media (min-width: 767px) {
    .menu .menu__inner .menu__item.menu__dropdown:hover > .submenu {
        opacity: 1;
        visibility: visible;
        top: 95%;
    }
}

.menu .menu__inner .menu__item .menu__link {
    display: block;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    text-transform: capitalize;
    transition: all 0.25s ease;
    text-transform: uppercase;
    font-size: 16px;
    font-family: "Roboto Condensed", sans-serif;
    /*padding: 21px 26px 20px 20px;*/
    padding: 3px 26px 0px 20px;
    line-height: 56px;
}

@media (max-width: 766px) {
    .menu .menu__inner .menu__item .menu__link {
        justify-content: space-between;
        /*padding: 20px;*/
    }
}

.menu .menu__inner .menu__item .menu__link > i {
    margin-left: 5px;
    font-size: 1.35rem;
    transform: rotate(90deg);
    transition: 0.35s;
}

@media (max-width: 766px) {
    .menu .menu__inner .menu__item .menu__link > i {
        margin-left: 10px;
        transform: rotate(0deg);
    }
}

.darkmode .menu .menu__inner .menu__item .menu__link {
    color: #fff;
}

.submenu {
    position: absolute;
    z-index: 100;
    top: 110%;
    left: 50%;
    width: 100%;
    height: auto;
    padding: 0px;
    border-radius: 0.25rem;
    border-top: 2px solid var(--color);
    background-color: #2B2D3F;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
    transform: translateX(-50%);
}

.darkmode .submenu {
    border-top: 2px solid var(--color);
    background-color: var(--color2);
}

@media (max-width: 766px) {
    .submenu {
        position: absolute;
        display: none;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        min-width: auto;
        margin: 0;
        padding: 100px 15px 0 15px;
        border-radius: 0;
        border-top: 0;
        box-shadow: none;
        opacity: 1;
        overflow-y: auto;
        visibility: visible;
        transform: translateX(0%);
    }

        .submenu.is-active {
            display: block;
        }
}

@media (min-width: 767px) {
    .submenu {
        -webkit-animation: none !important;
        animation: none !important;
    }
}

@media (min-width: 767px) {
    .submenu.megamenu__normal {
        left: 65%;
        max-width: 250px;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
}

@media (min-width: 767px) {
    .submenu.megamenu__text, .submenu.megamenu__image {
        display: flex;
        flex-wrap: wrap;
        /*max-width: 95%;*/
        height: auto;
        margin: 0 auto;
    }
}

@media (min-width: 975px) {
    .submenu.megamenu__text, .submenu.megamenu__image {
        /*max-width: 992px;*/
    }
}

.submenu.megamenu__image .submenu__inner a {
    display: flex;
    flex-flow: column;
    align-items: center;
}

@media (max-width: 766px) {
    .submenu.megamenu__image .submenu__inner a {
        flex-flow: row;
        align-items: center;
        padding-bottom: 20px;
    }
}

.submenu.megamenu__image .submenu__inner a img {
    display: block;
    width: 100%;
    height: 150px;
    margin-bottom: 15px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 766px) {
    .submenu.megamenu__image .submenu__inner a img {
        width: 30%;
        height: 80px;
        margin-bottom: 0;
        margin-right: 15px;
    }
}

.submenu .submenu__inner {
    width: 25%;
    padding: 0 15px;
}

@media (max-width: 766px) {
    .submenu .submenu__inner {
        width: 100%;
        padding: 0;
    }
}

.submenu .submenu__inner .submenu__title {
    font-size: 16px;
    font-weight: 500;
    color: var(--color);
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.darkmode .submenu .submenu__inner .submenu__title {
    color: var(--color);
}

@media (max-width: 766px) {
    .submenu .submenu__list {
        margin-bottom: 20px;
    }
}

.submenu .submenu__list li {
    display: block;
    line-height: 1;
    margin: 0 auto;
}

    .submenu .submenu__list li a {
        display: inline-block;
        padding: 10px 0;
        line-height: 1.4;
        text-transform: capitalize;
        color: #000;
        transition: all 0.25s ease-in-out;
    }

        .submenu .submenu__list li a:hover {
            color: var(--color);
        }

@media (max-width: 766px) {
    .submenu .submenu__list li a {
        display: block;
    }
}

.darkmode .submenu .submenu__list li a {
    color: #fff;
}

    .darkmode .submenu .submenu__list li a:hover {
        color: var(--color);
    }

.switch {
    position: relative;
    display: block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-right: 10px;
}

    .switch .switch__light,
    .switch .switch__dark {
        position: absolute;
        top: 50%;
        left: 50%;
        transform-origin: center;
        transform: translate(-50%, -50%);
        transition: all 0.3s ease-in;
    }

    .switch .switch__light {
        font-size: 20px;
        visibility: visible;
        color: #000;
    }

.darkmode .switch .switch__light {
    font-size: 0;
    visibility: hidden;
}

.switch .switch__dark {
    font-size: 0;
    visibility: hidden;
    color: #fff;
}

.darkmode .switch .switch__dark {
    font-size: 20px;
    visibility: visible;
}

.overlay {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all 0.45s ease-in-out;
    pointer-events: none;
}

@media (max-width: 766px) {
    .overlay {
        cursor: url("https://i.imgur.com/cPh9Zm5.png"), zoom-out;
        pointer-events: visible;
    }

        .overlay.is-active {
            opacity: 1;
            visibility: visible;
        }
}

.burger {
    position: relative;
    display: block;
    cursor: pointer;
    width: 25px;
    height: 15px;
    margin-right: 15px;
    opacity: 0;
    visibility: hidden;
    background: transparent;
}

@media (max-width: 766px) {
    .burger {
        opacity: 1;
        visibility: visible;
    }
}

.burger .burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    opacity: 1;
    border-radius: 15px;
    background: #000;
}

.darkmode .burger .burger-line {
    background: #fff;
}

.burger .burger-line:nth-child(1) {
    top: 0px;
}

.burger .burger-line:nth-child(2) {
    top: 8px;
    width: 70%;
}

.burger .burger-line:nth-child(3) {
    top: 16px;
}

/*.container {
            max-width: 75rem;
            height: auto;
            margin-inline: auto;
            padding-inline: 1.5rem;
        }*/

.content {
    padding-top: 100px;
    display: flex;
    justify-content: center;
}

    .content .container-wrapper {
        padding: 45px 15px;
    }

    .content h1 {
        text-align: center;
        margin-bottom: 30px;
    }

    .content ul {
        display: flex;
        flex-flow: column;
        align-items: center;
    }

        .content ul li {
            padding: 10px 0;
            line-height: 1.4;
            text-align: center;
        }

@-webkit-keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

@-webkit-keyframes slideRight {
    0% {
        opacity: 1;
        transform: translateX(0%);
    }

    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

@keyframes slideRight {
    0% {
        opacity: 1;
        transform: translateX(0%);
    }

    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

.nav-hindi-btn-1 {
    position: absolute;
    right: 0;
}

.nav-hindi-btn {
    width: 56px;
    height: 56px;
    background-color: #f14766;
    display: block;
    line-height: 56px;
    text-align: center;
    background: #E1325B;
    background: linear-gradient(0deg, rgba(225, 50, 91, 1) 0%, rgb(236 64 98) 50%, rgba(249, 81, 106, 1) 100%);
}

.menu__item a.hindi_english_1 {
    height: 56px;
    line-height: 56px;
    text-align: center;
    background: #E1325B;
    padding: 0px;
    background-image: url(https://santabanta.com/content/images/2015/sprite_2015c.png);
    background-repeat: no-repeat;
    background-position: 0px -4827px;
    /*position: absolute;
            padding: 0px !important;
            top: -34px;*/
}

@media (min-width: 767px) {
    .menu__item a.hindi_english_1 {
        width: 56px;
        height: 56px;
        line-height: 56px;
        text-align: center;
        background: #E1325B;
        background: linear-gradient(0deg, rgba(225, 50, 91, 1) 0%, rgb(236 64 98) 50%, rgba(249, 81, 106, 1) 100%);
        padding: 0px;
        background-image: url(https://santabanta.com/content/images/2015/sprite_2015c.png);
        background-repeat: no-repeat;
        background-position: 0px -4827px;
        position: absolute;
        padding: 0px !important;
        top: -34px;
    }    
}

.sb__menu__link {
    
}

@media (max-width: 766px)
{
    .sb__menu__link {
        pointer-events: none;
    }
}
