* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

body {

    font-family: 'Taviraj';
    color: #0c0c0c;
    overflow-x: hidden;
    font-size: 16px;

}

p {
    font-size: 16px;
    font-family: 'Taviraj';
    line-height: 24px;
    color: #0c0c0c;
    font-weight: 500;
}

a {
    font-size: 16px;
    text-decoration: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    font-family: 'Taviraj';
    line-height: 24px;
    color: #0c0c0c;
    font-weight: 500;
}

a:hover {
    text-decoration: none;
    outline: none;
}

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

li {
    line-height: 24px;
    color: #0c0c0c;
    font-weight: 500;
}

button:focus,
input:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
    transition: all 500ms ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Vidaloka';
    margin: 0px;
    color:#0a0909;
}

p {
    margin: 0px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-30 {
    padding-bottom: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.justify-center {
    justify-content: center;
}

.mt-20 {
    margin-top: 20px;
}

.align-item-center {
    align-items: center;
}

.justify-content-space-between {
    justify-content: space-between;
}

.flex-end {
    justify-content: flex-end;
}

.site-width {
    max-width: 1250px;
    margin: 0px auto;
}

@media screen and (max-width:1518px) and (min-width:1368px) {
    .site-width {
        max-width: 1372px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:1708px) and (min-width:1519px) {
    .site-width {
        max-width: 1552px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:1920px) and (min-width:1709px) {
    .site-width {
        max-width: 1642px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:2500px) and (min-width:1921px) {
    .site-width {
        max-width: 1842px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:1280px) and (min-width:1024px) {
    .site-width {
        padding: 0px 40px;
        max-width: 1200px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:1024px) and (min-width:888px) {
    .site-width {
        padding: 0px 40px;
    }
}

@media screen and (max-width:888px) and (min-width:769px) {
    .site-width {
        padding: 0px 40px;
    }
}

@media screen and (max-width:768px) {
    .site-width {
        padding: 0px 20px;
    }
}



/* Btn */
button.button1cls.dark {
    --background: #2F3545;
    --shadow: 0 2px 8px -1px rgba(21, 25, 36, 0.32);
    --shadow-hover: 0 4px 20px -2px rgba(21, 25, 36, 0.5);
}

button.button1cls.white {
    --background: #fff;
    --text: #275efe;
    --shadow: 0 2px 8px -1px rgba(18, 22, 33, 0.04);
    --shadow-hover: 0 4px 20px -2px rgba(18, 22, 33, 0.12);
}

button.button1cls.fast {
    --duration: .32s;
}

button.button1cls {
    --background: #275efe;
    --text: #fff;
    --font-size: 16px;
    --duration: .44s;
    --move-hover: -4px;
    --shadow: 0 2px 8px -1px rgba(39, 94, 254, 0.32);
    --shadow-hover: 0 4px 20px -2px rgba(39, 94, 254, 0.5);
    --font-shadow: var(--font-size);
    padding: 16px 32px;
    font-family: "Roboto";
    font-weight: 500;
    line-height: var(--font-size);
    border-radius: 24px;
    display: block;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    text-decoration: none;
    font-size: var(--font-size);
    letter-spacing: 0.5px;
    background: var(--background);
    color: var(--text);
    box-shadow: var(--shadow);
    transform: translateY(var(--y)) translateZ(0);
    transition: transform var(--duration) ease, box-shadow var(--duration) ease;
}

button.button1cls div {
    display: flex;
    overflow: hidden;
    text-shadow: 0 var(--font-shadow) 0 var(--text);
}

button.button1cls div span {
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-style: normal;
    transition: transform var(--duration) ease;
    transform: translateY(var(--m)) translateZ(0);
}

button.button1cls:hover {
    --y: var(--move-hover);
    --shadow: var(--shadow-hover);
}

button.button1cls:hover span {
    --m: calc(var(--font-size) * -1);
}

button.button1cls.reverse {
    --font-shadow: calc(var(--font-size) * -1);
}

button.button1cls.reverse:hover span {
    --m: calc(var(--font-size));
}


/* For Anchor */
a.button1cls.dark {
    --background: #2F3545;
    --shadow: 0 2px 8px -1px rgba(21, 25, 36, 0.32);
    --shadow-hover: 0 4px 20px -2px rgba(21, 25, 36, 0.5);
}

a.button1cls.white {
    --background: #fff;
    --text: #275efe;
    --shadow: 0 2px 8px -1px rgba(18, 22, 33, 0.04);
    --shadow-hover: 0 4px 20px -2px rgba(18, 22, 33, 0.12);
}

a.button1cls.fast {
    --duration: .32s;
}

a.button1cls {
    --background: #275efe;
    --text: #fff;
    --font-size: 16px;
    --duration: .44s;
    --move-hover: -4px;
    --shadow: 0 2px 8px -1px rgba(39, 94, 254, 0.32);
    --shadow-hover: 0 4px 20px -2px rgba(39, 94, 254, 0.5);
    --font-shadow: var(--font-size);
    padding: 16px 32px;
    line-height: var(--font-size);
    border-radius: 24px;
    display: block;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    text-decoration: none;
    font-size: var(--font-size);
    letter-spacing: 0.5px;
    background: var(--background);
    color: var(--text);
    box-shadow: var(--shadow);
    transform: translateY(var(--y)) translateZ(0);
    transition: transform var(--duration) ease, box-shadow var(--duration) ease;
}

a.button1cls div {
    display: flex;
    overflow: hidden;
    text-shadow: 0 var(--font-shadow) 0 var(--text);
}

a.button1cls div span {
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-style: normal;
    transition: transform var(--duration) ease;
    transform: translateY(var(--m)) translateZ(0);
    margin: -1px 5px 2px 0px;
}
a.button1cls div span:last-child{
    margin-right: 0px;
}


a.button1cls:hover {
    --y: var(--move-hover);
    --shadow: var(--shadow-hover);
}

a.button1cls:hover span {
    --m: calc(var(--font-size) * -1);
}

a.button1cls.reverse {
    --font-shadow: calc(var(--font-size) * -1);
}

a.button1cls.reverse:hover span {
    --m: calc(var(--font-size));
}


/* Btn */

/* CSS Start */

.topHeader {
    background: linear-gradient(100grad, #e20b0f, #e10a0e);
    /* display: none; */
    position: relative;
    margin-top: -26px;
}

.head-top-bar .top-head-welcome .textth {
    color: #fff;
}

.topHeadMessage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1px 0px;
}

.topHeadMessage ul {
    display: flex;
    color: #ddd;
}

.topHeadMessage ul li h6 {
    font-size: 13px;
    color: #fff;
}

.topHeadMessage ul li {
    color: #fff;
    font-size: 13px;
}

.topHeadMessage ul li a {
    color: #fff;
    font-size: 13px;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    text-align: center;
    display: inline-block;
    line-height: 21px;
    margin: 0px 0px 0px 4px;
}

.topHeadMessage ul li a:hover i.fa-facebook-f {
    color: #1877F2;
}

.topHeadMessage ul li a:hover i.fa-instagram {
    background: -webkit-linear-gradient(#fccc63, #fbad50, #cd486b, #4c68d7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.topHeadMessage ul li a:hover i.fa-linkedin-in {
    color: #0077b5;
}

.topHeadMessage ul li a:hover i.fa-x-twitter {
    color: #000;
}

.topHeadMessage ul li:first-child {
    margin-right: 5px;
}

.topHeadMessage ul li a:hover {
    background: #fff;
}
.marqueeWrapper{
    width: 55%;
    margin: 0px auto;
}
.marqueeWrapper a{
    color: #ffff;
    font-size: 11px;
    position: relative;
    top: 2px;
}
.hasMegaMenu.nothasMegaMenu {
    position: relative;
}

.hasMegaMenu.nothasMegaMenu .dropDownMenu {
    max-width: 300px;
    width: 100%;
    min-width: 300px;
}

.hasMegaMenu.nothasMegaMenu .dropDownMenuRow {
    flex-direction: column;
}

.hasMegaMenu.nothasMegaMenu .dropDownCol {
    width: 100%;
}

.hasMegaMenu.nothasMegaMenu .dropDownCard {
    margin: 0px;
    padding: 5px 4px;
    border: none;
    border-bottom: 1px dashed #11111124;
}

.hasMegaMenu.nothasMegaMenu .dropDownName {
    width: 100%;
}


.topHeadMessage ul.marqueeWrapper li{
    display: block;
    width: 100%;
}
.afterhdr-marquee {
    /* background: #0061b008; */
    position: relative;
    z-index: 3;
}
.afterhdr-marquee marquee{

}
.afterhdr-marquee h6 {
    font-size: 13px;
    margin: 0px 0px 0px 0px;
    padding: 0px;
    color: #ffff;
}
.topHeadContact {
    margin-right: 20px;
}
.topHeadContact ol{
    display: flex;
    margin-bottom: 0px;
    padding: 0px;
}
.topHeadContact ol li{
    margin-right: 10px;
}
.topHeadContact ol li a{
    color: #ffff;
    font-size: 16px;
}
.topHeadContact ol li i{
    color: #ddd;
    margin-right: 5px;
    font-size: 13px;
}
.headerMiddle {
    padding: 10px 0px;
    position: relative;
}
.headerMiddle::after{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 4px;
    background: #462673;
    visibility: hidden;
}

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

.searchbar {
    position: relative;
}
.getLocation {
    position: relative;
}
.getLocation i {
    position: absolute;
    top: 0px;
    bottom: 0px;
    height: fit-content;
    margin: auto;
    left: 12px;
    color: #4c4c4c;
}
.getLocation .locationSearch {
    min-width: 240px;
    height: 40px;
    border: 1px solid #ddddddcf;
    border-radius: 30px;
    padding: 8px 16px 10px 31px;
    overflow: hidden;
}
.searchbar .seachInput {
    min-width: 400px;
    height: 40px;
    border: 1px solid #ddddddcf;
    border-radius: 30px;
    padding: 8px 16px;
    overflow: hidden;
}
.searchbar .seachInput::placeholder{
    color: #a0a0a0;
}
.searchbar .seachInput:focus{
    border-color: #381b5a78;
}
.searchbar .searchButton {
    position: absolute;
    right: 0%;
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 30px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    height: fit-content;
    font-size: 15px;
    color: #1d1d1d;
    background: linear-gradient(90deg, #f1db9f, #fbeabb);
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    height: 40px;
    padding: unset;
    width: 50px;
}

.searchbarWrapper .suggestions {
    border: 1px solid #d7d7d78f;
    padding: 5px;
    display: none;
    position: absolute;
    z-index: 3;
    background: #fff;
    width: 100%;
    border-radius: 30px;
    padding: 13px 18px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    max-height: 400px;
    overflow-y: auto;
}

.searchbarWrapper .suggestions::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    max-height: 30%;
    height: 30%;
}

.searchbarWrapper .suggestions::-webkit-scrollbar {
    width: 4px;
    background-color: #F5F5F5;
    display: block;

}

.searchbarWrapper .suggestions::-webkit-scrollbar-thumb {
    background-color: #000000;
    border: 2px solid #555555;
    border-radius: 10px;
}

.searchbarWrapper::-webkit-scrollbar-track-piece:end {
    background: transparent;
    margin-bottom: 10px;
}

.searchbarWrapper::-webkit-scrollbar-track-piece:start {
    background: transparent;
    margin-top: 10px;
}

.searchbarWrapper{
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
}

.searchbarWrapper .suggestions div {
    border-bottom: 1px solid #461d6538;
    padding: 5px 10px;
    cursor: pointer;
}
.searchbarWrapper .suggestions div:hover{
    background: #fff24214;
}
.searchbarWrapper .suggestions div:first-child {
    padding-top: 0px;
}

.searchbarWrapper .suggestions div:last-child {
    border-color: transparent;
    padding-bottom: 0px;
}

.mealtype .form-select {
    border-radius: 30px;
    font-size: 16px;
    padding: 7px 33px 8px 16px;
}
.mealtype .form-select:focus {
    box-shadow: none;
    border-color: #f1db9f;
}

.button1 a,
.button1 button {
    padding: 13px 22px;
    background: linear-gradient(0deg, #2a085a, #462673);
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
}

.middleheadBtn {
    display: flex;
}
.midMobBtn {
    display: flex;
    align-items: center;
    padding-right: 5px;
}
.midMobBtn li {
    position: relative;
    margin-right: 5px;
    top: -1px;
    padding-right: 10px;
}
.midMobBtn li::after{
    content: '';
    position: absolute;
    right: 0px;
    width: 1px;
    height: 130%;
    background: #ddd;
    margin-top: auto;
    margin-bottom: auto;
    top: 0px;
    bottom: 0px;
}

.midMobBtn li i{
    font-size: 16px;
    color: #4b2472;
    /* margin-right: 5px; */
    position: relative;
    top: 1px;
}
.midMobBtn li a{
    font-weight: 600;
}

.headerMain {
    position: relative;
    background: #fffaee;
}
.usersLog {
    display: flex;
    align-items: center;
    gap: 10px;
}
.defaultBtn.centered {
    height: 52px;
}

.usersLog li a {
    font-size: 16px;
    background: #ddd;
    width: 40px;
    display: inline-block;
    height: 40px;
    FONT-WEIGHT: 200;
    border-radius: 10px;
    text-align: center;
    line-height: 41px;
}
.usersLog li:nth-child(1) a {
    background: #dd171b;
    color: #fff;
    font-size: 13px;

}
.usersLog li:nth-child(2) a {
    background: #f4dfa6;
}
.usersLog li a.loginBtn {
    width: auto;
    padding: 1px 22px;
    font-weight: 500;
    border-radius: 10px;
}
.usersLog li a.loginBtn i {
    font-size: 13px;
    margin-right: 3px;
    position: relative;
    top: -1px;
}
.headerMain.sticky {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 5;
}

.mainHeaderWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 85px;
}

.logoSection {
    width: 300px;
    position: relative;
    top: 0px;
}

.logoSection img {
    width: 100%;
}

.mainHeaderNav {
    position: relative;
}
.mainHeaderNav ul {
    display: flex;
    align-items: center;
}

.mainHeaderNav ul li {
    margin:0px 0px 0px 10px;
}
.mainHeaderNav ul li.hasMegaMenu {
    position: relative;
}
.mainHeaderNav ul li:first-child{
    margin-left: 0px;
}

.mainHeaderNav ul li a {
    color: #000100;
    padding: 10px 12px;
    position: relative;
    display: inline-block;
    font-weight: 400;
    font-family: 'Vidaloka';
    font-size: 16px;
}
.mainHeaderNav ul li a.active , .mainHeaderNav ul li a:hover{
    background: transparent;
    color: #ea1a20;
    padding: 10px 12px;
}
.mainHeaderNav ul li.hasMegaMenu a{
    padding-right: 22px;
}
.mainHeaderNav ul li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 3px;
    background: #ea1a20;
    bottom: 0px;
    left: 0px;
    transition: 0.4s ease-in-out;
    border-radius: 30px;
}
.headerBtn {
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto;
}

.hasMegaMenu i {
    color: #000000;
    font-size: 13px;
    position: relative;
    left: -18px;
    transition: 0.4s ease-in-out;
}
.mainHeaderNav ul li.hasMegaMenu:hover i {
    color: #eb1c22;
}

.mainHeaderNav ul li a:hover:after,
.mainHeaderNav ul li a.active:after {
    width: 100%;
}

.mainHeaderNav ul li a.contactBtn {
    padding: 10px 20px;
    border-radius: 15px;
    background: linear-gradient(70deg, #a82710, #d54e00);
    color: #fff;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.mainHeaderNav ul li a.contactBtn::after {
    position: absolute;
    content: '';
    width: 0%;
    height: 120%;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    margin: auto;
    background: #111111;
    z-index: 1;
    transition: 0.4s ease-in-out;
}

.mainHeaderNav ul li a.contactBtn:hover:after {
    width: 120%;
}

.mainHeaderNav ul li a.contactBtn span {
    position: relative;
    z-index: 2;
    transition: 0.4s ease-in-out;

}

.mainHeaderNav ul li a.contactBtn:hover span {
    color: #ffffff;
}

.mainHeaderNav ul li.menuCall {
    position: absolute;
    right: 0px;
}
.mainHeaderNav ul li.menuCall a{
    background: #2f075a;
    color: #fff;
    border-radius: 30px;
    padding: 8px 20px;
}
.mainHeaderNav ul li.menuCall a::after{
    visibility: hidden;
}
.mainHeaderNav ul li.menuCall a i{
    margin-right: 6px;
    font-size: 15px;
}
.dropDownMenu {
    position: absolute;
    top: 120%;
    left: 0px;
    right: 0px;
    margin: auto;
    /* max-width: 1200px; */
    height: auto;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s ease-in-out;
    /* background: #f3edf3; */
    background: #ffffff;
    box-shadow: rgb(99 99 99 / 10%) 0px 20px 10px 0px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    overflow: hidden;
    z-index: 5;
    border-radius: 15px;
    border: 1px solid #dddddd90;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    max-height: 328px;
    overflow: hidden;
    overflow-y: auto;
    width: 300px;
}

.dropDownMenu::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    max-height: 30%;
    height: 30%;
}

.dropDownMenu::-webkit-scrollbar {
    width: 4px;
    background-color: #F5F5F5;
    display: block;

}

.dropDownMenu::-webkit-scrollbar-thumb {
    background-color: #000000;
    border: 2px solid #555555;
    border-radius: 10px;
}

.dropDownMenu ::-webkit-scrollbar-track-piece:end {
    background: transparent;
    margin-bottom: 10px;
}

.dropDownMenu ::-webkit-scrollbar-track-piece:start {
    background: transparent;
    margin-top: 10px;
}


.mainHeaderNav ul li.hasMegaMenu:hover .dropDownMenu {
    top: 100%;
    visibility: visible;
    opacity: 1;
}

.subMenuImgDis {
    width: 100%;
    background: linear-gradient(45deg, #a6240a, #ce4800);
    padding: 15px;
    height: 100%;
    border-radius: 15px;

}

.subMenuImgDis img {
    width: 100%;
    border-radius: 15px;
}

.subMenuImgDis h5 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 11px;
    color: #fff;
}

.subMenuImgDis p {
    text-align: left;
    color: #ffebeb;
    line-height: 24px;
    margin-top: 6px;
}

.dropDownMenuRow {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
}
.advanceSearch {
    text-align: center;
    margin-top: 5px;
    position: absolute;
    width: fit-content;
    margin: 3px auto;
    left: 0px;
    right: 0px;
}
.advanceSearch a {
    font-weight: 700;
    position: relative;
    font-size: 13px;
    color: #02991e;
}
.advanceSearch a::after{
    position: absolute;
    content: '';
    width: 84%;
    height: 1px;
    background-color: transparent;
    bottom: -4px;
    left: 0px;
    right: 0px;
    margin: auto;
    margin-right: 0px;

}
.advanceSearch i{
    font-size: 16px;
    margin-right: 5px;
}
.advanceSearchModal .middleheadBtn{
    margin: 0px auto;
}
.advanceSearchModal .modal-content{
    border-radius: 20px;
}
.advanceSearchModal .modal-header .modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #111111;
}
.advanceSearchModal .form-group label {
    margin-bottom: 5px;
}
.advanceSearchModal .form-group input {
    margin-bottom: 15px;
    border-radius: 30px;
    height: 44px;
}
.advanceSearchModal .form-group input:focus{
    box-shadow: none;
    border-color: #00480a;
}
.btnAdvanceSearch{
    text-align: center;
}
.btnAdvanceSearch a{
    display: inline-block;
    padding: 8px 21px;
    background: #fff;
    box-shadow: 0px 4px 5px #dddddd5c;
    border-radius: 30px;
    margin-top: 10px;
    border: 1px solid #ddddddcf;
    font-weight: 500;
    transition: 0.0s ease-in-out;
}
.btnAdvanceSearch a:hover {
    background: linear-gradient(0deg, #2a085a, #462673);
    color: #ffff;
}

.dropDownCol {
    width: 100%;
}
.mainHeaderNav ul li .dropDownCol a{
    padding: 0px;
    width: 100%;
}
.mainHeaderNav ul li .dropDownCol a:hover {
    background: unset;
    color: unset;
    padding: initial;
}
.mainHeaderNav ul li .dropDownCol a:hover:after {
    display: none;
}
.dropDownCard{
    display: flex;
    align-items: center;
    padding: 10px 14px 10px 12px;
    border-radius: 7px;
    border: 1px dashed #f1db9f;
    transition: 0.4s ease-in-out;
    margin: 8px;
}
.dropDownCard:hover{
    background: #fffcf4;
    border-color: #f1db9f;
}
.dropDownImg{
    width: 48px;
    height: fit-content;
    border-radius: 5px;
    margin-right: 5px;
    overflow: hidden;
    border: 2px solid #3f186842;
}
.dropDownImg img{
    width: 100%;
}
.dropDownName{
    width: 80%;
}
.dropDownName h4{
    font-size: 16px;
    font-weight: 500;
    color: #0c0c0c;
    line-height: 22px;
    margin-left: 7px;
}



/* slider start*/
.hero-slider {
    width: 100%;
    height: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 0;
}

@media (max-width: 991px) {
    .hero-slider {
        height: 380px;
    }
}

@media (max-width: 767px) {
    .hero-slider {
        height: 240px;
    }
}

.hero-slider .swiper-slide {
    overflow: hidden;
    color: #fff;
}

.hero-slider .swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-slider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    background: transparent;
    width: 32px;
    height: 47px;
    line-height: 50px;
    margin-top: -30px;
    text-align: center;
    border: 1px solid #fffffe;
    border-radius: 55px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767px) {

    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        display: none;
    }
}

.hero-slider .swiper-button-prev {
    left: 8px;
    transform: translateX(50px);
}

.hero-slider .swiper-button-prev:before {
    font-family: "Font Awesome 5 Free";
    content: "\f060";
    font-size: 15px;
    color: #f4dfa6;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
    line-height: 5px;
    position: relative;
    top: -4px;
}

.hero-slider .swiper-button-next {
    right: 8px;
    transform: translateX(-50px);
}

.hero-slider .swiper-button-next:before {
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    font-size: 15px;
    color: #f4dfa6;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
    position: relative;
    top: -4px;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    text-align: left;
    line-height: 12px;
    font-size: 12px;
    color: #000;
    opacity: 0.3;
    background: #4b2572a6;
    transition: all .2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
    bottom: 30px;
}

@media screen and (min-width: 992px) {

    .hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
    .hero-slider .swiper-pagination-custom,
    .hero-slider .swiper-pagination-fraction {
        /*     display: none; */
    }
}

.swiper-pagination {
    text-align: left;
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 50px;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 767px) {
    .hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
        bottom: 6px;

    }
}

/*--------------------------------------------------------------
      #hero-style
  --------------------------------------------------------------*/
.hero-style {
    height: 582px;
    transition: all .4s ease;
}

.SliderContentsWrapper {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1250px;
    margin: 0px auto;

}

.SliderContentsWrapper::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    bottom: 0px;
    top: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    background-image: url(../img/bg/bg1.png);
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    -webkit-animation: mover 7s infinite alternate;
    animation: mover 7s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
        transform: scale(1.025);
    }

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

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
        transform: scale(1.025);
    }

    100% {
        transform: translateY(0px);
    }
}


.SliderContents {
    position: absolute;
    left: 0%;
    right: 0px;
    top: 0px;
    margin: auto;
    bottom: 0px;
    width:42%;
    height: fit-content;
    z-index: 1;
    margin-left: 0px;
}

/* .SliderContentsWrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: linear-gradient(360deg, #000000bd -100px, transparent);
} */

@media (max-width: 991px) {
    .hero-style {
        height: 480px;
    }
}

@media (max-width: 767px) {
    .hero-style {
        height: 240px;
    }
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btn {
    max-width: 750px;
    margin: 0px auto;
}

.hero-style .slide-title h2 {
    font-size: 46px;
    font-weight: 600;
    color: #2c2c2d;
    margin-bottom: 0px;
    text-transform: capitalize;
    transition: all .4s ease;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-style .slide-title h2 span {
    /* color: #42246c; */
    font-weight: 800;
    background: -webkit-linear-gradient(93deg,#4b2373, #47009d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 1199px) {
    .hero-style .slide-title h2 {
        font-size: 75px;
    }
}

@media (max-width: 991px) {
    .hero-style .slide-title h2 {
        font-size: 50px;
        margin: 0 0 35px;
    }
}

@media (max-width: 767px) {
    .hero-style .slide-title h2 {
        font-size: 35px;
        margin: 0 0 30px;
    }
}

.hero-style .slide-text p {
    font-size: 16px;
    color: #343434;
    margin: 0 0 20px;
    transition: all .4s ease;
    margin-top: 15px;
}

.hero-style .slide-text p span {
    color: #3e2266;
    font-weight: 600;
}

.hero-style .slide-btn a {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(90deg, #f4be6a, #ff1800 143%);
    border-radius: 30px;
    color: #fff;
    position: relative;
    animation: mover1 3s infinite linear;

}

@keyframes mover1 {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(3px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-style .slide-btn a::after {
    position: absolute;
    content: '';
    width: 96%;
    height: 5px;
    bottom: -10px;
    left: 0px;
    background: #2c2c2d;
    right: 0px;
    margin: auto;
    filter: blur(3px);
    border-radius: 100%;
    opacity: 0.3;
    animation: shadowEffector 3s infinite linear;
}

@keyframes shadowEffector {
    0% {
        opacity: 0.3;
        transform: translateY(0px);
    }

    50% {
        opacity: 0.8;
        transform: translateY(-3px);
    }

    100% {
        opacity: 0.3;
        transform: translateY(0px);
    }

}

.hero-style .slide-btn a i {
    transform: rotate(-90deg);
    margin-left: 6px;
}

@media (max-width: 767px) {
    .hero-style .slide-text p {
        font-size: 16px;
        font-size: 1rem;
        font-weight: normal;
        margin: 0 0 30px;
    }
}

.hero-style .slide-btns>a:first-child {
    margin-right: 10px;
}
.sliderElements {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    margin: auto;
}
.sliderDot {
    position: absolute;
    left: 46%;
    top: 10%;
    animation: upanddownmove 6s infinite linear;
}
.sliderCMove1{
    bottom: 16%;
    position: absolute;
    left: 50%;
    animation: movers 5s infinite linear;
}

.sliderCMove2{
    position: absolute;
    right: 8%;
    top: 30%;
    animation: movers 10s infinite linear;
}

.sliderProduct {
    animation: upanddownmove 10s infinite linear;
    position: absolute;
    width: 100%;
    height: 100%;
}
.sliderSurface{
    position: absolute;
    bottom: 12%;
    right: 4%;
    z-index: 1;
}
.sliderProductImg {
    position: absolute;
    bottom: 1%;
    right: 4%;
    z-index: 2;
}
.sliderProductImg.two{
    bottom: 12%;
    right: 4%;
    height: 90%;
}
.sliderFeature span{
    width: 116px;
    display: inline-block;
}
@keyframes movers {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes upanddownmove {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}


.categoreis {

}
.categoryMenuWrapper {
    margin-top: 60px;
}
.categories-swiper-container {
    overflow: hidden;
}
.menuCategoryCard {
    position: relative;
    padding: 20px 0px;
}
/*.menuCategoryImg {*/
/*    width: 140px;*/
/*    height: 140px;*/
/*    margin: auto;*/
/*    text-align: center;*/

/*    position: relative;*/
/*}*/
.menuCategoryImg {
    width: 140px;
    height: 140px;
    margin: auto;
    text-align: center;
    position: relative;
    border-radius: 100%;
    border: 4px solid #f1db9f;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.menuCategoryImg::after {
    position: absolute;
    content: '';
    width: 130%;
    height: 129%;
    background: url(../img/texture/cat-shape.png);
    background-size: 100%;
    left: -21px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    z-index: 1;
    margin: auto;
    background-position: center;
    opacity: 0.2;

}
/*.menuCategoryImg img {*/
/*    width: 100%;*/
/*    border-radius: 100%;*/
/*    border: 4px solid #f1db9f;*/
/*    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;*/
/*    position: relative;*/
/*    z-index: 2;*/
/*      max-height: 140px;*/
/*}*/
.menuCategoryImg img {
    width: 100%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: relative;
    z-index: 2;
    max-height: 140px;
}
.menuCategoryCard .cateTitle  {
    text-align: center;
}
.menuCategoryCard .cateTitle  h4 {
    margin-top: 30px;
    font-weight: 500;
    font-family: 'Taviraj';
    font-size: 20px;
}

.aboutCompany {
    height: 100%;
    width: 34%;
    padding: 0px 23px;
}

.bannerWrapperSection {
    display: flex;
    height: 100%;
    align-items: center;
    /* background: #005ba8; */
}

.hero-slider {
    width: 100%;
}

.bgColor1 {
    background: #fff9e9;
}

.features {
    padding-top: 50px;
}
.featuresWrapper{
    max-width: 100%;
    margin: 0px auto;
    margin-top: 40px;
}
.featuresCard {
    padding: 30px 20px;
    background: linear-gradient(359deg, #fffbf2, #fffdfa, #fffbf2);
    border-radius: 10px;
    border: none;
    /* min-height: 216px; */
    position: relative;
    border: 1px solid #fff2ce;
    transition: 0.4s ease-in-out;
}
.featuresCard:hover {
    transform: translateY(-6px);
}
.featuresCard::after{
    position: absolute;
    content: '';
    width: 80%;
    height: 15px;
    bottom: -23px;
    left: 0px;
    right: 0px;
    margin: auto;
    background: #b6aa885c;
    border-radius: 100%;
    z-index: -1;
    filter: blur(4px);
    visibility: hidden;
    opacity: 0  ;
    transition: 0.5s ease-in-out;
}
.featuresCard:hover::after {
    visibility: visible;
    opacity: 1;
}
.fCardImg {
    margin: 0px auto;
    margin-bottom: 0px;
    position: unset;
    top: -40px;
    left: 0px;
    right: 0px;
    background: transparent;
    width: 100px;
    height: 100px;
    padding: 10px 16px 5px;
    border-radius: 10px;
}
.fCardImg img{
    width: 100%;
    /* filter: hue-rotate(82deg); */
}
.fCardContent{
    text-align: center;
    padding-top: 0px;
    position: relative;
    z-index: 2;
    margin-top: 0px;
}
.fCardContent h4{
    font-size: 20px;
    font-weight: 400;
    color: #d9171c;
    margin-bottom: 10px;
    margin-top: 2px;
}
.fCardContent a{
    font-weight: 700;
    margin-top: 11px;
    display: inline-block;
    border: 1px solid #4d216a24;
    padding: 6px 20px;
    border-radius: 30px;
}
.fCardContent a i{
    font-size: 16px;
}



.featureSellers {
    background: #fffaee;
}
.whats-new-sec {
    background-color: #ffffff;
    margin: 20px 0px;
    border-radius: 12px;
    border: 1px dashed #f1db9f;
    overflow: hidden;
}
.whats-new-sec-img {
    background-color: #fff;
    width: 100%;
    border: 1px solid rgba(221, 221, 221, 0.713);
    text-align: center;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    overflow: hidden;
    position: relative;
    border-bottom-left-radius: 183px;
    border-bottom-right-radius: 183px;
    padding: 24px;
    padding-top: 0px;
    padding-bottom: 29px;
}

.whats-new-sec-img::after{
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0px;
    right: 0px;
    top: 0px;
    background: #fef0cd;
    border-bottom-left-radius: 183px;
    border-bottom-right-radius: 183px;
}
.whats-new-sec-img img{
    width: 100%;
    position: relative;
    z-index: 2;
    border-bottom-left-radius: 183px;
    border-bottom-right-radius: 183px;
    transition: 0.6s ease-in-out;
}
/* .whats-new-sec:hover .whats-new-sec-img  img {
    transform: rotate(92deg);
} */
.whats-new-content {
    padding: 0px 16px;
    padding-top: 15px;
    text-align: center;
    position: relative;
    padding-top: 30px;
    padding-bottom: 20px;
}
.whats-new-sec h4 {
    font-size: 22px;
    line-height: 42px;
    font-weight: 400;
}
.whats-new-sec p {
    line-height: 20px;
    margin-bottom: 15px;
    margin-top: 10px;
    color: #4e4e4e;
    font-weight: normal;
}
.whats-new-sec-wrapper p {
    margin-top: 0px;
    font-weight: 400;
    color: #000;
    font-size: 12px;
    line-height: 18px;
}
.whats-new-sec .defaultBtn a{
    height: 40px;
    padding: 9px 23px;
    position: absolute;
    top: -30px;
    border-radius: 22px;
    left: 0px;
    right: 0px;
    width: fit-content;
    margin: auto;
    z-index: 3;
    font-size: 15px;
}
.whats-new-sec .priceShow {
    color: #111;
    font-weight: 400;
    font-size: 25px;
}

.sectionTitle {
    text-align: center;
    position: relative;
    padding-bottom: 6px;
}

.sectionTitle::after {
    content: '';
    position: absolute;
    width: 100px;
    margin: auto;
    height: 3px;
    background: #eb1723;
    left: 0px;
    right: 0px;
    border-radius: 30px;
    bottom: -10px;
}

.sectionTitle::before {
    content: '';
    position: absolute;
    width: 16px;
    margin: auto;
    height: 16px;
    background: #eb1723;
    left: 0px;
    right: 0px;
    border-radius: 100%;
    bottom: -16px;
    border: 3px solid #f6fafd;
    z-index: 1;
}
.sectionTitle h6 {
    color: #ebc534;
}
.sectionTitle h4 {
    font-size: 36px;
    font-weight: 400;
    color: #000100;
    letter-spacing: 0;
    margin-top: 6px;
    margin-bottom: 11px;
}

.sectionTitle.light h4{
    color: #fff;
}
.sectionTitle.light::before {
    background: #451e6d;
}
.sectionTitle.light::after {
    background: #f7f7f7;
}

.featured-swiper-container{
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}
.featured-swiper-container{
    padding-bottom: 34px;
}
.featured-swiper-container.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 0px;
}
.journelCards {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    padding: 8px;
    /* background: #fff; */
    /* box-shadow: rgb(149 157 165 / 13%) 0px 8px 24px; */
    min-height: 355px;
}

.journalImg {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid #fff;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.journalImg img {
    width: 100%;
    border-radius: 20px;
    transition: 0.4s ease;
}

.journelCards:hover .journalImg img {
    transform: scale(1.2);
}

.journalContent {
    position: relative;
    text-align: center;
    padding: 16px 20px 10px;
}

.journalContent h4 {
    font-size: 18px;
    font-weight: 600;
    color: #343434;
    margin-bottom: 5px;
    margin-top: 10px;
    /* margin: 15px 0px 5px; */
}
.journalContent p{
    font-size: 13px;
    line-height: 20px;
}
.journalContent p span:first-child {
    font-weight: 600;
}

.middleheadBtn.FeatureviewBtn  {
    position: absolute;
    top: -20px;
    right: 0px;
    left: 0px;
    margin: auto;
    width: fit-content;
}
.middleheadBtn.FeatureviewBtn .button1 a{
    padding: 10px 20px;
    letter-spacing: 0px;
}
.bg1 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-image: url(../img/bg/white-patterned-wallpaper.jpg);
    background-color: #ffffffe3;
    background-blend-mode: overlay;
    background-size: contain;
    z-index: -1;
}
.featured-swiper-container{
    padding: 0px 20px;
}
.featured-swiper-container  .swiper-button-next, .featured-swiper-container  .swiper-button-prev{
    background-size: 10px 16px;
    transition: 0.4s ease-in-out;
    width: 40px;
    height: 40px;
    text-align: center;
    background-color: #eed89d;
    border-radius: 8px;

}

.featured-swiper-container:hover .swiper-button-next,.featured-swiper-container:hover .swiper-button-prev {
    visibility: visible;
    opacity: 1;

}
.featured-swiper-container  .swiper-button-next {
    right: 0px;
    background-image: url(../img/icons/right-arrow.png);
}
.featured-swiper-container  .swiper-button-next:hover{
    background-color: #000102;
}
.featured-swiper-container  .swiper-button-prev {
    left: 0px;
    background-image: url(../img/icons/left-arrow.png);
}
.featured-swiper-container  .swiper-button-prev:hover{
    background-color:#000102;
}
.useforDefault {
    width: fit-content;
    margin: 0px auto;
}

.eventSect .homeAboutPara {
    padding-left: 20px;
}
.topFeaturesListings{
    margin-top: 50px;
}
.tiffinBookingCard{
    display: flex;
    align-items: center;
    padding: 20px;
    background: #fafffb;
    box-shadow: 0px 0px 13px #dddddd91;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #dddddd78;
    margin-bottom: 30px;
}
.tbcIco {
    width: 17%;
    border-radius: 15px;
    overflow: hidden;
    margin-right: 33px;
}
.tbcIco img{
    width: 100%;
}
.tbcContent {
    width: 83%;
}
.tbcContent h3{
    font-size: 22px;
    color: #007a49;
    font-weight: 800;
}
.tbcContent h5{
    font-size: 16px;
    color: #343434;
    margin: 1px 0px;
    font-weight: 600;
    margin-bottom: 10px;
}
.tbcContent p{
    font-size: 15px;
    font-weight: 400;
    text-align: justify;
}


.tbcContent p span{
    font-weight: 600;
}
.tbcContent a{
    color: #111111;
}

.cardButtonSection{
    display: flex;
    align-items: center;

}
.cardButtonSection .btnAdvanceSearch{
   text-align: left;
    margin-right: 12px;
}
.btnAdvanceSearch.coloredbg a{
    background: linear-gradient(0deg, #005d0f, #00bb2a);
    color: #ffff;

}
.cardButtonSection .btnAdvanceSearch a {
    transition: 0.1s ease-in-out;
}
.btnAdvanceSearch.coloredbg a:hover {
    background: #fff;
    color: #111111;
}
.btnAdvanceSearch.coloredbg a i{
    margin-right: 5px;
}
.cardButtonSection .btnAdvanceSearch a i {
    margin-right: 5px;
}
.cardButtonSection .btnAdvanceSearch a{
    padding: 5px 20px;
}
.cardButtonSection .btnAdvanceSearch a:hover {
    transform: translateY(-2px);
}







.SecWrap {
    position: relative;
    z-index: 3;
}

.secImg {
    width: 100%;
    position: relative;
}

.secImg img.image-i {
    width: 86%;
    border-radius: 15px;
}

.secImg img.image-ii {
    position: absolute;
    bottom: 15px;
    right: 20px;
    width: 290px;
    border-radius: 15px;
    border: 3px solid #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.videoPop {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    position: absolute;
    top: 50%;
    left: 84%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    z-index: 1;
    background-color: #f1db9f;
    display: flex;
    align-items: center;
    justify-content: center;
}

img.imagepop {
    width: 60px;
}

.videoPop::after,
.videoPop::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 100%;
    z-index: -1;
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    background-color: #f1db9f;
}

.videoPop:before {
    animation: animationSignal1;
    animation-iteration-count: infinite;
    animation-duration: 3s;
    -webkit-animation: animationSignal1;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 3s;
}

.videoPop:after {
    animation: animationSignal2;
    animation-iteration-count: infinite;
    animation-duration: 3s;
    -webkit-animation: animationSignal2;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 3s;
}

@keyframes animationSignal1 {

    /*Video Popup*/
    0% {
        opacity: 0.8;
        transform: scale(0.9);
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        -webkit-transform: scale(0.9);
    }

    100% {
        transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
        -webkit-transform: scale(1.5);
        opacity: 0;
    }
}

@-webkit-keyframes animationSignal1 {

    /*Video Popup*/
    0% {
        transform: scale(0.9);
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        -webkit-transform: scale(0.9);
    }

    100% {
        transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
        -webkit-transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes animationSignal2 {

    /*Video Popup*/
    0% {
        transform: scale(0.9);
        -moz-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
    }

    100% {
        transform: scale(1.9);
        -moz-transform: scale(1.9);
        -webkit-transform: scale(1.9);
        -ms-transform: scale(1.9);
        -o-transform: scale(1.9);
        opacity: 0;
    }
}

@-webkit-keyframes animationSignal2 {

    /*Video Popup*/
    0% {
        transform: scale(0.9);
        -moz-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
    }

    100% {
        transform: scale(1.9);
        -moz-transform: scale(1.9);
        -webkit-transform: scale(1.9);
        -ms-transform: scale(1.9);
        -o-transform: scale(1.9);
        opacity: 0;
    }
}

.features.visionmission {
    background: #f4dfa6;
}
.secbg.bgcolor2 {
    width: 44%;
    background: linear-gradient(269deg, #4a2471e0, #30085bc9), url(../img/other/plant2.jpg);
    opacity: 1;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    left: 0px;
    margin-left: 0px;
}
.secbg.right {
    right: 0px;
    margin-left: 0px;
    opacity: 0.5;
    width: 956px;
    margin-left: auto;
}
.SecWrap.aboutWrapper {
    padding: 60px;
    background: linear-gradient(90deg, #ffeec180, #ffeec180), url(../img/bg/about-bg.jpg);
    background-size: cover;
    border-radius: 20px;
    background-position: center;
}
.SecWrap.onlineorderWraper {
    padding: 60px;
    background-color: #242424;
    background-image: url(../img/texture/21.png);
    background-size: contain;
    border-radius: 20px;
    background-position: right;
    background-repeat: no-repeat;
}
.onlineorderWraper .secTitle .mainTitle {
    color: #fff;
    font-weight: 500;
    margin-bottom: 30px;
}
.onlineorderWraper .homeAboutPara p {
    color: #ddd;
}
.aboutImg {
    width: 100%;
    position: relative;
}
.aboutImg img {
    width: 100%;
}
.aboutImg img.aboutImg1 {
    width: 90%;
    position: relative;
    top: 10px;
    left: 80px;
    animation: upanddownmove 6s infinite linear;
}
.aboutImg img.aboutImg2 {
    width: 40%;
    position: absolute;
    top: -30px;
    left: -19px;
}
.aboutImg img.aboutImg3 {
    width: 41%;
    position: absolute;
    bottom: 0px;
    transform: rotate(336deg);
    left: -41px;
}

.onlineorderWraper .aboutImg img.aboutImg1 {
    width: 100%;
    left: 0px;
    top: 0px;
    animation: upanddownmove 4s infinite linear;
}
.homeAboutPara.companyProfile {
    padding-left: 60px;
}

.testiWrapper{
    padding-left: 7%;
}

.teamSlidWrap {
    margin-right: 40px;
}

.teamMainSlider {
    overflow: hidden;

}

.teamMainSlider .teamMainSliderCard {
    overflow: hidden;
    padding: 20px;
    background: linear-gradient(2deg, #ffffff, #ffffff), url(../img/texture/texture6.jpg);
    background-size: 100% 100%;
    border-radius: 15px;
    border: 1px solid #dddddd4d;
    background-size: cover;
    min-height: 330px;
}
.testibg{
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    width: 46%;
}
.testibg img{
    width: 100%;
}

.teamCardImg {
    margin: 0px auto;
    margin-bottom: 13px;
    width: 141px;
    height: 141px;
    border-radius: 20px;
    overflow: hidden;
    /* margin-top: -70px; */
    position: relative;
    background: #f4e6ff;
    border-radius: 100%;
    padding: 20px;
    border: 1px dashed #5d387d73;


}
.teamCardImg:before {
    position: absolute;
    top: 0;
    left: -85%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.teamMainSliderCard:hover .teamCardImg:before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}
@-webkit-keyframes shine {
    100% {
      left: 125%; } }

  @keyframes shine {
    100% {
      left: 125%; } }
.teamCardImg img {
    width: 100%;
}

.teamCardContents {
    text-align: center;

}

.teamCardContents h4 {
    /* font-weight: 22px; */
    font-weight: 700;
    color: #5a1469;
    margin-bottom: 6px;
}

.teamCardContents h6 {
    color: #404040;
    font-size: 18px;
    margin: 10px 0px;
    font-weight: 700;
    font-family: 'Optima';
}

.teamCardContents a {
    display: inline-block;
    margin-top: 10px;
    color: #440000;
}

.teamSlidWrap .swiper-button-prev,
.teamSlidWrap .swiper-button-next {
    display: none;
}

.companyProfile .cuspadPara {
    /* padding-right: 30%; */
    text-align: justify;
    margin-bottom: 19px;
}

.countersWrap{
    margin-top: 40px;
}
.countersWrap .common-box {
    background: linear-gradient(268deg, #e3e0ff91, white), url(../img/texture/texture1.jpg);
    padding: 20px 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 15px;
    margin-bottom: 16px;
    position: relative;
    background-size: contain;
    min-height: 115px;
    padding: 13px 20px;
}
.countersWrap .common-box.left{
    background: linear-gradient(268deg, white,  #e3e0ff91), url(../img/texture/texture1.jpg);
}
.countersWrap .common-box .counter-num {
    font-size: 30px;
    color: #52196b;
    font-family: 'Open Sans';
    font-weight: 800;
}

.countersWrap .common-box .counter-text {
    font-size: 16px;
    font-weight: 700;
    width: 70%;
    line-height: 18px;
}

.coutnerIco {
    position: absolute;
    right: 13px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    width: 80px;
    height: 80px;
    opacity: 0.9;

}

.coutnerIco img {
    width: 100%;
    opacity: 0.6;
    filter: hue-rotate(189deg);
}

.common-box.year-exp-card {
    position: absolute;
    right: 8%;
    z-index: 2;
    width: fit-content;
    /* text-align: center; */
    bottom: -36px;
    background: #fff;
    padding: 28px 35px;
    z-index: 4;
    box-shadow: 0px 0px 30px #00000024;
    /* border-radius: 14px; */
    border-bottom: 4px solid #c31c00;
    display: flex;
    align-items: center;
    animation: dzMove1 12s linear infinite;
}

.common-box.year-exp-card .counter-num {
    font-size: 52px;
    line-height: 47px;
    font-weight: 700;
    margin-right: 12px;
    letter-spacing: 0;
    color: #c31c00;
}

.common-box.year-exp-card .counter-text {
    letter-spacing: 0;
    font-family: 'Souvenir';
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}


.secTitle {
    position: relative;
}

.secTitle .subTitle {
    color: #ea1c26;
    display: inline-block;
    padding: 0px;
    border-radius: 10px;
    font-size: 18px;
    margin-bottom: 5px;
    position: relative;
    padding-bottom: 3px;
}
.secTitle .subTitle::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background: #34343403;
    bottom: 0px;
    left: 0px;
}
.secTitle .mainTitle {
    color: #1e1d23;
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 600;
}

.defaultListView .title {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.defaultListView ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.defaultListView ul li {
    width: 100%;
    padding-left: 25px;
    background-image: url(../img/icons/check.png);
    background-size: 18px;
    background-position: left center;
    background-repeat: no-repeat;
    line-height: 24px;
}

.secbg {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    width: 842px;
    z-index: 1;
    opacity: 0.3;
    margin-right: 0px;
}

.secbg img {
    width: 100%;
}

.defaultBtn.centered {
    text-align: center;
}
.defaultBtn a,
.defaultBtn button {
    padding: 14px 30px;
    border-radius: 42px;
    background: linear-gradient(90deg, #eb1c22, #e0080c);
    color: #fff;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    display: inline-block;
    height: 52px;
    font-family: 'Taviraj';
    font-size: 18px;
    border: 0;
}

.defaultBtn a i,
.defaultBtn button i {
    margin-left: 5px;
}
.defaultBtn a::after,
.defaultBtn button::after {
    position: absolute;
    content: '';
    width: 0%;
    height: 120%;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    margin: auto;
    background: #111111;
    z-index: 1;
    transition: 0.4s ease-in-out;
}

.defaultBtn a span,
.defaultBtn button span {
    position: relative;
    z-index: 2;
    transition: 0.4s ease-in-out;
}

.defaultBtn a:hover span,
.defaultBtn button:hover span {
    color: #ffffff;
}

.defaultBtn a:hover:after,
.defaultBtn button:hover:after {
    width: 120%;
}
.defaultBtn.light a {
    background: #fff;
    color: #2f075a;
}

.homeAboutPara .defaultBtn {
    margin-top: 30px;
}
.homeAboutPara p {
    margin-bottom: 10px;
    text-align: justify;
}

.texture3 {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 140px;
    z-index: 2;
    animation: circleMover 10s infinite linear;
    opacity: 0.4;
}

.texture3 img {
    width: 100%;
}


@keyframes circleMover {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.defaultListView{
    margin-top: 10px;
}
.middleheadBtn.leftheadBut {
    width: fit-content;
    margin-top: 20px;
}


.categoryCard{
    border: 1px dashed #2e095530;
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 10px;
    background:linear-gradient(270deg,white, #52196b0d 49%, white);
    margin-bottom: 20px;
}
.ourPrBtn{
    margin-top: 20px;
}
.categoryImg {
    width: 20%;
    display: inline-block;
    background: #ddd;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
    margin-right: 10px;
}
.categoryImg img{
    width: 100%;
}
.categoryContent{
    width: 73%;
    display: inline-block;
}
.categoryContent h4{
    font-size: 16px;
    font-weight: 600;
    color: #0c0c0c;
}
.moreContent{
    display: none;
}
.sponcersSwiper{
    overflow: hidden;
    position: relative;
}
.sponcerSlider{
    margin-top: 40px;
}
.soponcerimg{
    height: 85px;
    background: #ffffff;
    border: 1px solid #dddddd59;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}
.soponcerimg img{
    height: 100%;
}

.internationVentures {
    background: #f0eaf1;
}
.homectfrombg {
    position: absolute;
    z-index: 2;
    width: 62%;
    height: 100%;
    right: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    transform: scale(1);

}
.SecWrap.globalWrapper  {
    max-width: 500px;
}
.SecWrap.globalWrapper .pq-form-box {
    padding: 30px;
    /* margin: 0 auto; */
    box-shadow: 0px 0px 30px 0px rgb(21 21 21 / 11%);
    text-align: center;
    /* margin-bottom: -60px; */
    background:linear-gradient(0deg, #2a085a, #462673d6), url(../img/bg/bg2.jpg);
    position: relative;
    z-index: 1;
    margin-left: 40px;
    border-radius: 15px;
    background-size: cover;
    margin: 0px auto;
    margin-right: 0px;
    border: 1px solid #dddddd52;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

}
.pq-form-box {
    padding: 45px;
    /* margin: 0 auto; */
    box-shadow: 0px 0px 30px 0px rgb(21 21 21 / 11%);
    text-align: center;
    /* margin-bottom: -60px; */
    background: #fff;
    position: relative;
    z-index: 1;
    margin-left: 40px;
    border-radius: 15px;
}

.pq-applyform {
    border-radius: 12px;
}

.pq-form-box input,
.pq-form-box textarea,
.pq-form-box input.form-control {
    background: #f4f6f9;
    border: 1px solid #f4f6f9;
    color: #343434;
    margin-bottom: 30px;
    width: 100%;
    float: left;
    font-size: 16px;
    font-weight: 400;
    padding: 0 15px;
    height: 46px;
    line-height: 54px;
    outline: none;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    border-radius: 10px;
    overflow-y: auto;
    color: #0c0c0c;
}
.pq-form-box input::placeholder, .pq-form-box textarea::placeholder{
    color: #a0a0a0;
}
.pq-form-box input:focus,
.pq-form-box input:hover,
.pq-form-box textarea:focus,
.pq-form-box textarea:hover,
.pq-form-box .form-control:focus {
    border-color: #4b1c6c;
    outline: none;
    box-shadow: none;
}

.secbg.right.global-img {
    width: 620px;
    height: fit-content;
    margin-bottom: 0px;
}
.pq-applyform-whitebg{
    margin-top: 40px;
}
.bgfull {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    opacity: 0.3;
    visibility: hidden;
}
.bgfull img {
    width: 100%;
}
.blogsWrapper{
    overflow: hidden;
    position: relative;
    margin-top: 40px;
}
.blogSwiper {
    padding: 0px 0px;
}


.blogSwiperCard {
    background: linear-gradient(268deg, white, #f1f1f1), url(../img/texture/texture1.jpg);
    border-radius: 8px;
    /* overflow: hidden; */
    padding: 12px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    transition: 0.4s ease-in-out;
    position: relative;
    z-index: 2;
    margin: 15px 0px;
}
.blogSwiperCard::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    margin: auto;
    z-index: 1;
    transition: 0.4s ease-in-out;
    border-radius: 8px;
}
.blogSwiperCard:hover:before {
    height: 105%;
    width: 100.5%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background: #fff;
}

.blogCardImg {
    width: 100%;
    position: relative;
    z-index: 2;
}

.blogCardImg img {
    width: 100%;
   border-radius: 6px;
}
.blogSwiperCard:hover .blogCardImg:before {
    -webkit-animation: zoom-hover 0.75s;
    animation: zoom-hover 0.75s;
}
.blogCardImg:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 2;
}
@-webkit-keyframes zoom-hover {
    0% {
      opacity: 1; }
    40% {
      opacity: 1; }
    100% {
      width: 200%;
      height: 200%;
      opacity: 0; } }

  @keyframes zoom-hover {
    0% {
      opacity: 1; }
    40% {
      opacity: 1; }
    100% {
      width: 200%;
      height: 200%;
      opacity: 0; } }


.blogviewBtn {
    display: flex;
    padding-top: 10px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}
.blogviewBtn p{
    color: #340459;
    font-weight: 600;
}
.blogviewBtn a{
    font-weight: 600;
    width: 30px;
    height: 30px;
    background: #f2f2f2;
    border-radius: 8px;
    color: #4b1c6c;
    text-align: center;
    line-height: 30px;
}
.blogviewBtn a:hover {
    background: #4b1c6c;
    color: #e9e5f0;
}
.blogHeader{
    position: relative;
    z-index: 2;
}
.blogHeader ul {
    display: flex;
    align-items: center;
    /* border-bottom: 1px solid #dddddd70;
    border-top: 1px solid #dddddd70; */
    padding: 0px 0px 0px;
    justify-content: space-between;
}
.blogHeader ul li {
    font-size: 13px;
    color: #626262;
}
.blogHeader ul li i{
    color: #343434;
}
.blogHeader h4{
    font-size: 15px;
    color: #0c0c0c;
    margin-bottom: 12px;
    margin-top: 6px;
    line-height: 22px;
    font-weight: 600;
}


.blogCardContent p {
    text-align: justify;
    line-height: 22px;
    margin-bottom: 8px;
}

.blogs .serviceWrapper .swiper-slide.swiper-slide-active {
    box-shadow: rgba(0, 0, 0, 0) 0px 10px 50px;
}

.blogs .serviceBtn a {
    color: #2f075a;
}
.blogSwiper .swiper-button-next {
    background-size: 11px;
    background-color: #ffffffed;
    width: 40px;
    height: 40px;
    border-radius: 15px;
    border: 1px solid #ddd;
    right: 5px;
}
.blogSwiper .swiper-button-prev{
    background-size: 11px;
    background-color: #ffffffed;
    width: 40px;
    height: 40px;
    border-radius: 15px;
    border: 1px solid #ddd;
    left: 5px;
}

/* Footer  */


.footer-section {
    width: 100%;
    background-image: url(../img/bg/footer-bg.jpg);
    background-size: cover;
    background-color: #1d1d1df5;
    background-blend-mode: multiply;
    padding: 80px 0px;
    position: relative;
}
.footer-section .site-width {
    position: relative;
    z-index: 2;
}
.footer-logo {
    display: flex;
}

.footer-logo img {
    width: 270px;
    margin: 0px 0px 0px 0px;
}

.footer-co-description p {
    font-size: 15px;
    color: #fff;
    margin-top: 15px;
    line-height: 22px;
    text-align: justify;
}


.footer-title h4 {
    color: #fbf6f4;
    font-size: 22px;
    position: relative;
    display: inline;
}

.footer-title h4::after {
    position: absolute;
    width: 30%;
    content: "";
    height: 2px;
    background: linear-gradient(45deg, #f1db9f, #262626);
    bottom: -4px;
    left: 0;
    transition: 0.4s ease-in, 0.4s ease-out;
}

.footer-links:hover .footer-title h4:after {
    width: 100%;
    background: linear-gradient(45deg, #262626, #f1db9f);
}

.footer-links ul {
    padding-left: 0px;
    margin-top: 48px;
}
.footer-links ul li {
    margin-bottom: 8px;
}
.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.4s ease-in-out;
    line-height: 22px;
}

.footer-links ul li a:hover {
    color: #00cbff;
}

.footer-links .address-sec li {
    margin-bottom: 8px;
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
}

/* .footer-links .address-sec li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
} */
.footer-links .address-sec li i{
    margin-right: 10px;
    color: #f1db9f;
    font-size: 16px;
}

.follow-us-on-text {
    color: #fff;
    margin-bottom: 5px;
}

.footer-social-links {
    display: flex;
    margin-top: 5px !important;
}

.footer-social-links li a {
    display: flex;
    width: 41px;
    height: 41px;
    background: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin: 0px 10px 0px 0px;
}

.footer-social-links .fa-facebook-f {
    color: #0075ea !important;
 font-size: 16px;
}

.footer-social-links .fa-instagram {
    background: -webkit-linear-gradient(#556db3, #ea3367, #ff4f28, #ffad57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 17px;
}

.footer-social-links .fa-twitter {
    color: #009feb !important;
 font-size: 16px;
}

.footer-social-links .fa-youtube {
    color: #f70000 !important;
 font-size: 16px;
}

.footer-social-links .fa-linkedin-in {
    color: #0079b5;
 font-size: 16px;
}



.footer-links .address-sec li a i {
    margin-right: 14px;
    color: #8107df;
    font-size: 15px;
}

.footer-links ul li a i {
    font-size: 15px;
}

.footer-links ul li a i {
    font-size: 9px;
    margin-right: 5px;
}

.footer-social-links i.fa-x-twitter {
    color: #000;
    font-size: 15px;
}
.footer-links ul.footer-social-links i{
    margin: 0px;
}
.footerInsta .address-sec {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 1px 10px;
}



.footerInsta .address-sec li {
    width: 26%;
    display: unset;
}
.footerInsta .address-sec li a img {
    width: 100%;
}
.footerInsta .address-sec li a {
    position: relative;
    transition: 0.3s ease-in-out;
    display: block;
}
.footerInsta .address-sec li a:hover:after {
    opacity: 0.8;
}
.footerInsta .address-sec li a:after {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    z-index: 2;
    left: 0;
    opacity: 0;
    content: "";
    background: #f8222c;
}
.footerInsta .address-sec li a:hover:before {
    opacity: 1;
}
.footerInsta .address-sec li a:before {
    width: 30px;
    height: 30px;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    opacity: 0;
    content: "";
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-image: url(../img/icons/instagram.svg);
    background-repeat: no-repeat;
}
.copyright-section {
    width: 100%;
    background: #1d1d1d;
    padding: 12px 0px;
}

.copyright-section p {
    margin: 0px;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
}



/* Go to Top */

#button {
    display: inline-block;
    background: linear-gradient(0deg, #cb3328, #961e15);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
    font-size: 10px;
    animation: breathing 2s ease-out infinite normal;
}

#button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
}

#button:hover {
    cursor: pointer;
    background-color: #151e25;
}

#button:active {
    background-color: #151e25;
}

#button.show {
    opacity: 1;
    visibility: visible;
}


@keyframes breathing {
    0% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    25% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    60% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }
}






.hamburger .line {
    width: 32px;
    height: 3px;
    background-color: #000000;
    display: block;
    margin: 6px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* @keyframes widthMenu {
    0%{
        width: 32px;
    }
    50% {
        width: 28px;
    }
    100%{
        width: 32px;
    }
} */

.hamburger {
    display: none;
}

.hamburger:hover {
    cursor: pointer;
}

#hamburger-11 {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#hamburger-11.is-active {
    animation: smallbig 0.6s forwards;
}

#hamburger-11.is-active .line {
    width: 32px;
}

@keyframes smallbig {

    0%,
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
    }
}

#hamburger-11.is-active .line:nth-child(1),
#hamburger-11.is-active .line:nth-child(2),
#hamburger-11.is-active .line:nth-child(3) {
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

#hamburger-11.is-active .line:nth-child(2) {
    opacity: 0;
}

#hamburger-11.is-active .line:nth-child(1) {
    -webkit-transform: translateY(9px) rotate(45deg);
    -ms-transform: translateY(9px) rotate(45deg);
    -o-transform: translateY(9px) rotate(45deg);
    transform: translateY(9px) rotate(45deg);
}

#hamburger-11.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-9px) rotate(-45deg);
    -ms-transform: translateY(-9px) rotate(-45deg);
    -o-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
}
.quickSearchMob{
    display: none;
}
.innerBanner {
    background-size: cover;
    min-height: 400px;
    width: 100%;
}



.innerBannerNav{
    min-height: 80px;
    background: linear-gradient(90deg, #bfbfbf54, #bfbfbf54), url(../img/texture/t1.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    border-bottom: 1px solid #dddddd82;
}
.inbnrNavWrap {
    min-height: 80px;
}
.inbnrNavWrap .row{
    min-height: 80px;
}
.inbnrNavTitle {
    text-align: left;
}
.inbnrNavTitle h2{
    font-weight: 400;
    font-size: 22px;
    color: #010001;
}
.inbnrNavList {
    display: flex;
    justify-content: flex-end;
}
.inbnrNavList ul {
    display: flex;
    align-items: center;
}
.inbnrNavList ul li {
    margin: 0px 6px 0px 6px;
}
.inbnrNavList ul li a{
    font-size: 14px;
    font-weight: 600;
}
.inbnrNavList ul li a.active{
    color: #dd171b;
}
.sectionTitle.left {
    text-align: left;
    margin-bottom: 30px;
}
.sectionTitle.left h4 {
    display: inline-block;
}

.sectionTitle.left::after {
    margin-left: 0px;
}
.sectionTitle.left::before {
    margin-left: 0px;
}

.secTitle .mainTitle.contact {
    font-size: 20px;
}
.contactqueryForm .form-control{
    height: 45px;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 16px;
}
.contactqueryForm .form-control.textarea{
    height: auto;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 16px;
}
.contactqueryForm .form-control:focus{
    box-shadow: none;
    border-color: #006d14;
}

.contactDWrapper {
    padding: 40px;
}
.contactDWrapper.contactInfo {
    background: linear-gradient(0deg, #005d0f, #00bb2a);
    border-radius: 30px;
}
.contactDWrapper.contactInfo .secTitle .mainTitle.contact{
    color: #fff;
}
.contactDWrapper.contactInfo hr{
    color: #fff;
}
.contactDWrapper.contactInfo p {
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
}
.contactDWrapper.contactInfo p strong{
    color: #fff;
}
.contactDWrapper.contactInfo p strong i{
    margin-right: 5px;
}
.contactDWrapper.contactInfo a{
    color: #fff;
}
.contactUsIn {
    background-image: linear-gradient(90deg, #fffffff7, #fffffff6), url(../img/bg/menu-bg.jpg);
    background-size: contain;
}

.catListingAside{
    background: #dddddd2e;
    border-radius: 20px;
    overflow: hidden;
    padding: 14px 14px;
    position: sticky;
    top: 90px;

}
.catListingAside .catListingSideTitle {
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    background: linear-gradient(0deg, #05991d, #00bb2a);
    padding: 10px 16px;
    border-radius: 14px;
}

.catListingUl {
    overflow-y: auto;
    height: 400px;
}

.catListingUl ul li a{
    display: block;
    padding: 6px 14px;
    border-bottom: 1px solid #00bd2f40;
}
.catListingUl ul li a:hover{
    background: #ddd ;
}
.catListingUl::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.141);
    background-color: #F5F5F5;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    max-height: 30%;
    opacity: 0.5;
    height: 30%;
}

.catListingUl::-webkit-scrollbar {
    width: 4px;
    background-color: #F5F5F5;
    display: block;
    opacity: 0.5;

}

.catListingUl::-webkit-scrollbar-thumb {
    background-color: #00000032;
    border: 2px solid #5555550f;
    opacity: 0.3;
    border-radius: 10px;
}

.catListingUl::-webkit-scrollbar-track-piece:end {
    background: transparent;
    margin-bottom: 10px;
}

.catListingUl::-webkit-scrollbar-track-piece:start {
    background: transparent;
    margin-top: 10px;
}
.vendorImg{
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}
.vendorImg img{
    width: 100%;
}

.cardButtonSection.fordetailp {
    flex-direction: column;
    align-items: self-start;
}
.tbcContent.fordetailp {
    width: 100%;
}

.catListingUl.vendorContactL ul li a{
    border: none;
    padding: 0px;
}
.catListingUl.vendorContactL ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 10px;
    border-bottom: 1px solid #dddddd8a;
    padding-bottom: 10px;
}
.catListingUl.vendorContactL ul li i{
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 46px;
    margin-right: 9px;
    background: #ace5c2;
    color: #004912;
    border-radius: 12px;
}
.catListingUl.vendorContactL ul li span {
    width: 84%;
}

.sectionTitle.mainVendorTitle h4 {
    font-size: 22px;
    font-weight: 700;
}

.tiffinBookingCard.magazineCard .tbcIco{
    width: 24%;
    margin-right: 18px;
}

.postrequirment .customborder {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
}

/* OT Section Start */

.productSideBar .accordion-item {
    overflow: hidden;
}

.productSideBar .accordion-item:first-of-type {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.productSideBar .accordion-item:last-of-type {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}


.productSideBar .accordion-button {
    padding: 10px 20px;
    box-shadow: none;
    border: none;
}
.sideHeader {
    background: #f1db9f;
    border-bottom: 3px solid #fcca42;
    padding: 10px 21px;
    font-size: 20px;
    font-weight: 500;
    color: #2a2924;
}

.otSidebar .sideLink {
    margin: 0px;
    line-height: normal;
    font-size: unset;
}
.otSidebar .sideLink a {
    display: block;
    font-size: 16px;
    padding: 8px 20px;
    border-bottom: 1px dashed #ddd;
}
.otSidebar .otSidebarWrapper .sideLinkWrap:last-child .sideLink a {
    border-bottom: 0px;
}
.sidebar-button.active , .sidebar-button:hover{
    background: #fff9e9;
}

.productSideBar button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
}

.productSideBar .accordion-body {
    padding: 0px;
}

.productSideBar .accordion-button.JustaTitle {
    background: linear-gradient(90deg, #f1db9f, #fbeabb);
    color: #000000;
    font-size: 17px;
    padding: 14px 20px;
}

.productSideBar .accordion-button.JustaTitle::after {
    display: none;
}

.prcatAccordList ul li a {
    display: block;
    padding: 8px 20px;
    border-bottom: 1px dashed #d9eaff;
}

.prcatAccordList ul li a:hover,
.prcatAccordList ul li a.active {
    background: #f7fbfd;
}

.prcatAccordList ul li:last-child a {
    border-bottom: none;
}

.productSideBar .accordion {
    margin-bottom: 20px;
}


.otWrapper {

}
.otHeader.otsticky {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 5;
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.otSidebar {
    position: sticky;
    top: 100px;
    border: 1px solid #ebebeb;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 12px;
    overflow: hidden;
}
.otSidebar .accordion-button::after{
    display: none;
}

.otitemTotalPrice.otSidebar {
    top: 280px;
    background-color: #fff;
    margin-top: 20px;
}


.otItemListCard {
    padding: 30px 30px;
    background: linear-gradient(359deg, #fffbf2, #fffdfa, #fffbf2);
    border-radius: 10px;
    border: none;
    /* min-height: 216px; */
    position: relative;
    border: 1px solid #fff2ce;
    transition: 0.4s ease-in-out;
    margin-bottom: 30px;
}
.otItemListCard .sectionTitle {
    padding-bottom: 0px;
}
.otItemListCard .sectionTitle h4 {
    font-size: 24px;
    margin-bottom: 0px;
}
.otSidecloser {
    display: none;
}
.otMenu {
    display: none;
}


.otcartListWrapper {
    background: #FFFFFF;
    border-radius: 16px;
    -webkit-transition: all .5s;
    -ms-transition: all .5s;
    transition: all .5s;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid #ebebeb;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 12px;
    overflow: hidden;
}
.dz-shop-card.style-1 {
    display: flex;
    position: relative;
    border-bottom: 1px dashed #ddd;
    align-items: center;
}
.otcartListWrapper .dz-shop-card.style-1:last-child {
    border-bottom: none;
}
.dz-shop-card.style-1 .dz-media {
    min-width: 14%;
    width: 14%;
}
.dz-shop-card.style-1 .dz-media img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.dz-shop-card.style-1 .dz-content{
    width: 88%;
    padding: 20px;
    display: flex;
    flex-direction: column;
}
.dz-shop-card.style-1 .dz-content .dz-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dz-shop-card.style-1 .dz-content .dz-head .dz-name{
    font-weight: 600;
    font-size: 26px;
    line-height: 36px;
    color: #404040;
}

.dz-shop-card.style-1 .dz-content .dz-head .dz-name a{
    color: #121212;
    font-size: 16px;
    font-size: 13px;
}
.dz-shop-card.style-1 .dz-content .dz-head .rate{
    background: #30a355;
    color: #fff;
    border-radius: 10px;
    padding: 4px 10px;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    position: absolute;
    left: 47px;
    bottom: 12px;
}
.dz-shop-card.style-1 .dz-content .dz-head .removePrBtn  {
    position: absolute;
    top: 20px;
    right: 20px;
}
.dz-meta{
    display: flex;
    margin: 0 -10px;
}
.dz-meta li{
    margin: 0 10px;
    color: #727272;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
}
.selectHolidays{
    display: flex;
    align-items: center;
}
.selectHolidays .OffdaysCount{
    margin-left: 10px;
    font-size: 12px;
}
.selectHolidays .OffdaysCount span{
    font-weight: bold;
}
.dateLebal{
    font-size: 14px;
    color: #343434;
    margin-top: 10px;
    margin-bottom: 5px;
}


.multiDpicker.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback)  {
    position: absolute;
    right: 1px;
    z-index: 33;
    top: 1px;
    cursor: pointer;
}
.multiDpicker.input-group{
    width:50%;
}
.multiDpicker.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){
    height: 34px;
    border-radius: 30px;

}
.multiDpicker.input-group input:focus{
    box-shadow: none;
}
.multiDpicker .input-group-text{
    border-radius: 30px;
    height: 32px;
    width: 32px;
    text-align: center;
    padding: 0px;
    line-height: 31px;
    border: none;
}
.border-none{
    border: none;
}
.qtyselector{
    border: none;
    background: transparent;
    width: 20pxg;
    height: 26px;
    border-radius: 6px;
    font-size: 17px;
}
.qtyContainer {
    width: 93px;
    background: #fff6de;
    border: 1px solid #f1db9f;
    padding: 3px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.qtyContainer .quantity-field {
    background: #ffffff59;
    box-shadow: none;
    width: 46px;
    height: 26px;
    border-radius: 5px;
    margin-right: 4px;
    border: 1px solid #fff6dd !important;
    font-size: 13px;
}
.width-auto{
    width: auto;
}
.qtyLebal {
    font-size: 14px;
    color: #343434;
    margin-right: 10px;
}
.otcarteachPrice {
    margin-left: 11px;
    font-size: 14px;
}
.otcarteachPrice span {
    color: #070707;
}
.noteForResturant {
    margin-top: 10px;
}
.noteForResturant .form-control {
    border-radius: 12px;
    padding: 7px 20px;
    font-size: 13px;
}
.noteForResturant .form-control:focus {
    box-shadow: none;
    border-color: #f4be6a;
}
.otdeliverToAdd {
    padding: 16px;
}
.otdeliverToAdd .addInputgrp {
    position: relative;
}
.otdeliverToAdd .addInputgrp i {
    position: absolute;
    z-index: 6;
    top: 0px;
    bottom: 0px;
    margin: auto;
    height: fit-content;
    left: 10px;
    font-size: 13px;
    color: #424242;
}
.otdeliverToAdd .form-control {
    padding: 8px 20px 8px 32px;
    margin-bottom: 10px;
    font-size: 14px;
}
.otdeliverToAdd .addInputgrp:last-child .form-control {
    margin-bottom: 0px;
}
.otdeliverToAdd .form-control:focus {
    box-shadow: none;
    border-color: #f4dfa6;
}
.otdeliverToAdd .form-select:focus {
    box-shadow: none;
    border-color: #f4dfa6;
}
.order-detail {
    padding: 16px;
}
.order-detail table{
    width: 100%!important;
    margin-bottom: 25px;
}
.order-detail table tr td{
    padding: 6px 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
}
.order-detail table tr td.price{
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: end;
}
.order-detail table tr.charges{
    border-bottom: 1px dashed rgba(34,34,34,.2);
}
.order-detail table tr.tax {
    border-bottom: 2px solid rgba(34,34,34,.2);
}
.defaultBtn.placeorderbtn a , .defaultBtn.placeorderbtn button {
    width: 100%;
    text-align: center;
    border-radius: 14px;
    padding: 8px;
    height: 40px;
    border: none;
}
.defaultBtn.placeorderbtn a span {
    font-size: 15px;
}




.orderTableWrapper {
    max-width: 30%;
    margin: auto;
    padding: 30px 20px;
    background: linear-gradient(359deg, #fffdf6, #f5f5f5, #fffbf1);
    border-radius: 10px;
    border: none;
    position: relative;
    border: 1px solid #fff2ce;
    transition: 0.4s ease-in-out;
}

.orderTableLogo {
    width: 280px;
    margin: auto;
}
.orderTableLogo img {
    width: 100%;
}

.orderTableNo {
    width: 100%;
    padding: 20px;
    border: 1px solid #fff2cf;
    text-align: center;
    border-radius: 13px;
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.orderTableNo img {
    width: 65px;
    margin-bottom: 10px;
}
.orderTableNo h4 {
    font-size: 30px;
    font-weight: 700;
}
.orderFoodFBtn a {
    width: 100%;
    text-align: center;
}
.shareFeedbackBtn.defaultBtn a, .shareFeedbackBtn.defaultBtn button {
    width: 100%;
    background: linear-gradient(90deg, #f1db9f, #ffe2a8);
    color: #111;
    text-align: center;
    margin-top: 10px;
}

.orderTable {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    background: #fff0d1;
}
.otAddressCard {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    border: 1px dashed #f3dca0;
    border-radius: 12px;
}
.otAddressCard h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.otAddressCard p {
    font-size: 14px;
}
.otAddressCard p i {
    font-size: 13px;
    color: #ea1f26;
}

/* Executive Table */
.orderTableWrapper.executiveTableWrapper {
    max-width: 100%;
    width: 100%;
    min-height: 70vh;
}
.tablesNoWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    height: 60vh;
    overflow: auto;
    padding: 18px;
    gap: 10px 10px;
    /*min-height: fit-content;*/
    margin: 0px;
}
.tablesNoWrap .orderTableNo {
    position: relative;
}
.tablesNoWrap .form-check-input[type=radio] {
    border-radius: 10px;
    border: none;
    width: 100%;
    margin: 0px;
    max-width: 100%;
    background: transparent;
    height: 100%;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    cursor: pointer;
}
.tablesNoWrap .form-check-input:focus {
    box-shadow: none;
}
.form-check-input:checked[type=radio] {
    border: 2px solid #eb1c22;
}
.tablesNoWrap::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

.tablesNoWrap::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
    transition: all 0.4s ease-in-out;
}

.tablesNoWrap::-webkit-scrollbar-thumb {
    background-color: #000000;
    border: 1px solid #555555;
}

.tablesNoWrap .orderTableNo {
    width: 23%;
    margin: 0px;
}
.tablesNoWrap .orderTableNo img {
    width: 25px;
}
.tablesNoWrap .orderTableNo h4 {
    font-size: 15px;
}
.sectionTitle h4.tableNotInfo {
    font-size: 23px;
}
.executiveBtns.defaultBtn a, .executiveBtns.defaultBtn button {
    padding: 9px 20px;
    height: 40px;
    font-size: 15px;
}
.executiveBtns.defaultBtn a:nth-child(2) {
    margin-left: 10px;
    display: inline-block;
    background: #f1db9f;
    color: #000;
}
.executiveOrderTable .executiveOrderTableWrapper {
    margin-top: 30px;
}

.ordertable thead th {
    font-size: 13px;
    text-wrap: nowrap;
}
.ordertable tbody td {
    font-size: 13px;
}
.btn.trackorder {
    font-size: 13px;
    color: #000000;
    background: #f1db9f;
    font-weight: 600;
}

.sidebar-button2 {
    display: block;
    font-size: 16px;
    padding: 8px 20px;
    border-bottom: 1px dashed #ddd;
}
.sidebar-button2.active, .sidebar-button2:hover {
    background: #fff9e9;
}
/* Ednd */


/* OT CARD start */
.whats-new-sec {
    margin: 0px;
    margin-bottom: 24px;
}

.otItemListCard .whats-new-sec .inner-box {
    display: flex;
    flex-direction: row-reverse;
    position: relative;
    align-items: center;
}

.otItemListCard .whats-new-sec .whats-new-content {
    width: 70%;
    text-align: left;
    padding-top: 18px;
    position: unset;
}

.otItemListCard .whats-new-sec .whats-new-sec-img {
    width: 30%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.otItemListCard .whats-new-sec .whats-new-sec-img img {
    border-radius: 10px;
    max-height: 114px;
}

.otItemListCard .whats-new-sec-img::after {
    height: 100%;
    border-radius: 0px;
    background: #fffbf2;
}

.otItemListCard .whats-new-sec h4 {
    font-size: 20px;
    line-height: normal;
}

.otItemListCard .whats-new-sec p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 5px;
    margin-top: 7px;
    font-family: 'Poppins';
}

.otItemListCard .whats-new-sec .defaultBtn a {
    top: auto;
    bottom: 8%;
    right: 28px;
    margin-right: 0px;
    padding: 0px 10px;
    line-height: 31px;
    height: 33px;
    width: 100px;
    background: #fff;
    color: #111;
    text-align: center;
    border: 1px solid #c02f24;
}

.otItemListCard .whats-new-sec .defaultBtn a span {
    font-size: 14px;
    text-transform: uppercase;
}

.otItemListCard .whats-new-sec .priceShow {
    font-size: 15px;
    font-weight: 500;
    margin-top: 10px;
    border-bottom: 0px;
}

.otItemListCard {
    padding: 0px;
    background: transparent;
    border: none;
}
.otItemListWrap {
    margin-top: 30px;
}
.otItemListWrap .row > .col-md-4 {
    width: 50%;
}
.otItemListWrap .whats-new-sec .prparaReadBtn {
    font-size: 12px;
    color: #e71f22;
    font-family: 'Poppins';
}
.veg_symbol {
    width: 16px;
    margin-bottom: 8px;
}
.prparaReadBtn {
    font-size: 13px;
    color: #e71f22;
    font-family: 'Poppins';
    line-height: normal;
}
.otcartqty {
    flex-direction: column;
    gap: 6px;
}
/* OT CARD end */

.middleHeaderWrap.orderconfirmedHeader {
    text-align: center;
    justify-content: center;
}

/* Ot Order Confirmed */
.orderConfirmedWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: #fff0d1;
}
.orderConfirmed {
    min-height: auto;
    background: #fff;
    max-width: 100%;
    margin: auto;
    padding: 40px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 20px;
    width: 70%;
}
.success-animation {
    margin: 0px auto;
    perspective: 1000px;
    margin-top: 40px;
    /* min-height: 100px; */
}
.checkmark,
.otOrderNo {
    transition: transform 0.6s ease-in-out;
    transform-style: preserve-3d;
}
.checkmark.flip {
    transform: rotateY(180deg);
}
.otOrderNo.flip {
    transform: rotateY(0deg);
    display: block;
    opacity: 1;
}
.checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #4bb71b;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #4bb71b;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    position:relative;
    top: 5px;
    right: 5px;
   margin: 0 auto;
}
.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #4bb71b;
    fill: #fff;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;

}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #4bb71b;
    }
}


.otOrderNo {
    font-size: 40px;
    text-align: center;
    margin-top: 26px;
    font-weight: 600;
    color: #2e2827;
}


.orderConfWrap .sectionTitle {
    margin-top: 10px;
}
.orderConfWrap .sectionTitle h6 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #ec1d23;
}
.orderConfWrap .sectionTitle::before {
    display: none;
}
.orderConfWrap .sectionTitle::after {
    display: none;
}


.horizontal.timeline {
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
    margin-top: 10px;
    padding-bottom: 40px;
}

.horizontal.timeline:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 0.2em;
    background-color: #f2f2f2;
}

.horizontal.timeline .line {
    display: block;
    position: absolute;
    width: 33%;
    height: 0.2em;
    background-color: #f1db9f;
}

.horizontal.timeline .steps {
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.horizontal.timeline .steps .step {
    display: block;
    position: relative;
    bottom: calc(100% + 1em);
    padding: 0.33em;
    margin: 0 2em;
    box-sizing: content-box;
    color: #ebb218;
    background-color: currentColor;
    border: 0.25em solid white;
    border-radius: 50%;
    z-index: 500;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 38px;
}

.horizontal.timeline .steps .step:first-child {
    margin-left: 0;
}

.horizontal.timeline .steps .step:last-child {
    margin-right: 0;
    color: #71CB35;
}

.horizontal.timeline .steps .step span {
    position: absolute;
    top: calc(100% + 1em);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    color: #000;
    opacity: 0.4;
    font-weight: 600;
    font-size: 15px;
}

.horizontal.timeline .steps .step.current:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 3em;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    z-index: -1;
    animation-name: animation-timeline-current;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
}

.horizontal.timeline .steps .step.current span {
    opacity: 0.8;
}

@keyframes animation-timeline-current {
    from {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }

    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}
.otStepIco {
    width: 30px;
}
/* Ot Order Confirmed */



/* OT Section End */


/* Executive Login form */
.loginForm .right-sidebar-box {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background: #ffffff7d;
    backdrop-filter: blur(6px);
    background-color: #f8f8f800;
    border-radius: 6px;
    padding: 0px;
    max-width: 894px;
    margin: 0px auto;
    padding: 25px 30px;
    border-radius: 8px;
    border: 1px solid #dddddd4a;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    position: relative;
    left: -2px;
}

.loginForm .toggle-password {
    position: absolute;
    right: 10px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    height: fit-content;
}

.loginForm .form-control {
    height: 45px;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 16px;
}

.right-sidebar-box {
    background-color: #f8f8f800;
    border-radius: 6px;
    padding: 0px;
    max-width: 894px;
    margin: 0px auto;
    background: #fffaee;
    padding: 25px 30px;
    border-radius: 8px;
    border: 1px solid #dddddd4a;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    position: relative;
    left: -2px;
}

.right-sidebar-box .custom-form label {
    color: #565656;
    display: block;
    font-size: 15px;
    margin-bottom: calc(2px + 0.3125vw);
    font-weight: 600;
}

.right-sidebar-box .custom-form .custom-input {
    position: relative;
}

.right-sidebar-box .custom-form .form-select:focus {
    box-shadow: none;
}

.right-sidebar-box .custom-form .form-select {
    border: 1px solid #dddddd80 !important;
    padding: 7px 14px;
    border-radius: 6px;
}

.right-sidebar-box .custom-form .custom-input i {
    align-items: center;
    color: #4a5568;
    display: flex;
    font-size: 15px;
    left: 0;
    line-height: 1;
    padding: 15px;
    position: absolute;
    top: 0px;

}

.form-control {
    background-color: #fff;
}

textarea.form-control {
    min-height: 30px;
}

.right-sidebar-box .custom-form .custom-input textarea {
    height: 92px;
}

.right-sidebar-box .custom-form .custom-input .form-control {
    border: 1px solid #dddddd80 !important;
    padding: 10px 10px;
    border-radius: 6px;
}

.right-sidebar-box .custom-form .custom-input .form-control::placeholder {
    font-size: 14px;
}

.right-sidebar-box .custom-form .custom-input .form-control:focus {
    box-shadow: none;
}

.captcha {
    padding: 0px;
    width: 177px;
    position: relative;
}

.captcha img {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #dddddd80 !important;
}

.refreshcaptcha {
    position: absolute;
    top: 0px;
    bottom: 0px;
    margin: auto;
    right: -29px;
    height: fit-content;
}



.popularDestinations {
    position: relative;
}
.popDestiWrapper {
    margin-top: 40px;
}
.popDestiCard {
    width: 100%;
}
.popDestiCard {
    position: relative;
    margin-bottom: 20px;
}
.popDestiImg {
    width: 100%;
    position: relative;
    height: 268px;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: 0.4s ease-in-out;
    border-radius: 15px;
    overflow: hidden;
}

.popDestiImg::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000000f5, transparent);
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    opacity: 0.6;
    transition: 0.3s ease-in-out;
}
.popDestiCard:hover .popDestiImg::after {
    opacity: 1;
}
.popDestiImg img {
    width: 100%;
    transition: 0.4s ease-in-out;
}
.popDestiCard:hover .popDestiImg img {
    transform: scale(1.05);
}
.popDestiContent {
    position: absolute;
    z-index: 2;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 18px;
}
.popDestiContent * {
    color: #fff;
}
.popDestiContent h4 {
    margin-bottom: 9px;
    font-size: 20px;
    font-weight: 500;
}
.popDestiContent p {
    width:85%;
    font-size: 14px;
    line-height: 24px;
}
.popDestiContent a {
    display: inline-block;
    position: absolute;
    right: 20px;
    top: auto;
    bottom: 24px;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #000;
    text-align: center;
    border-radius: 100%;
    transform: scale(0.2) translateY(20px);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
}
.popDestiCard:hover .popDestiContent a {
    transform: scale(1) translateY(0px);
    visibility: visible;
    opacity: 1;
}
.popDestiContent i {
    color: #003d76;
    line-height: 39px;
    font-size: 16px;
    transform: rotate(-36deg);
}

.popDestiCard.LastCard .popDestiImg {
    height: 558px;
}

.ambienceWrapper {
    margin-top: 50px;
}


.secImg.bookeventImg {
    width: 95%;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0px 0px 10px #ddd;
}
.secImg.bookeventImg img {
    width: 100%;
}

.bookeventWrapper {
    margin-top: 50px;
}

.contactMain {
    margin-top: 10px;
    font-weight: 700;
}
.contactUsCard {
    margin-bottom: 22px;
}

.contactUsCard {
    background: #f1db9f;
    padding: 25px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 36px;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px; */
    box-shadow: rgb(0 0 0 / 5%) 0px 4px 12px;
    border: 1px solid #dddddd4a;
}

.contactUsCard::after {
    position: absolute;
    content: '';
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 10px 0px 17px 636px;
    border-color: transparent transparent #e61217 transparent;
    transform: rotate(0deg);
    right: 0px;
    bottom: 0px;
}

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

.contactIco {
    width: 50px;
    height: 50px;
    background: #fff;
    color: #020202;
    border-radius: 10px;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
}

.contactTitle {
    width: 89%;

}

.contactTitle h5 {
    font-size: 18px;
    color: #e10a0e;

}

.contactTitle p {
    font-size: 14px;
    line-height: 16px;
}

.contactMain {
    margin-top: 10px;
}

.contactMain a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    /* display: block; */
}

.contactWrapper {
    margin-top: 50px;
}

.otItemListing {
    position: relative;
}
.otgoCartBtn {
    position: fixed;
    bottom: 2%;
    width: 80%;
    background: #eb1723;
    border-radius: 40px;
    padding: 10px;
    left: 0px;
    right: 0px;
    margin: auto;
    text-align: center;
    color: #fff;
    /* display: none; */
    z-index: 3;
}
.otgoCartBtn h6 {
    color: #fff;
    font-weight: 200;
    font-size: 16px;;
}
.otgoCartBtn p {
    color: #fff;
    font-size: 15px;
}
.otgoCartBtn p i {
    font-size: 12px
}

.reviewCreateWrap {
    overflow: auto;
    height: 72vh;
    padding-right: 20px;
}

.reviewCreateWrap::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

.reviewCreateWrap::-webkit-scrollbar {
    width: 6px;
    background-color: #f1dba1;
    transition: all 0.4s ease-in-out;
}

.reviewCreateWrap::-webkit-scrollbar-thumb {
    background-color: #e8b633;
    border: 1px solid #f1dba1;
}

.cusReviewCreate .comment-list>.comment .comment-body {
    position: relative;
    /* padding-left: 100px; */
    margin-bottom: 30px;
    min-height: 95px;
    border-bottom: 1px solid rgba(34, 34, 34, .1);
    padding-bottom: 25px;
}

.cusReviewCreate .comment-list>.comment .comment-body .comment-author .avatar {
    position: absolute;
    left: 0;
    height: 80px;
    width: 80px;
    border-radius: 100%;
}

.cusReviewCreate .comment-list>.comment .comment-body .comment-author .fn {
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 8px;
    display: block;
}

.cusReviewCreate .comment-list>.comment .comment-body .star-rating {
    font-size: 14px;
    margin-bottom: 10px;
}

.cusReviewCreate .text-secondary {
    color: #ffc822 !important;
}

.cusReviewCreate .comment-list>.comment .comment-body p {
    font-size: 14px;
    text-align: justify;
    line-height: normal;
}

.becomePartnerForm.contactQueryFrom.commentReview {
    box-shadow: none;
    position: sticky;
    top: 94px;
}

.becomePartnerForm #stars {
    display: flex;
    margin-left: 10px;
}

.becomePartnerForm #stars li i {
    color: #dddd;
}

.becomePartnerForm #stars li i:hover {
    color: #ffc822 !important;
}

.becomePartnerForm {
    padding: 27px 25px;
    border-radius: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: #fff;
}

.becomePartnerForm form input.form-control , .becomePartnerForm form textarea.form-control{
    padding: 10px 20px;
    border-radius: 30px;
}

.becomePartnerForm form input.form-control:focus , .becomePartnerForm form textarea.form-control:focus {
    box-shadow: none;
    border-color: #ff8500;
}

.becomePartnerForm form input.form-control::placeholder , .becomePartnerForm form textarea.form-control::placeholder {
    color: #bbbbbb;
}

.becomePartnerForm .button {
    margin-left: 0;
    margin-top: 30px;
}

.reivewSection {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: #fff0d1;
}

.reivewWrapper {
    min-height: auto;
    background: #fff;
    max-width: 100%;
    margin: auto;
    padding: 40px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 20px;
    width: 70%;
}



.otSection.addMoreItemSec .otitemTotalPrice.otSidebar{
    top: 286px;
}
#moreItemAdded .otcartListWrapper{
    box-shadow: none;
}
#moreItemAdded .dz-shop-card.style-1 .dz-content .dz-head .dz-name {
    font-size: 16px;
}
#moreItemAdded .dz-shop-card.style-1 .dz-content     {
    padding: 0px 5px;
}
#moreItemAdded .qtyselector {
    font-size: 16px;
    height: 20px;
}
#moreItemAdded .qtyContainer .quantity-field {
    height: 20px;
    width: 40px;
}
#moreItemAdded  .otcartqty {
    gap: 0px;
}
.otSection.addMoreItemSec .order-detail table {
    margin-bottom: 0px;
}
.otSection.addMoreItemSec .order-detail {
    overflow: auto;
    height: 210px;
}
.otSection.addMoreItemSec .order-detail::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #ddd;
    background-color: #F5F5F5;
}

.otSection.addMoreItemSec .order-detail::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
    transition: all 0.4s ease-in-out;
}

.otSection.addMoreItemSec .order-detail::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border: 1px solid #ddd;
}



.otconfirmedBtnSec a i {
    font-size: 12px;
    margin: 0px;
    position: relative;
    top: -1px;
}
#addReviews .reivewWrapper {
    width: 100%;
    padding: 0px;
    box-shadow: none;
}
#addReviews .becomePartnerForm {
    padding: 10px;
}
#addReviews .becomePartnerForm form input.form-control, #addReviews .becomePartnerForm form textarea.form-control {
    padding: 8px 20px;
    border-radius: 15px;
}
.modalClose {
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 3;
    font-size: 13px;
}

#addReviews .formTitle {
    margin-bottom: 20px;
}

.middleheadBtn.otmenumiddleheadbtn {
    display: block;
}
.qtyContainer.onOTmenu {
    position: absolute;
    bottom: 20px;
    right: 32px;
    z-index: 3;
}


@media screen and (max-width: 1535px) and (min-width: 1301px) {
    .dz-shop-card.style-1 .dz-content .dz-head p {
        font-size: 15px;
        margin-left: 0px;
    }
    .veg_symbol {
        width: 16px;
        margin-bottom: 1px;
    }
    .otItemListCard .whats-new-sec p {
        font-size: 12px;
        margin-bottom: 0px;
        margin-top: 5px;
        line-height: 14px;
    }
    .otItemListCard .whats-new-sec .priceShow {
        margin-top: 6px;
    }
    .otItemListCard .whats-new-sec .defaultBtn a {
        bottom: 8%;
        right: 22px;
        line-height: 28px;
        height: 28px;
        width: 86px;
    }

}
@media screen and (max-width:1300px) and (min-width:1025px) {
    .popDestiImg img {
        height: 100%;
        object-fit: cover;
    }
    .copyright-section p {
        font-size: 13px;
        line-height: 20px;
    }
    .footer-social-links li a {
        width: 31px;
        height: 31px;
    }
    .footer-social-links li a i {
        font-size: 12px!important;
    }
    .footer-links ul {
        margin-top: 28px;
    }
    .footer-title h4 {
        font-size: 16px;
    }
    .footer-logo img {
        width: 160px;
    }
    .footer-links ul li a {
        font-size: 12px;
    }
    .defaultBtn a, .defaultBtn button {
        padding: 8px 23px;
        border-radius: 42px;
        background: linear-gradient(90deg, #eb1c22, #e0080c);
        color: #fff;
        font-weight: 500;
        position: relative;
        overflow: hidden;
        display: inline-block;
        height: 40px;
        font-family: 'Taviraj';
        font-size: 14px;
    }
    .defaultListView ul li {
        font-size: 13px;
    }
    .defaultListView .title {
        font-size: 16px;
    }
    .homeAboutPara p {
        font-size: 14px;
    }
    .secTitle .mainTitle {
        font-size: 30px
    }
    .aboutImg img.aboutImg1 {
        width: 78%;
    }
    .SecWrap.aboutWrapper {
        padding: 40px;
    }
    .menuCategoryImg {
        width: 120px;
        height: 120px;
    }
    .otItemListCard .whats-new-sec .whats-new-sec-img {
        height: 152px;
    }
    .searchbar .seachInput {
        min-width: 270px;
    }
    .logoSection {
            width: 180px;
    }
    .dz-shop-card.style-1 .dz-content .dz-head .rate {
        background: #30a355;
        color: #fff;
        border-radius: 10px;
        padding: 1px 6px;
        font-weight: 500;
        font-size: 8px;
        line-height: 15px;
        position: absolute;
        left: 23px;
        bottom: 11px;
    }
    .dz-shop-card.style-1 .dz-media {
        min-width: 12%;
        width: 12%;
    }
    .dz-shop-card.style-1 .dz-content .dz-head .dz-name {
        font-weight: 600;
        font-size: 16px;
        line-height: 20px;
        color: #404040;
    }
    .qtyContainer {
        width: 84px;
        padding: 3px 9px;
        height: 29px;
        margin-top: 4px;
    }
    .otcarteachPrice {
        margin-left: 0px;
        font-size: 10px;
    }
    .otcartqty {
        flex-direction: column;
        gap: 1px;
    }
    .dz-shop-card.style-1 .dz-content .dz-head p {
        font-size: 12px;
    }
    .prparaReadBtn {
        font-size: 11px;
    }
    .otItemListCard .whats-new-sec h4 {
        font-size: 16px;
        line-height: normal;
    }
    .veg_symbol {
        width: 13px;
        margin-bottom: 1px;
        position: absolute;
        top: 9px;
    }
    .otItemListCard .whats-new-sec p {
        font-size: 9px;
        margin-bottom: 0px;
        margin-top: 4px;
        line-height: 14px;
    }
    .otItemListWrap .whats-new-sec .prparaReadBtn {
        font-size: 10px;
        color: #e71f22;
        font-family: 'Poppins';
        line-height: normal;
    }
    .otItemListCard .whats-new-sec .whats-new-content {
        width: 70%;
        text-align: left;
        position: unset;
        padding: 10px;
        padding-top: 15px;
    }
    .otItemListCard .whats-new-sec .priceShow {
        margin-top: 6px;
        color: #111;
    }
    .otItemListCard .whats-new-sec .defaultBtn a {
        bottom: 10%;
        right: 17px;
        line-height: 25px;
        height: 27px;
        width: 66px;
    }
    .otItemListCard .whats-new-sec .whats-new-sec-img {
        height: 121px;
        padding: 9px;
    }
    .otItemListCard .whats-new-sec .defaultBtn a span {
        font-size: 11px;
        text-transform: uppercase;
    }
    .site-width {
        max-width: 1000px;
    }
    .SliderContentsWrapper{
        max-width: 1000px;
    }
    .SliderContents {
        width: 50%;
        left: 0%;
    }
    .hero-style {
        height: 395px;
        transition: all .4s ease;
    }
    .sliderProductImg {
        position: absolute;
        bottom: 1%;
        right: 0%;
        z-index: 2;
        width: 50%;
    }
    .sliderSurface {
        position: absolute;
        bottom: 10%;
        right: 0px;
        z-index: 1;
        width: 48%;
    }
    .hero-style .slide-title h2 {
        font-size: 40px;
    }
    .sliderProduct{
        top: 10%;
    }
    .whats-new-sec h4{
        font-size: 15px;
    }
    .secImg img.image-i{
        width: 100%;
    }
    .secImg img.image-ii{
        bottom: -30%;
        right: 0px;
        width: 280px;
        border: 3px solid #fff;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        left: 0px;
        margin: auto;
    }
    .videoPop{
        top: 71%;
        left: 50%;
    }
}

@media screen and (max-width:1024px) and (min-width:769px) {
    .horizontal.timeline .steps .step {
        width: 30px;
        height: 30px;
        line-height: 26px;
    }
    .otStepIco {
        width: 25px;
    }
    .horizontal.timeline .steps .step span {
        font-size: 10px;
    }
    .topHeader {
        margin-top: -46px;
    }
    .dz-shop-card.style-1 .dz-content {
        padding: 12px;
    }
    .dz-shop-card.style-1 .dz-content .dz-head .rate {
        background: #30a355;
        color: #fff;
        border-radius: 10px;
        padding: 1px 6px;
        font-weight: 500;
        font-size: 8px;
        line-height: 15px;
        position: absolute;
        left: 13px;
        bottom: 11px;
    }
    .dz-shop-card.style-1 .dz-media {
        min-width: 12%;
        width: 12%;
    }
    .dz-shop-card.style-1 .dz-content .dz-head .dz-name {
        font-weight: 600;
        font-size: 16px;
        line-height: 20px;
        color: #404040;
    }
    .qtyContainer {
        width: 84px;
        padding: 3px 9px;
        height: 29px;
        margin-top: 4px;
    }
    .otcarteachPrice {
        margin-left: 0px;
        font-size: 10px;
    }
    .otcartqty {
        flex-direction: column;
        gap: 1px;
    }
    .dz-shop-card.style-1 .dz-content .dz-head p {
        font-size: 12px;
    }
    .prparaReadBtn {
        font-size: 11px;
        line-height: normal;
    }
    .dz-shop-card.style-1 .dz-content .dz-head p {
        line-height: 13px;
        margin-top: 7px;
    }
    .otItemListCard .whats-new-sec h4 {
        font-size: 16px;
        line-height: normal;
    }
    .veg_symbol {
        width: 13px;
        margin-bottom: 1px;
        position: absolute;
        top: 9px;
    }
    .otItemListCard .whats-new-sec p {
        font-size: 9px;
        margin-bottom: 0px;
        margin-top: 4px;
        line-height: 14px;
    }
    .otItemListWrap .whats-new-sec .prparaReadBtn {
        font-size: 10px;
        color: #e71f22;
        font-family: 'Poppins';
        line-height: normal;
    }
    .otItemListCard .whats-new-sec .whats-new-content {
        width: 70%;
        text-align: left;
        position: unset;
        padding: 10px;
        padding-top: 15px;
    }
    .otItemListCard .whats-new-sec .priceShow {
        margin-top: 6px;
        color: #111;
    }
    .otItemListCard .whats-new-sec .defaultBtn a {
        bottom: 10%;
        right: 17px;
        line-height: 25px;
        height: 27px;
        width: 66px;
    }
    .otItemListCard .whats-new-sec .whats-new-sec-img {
        height: 121px;
        padding: 9px;
    }
    .otItemListCard .whats-new-sec .defaultBtn a span {
        font-size: 11px;
        text-transform: uppercase;
    }
    .otItemListWrap .row > .col-md-4 {
        width: 100%;
    }

    .logoSection{
        width: 140px;
    }
    .otHeader  .logoSection {
        width: 180px;
    }
    .searchbar .seachInput{
        min-width: 230px;
    }
    .middleheadBtn{
        align-items: center;
        flex-direction: column-reverse;
    }
    .SliderContentsWrapper{
        padding: 0px 20px;
    }
    .SliderContents {
        width: 50%;
        left: 2%;
    }
    .hero-style {
        height: 395px;
        transition: all .4s ease;
    }
    .sliderProductImg {
        position: absolute;
        bottom: 1%;
        right: 0%;
        z-index: 2;
        width: 50%;
    }
    .sliderSurface {
        position: absolute;
        bottom: 10%;
        right: 0px;
        z-index: 1;
        width: 48%;
    }
    .hero-style .slide-title h2 {
        font-size: 40px;
    }
    .sliderProduct {
        top: 0%;
    }
    .whats-new-sec h4{
        font-size: 15px;
    }
    .secImg img.image-i{
        width: 100%;
    }
    .secImg img.image-ii{
        bottom: -30%;
        right: 0px;
        width: 100%;
        border: 3px solid #fff;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        left: 0px;
        margin: auto;
        position: unset;
        margin-top: 15px;
    }
    .videoPop {
        top: 54%;
        left: 50%;
    }
    .midMobBtn li::after{
        display: none;
    }
    .hero-style .slide-title h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    .sliderFeature span{
        width: 88px;
    }
    /* .sliderFeature span:first-child img{
        width: 100%;
    } */
    .sliderFeature span img{
        width: 100%;
        position: relative;
    }
    .featuresCard{
        padding: 10px;
    }
    .fCardContent h4{
        font-size: 15px;
    }
    .fCardContent p {
        font-size: 16px;
        line-height: 19px;
        padding-bottom: 10px;
    }
    .defaultListView ul li{
        width: 50%;
    }
    .defaultListView .title {
        font-size: 16px;
        margin-top: 10px;
    }
    p{
        line-height: 22px;
    }
    .homeAboutPara .defaultBtn {
        margin-top: 14px;
    }
    .secbg img {
        width: 100%;
        height: 100%;
    }
    .categoryImg{
        width: 30%;
        border-radius: 8px;
    }
    .categoryContent h4{
        font-size: 13px;
    }
    .homeAboutPara.companyProfile {
        padding-left: 20px;
    }
    .coutnerIco{
        width: 40px;
        height: 40px;
    }
    .teamSlidWrap{
        margin-right: 0px;
    }
    .footer-links ul li a{
        display: flex;
        align-items: baseline;
    }

}
@media screen and (max-width:768px) and (min-width:481px) {


    /* OT CARD start */
    .tablesNoWrap .orderTableNo {
        width: 30%;
    }
    .orderConfWrap .sectionTitle h6 {
        font-size: 12px;
    }
    .sectionTitle h4 {
        font-size: 22px;
    }
    .otOrderNo {
        font-size: 26px;
    }
    .horizontal.timeline {
        transform: translateX(-60px);
        padding-bottom: 0px;
    }
    .horizontal.timeline .steps .step.current:before {
        padding: 2em;
    }
    .horizontal.timeline .line {
        display: block;
        position: absolute;
        width: 33%;
        height: 0.2em;
        background-color: #f1db9f;
        transform: rotate(90deg) translateX(50%);
        left: 0px;
        right: 0px;
        margin: auto;
        top: 0px;
    }
    .horizontal.timeline:before {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 0.2em;
        background-color: #f2f2f2;
        transform: rotate(90deg);
    }
    .horizontal.timeline .steps {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .horizontal.timeline .steps .step {
        width: 30px;
        height: 30px;
        line-height: 26px;
        margin: 0px;
        margin-bottom: 30px;
    }
    .otStepIco {
        width: 25px;
    }
    .horizontal.timeline .steps .step span {
        font-size: 10px;
        top: 8px;
        left: 52px;
        transform: none;
    }
    .topHeader {
        margin-top: -46px;
    }
    .otListWrapper .col-md-9 {
        padding: 0px;
    }
    .otItemListWrap .row > .col-md-4 {
        width: 100%;
        padding: 0px;
    }
    .otItemListCard .whats-new-sec .whats-new-sec-img img  {
        border-radius: 10px;
        height: 100%;
        object-fit: cover;
    }
    .whats-new-sec {
        margin: 0px;
        margin-bottom: 14px;
        border-left: 0px;
        border-right: 0px;
        border-radius: 0px;
        border-top: 0px;
    }

    .otItemListCard .whats-new-sec .inner-box {
        display: flex;
        flex-direction: row-reverse;
        position: relative;
    }

    .otItemListCard .whats-new-sec .whats-new-content {
        width: 65%;
        text-align: left;
        padding-top: 18px;
        position: unset
    }

    .otItemListCard .whats-new-sec .whats-new-sec-img {
        background: #fff;
        width: 35%;
        padding: 12px;
        border: none;
        height: 150px;

    }

    .otItemListCard .whats-new-sec-img::after {
        height: 100%;
    }

    .otItemListCard .whats-new-sec h4 {
        font-size: 20px;
        line-height: normal;
    }

    .otItemListCard .whats-new-sec p {
        font-size: 12px;
        line-height: 19px;
        margin-bottom: 5px;
        margin-top: 1px;
    }
    .otItemListWrap .whats-new-sec .prparaReadBtn {
        line-height: normal;
    }
    .otItemListCard .whats-new-sec .defaultBtn a {
        top: auto;
        bottom: 5%;
        right: 6%;
        margin-right: 0px;
        padding: 0px 17px;
        line-height: 34px;
        height: 33px;
    }

    .otItemListCard .whats-new-sec .defaultBtn a span {
        font-size: 15px;
    }

    .otItemListCard .whats-new-sec .priceShow {
        font-size: 18px;
        margin-top: 3px;
    }

    .otItemListCard {
        padding: 10px;
    }

    /* OT CARD end */
    .hero-style {
        height: 380px;
    }
    .SliderContentsWrapper{
        padding: 0px 20px;
    }
    .SliderContents {
        width: 55%;
        left: 14px;
    }
    .hero-style .slide-title h2{
        font-size: 25px;
        margin: 0px;
        margin-bottom: 10px;
    }
    .hero-style .slide-text p{
        font-size: 13px;
        margin-bottom: 10px;
        line-height: 18px;
    }
    .sliderFeature span {
        width: 60px;
        display: inline-block;
    }
    .sliderFeature span img{
        width: 100%;
    }
    .sliderProductImg{
      width: 42%;
    }
    .sliderSurface {
        position: absolute;
        bottom: 10%;
        right: 4%;
        z-index: 1;
        width: 42%;
    }
    .sliderDot {
        position: absolute;
        left: 55%;
        top: 10%;
        width: 10%;
    }
    .logoSection {
        width: 120px;
    }
    .otHeader .logoSection {
        width: 150px;
    }
    .exchdr { padding-top: 15px; }
    .excutivelogo { width: 250px!important; }
    .headerMiddle {
        box-shadow: rgb(100 100 111 / 4%) 0px 7px 29px 0px;
        z-index: 2;
    }
    .sliderCMove1 {
        bottom: 6%;
        left: 57%;
        width: 6%;
    }
    .sliderCMove2{
        width: 4%;
    }
    .headerMain{
        top: unset;
    }
    .dropDownMenu { width: auto!important; }
    .otSidebar .sideLink a { padding: 5px 20px; }



}

@media screen and (max-width:480px) and (min-width:299px) {

    .tablesNoWrap .orderTableNo {
        width: 47%;
    }
    .orderConfirmed {
        width: 90%;
        padding: 20px;
    }
    .orderConfWrap .sectionTitle h6 {
        font-size: 12px;
    }
    .sectionTitle h4 {
        font-size: 22px;
    }
    .otOrderNo {
        font-size: 26px;
    }
    .horizontal.timeline {
        transform: translateX(-60px);
        padding-bottom: 0px;
    }
    .horizontal.timeline .steps .step.current:before {
        padding: 2em;
    }
    .horizontal.timeline .line {
        display: block;
        position: absolute;
        width: 33%;
        height: 0.2em;
        background-color: #f1db9f;
        transform: rotate(90deg) translateX(50%);
        left: 0px;
        right: 0px;
        margin: auto;
        top: 0px;
    }
    .horizontal.timeline:before {
        content: "";
        display: block;
        position: absolute;
        width: 0.2em;
        background-color: #f2f2f2;
        transform: rotate(0deg);
        left: 0px;
        right: 0px;
        margin: auto;
        top: 0px;
        bottom: 0px;
        height: 77%;
    }
    .horizontal.timeline .steps {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .horizontal.timeline .steps .step {
        width: 30px;
        height: 30px;
        line-height: 26px;
        margin: 0px;
        margin-bottom: 30px;
    }
    .otStepIco {
        width: 25px;
    }
    .horizontal.timeline .steps .step span {
        font-size: 10px;
        top: 8px;
        left: 52px;
        transform: none;
    }
    .topHeader {
        margin-top: -46px;
        display: none;
    }
    .orderTableLogo {
        width: 80%;
    }
     /* OT CARD start */
     .dz-shop-card.style-1 .dz-media {
        min-width: 19%;
        width: 19%;
    }
     .dz-shop-card.style-1 .dz-content .dz-head .rate {
        line-height: 12px!important;
        height: fit-content!important;
        left: 13px!important;
        bottom: 5px!important;
        font-size: 6px!important;
     }
     .dz-shop-card.style-1 .dz-content .dz-head .dz-name {
        line-height: 20px!important;
        font-size: 12px!important;
    }
     .dz-shop-card.style-1 .dz-content .dz-head p {
        font-size: 9px !important;
        line-height: 12px !important;
     }
     .prparaReadBtn {
        font-size: 9px!important;
        line-height: 13px!important;
    }
     .otListWrapper .col-md-9 {
        padding: 0px;
    }
    .otItemListWrap .row > .col-md-4 {
        width: 100%;
        padding: 0px;
    }
    .otItemListCard .whats-new-sec .whats-new-sec-img img  {
        border-radius: 10px;
        height: 100%;
        object-fit: cover;
    }
    .whats-new-sec {
        margin: 0px;
        margin-bottom: 14px;
        border-left: 0px;
        border-right: 0px;
        border-radius: 0px;
        border-top: 0px;
    }

    .otItemListCard .whats-new-sec .inner-box {
        display: flex;
        flex-direction: row-reverse;
        position: relative;
    }

    .otItemListCard .whats-new-sec .whats-new-content {
        width: 65%;
        text-align: left;
        position: unset;
        padding: 10px;
        padding-top: 25px;
    }

    .otItemListCard .whats-new-sec .whats-new-sec-img {
        background: #fff;
        width: 35%;
        padding: 13px;
        border: none;
        height: 123px;

    }

    .otItemListCard .whats-new-sec-img::after {
        height: 100%;
    }

    .otItemListCard .whats-new-sec h4 {
        font-size: 16px;
        line-height: normal;
    }
    .veg_symbol {
        width: 16px;
        margin-bottom: 8px;
        position: absolute;
        top: 4px;
    }
    .otItemListCard .whats-new-sec p {
        font-size: 10px;
        line-height: 15px;
        margin-bottom: 5px;
        margin-top: 5px;
    }
    .otItemListWrap .whats-new-sec .prparaReadBtn {
        line-height: normal;
        font-size: 9px;
    }
    .otItemListCard .whats-new-sec .defaultBtn a {
        top: auto;
        bottom: 0px;
        right: 0px;
        padding: 0px 12px;
        line-height: 26px;
        height: 28px;
        width: 70px;
        border: 1px solid #ddd;
        margin: auto;
    }

    .otItemListCard .whats-new-sec .defaultBtn a span {
        font-size: 15px;
    }

    .otItemListCard .whats-new-sec .priceShow {
        font-size: 16px;
        margin-top: 5px;
    }

    .otItemListCard {
        padding: 10px;
        margin-bottom: 0px;
    }

    /* OT CARD end */

    .pb-50 {
        padding-bottom: 20px;
    }

    .pt-50 {
        padding-top: 20px;
    }
    .hero-style {
        height: 150px;
    }
    .SliderContentsWrapper {
        padding: 0px 20px;
        margin: 0px 12px;
    }
    .SliderContents {
        width: 100%;
        left: 0px;
        right: 0px;
        margin-top: 110px ;
    }
    .hero-style .slide-title h2{
        font-size: 18px;
        margin: 0px;
        margin-bottom: 4px;
        text-align: center;
    }
    .hero-style .slide-text p{
        font-size: 11px;
        margin-bottom: 8px;
        line-height: 16px;
        text-align: center;
    }
    .sliderFeature span {
        width: 35px;
        display: inline-block;
    }
    .sliderFeature{
        text-align: center;
    }
    .sliderFeature span img{
        width: 100%;
    }
    .sliderProductImg {
        width: 42%;
        position: absolute;
        right: 0px;
        left: 0px;
        margin: auto;
    }
    .sliderSurface {
        position: relative;
        bottom: 0px;
        right: 0px;
        z-index: 1;
        width: 42%;
        left: 25%;
        top: 73%;
        margin: auto;
        width: 50%;
        margin-bottom: 0px;
    }
    .sliderDot {
        position: absolute;
        left: 55%;
        top: 10%;
        width: 10%;
    }
    .logoSection {
        width: 220px;
    }
    .otHeader  .logoSection {
        width: 150px;
    }
    .headerMiddle {
        box-shadow: rgb(100 100 111 / 4%) 0px 7px 29px 0px;
        z-index: 2;
    }
    .sliderCMove1 {
        bottom: 6%;
        left: 57%;
        width: 6%;
    }
    .sliderCMove2{
        width: 4%;
    }
    .headerMain{
        top: unset;
    }
    .sliderProduct {
        position: relative;
        height: 40%;
    }
    .sectionTitle h4{
        font-size: 25px;
    }
    .secTitle .mainTitle {
        font-size: 25px;
        margin-top: 20px;
    }
    .defaultListView ul li{
        width: 100%!important;
    }
    .defaultListView ul{
        left: 0%;
        position: relative;
    }
    .footer-links ul li {
        margin-bottom: 5px;
    }
    .footer-links ul{
        margin-top: 22px;
    }
    .footer-section{
        padding: 50px 0px;
    }
}

@media screen and (max-width:768px) {
    .orderTableWrapper {
        max-width: 100%;
    }
    .otPriceCard.otSidebar {
        position: relative;
        display: block;
        top: 0px;
        width: 100%;
    }
    .otPriceCard.otSidebar.otitemTotalPrice {
        display: block;
        position: fixed;
        bottom: 0px;
        left: 0px;
        right: 0px;
        top: 76%;
        width: 95%;
    }
    .otPriceCard.otSidebar.otitemTotalPrice .sideHeader {
        display: none   ;
    }
    .otPriceCard.otSidebar.otitemTotalPrice .order-detail table {
        margin-bottom: 0px;
    }
    .dz-shop-card.style-1 .dz-content {
        width: 100%;
        padding: 10px;
        padding-left: 4px;
    }
    .dz-shop-card.style-1 .dz-media {
        position: relative;
    }
    .dz-shop-card.style-1 .dz-content .dz-head .dz-name {
        line-height: 18px;
        font-size: 15px;
    }
    .dz-shop-card.style-1 .dz-content .dz-head p {
        font-size: 11px;
        line-height: 15px;
        margin-top: 9px;
        font-family: 'Poppins';
        margin: 0px;
    }
    .qtyContainer {
        width: 66px;
        height: 27px;
    }
    .qtyContainer .quantity-field {
        width: 39px;
        height: 23px;
    }
    .otcartqty {
        flex-direction: column;
        gap: 3px;
    }
    .prparaReadBtn {
        font-size: 11px;
    }
    .dz-shop-card.style-1 .dz-content .dz-head {
        align-items: unset;
        justify-content: flex-start;
        gap: 7px;
    }
    .dz-shop-card.style-1 .dz-content .dz-head .rate {
        position: absolute;
        left: 15px;
        bottom: 2px;
        display: flex;
        align-items: center;
        gap: 2px;
        font-size: 8px;
        padding: 0px 5px;
        height: fit-content;
    }

    .otItemListWrap {
        margin-top: 40px;
    }
    .otMenu {
        display: block;
    }
    .otSidecloser {
        display: block;
    }
    .sideHeader {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .otSidebar {
        position: fixed;
        z-index: 4;
        width: 95%;
        left: 0px;
        right: 0px;
        margin: auto;
        background: #fff;
        height: fit-content;
        overflow: auto;
        display: none;
        transition: opacity 0.3s ease;
    }
    .otSidebar.activeee { display: block!important; }
    

    .otMenu {
        float: right;
        z-index: 2;
        background: #020201;
        width: 54px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        gap: 0px;
        padding: 10px 6px;
        flex-direction: column;
    }
    .otMenu p {
        color: #fff;
        font-size: 12px;
        line-height: normal;
    }
    .otMenu .hamburger, .otMenu .hamburgerr {
       margin: 0px;
    }
    .otMenu .hamburger .line, .otMenu .hamburgerr {
        background-color: #fff;
        border-radius: 13px;
        width: 13px;
        height: 1px;
        margin: 3px 0px;
    }
    .otMenu #hamburger-11.is-active .line {
        width: 13px;
    }
    .otMenu #hamburger-11.is-active .line:nth-child(3) {
        -webkit-transform: unset;
        -ms-transform: unset;
        -o-transform: unset;
        transform: unset;

    }
    .otMenu #hamburger-11.is-active .line:nth-child(1) {
        -webkit-transform: unset;
        -ms-transform: unset;
        -o-transform: unset;
        transform: unset;
    }
    .otMenu #hamburger-11.is-active .line:nth-child(2) {
        opacity: unset;
    }
    .searchbarWrapper .suggestions {
        text-align: left;
        padding: 10px;
    }
    .otHeader .middleHeaderWrap {
        flex-direction: column;
        justify-content: flex-start;
        align-items: self-start;
    }

    .otHeader .searchbar {
        display: block;
        position: relative;
        max-width: 100%;
        width: 100%;
    }
    .otHeader .mealtype {
        position: absolute;
        top: 10px;
        right: 11px;
    }
    .otHeader .mealtype .form-select {
        font-size: 11px;
        padding: 4px 26px 4px 11px;
    }
    .otHeader .searchbarWrapper {
        display: flex;
        align-items: center;
        width: 100%;
        position: unset;
        margin-top: 11px;
    }
    .aboutImg img.aboutImg1  {
        width: 100%;
        position: relative;
        top: 0px;
        left: 0px;
    }
    .aboutImg img.aboutImg3 {
        width: 29%;
        position: absolute;
        bottom: 0px;
        transform: rotate(336deg);
        left: -21px;
    }
    .SecWrap.onlineorderWraper {
        padding: 20px;
    }
    .SecWrap.aboutWrapper {
        padding: 20px;
    }
    .menuCategoryImg {
        width: 100%;
        height: 170px;
    }
    .menuCategoryImg img {
        width: 100%;
        height: 170px;
    }


    .menuCategoryCard .cateTitle h4 {
        font-size: 15px;
    }
    .searchbarWrapper {
        display: none;
    }
    .videoPop{
        top: 100%;
        left: 50%;
    }

    .featured-swiper-container {
        padding: 0px 20px;
    }
    .headerMain {
        position: fixed;
        top: unset;
        display: none;
        z-index: 3;
        width: 100%;
        height: 100vh;
    }
    .headerMain.activee { display: block; }



    .searchbar .seachInput{
        width: 100%;
    }
    .middleheadBtn{
        display: none;
    }

    .hamburger{
        display: block;
        margin-left: 16px;
    }
    .searchbar .searchButton{
        background: none;
        color: #111111;
        padding: 9px;
    }
    .quickSearchMob{
        display: block
    }
    .searchbar {
        display: none;
        position: fixed;
        top: 14%;
        z-index: 2;
        width: 100%;
        left: 0px;
        right: 0px;
        margin: auto;
        max-width: 95%;
    }
    .searchbar .seachInput{
        min-width: 100%;
    }
    .advanceSearch{
        position: unset;
    }
    .searchbarWrapper {
        text-align: center;
    }
    .quickSearchMob i{
        font-size: 16px;
        margin-right: 5px;
    }
    .quickSearchMob a{
        font-weight: 700;
    position: relative;
    }
    .mainHeaderNav ul{
        flex-direction: column;
    }
    .mainHeaderNav ul li{
        width: 100%;
        margin: 0px;
    }
    .mainHeaderNav ul li.hasMegaMenu{
        position: relative;
    }
    .mainHeaderNav ul li a{
        display: block;
        border-bottom: 1px solid #bdbdbd;
    }
    .hasMegaMenu i {
        color: #fff;
        font-size: 13px;
        position: relative;
        left: auto;
        transition: 0.4s ease-in-out;
        position: absolute;
        right: 1px;
        z-index: 3;
        top: 4px;
        padding: 10px;
    }
    .mainHeaderNav ul li.hasMegaMenu:hover .dropDownMenu {
        top: unset;
        visibility: unset;
        opacity: unset;
        margin: 15px 0px;
    }
    .mainHeaderNav ul li.hasMegaMenu .dropDownMenu {
        top: 100%;
        visibility: visible;
        opacity: 1;
        display: none;
        transition: initial;
        position: relative;
        background: #d9d9d9;
        border: none;
        border-radius: 5px;
    }
    .dropDownName h4 {
        color: #0c0c0c;
    }
    .mainHeaderNav ul li.hasMegaMenu i.active {
        color: #ffffff;
        transform: rotate(180deg);
    }
    .dropDownCard{
        margin: 0px;
        margin-bottom: 10px;
    }
    .mainHeaderNav ul li .dropDownCol a{
        border: none;
    }
    .dropDownMenuRow{
        flex-direction: column;
    }
    .dropDownCol{
        width: 100%;
    }
    .mainHeaderNav ul li a.active, .mainHeaderNav ul li a:hover {
        color: #0c0c0c;
    }
    .mainHeaderNav ul li.hasMegaMenu:hover i {
        color: #6a6a6a;
    }
    .mainHeaderNav ul li.hasMegaMenu  i {
        color: #6a6a6a;
    }

    .hero-slider .swiper-container-horizontal>.swiper-pagination-bullets{
        bottom: -8px;
    }
    .topHeadMessage ul:last-child{
        display: none;
    }
    .topHeadMessage ul li h6{
        font-size: 10px;
        color: #fff;
        text-align: center;
    }
    .marqueeWrapper a{
        font-size: 10px;
    }
    .featuresCard{
        margin-bottom: 16px;
    }
    .tiffinBookingCard{
        flex-direction: column;
    }
    .tbcIco{
        width: 100%;
        margin-right: 0px;
    }
    .tbcContent{
        width: 100%;
        text-align: center;
        margin-top: 18px;
    }
    .cardButtonSection{
        flex-direction: column;
    }
    .tbcContent h3 {
        font-size: 18px;
        margin-bottom: 7px;
    }
    .secbg{
        width: 100%;
    }
    /* .secImg img.image-i{
        display: none;
    } */
    .secImg img.image-ii{
        position: unset;
        width: 100%;
    }
    .homeAboutPara{
        text-align: center;
        margin-top: 20px;
    }
    .defaultListView ul li{
        width: 50%;
        background-position: left top 5px;
        line-height: 24px;
        text-align: left;
    }
    .footer-links{
        padding-left: 0px;
        margin-top: 20px;
    }
    .copyright-section{
        text-align: center;
    }
    .ltn__copyright-menu.text-end{
        text-align: center!important;
    }
    #button{
        width: 35px;
        height: 35px;
    }
    #button::after{
        font-size: 1.5em;
        line-height: 37px;
    }
    .teamSlidWrap{
        margin-right: 0px;
    }
    .secbg.bgcolor2{
        width: 100%;
        opacity: 0.06;
    }
    .homeAboutPara.companyProfile{
        padding-left: 0px;
    }
    .coutnerIco{
        position: unset;
    }
    .countersWrap .common-box{
        display: flex;
        flex-direction: column-reverse;
    }
    .countersWrap .common-box .counter-text{
        width: 100%;
    }
    .homectfrombg{
        width: 100%;
        position: unset;
    }
    .internationVentures{
        padding-top: 0px;
    }
}



@media screen and (max-width: 768px) {
    .otPriceCard.otSidebar.otitemTotalPrice {
        position: unset;
    }
    #moreItemAdded .dz-shop-card.style-1 .dz-content .dz-head {
        justify-content: space-between;
    }

}
@media screen and (max-width: 480px) {
    .dz-shop-card.style-1 .dz-content .dz-head .dz-name {
        font-weight: 500;
        font-size: 14px!important;
        line-height: 21px!important;
    }
    .qtyContainer .quantity-field {
        width: 34px;
        height: 18px;
        font-size: 11px;
    }
    .qtyContainer {
        width: 66px;
        height: 20px;
    }
    .qtyselector {
        border: none;
        background: transparent;
        width: 20px;
        height: 18px;
        border-radius: 6px;
        font-size: 14px;
        line-height: 11px;
    }
    .usersLog li a {
        font-size: 16px;
        background: #ddd;
        width: 36px;
        display: inline-block;
        height: 36px;
        FONT-WEIGHT: 200;
        border-radius: 10px;
        text-align: center;
        line-height: 41px;
    }
    .qtyContainer.onOTmenu {
        top: auto;
        bottom: 0px;
        right: 0px;
        left: 0px;
        margin: auto;
        width: 70px;
        height: 28px;
        border-radius: 30px;
    }    
    .menuCategoryImg {
        height: 130px;
    }
    .menuCategoryImg img {
        height: 130px;
    }
}
@media screen and (max-width: 360px) {
    .menuCategoryImg, .menuCategoryImg img {
        height: 100px;
    }
}
@media screen and (max-width: 320px) {
    .menuCategoryImg, .menuCategoryImg img {
        height: 90px;
    }
}

.loading {
    border-bottom: 4px solid rgba(0, 0, 0, 0.2);
    border-left: 4px solid rgba(0, 0, 0, 0.2);
    border-right: 4px solid rgba(0, 0, 0, 0.2);
    border-top: 4px solid rgba(0, 0, 0, 0.5);
    border-radius: 100%;
    height: 32px;
    width: 32px;
    animation: spin 0.6s infinite linear;
    text-indent: 999em;
    margin: 3em auto;
  }
  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(359deg);
    }
  }


  .loaderouter{
      position: fixed;
      display: none;
      justify-content: center;
      align-items: center;
      width: 100%;
      height:100vh;
      z-index: 99999999999;
  }

  .no_item_cart{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 198px;
    font-size: 25px;
}


.back_button_container{
    margin: 2px 5px;

}

.horizontal.timeline .line.cancelled_status {
    width: 100%;
}

.reorderValueDiv {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    width: 100%;
    margin: 0px;
}
.reorderValueDiv span {
    font-size: 15px;
}
.reorderValueDiv span:last-child {
    padding-right: 8px;
    text-align: right;
}


.horizontal.timeline .steps .step.colorstaut4 {
    background: #9d00b9;
}
.horizontal.timeline .steps .step.current.colorstaut4 {
    color: #9d00b9;
}
.horizontal.timeline .steps .step.colorstaut3 {
    background: #00b807;
}
.horizontal.timeline .steps .step.current.colorstaut3 {
    color: #00b807;
}
.horizontal.timeline .steps .step.colorstaut2 {
    background: #00b485;
}
.horizontal.timeline .steps .step.current.colorstaut2 {
    color: #00b485;
}


.error_message{
    color:red;
    font-size:14px;
}











/*whatsapp css*/

#whatsapp {
    position: fixed;
    right: 30px;
    text-align: center;
    height: 50px;
    width: 50px;
    font-size: 35px;
    background-color: #13a4e1;
    border-radius: 100%;
    bottom: 100px;
    z-index: 100000000000;
    -webkit-animation: mymove 3s;
    -webkit-animation-iteration-count: infinite;
    animation: mymove 3s;
    animation-iteration-count: infinite;
}


@-webkit-keyframes mymove {
    from {
        bottom: 100px;
    }

    to {
        bottom: 100px;
        background-color: #01e675;
        transform: rotateZ(360deg);
        -webkit-transform: rotateZ(360deg);
        -moz-transform: rotateZ(360deg);
        -ms-transform: rotateZ(360deg);
    }
}

@keyframes mymove {
    from {
        bottom: 100px;
    }

    to {
        bottom: 100px;
        background-color: #01e675;
        transform: rotateZ(360deg);
        -webkit-transform: rotateZ(360deg);
        -moz-transform: rotateZ(360deg);
        -ms-transform: rotateZ(360deg);
    }
}

@media screen and (max-width: 479px) and (min-width: 300px) {
    #whatsapp {
        height: 30px;
        width: 30px;
        font-size: 16px;
        bottom: auto;
        top: 77%;
    }
}