* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

body {

    font-family: 'Open Sans', sans-serif;
    color: #0c0c0c;
    font-size: 14px;

}

p {
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    line-height: 24px;
    color: #0c0c0c;
    font-weight: 500;
}

a {
    font-size: 14px;
    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: 'Open Sans', sans-serif;
    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: 'Open Sans', serif;
    margin: 0px;
    color: #0a0909;
}

p {
    margin: 0px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-40 {
    padding-bottom: 40px;
}

.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:1024px) {
    .site-width {
        padding: 0px 20px;
    }
}

@media screen and (max-width:768px) {
    .site-width {
        padding: 0px 15px;
    }
}



/* 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: 14px;
    --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: 14px;
    --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(180deg, #47206e, #311952);
}

.head-top-bar .top-head-welcome .textth {
    color: #fff;
}

.topHeadMessage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0px;
}

.topHeadMessage ul {
    display: flex;
    color: #ddd;
}

.topHeadMessage ul li h6 {
    font-size: 14px;
    color: #fff;
}

.topHeadMessage ul li {
    color: #fff;
    font-size: 14px;
}

.topHeadMessage ul li a {
    color: #fff;
    font-size: 13px;
    width: 22px;
    height: 22px;
    border-radius: 100%;
    text-align: center;
    display: inline-block;
    line-height: 24px;
    margin: 0px 0px 0px 10px;
}

.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: 100%;
    margin: 0px auto;
    padding: 5px 0px;
    border-top: 1px dashed #f0eaf1;
    position: relative;
}

.marqueeWrapper::after {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    bottom: 0px;
    width: 100px;
    height: 100%;
    background: #d4b6ff;
    z-index: 1;
}

.marqueeWrapper a {
    font-size: 13px;
    color: #484848;
}


.topHeadMessage ul.marqueeWrapper li {
    display: block;
    width: 100%;
}

.afterhdr-marquee {
    background: #fff;
    /* position: relative; */
    /* z-index: 3; */
    display: flex;
    align-items: center;
}

.afterhdr-marquee h5 {
    position: relative;
    /* left: 0px; */
    z-index: 2;
    /* padding: 0px 10px 0px 0px; */
    font-size: 14px;
    /* background: #fff; */
    font-weight: 500;
}

.afterhdr-marquee h5::after {
    position: absolute;
    content: '';
    right: 0px;
    width: 1px;
    height: 80%;
    visibility: hidden;
    top: 0px;
    bottom: 0px;
    margin: auto;
    background: #f0eaf1;
    ;
}

.afterhdr-marquee h6 {
    font-size: 13px;
    margin: 0px 0px 0px 0px;
    padding: 0px;
}

.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: 14px;
}

.topHeadContact ol li i {
    color: #ddd;
    margin-right: 5px;
    font-size: 13px;
}

.headerMiddle {
    padding: 6px 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;
}

.searchbar .seachInput {
    min-width: 400px;
    height: 40px;
    border: 1px solid #ddddddcf;
    border-radius: 7px;
    padding: 8px 16px;
    overflow: hidden;
}

.searchbar .seachInput::placeholder {
    color: #a0a0a0;
}

.searchbar .seachInput:focus {
    border-color: #381b5a78;
}

.searchbar .searchButton {
    position: absolute;
    right: 1px;
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 7px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    height: fit-content;
    font-size: 15px;
    color: #fff;
    background: linear-gradient(0deg, #2a085a, #462673);
    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: 7px;
    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;
}

.searchbarWrapper .suggestions div {
    border-bottom: 1px solid #461d6538;
    padding: 5px 10px;
}

.searchbarWrapper .suggestions div:hover {
    background: #441c6214;
    ;
}

.searchbarWrapper .suggestions div:first-child {
    padding-top: 0px;
}

.searchbarWrapper .suggestions div:last-child {
    border-color: transparent;
    padding-bottom: 0px;
}

.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: 14px;
    color: #4b2472;
    /* margin-right: 5px; */
    position: relative;
    top: 1px;
}

.midMobBtn li a {
    font-weight: 600;
}

.headerMain {
    position: relative;
    background: #efeaf1;
}

.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: 168px;
    position: relative;
    top: -7px;
}

.logoSection img {
    width: 100%;
}

.mainHeaderNav ul {
    display: flex;
    align-items: center;
    position: relative;
}

.mainHeaderNav ul li {
    margin: 0px 0px 0px 10px;
}

.mainHeaderNav ul li:first-child {
    margin-left: 0px;
}

.mainHeaderNav ul li a {
    color: #0c0c0c;
    padding: 10px 12px;
    position: relative;
    display: inline-block;
    font-weight: 500;
}

.mainHeaderNav ul li a.active,
.mainHeaderNav ul li a:hover {
    background: #d4b6ff;
    color: #462673;
    padding: 10px 12px;
}

.mainHeaderNav ul li.hasMegaMenu a {
    padding-right: 22px;
}

.mainHeaderNav ul li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 3px;
    background: #462673;
    bottom: 0px;
    left: 0px;
    transition: 0.4s ease-in-out;
}

.hasMegaMenu i {
    color: #343434;
    font-size: 13px;
    position: relative;
    left: -18px;
    transition: 0.4s ease-in-out;
}

.mainHeaderNav ul li.hasMegaMenu:hover i {
    color: #00480a;
}

.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; */
    max-width: 900px;
    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: 4;
    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;
}

.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: 14px;
    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: 33.33%;
}

.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 #11111124;
    transition: 0.4s ease-in-out;
    margin: 8px;
}

.dropDownCard:hover {
    background: #dab5fdad;
    border-color: #4b257278;
}

.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: 14px;
    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: #340459;
    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: #340459;
    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: 512px;
    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: 480pxpx;
    }
}

@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: 14px;
        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);
    }
}



.aboutCompany {
    height: 100%;
    width: 34%;
    padding: 0px 23px;
}

.bannerWrapperSection {
    display: flex;
    height: 100%;
    align-items: center;
    /* background: #005ba8; */
}

.hero-slider {
    width: 100%;
}

.bgColor1 {
    background: #f5fff8;
}

.bgColor3 {
    background: #fff;
}

.features {
    padding-top: 50px; 
}

.featuresWrapper {
    max-width: 100%;
    margin: 0px auto;
}

.featuresCard {
    padding: 20px;
    background: linear-gradient(359deg, #f7f7f7, #47206e00, #f7f7f7);
    border-radius: 10px;
    border: none;
    /* min-height: 216px; */
    position: relative;
}

.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: 700;
    color: #47236b;
    margin-bottom: 5px;
    margin-top: -10px;
}

.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: 14px;
}


.whats-new-sec {
    background-color: #f3f3f3;
    margin: 20px 0px;
    border-radius: 8px;
}

.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: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;
}

    .whats-new-sec-img img {
        width: 100%;
        max-width: 293px;
        max-height: 293px;
    }

.whats-new-content {
    padding: 0px 16px;
    padding-top: 15px;
    text-align: center;
}

.whats-new-sec h4 {
    font-size: 17px;
    margin-bottom: 8px;
    line-height: 22px;
    font-weight: 600;
}

.whats-new-sec p {
    line-height: 20px;
    margin-bottom: -5px;
}

.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: 33px;
    padding: 4px 20px;
    position: relative;
    top: 18px;
    border-radius: 8px;
}


.sectionTitle {
    text-align: center;
    position: relative;
}

.sectionTitle::after {
    content: '';
    position: absolute;
    width: 100px;
    margin: auto;
    height: 3px;
    background: #4b1c6c;
    left: 0px;
    right: 0px;
    border-radius: 30px;
    bottom: -10px;
}

.sectionTitle::before {
    content: '';
    position: absolute;
    width: 16px;
    margin: auto;
    height: 16px;
    background: #111111;
    left: 0px;
    right: 0px;
    border-radius: 100%;
    bottom: -16px;
    border: 3px solid #f6fafd;
    z-index: 1;
}

.sectionTitle h4 {
    font-size: 36px;
    font-weight: 700;
    color: #451e6d;
    letter-spacing: -1px;
}

.sectionTitle.light h4 {
    color: #fff;
}

.sectionTitle.light::before {
    background: #451e6d;
}

.sectionTitle.light::after {
    background: #f7f7f7;
}

.featured-swiper-container {
    margin-top: 50px;
    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;
}

.bg2 {
    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: #fffffff7;
    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: #2a085a;
    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: #462673;
}

.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: #462673;
}

.useforDefault {
    width: fit-content;
    margin: 0px auto;
}


.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: 14px;
    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: -35px;
        right: 20px;
        /*width: 290px;*/
        width: 400px;
        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: #48216f;
    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: #48216f;
}

.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;
    }
}

.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.2;
    width: 956px;
    margin-left: auto;
}

.homeAboutPara.inner.sec2 {
    margin-top: 50px;
}

.homeAboutPara.inner.sec2 p {
    text-align: justify;
}

.homeAboutPara.inner.sec2 h4 {
    font-weight: 600;
}

.homeAboutPara.inner p {
    margin-top: 8px;
    text-align: justify;
}

.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: 14px;
    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: #462673;
    display: inline-block;
    padding: 0px;
    border-radius: 10px;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
    position: relative;
    padding-bottom: 3px;
}

.secTitle .subTitle::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background: #34343403;
    bottom: 0px;
    left: 0px;
}

.secTitle .mainTitle {
    color: #343434;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.defaultListView .title {
    font-size: 18px;
    margin-top: 20px;
}

.defaultListView ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.defaultListView ul li {
    width: 48%;
    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: 8px 20px;
    border-radius: 7px;
    background: linear-gradient(180deg, #462673, #462673);
    color: #fff;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    display: inline-block;
    height: 40px;
}

.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;
}

.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: 14px;
    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(../images/background/bg-2.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: 120px;
    margin: 0px 0px 0px 0px;
}

.footer-co-description p {
    font-size: 15px;
    color: #fff;
    margin-top: 15px;
    line-height: 22px;
    text-align: justify;
}

.footer-links {
    padding-left: 20px;
}

.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, #8107df, #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, #8107df);
}

.footer-links ul {
    padding-left: 0px;
    margin-top: 48px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.4s ease-in-out;
    line-height: 22px;
}

.footer-links ul li a:hover {
    color: #00cbff;
}

.footer-links .address-sec li {
    margin-bottom: 12px;
    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: #8d00dd;
    font-size: 14px;
}

.follow-us-on-text {
    color: #fff;
    margin-top: 10px;
}

.footer-social-links {
    display: flex;
    margin-top: 5px !important;
}

.footer-social-links li a {
    display: flex;
    width: 31px;
    height: 31px;
    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: 14px;
}

.footer-social-links .fa-instagram {
    background: -webkit-linear-gradient(#556db3, #ea3367, #ff4f28, #ffad57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 15px;
}

.footer-social-links .fa-twitter {
    color: #009feb !important;
    font-size: 14px;
}

.footer-social-links .fa-youtube {
    color: #f70000 !important;
    font-size: 14px;
}

.footer-social-links .fa-linkedin-in {
    color: #0079b5;
    font-size: 14px;
}



.footer-links .address-sec li a i {
    margin-right: 14px;
    color: #8107df;
    font-size: 15px;
}

.footer-links ul li a i {
    font-size: 12px;
}

.footer-links ul li a i {
    font-size: 9px;
    margin-right: 5px;
}

.footer-social-links i.fa-x-twitter {
    color: #000;
    font-size: 12px;
}

.footer-links ul.footer-social-links i {
    margin: 0px;
}

.copyright-section {
    width: 100%;
    background: #1d1d1d;
    padding: 12px 0px;
}

.copyright-section p {
    margin: 0px;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
}



/* Go to Top */

#button {
    display: inline-block;
    background: linear-gradient(0deg, #2a085a, #462673);
    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: 120px;
    background: linear-gradient(90deg, #00ff3f14, white), url(../img/texture/t1.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    border-bottom: 1px solid #dddddd82;
}

.inbnrNavWrap {
    min-height: 120px;
}

.inbnrNavWrap .row {
    min-height: 120px;
}

.inbnrNavTitle {
    text-align: left;
}

.inbnrNavTitle h2 {
    font-weight: 800;
    font-size: 22px;
    color: #004912;
}

.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: #006d14;
}

.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: 14px;
}

.contactqueryForm .form-control.textarea {
    height: auto;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 14px;
}

.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;
}

/*  */
/* .innerBnrNav {
   
} */
.inrBrnImgandTitle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 65px;
    text-align: center;
    background: #ffffff;
    position: relative;
}

.inrBrnImgandTitle h4 {
    color: #462673;
    color: #462673;
    /* margin-bottom: 12px; */
    font-weight: 700;
    font-size: 30px;
}

.inrBrnImgandTitle p {
    color: #ddd;
}

.bnrNav {
    padding: 10px 0px;
    background: #faf8fa;
}

.bnrNavWrap ul {
    display: flex;
    align-items: center;
    position: relative;
}

.bnrNavWrap ul li {
    padding-right: 16px;
    position: relative;
    margin-right: 10px;
}

.bnrNavWrap ul li.gotoProductList {
    position: absolute;
    right: 0px;
    padding-right: 0px;
    margin-right: 0px;
}

.bnrNavWrap ul li.gotoProductList i {
    font-size: 10px;
}

.bnrNavWrap ul li::after {
    position: absolute;
    content: '';
    right: 0px;
    background-image: url(../img/icons/right-arrow-nav.png);
    width: 8px;
    height: 8px;
    background-size: contain;
    top: 0px;
    bottom: 0px;
    margin: auto;
}

.bnrNavWrap ul li:last-child:after {
    display: none;
}

.bnrNavWrap.listings ul li:nth-last-child(-n+2):after {
    display: none;
}

.bnrNavWrap ul li:nth-last-child(-n+2) a {
    color: #4b2572;
}

.bnrNavWrap ul li a {
    color: #000;
    font-weight: 600;
    font-size: 11px;
}

.bnrNavWrap ul li:last-child a {
    color: #4b2572;
    font-weight: 600;
}

.productPara {
    background: #fcfafd;
    background: #fbfafd;
    padding: 22px;
    border-radius: 6px;
}

.productPara p {
    text-align: justify;
    margin-top: 0px;
}

.prparaReadBtn {
    color: #4b2572;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.5px;
}

.productListingWrap {
    padding-top: 40px;
}

.prlistMorePara {
    display: none;
}

.productListingWrap .whats-new-sec {
    margin-top: 0px;
    margin-bottom: 60px;
}

.productDetailWrapper {
    padding-left: 20px;
}

.productTitle {
    margin-bottom: 13px;
}

.productTitle h2 {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #462673;
}

.productTitle p {
    font-weight: 700;
    color: #585858;
    margin-top: 5px;
    font-size: 16px;
}

.productPrice {
    margin-bottom: 10px;
}

.productPrice>* {
    font-size: 18px;
    font-weight: 700;
    color: #323232;
}

.productPrice span {
    font-size: 22px;
    color: #4b2572;
}

.productFeature ul {
    margin: 5px 0px;
}

.productFeature ul li {
    padding-left: 23px;
    background-image: url(../img/icons/bullet-point.png);
    background-size: 16px;
    background-position: left top 4px;
    background-repeat: no-repeat;
    line-height: 24px;
}

.productImgWrap {
    display: flex;
    flex-direction: column;
}

.productMainImg {
    width: 100%;
    margin-left: 5px;
}

/* 
.produThumbWrap {
    width: 20%;
} */

.productdTab2 {
    margin-top: 22px;
    box-shadow: rgb(149 157 165 / 8%) 0px 8px 24px;
    padding: 4px;
    border-radius: 6px;
    border: 1px solid #dddddd1c;
}

.productdTab2 .brand-outer {

    max-height: 530px;

    overflow-y: auto;

    overflow-x: hidden;
}

.productdTab2 .brand-outer::-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%;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.productdTab2 .brand-outer::-webkit-scrollbar {
    width: 4px;
    background-color: #F5F5F5;
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;

}

.productdTab2 .brand-outer:hover:-webkit-scrollbar {
    visibility: visible;
    opacity: 1;

}

.productdTab2 .brand-outer:hover::-webkit-scrollbar-track {
    visibility: visible;
    opacity: 1;

}

.productdTab2 .brand-outer::-webkit-scrollbar-thumb {
    background-color: #0000001e;
    border: 2px solid #55555517;
    border-radius: 10px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.productdTab2 .brand-outer:hover::-webkit-scrollbar-thumb {
    visibility: visible;
    opacity: 1;
}

.productdTab2 .brand-outer::-webkit-scrollbar-track-piece:end {
    background: transparent;
    margin-bottom: 10px;
}

.productdTab2 .brand-outer::-webkit-scrollbar-track-piece:start {
    background: transparent;
    margin-top: 10px;
}

/* .productdTab {
    background: #fcf7fe;
    padding: 25px 30px;
    border-radius: 8px;
} */
.productFeature {
    background: #fcf7fe;
    padding: 25px 30px;
    border-radius: 8px;
    border: 1px solid #dddddd4a;
}

/* Product Details */
.tile {
    width: 100%;
    margin: 50px auto 0px;
}

#tile-1 .tab-pane {
    padding: 25px;
    padding: 0px 0px 0px;
    background: #fcfafd00;
    /* background: #fdfdfd; */
    /* background: #f8f8f8; */
    border-radius: 6px;
    /* max-width: 1000px; */
    margin: 0px auto;
}

#tile-1 .nav-tabs {
    position: relative;
    border: none !important;
    background-color: #fff;
    /*   box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2); */
    border-radius: 6px;
    justify-content: unset;
    align-items: unset;
    max-width: 900px;
    margin: 0px auto;
}

#tile-1 .nav-tabs::after {
    position: absolute;
    content: '';
    width: 99.4%;
    height: 1px;
    bottom: -1px;
    left: -4px;
    right: 0px;
    margin: auto;
    background: #4b257240;

}

#tile-1 .nav-tabs li {
    margin: 0px 5px 0px 1px !important;
}

#tile-1 .nav-tabs li a {
    position: relative;
    margin-right: 0px !important;
    padding: 12px 30px !important;
    font-size: 15px;
    border: none !important;
    color: #343434;
    width: 100%;
    background: #f0eaf1;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 700 !important;
}

#tile-1 .nav-tabs a:hover {
    /* background-color: transparent !important;
    border: none; */
    background-color: #4b2572 !important;
    border: none;
    color: #fff;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

#tile-1 .slider {
    display: inline-block;
    width: 30px;
    height: 100%;
    border-radius: 3px;
    background-color: #462673;
    position: absolute;
    z-index: 1;
    bottom: 0;
    transition: all 0.3s linear;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;

}

#tile-1 .nav-tabs .active {
    background-color: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600;
    z-index: 2;
}

.tab-content h1,
.tab-content h2,
.tab-content h3,
.tab-content h4,
.tab-content h5,
.tab-content h6,
.tab-content p strong {
    margin-top: 12px;
    font-weight: 700;
    font-size: 18px;
}

.tab-content ul {
    margin-top: 10px;
}

.tab-content ul li {
    padding-left: 23px;
    background-image: url(../img/icons/bullet-point.png);
    background-size: 16px;
    background-position: left top 4px;
    background-repeat: no-repeat;
    line-height: 24px;
}

.product-content {
    display: flex;
    align-items: baseline;
    line-height: 24px;
    color: #0c0c0c;
    font-weight: 500;
}

.brand-outer .product-content:nth-child(even) {
    background: #f9f3ff94;
}

.brand-outer .product-content:nth-child(odd) {
    background: #FFF
}

.product-content .brand {
    width: 34%;
    padding: 6px 10px;
    /* border-bottom: 0.5px solid #dddddd26; */
    /* background: #f8f3ff59; */
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: bold;
    color: #747474;
}

.product-content .brand-content {
    width: 66%;
    padding: 5px 10px;
    /* border-bottom: 0.5px solid #dddddd26; */
    /* background: #faf7ff; */
    margin-bottom: 0px;
    margin-left: 0px;
    display: flex;
    align-items: center;
    line-height: 20px;
}

.product-content .brand-content .dot {
    position: relative;
    left: -13px;
}

.productVideoTab {
    max-width: 700px;
    margin: 0px auto;
    background: #fcf7fe;
    padding: 25px 30px;
    border-radius: 8px;
    border: 1px solid #dddddd4a;
}

.productVideoTab iframe {
    border-radius: 6px;
}

.right-sidebar-box {
    background-color: #f8f8f800;
    border-radius: 6px;
    padding: 0px;
    max-width: 894px;
    margin: 0px auto;
    background: #fcf7fe;
    padding: 25px 30px;
    border-radius: 8px;
    border: 1px solid #dddddd4a;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    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 .custom-input .form-control {
    border: none;
    padding: calc(14px + 0.3125vw) calc(14px + 0.3125vw) calc(14px + 0.3125vw) calc(38.8px + 0.6875vw);
}

.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: calc(1.5em + 0.75rem + var(--bs-border-width)*2);
}

.right-sidebar-box .custom-form .custom-input textarea {
    height: 180px;
}

.right-sidebar-box .custom-form .custom-input .form-control {
    border: 1px solid #dddddd80 !important;
    padding: 10px 40px;
    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;
}

.tab-content h5 {
    position: relative;
    padding-bottom: 5px;
}

.tab-content h5::after {
    position: absolute;
    content: '';
    width: 50px;
    height: 2px;
    background-color: #340459;
    bottom: 0px;
    left: 0px;
}

.downloadTab {
    /* text-align: center;
    max-width: 420px;
    padding: 30px;
    background: #fffd;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 6px;
    margin: 0px auto; */
    text-align: center;
    max-width: 443px;
    padding: 30px;
    background: #fcf7fe;
    /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
    border-radius: 6px;
    margin: 0px auto;
    border: 1px solid #dddddd4a;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    position: relative;
    left: -1px;
}

.prdwnbtnIco {
    position: relative;
    width: 100px;
    height: auto;
    margin: 0px auto;
}

.prdwnbtnIco img {
    width: 100%;
    position: relative;
    z-index: 2;
    animation: upanddownmove 4s infinite linear;
}

.prdwnbtnIco::after {
    position: absolute;
    width: 94%;
    height: 100%;
    bottom: 0px;
    left: 10px;
    right: 0px;
    content: '';
    background-color: #2f075a29;
    border-radius: 100%;
    transform: scaleX(1) scaleY(0.1);
    margin-bottom: 0px;
    top: 59%;
    z-index: 1;
    margin: 0px auto;
    opacity: 0.4;
}

.downloadprdcontent h6 {
    margin-top: 30px;
    margin-bottom: 5px;
}

.features.visionmission {
    background: #f9f3ff94;
}

.features.visionmission .featuresCard {
    background: #fff;
}

/* Product Details end */



.contactUsCard {
    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: 0 0px 30px 86px;
    border-color: transparent transparent #462673 transparent;
    transform: rotate(0deg);
    right: 0px;
    bottom: 0px;
}

.contactCHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contactIco {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #462673, #1b00b3);
    color: #fff;
    border-radius: 100%;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
}

.contactTitle {
    width: 86%;

}

.contactTitle h5 {
    font-size: 18px;
    font-weight: 700;
    color: #462673;

}

.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;
}

.enquireNowForm.contactPage .right-sidebar-box {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin-left: 20px;
}

.enquireNowForm.contactPage .right-sidebar-box h5 {
    font-size: 18px;
    font-weight: 700;
    color: #462673;

}

.enquireNowForm.contactPage .right-sidebar-box .custom-form .custom-input textarea {
    height: 104px;
}


.blogSwiperCard.videoContainer {
    text-align: center;
    min-height: 384px;
}

.blogSwiperCard.videoContainer .blogHeader h4 {
    font-size: 16px;
}

.blogCardImg.videoWrap {
    width: 100%;
    height: 213px;
    border-radius: 8px;
    overflow: hidden;
}

.videoPlayThumb {
    width: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 22px;
    background: #fff;
    border: 1px solid #ddddddd9;
}

.videoPlayThumb img {
    width: 100%;
}

.video-player {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: #fff;
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

.pulse i {
    background-color: #000f2d94;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    font-size: 28px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    overflow: hidden;
    columns: #fff;
    -webkit-animation: video-pulse-presentation 2s linear infinite;
    animation: video-pulse-presentation 2s linear infinite;
}

.pulse i:hover {
    background-color: #FFF;
    color: #451e6d;
}

@-webkit-keyframes video-pulse-presentation {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(171, 45, 255, 0.7), 0 0 0 0 rgba(171, 45, 255, 0.7);
        box-shadow: 0 0 0 0 rgba(171, 45, 255, 0.7), 0 0 0 0 rgba(171, 45, 255, 0.7);
    }

    40% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 rgba(171, 45, 255, 0.7);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 rgba(171, 45, 255, 0.7);
    }

    80% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
    }
}

@keyframes video-pulse-presentation {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(171, 45, 255, 0.7), 0 0 0 0 rgba(171, 45, 255, 0.7);
        box-shadow: 0 0 0 0 rgba(171, 45, 255, 0.7), 0 0 0 0 rgba(171, 45, 255, 0.7);
    }

    40% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 rgba(171, 45, 255, 0.7);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 rgba(171, 45, 255, 0.7);
    }

    80% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
    }
}


.productVideoCard {
    /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
    margin-top: 40px;
}

.productVideoCard .defaultBtn {
    display: flex;
}

.subTitleSec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 12px 20px;
    position: relative;
}

.subTitleSec::after {
    position: absolute;
    content: '';
    width: 100px;
    height: 4px;
    background-color: #2a085a;
    bottom: -1px;
    left: 21px;
}

.subTitleSec::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #2a085a12;
    bottom: 0px;
    left: 0px;
}

.productVideoCard .contactWrapper {
    margin-top: 0px;
    padding: 10px 20px;
}

.galleryImgWrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.galleryImgWrap .galleryImg {
    width: 32.5%;
    display: inline-block;
    margin: 10px 0px;
}

.galleryImg {
    background-color: #fff;
    width: 100%;
    border: 1px solid rgb(255 255 255 / 71%);
    text-align: center;
    overflow: hidden;
    border-radius: 8px;
    padding: 5px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.galleryImg img {
    width: 100%;
    border-radius: 5px;
}

.galleryImg a {
    display: block;
    position: relative;
}

.galViewer {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00000021;
    visibility: hidden;
    opacity: 0;
    transform: scale(0);
    transition: 0.3s ease-in-out;
}

.galleryImg a:hover .galViewer {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.galViewer i {
    font-size: 24px;
    color: #fff;
}

.gridPage .blogSwiperCard {
    margin: 15px 2px;
}

.blogDetailWrap img {
    width: 100%;
}

.blogDetailWrap .secImg {
    height: 479px;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-radius: 8px;
}

.blogDetailWrap .blogTitle {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}

.blogsmInfo {
    margin-top: 30px;
    margin-bottom: 20px;
}

.blogsmInfo ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 16px;
}

.blogsmInfo ul li i {
    color: #462673;
}

.blogsmInfo ul li span {
    color: #606060;
}

.blogdSidebar {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: sticky;
    top: 60px;
}

.blogdSidebar h5.sidebarTitle {
    font-weight: 600;
    position: relative;
    padding: 16px 0px 8px;
    margin-left: 18px;
}

.blogdSidebar h5.sidebarTitle::after {
    position: absolute;
    content: '';
    width: 50px;
    height: 3px;
    background: #4b2572;
    bottom: 0px;
    left: 0px;
}

.latest-post {
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #ddd;
    padding: 15px;
}

.blogdSidebar .latest-post:last-child {
    border-bottom: none;
}

.thumbnail {
    margin-right: 10px;
}

.thumbnail a {
    display: block;
}

.thumbnail a img {
    border-radius: 5px;
    max-height: 100px;
    object-fit: cover;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
}

.blog-meta li {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #606060;
}

.post-content h6.siderTitle a {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0;
    display: inline-block;
    margin-top: 5px;
}

/* New */
.contactMain {
    margin-top: 10px;
    font-weight: 700;
}

.contactUsCard {
    margin-bottom: 22px;
}

@media screen and (max-width:1300px) and (min-width:1025px) {

    .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) {

    .logoSection {
        width: 140px;
    }

    .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: 14px;
        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) {
    .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;
    }

    .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;
    }

}

@media screen and (max-width:480px) and (min-width:299px) {
    .hero-style {
        height: 230px;
    }

    .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: 80px;
    }

    .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: 16%;
        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) {

    .videoPop {
        top: 100%;
        left: 50%;
    }

    .featured-swiper-container {
        padding: 0px 20px;
    }

    .headerMain {
        position: fixed;
        top: unset;
        display: none;
        z-index: 4;
        width: 100%;
        height: 100vh;
    }

    .bnrNavWrap ul li {
        padding-right: 10px;
        position: relative;
        margin-right: 3px;
    }

    .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: 14px;
        margin-right: 5px;
    }

    .quickSearchMob a {
        font-weight: 700;
        position: relative;
    }

    /* .mainHeaderNav{
        position: relative;
        z-index: 3;
    } */
    .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;
    }

    .productPara {
        padding: 0px;
    }

    #tile-1 .nav-tabs {
        flex-direction: column;
    }

    #tile-1 .slider {
        height: 25%;
        top: 0px;
    }

    #tile-1 .slider {
        display: none;
    }

    #tile-1 .nav-tabs .active {
        background-color: #3a0058 !important;
    }

    .productFeature {
        padding: 15px 20px;
    }

    .productVideoTab {
        padding: 12px;
    }

    .productVideoTab iframe {
        height: 200px;
    }

    .right-sidebar-box {
        padding: 15px;
    }

    .blogCardImg.videoWrap {
        height: auto;
    }

    .videoPlayThumb {
        margin-bottom: 0px;
    }

    .blogSwiperCard.videoContainer {
        min-height: auto;
    }

    .productVideoCard .contactWrapper {
        padding: 0px;
    }

    .galleryImgWrap .galleryImg {
        width: 100%;
    }

    .blogDetailWrap .secImg {
        height: auto;
    }

    .blogsmInfo {
        margin-top: 15px;
        margin-bottom: 0px;
    }

    .blogsmInfo ul {
        justify-content: space-between;
    }

    .blogdSidebar {
        margin-top: 20px;
    }

    .defaultListView {
        overflow-x: hidden;
    }

    .enquireNowForm.contactPage .right-sidebar-box {
        margin-left: 0px;
    }
}

@media screen and (max-width:480px) {
    .blogDetailWrap .blogTitle {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .blogviewBtn p {
        font-size: 11px;
        line-height: 17px;
    }

    .bnrNavWrap ul li a {
        font-size: 9px;
    }

    .bnrNavWrap ul {
        flex-wrap: wrap;
    }

    .subTitleSec h5 {
        font-size: 14px;
        font-weight: 600;
    }

    .defaultBtn a,
    .defaultBtn button {
        height: 34px;
        font-size: 14px;
        padding: 4px 9px;
    }

    .defaultBtn a span,
    .defaultBtn button span {
        font-size: 11px;
    }
}



/* 03-04-2024 */
.contactDepartment i {
    font-size: 14px;
    margin-right: 6px;
    color: #462673;
}

.position-sticky {
    position: sticky;
    top: 70px;
}





/* 08-08-2024 */
.categoryListing {
    margin-top: 40px;
}

.catListCard {
    width: 100%;
    padding: 20px;
    background: radial-gradient(white, #f0e6ff);
    border-radius: 10px;
    border: none;
    position: relative;
    text-align: center;
    border-bottom: 2px solid #d4b6ff;
    min-height: 108px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
    margin-bottom: 20px;
}

.catListCard:hover {
    transform: translateY(-5px);
}

.catListCard::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 101%;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    background: radial-gradient(#ffefef, #e3d0ff);
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
    border-radius: 10px;
}

.catListCard::before {
    position: absolute;
    content: '';
    width: 82%;
    height: 7%;
    bottom: -13px;
    left: 0px;
    right: 0px;
    margin: auto;
    background: #4d4d4d4d;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
    border-radius: 100%;
    filter: blur(3px);
}

.catListCard:hover::after {
    visibility: visible;
    opacity: 1;
}

.catListCard:hover::before {
    visibility: visible;
    opacity: 1;
}

.catListTitle {
    position: relative;
    z-index: 2;
}

.catListTitle h4 {
    font-size: 17px;
    font-weight: 700;
    color: #47236b;
}

.catListTitle p {
    color: #6f6f6f;
    font-size: 13px;
}


.catListCard.catlistWithImg {
    padding: 13px;
    text-align: left;
}

.catListImg {
    width: 40%;
    position: relative;
    z-index: 2;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0px 0px 10px #00000017;
    border: 1px dashed #ddd;
}

.catListImg img {
    width: 100%;
}

.catListCard.catlistWithImg .catListTitle {
    width: 60%;
    padding-left: 14px;
}



/* New About CSS */
.aboutBnrWrapper {
    position: relative;
}

.aboutBnrWrapper img {
    width: 100%;
}

.aboutBnrWrapper h2 {
    color: #fff;
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    top: 30%;
    margin: auto;
    height: fit-content;
    text-align: center;
    z-index: 1;
    width: fit-content;
}

.aboutBnrWrapper h2::after {
    position: absolute;
    content: '';
    left: 0;
    right: 0px;
    bottom: 0px;
    top: 0px;
    width: 120%;
    height: 120%;
    background: #1a1a1a;
    z-index: -1;
    filter: blur(24px);
    margin: auto;
}

.homeAboutPara.inner .text-center p {
    text-align: center;
}

.features.visionmission {
    background: linear-gradient(180deg, #000000a6, #080808b3), url(../img/about-bg-2.jpg);
    background-size: 100%;
    background-position: center;
}

.features.visionmission .featuresCard {
    background: #00000036;
}

.features.visionmission .featuresCard .fCardContent h4 {
    color: #fff;
}

.features.visionmission .featuresCard .fCardContent p {
    color: #dedede;
}

.featuresCard.aboutqualityCard {
    margin-bottom: 20px;
}

.featuresCard.aboutqualityCard h4 {
    font-size: 14px;
}

.secTitle h4 {
    font-weight: 600;
}

.bgColor4 {
    background: #f0eaf1;
}

.AboutwhyChoose .homeAboutPara.inner.sec2 {
    margin-top: 30px;
}

.AboutwhyChoose .homeAboutPara.inner.sec2 h4 {
    margin-bottom: 30px;
}

.sponcersSwiperWrapper .row {
    gap: 22px 0px;
    justify-content: center;
}

.teamSlidWrap.new {
    margin: 0px;
    margin-top: 40px;
}

.teamMainSlider .teamMainSliderCard {
    margin-bottom: 20px;
}

.homeAboutPara.companyProfile.counters {
    padding: 0px;
}

.counterSec {
    background: linear-gradient(180deg, #1f0f3de3, #211047cc), url(../img/bg/counters-about-bg.jpg);
    background-size: 100%;
    background-position: center;
    background-size: 100%;
    background-position: center;
}

.normalList li {
    padding-left: 25px;
    background-image: url(../img/icons/check.png);
    background-size: 18px;
    background-position: left top 3px;
    background-repeat: no-repeat;
    line-height: 24px;
}

.qualityassuranceSec .teamMainSlider .teamMainSliderCard {
    min-height: auto;
}

.onefityPrImg {
    position: relative;
    height: 300px;
}

.onefityPrImg::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: #331b56d6;
    background-blend-mode: multiply;
}

.onefityPrImg img {
    width: 100%;
}

.onefityPrImg .sectionTitle {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    height: fit-content;
    margin: auto !important;
    z-index: 2;
}

.onefityPrImg .sectionTitle h4 {
    font-size: 70px;
}



/* ************ 05/12/2024 ***************** */


.features.whyUs {
    background: linear-gradient(180deg, #000000a6, #080808b3), url(../img/bg/about-bg-2.jpg);
    background-size: 100%;
    background-position: center;
}

.whyUs .secTitle h2 {
    color: #fff;
    font-weight: 700;
    font-size: 36px;
}

.box-why {
    /*background: linear-gradient(268deg, #fffafff, #e5e3f8);*/
    background: linear-gradient(268deg, #fffaff, #e5e3f8), url(../img/texture/t1.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: 130px;
    padding: 13px 20px;
}
.box-why p{text-align: left !important;}
.box-why h5 {
    font-weight: 700;
    color: #451e6d;
}

.certificateH {
    color: #451e6d;
    text-align: center;
    margin-bottom: 12px;
    font-size: 36px;
    font-weight: 700;
}

.cert {
    color: #000000;
    text-align: center;
    margin-top: 12px;
}

.plant img {
    border-radius: 10px;
    box-shadow: 0 0 10px 2px rgb(255 255 255 / 63%);
}

.plant h5 {
    color: #fff;
    text-align: center;
    margin-top: 12px;
}

.infra {
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
    font-size: 36px;
    font-weight: 700;
}

.state {
    color: #fff;
    line-height: 1.5;
}

.state span {
    color: red;
}

.certificatSlider {
    overflow: hidden; 

    

}

.sectionTitle.infra::before {
    content: '';
    position: absolute;
    width: 16px;
    margin: auto;
    height: 16px;
    background: #111111;
    left: 0px;
    right: 0px;
    border-radius: 100%;
    bottom: -16px;
    border: 3px solid #f6fafd;
    z-index: 1;
}

.sectionTitle.infra::after {
    content: '';
    position: absolute;
    width: 100px;
    margin: auto;
    height: 3px;
    background: #fff;
    left: 0px;
    right: 0px;
    border-radius: 30px;
    bottom: -10px;
}

.amt {
    background: linear-gradient(268deg, #ffffff, #e5e3f8), url(../img/texture/texture1.jpg);
    padding: 20px 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 15px 15px 0 0;
    /* margin-bottom: 16px; */
    position: relative;
    background-size: contain;
    min-height: 130px;
    padding: 13px 20px;

}

.amt p {
    text-align: justify;
}

.amtHead {
    color: #451e6d;
    font-size: 36px;
    font-weight: 700;
}

.aboutSub {
    font-size: 18px;
    color: #111111;
    font-weight: 600;
}

.whowe {
    color: #451e6d;
    font-size: 36px;
    font-weight: 700;
}

.para p {
    margin-bottom: 18px;
}