* {
    margin: 0px;
    box-sizing: border-box;
}

body {

    font-family: 'Figtree';
    color: #0c0c0c;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

p {
    font-size: 16px;
    font-family: 'Figtree';
    line-height: 28px;
    color: #3c3c3c;
    font-weight: 400;
}

a {
    font-size: 16px;
    text-decoration: none !important;
    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: 'Figtree';
    line-height: 24px;
    color: #0c0c0c;
}

a:hover {
    text-decoration: none;
    outline: none;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

li {
    font-size: 16px;
    font-family: 'Figtree';
    line-height: 24px;
    color: #0c0c0c;
}

button:focus,
input:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
    transition: all 500ms ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Figtree';
    margin: 0px;
    color: #0a0909;
}

p {
    margin-bottom: 10px;
}

.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;
}

.pb-100 {
    padding-bottom: 100px;
}

.pt-100 {
    padding-top: 100px;
}

.justify-center {
    justify-content: center;
}

.mt-20 {
    margin-top: 20px;
}

.align-item-center {
    align-items: center;
}

.justify-content-space-between {
    justify-content: space-between;
}

.flex-end {
    justify-content: flex-end;
}

.site-width {
    max-width: 1250px;
    margin: 0px auto;
}

@media screen and (max-width:1518px) and (min-width:1368px) {
    .site-width {
        max-width: 1372px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:1708px) and (min-width:1519px) {
    .site-width {
        max-width: 1552px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:1920px) and (min-width:1709px) {
    .site-width {
        max-width: 1642px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:2500px) and (min-width:1921px) {
    .site-width {
        max-width: 1842px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:1280px) and (min-width:1024px) {
    .site-width {
        padding: 0px 40px;
        max-width: 1260px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:1024px) and (min-width:888px) {
    .site-width {
        padding: 0px 40px;
    }
}

@media screen and (max-width:888px) and (min-width:769px) {
    .site-width {
        padding: 0px 40px;
    }
}

@media screen and (max-width:768px) {
    .site-width {
        padding: 0px 20px;
    }
}



/* Header */
.headerSection {
    width: 100%;
    transition: 0.5s ease-in-out;
    z-index: 4;
    position: absolute;
    border-bottom: 1px solid #dddddd2e;

}
.headerSection.innerheader {
    position: relative;
}

.headerSection.scroll-down {
    top: 0%;
    position: fixed;
    background: #ffffffdb;
    backdrop-filter: blur(5px);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 10px 0px;
}

.headerSection.scroll-up {
    position: fixed;
    top: 0px;
    width: 100%;
    background: #ffffffdb;
    backdrop-filter: blur(5px);
    padding: 10px 0px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.headerSection.headerTwo {
    padding: 8px 0px;
}

.headerWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.headerTwo .headerWrapper {
    padding-left: 0px;
}

.topHeader {
    border-bottom: 1px solid #ddd;
    padding-right: 0;
    padding-top: 3px;
    padding-bottom: 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 2%;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: 0.3s ease-in-out;
}

.headerSection.scroll-down .topHeader {
    padding-top: 2px;
    padding-bottom: 3px;
}

.headerSection.scroll-up .topHeader {
    padding-top: 2px;
    padding-bottom: 3px;
}

.topHeader>p {
    font-size: 14px;
    color: #636363;
    margin-bottom: 0px;
}

.headTalkBtns {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 11px;
}

.headTalkBtns li a {
    padding: 5px 15px;
    background: linear-gradient(124deg, #f59100, #d29900);
    color: #fff;
    border-radius: 40px;
    font-size: 13px;
    gap: 7px;
    /* width: 130px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.headTalkBtns li a.headtbtnone {
    background: #25983e;
}

.headTalkBtns li a.headbtntwo {
    background: #ff6600;
}

.headTalkBtns li a img {
    width: 18px;
    filter: invert(1);
}

.headerMain {
    width: calc(100% - 10%);
}

.logoSection {
    width: 14%;
    position: relative;
    padding-right: 20px;
}

.headerSection.scroll-down .logoSection {
    width: 13%;
}

.headerSection.scroll-up .logoSection {
    width: 13%;
}

.logoSection::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    bottom: 0px;
    left: 0;
    right: 0px;
    top: 0;
    background-color: #fff5e3;
    border-right: 1px solid #ddd;
    background-color: transparent;

}

.headerTwo .logoSection::after {
    height: 124%;
    display: none;
}

.logoSection img {
    width: 100%;
    position: relative;
    z-index: 4;
    transition: 0.5s ease-in-out;
    padding: 0px;
}

.headerSection.scroll-down .logoSection img {
    width: 100%;
}

.headerSection.scroll-up .logoSection img {
    width: 100%;
}

.mainHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 0;
    padding-left: 2%;
    width: 100%;
}

.allHeaders {
    width: fit-content;
    width: 70%;
    position: relative;
}

.mainHeaderSection {
    display: flex;
    align-items: center;
    justify-content: left;
    z-index: 2;
    background-size: cover;
    background-position: bottom;
    background-blend-mode: color;
}

.headerNav {
    display: flex;
}

.headerMenu {
    display: flex;
    gap: 40px;
    transition: 0.3s ease-in-out;
    margin-bottom: 0px !important;
}

.headerTwo .headerMenu {
    gap: 30px;
}

.headerMenu>li {
    padding: 0px 0px;
    margin: 0px 0px 0px 0px;
    transition: 0.5s ease-in-out;
}

.headerMenu>li>a {
    padding: 26px 0px;
    position: relative;
    color: #fff;
    display: inline-block;
}
.innerheader .headerMenu>li>a {
    color: #111;
}
.innerheader .headerMenu>li>a>img {
    filter: invert(0);
}
.innerheader  .headerRightMenu {
    color: #111;
}

.headerSection.scroll-down .headerMenu>li>a {
    padding: 0px 0px;
    color: #111;
}

.headerSection.scroll-up .headerMenu>li>a {
    padding: 0px 0px;
    color: #111;
}

.headerMenu>li>a:hover {
    color: #ff6600;
}

.headerMenu>li>a>img {
    width: 18px;
    filter: invert(2);
}
.headerSection.scroll-down .headerMenu>li>a>img {
       filter: invert(0);
}

.headerSection.scroll-up .headerMenu>li>a>img {
       filter: invert(0);
}

.headerMenu>li>a::before {
    display: none;
    content: '';
    position: absolute;
    left: -11px;
    top: 0px;
    bottom: 0px;
    width: 5px;
    height: 5px;
    background: #fff;
    margin: auto;
    border-radius: 100%;
    visibility: hidden;
    opacity: 0;
    transform: scale(0);
    transition: 0.3s ease-in-out;
}

.headerMenu>li>a::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    width: 0;
    bottom: 20px;
    background: #270b79;
    height: 2px;
    transition-property: width;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
    transition: 0.3s ease-in-out;
}

.headerSection.scroll-down .headerMenu>li>a::after {
    bottom: -3px;
}

.headerSection.scroll-up .headerMenu>li>a::after {
    bottom: -3px;
}

.headerMenu>li a:hover:before,
.headerMenu>li a.active:before {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.headerMenu>li a:hover:after,
.headerMenu>li a.active:after {
    left: 0;
    right: auto;
    width: 100%;
}

.headerMenu>li.hasSub {
    position: relative;
}

.headerMenu>li.hasSub.megaMenu {
    position: inherit;
}

.headerSubNav {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    margin-top: 10px;
    width: 120px;
    background: #fff;
    padding: 15px;
    z-index: 5;
}

.headerMenu>li.hasSub:hover .headerSubNav {
    visibility: visible;
    opacity: 1;
    top: 80%;
    margin-top: 0px;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 6px 15px #7373732e;
}

.headerMenu>li.hasSub:hover .headerSubNav {
    display: flex;
    justify-content: space-between;
}

.hasSub.megaMenu .headerSubNav {
    max-width: 992px;
    min-width: 882px;
    width: 100%;
    right: 0px;
    left: 0px;
    margin: auto;
    padding: 30px;
}

.headerSubNav .headerSubMenu {
    max-height: 80vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    margin-left: -30px;
}

.hasSub.megaMenu .headerSubNav .headerSubMenu {
    width: 32%;
}

.hasSub.megaMenu .headerSubNav .headerSubMenu li h5 {
    font-size: 19px;
    padding-bottom: 9px;
    border-bottom: 1px dashed #ddd;
}

.headerSubMenu>li a {
    padding: 0px 6px;
    display: block;
    /* width: 240px; */
    border-bottom: 1px solid #dddddd57;
    transition: all 0.3s ease-in-out;
    background: #fff;
    line-height: 35px;
    color: #494949;
}
.headerSubMenu>li a:hover {
    padding-left: 10px;
    color: #270b79;
}
.headerSubMenu>li a::before {
    content: '\f105';
    display: inline-block;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 6px;
    font-size: 13px;
    color: #270b79;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
    margin-left: -9px;
}
.headerSubMenu>li a:hover::before {
    visibility: visible;
    opacity: 1;
    margin-left: 0px;
}
.headerRightMenu {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff;
}
.headerSection.scroll-down .headerRightMenu {
    color: #111;
}

.headerSection.scroll-up .headerRightMenu {
    color: #111;
}

.socialSticky {
    position: fixed;
    right: 8px;
    top: 38%;
    max-height: 100vh;
    z-index: 5;
}

.socialSticky ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.socialSticky a {
    display: inline-block;
    width: 33px;
    height: 33px;
    text-align: center;
    line-height: 34px;
    border-radius: 100%;
    background: #ffffff14;
    backdrop-filter: blur(8px);
    font-size: 13px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

}

.socialSticky a i.fa-facebook-f {
    color: #0075ea;
}

.socialSticky a i.fa-instagram {
    background: -webkit-linear-gradient(#556db3, #ea3367, #ff4f28, #ffad57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.socialSticky a i.fa-linkedin-in {
    color: #0077B5;
}

.socialSticky a i.fa-x-twitter {
    color: #000;
}

.socialSticky a i.fa-youtube {
    color: #f70000;
}

.socialSticky a {
    animation: animationleftoright 3.5s ease both infinite;
}

.headerCallMenu.cart {
    width: 46px;
    display: inline-block;
    height: 46px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.headerCallMenu.cart img {
    width: 62%;
}

.loginbtn {
    display: inline-block;
    border: transparent;
    border-radius: 30px;
    padding: 7px 18px;
    color: #270b79;
    background: #fff;
    border: 1px solid #270b79;
}

.loginbtn img {
    width: 21px;
    position: relative;
    top: -1px;
}

.loginbtn.registerBtn {
    background: #eb642d;
    color: #fff;
    border: 1px solid #eb642d
}


/* 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: 55px;
    height: 55px;
    line-height: 51px;
    margin-top: -30px;
    text-align: center;
    border: 1px solid #f3920070;
    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: 25px;
    transform: translateX(50px);
}

.hero-slider .swiper-button-prev:before {
    font-family: "Font Awesome 5 Free";
    content: "\f060";
    font-size: 15px;
    color: #d49800;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
}

.hero-slider .swiper-button-next {
    right: 25px;
    transform: translateX(-50px);
}

.hero-slider .swiper-button-next:before {
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    font-size: 15px;
    color: #d49800;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    text-align: left;
    line-height: 12px;
    font-size: 12px;
    color: #000;
    opacity: 0.3;
    background: #fff;
    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: 500px;
    transition: all .4s ease;
}

@media screen and (max-width: 1920px) and (min-width: 1600px) {
    .hero-style {
        height: 700px;
    }
}

.SliderContentsWrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.SliderContents {
    position: absolute;
    left: 0px;
    right: 0px;
    margin: auto;
    bottom: 28px;
    width: 100%;
    text-align: center;
    z-index: 1;
}



@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-btns {
    max-width: 690px;
    margin: 0px auto;
}

.hero-style .slide-title h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 62px;
    color: #ffffff;
    margin-bottom: 13px;
    text-transform: capitalize;
    transition: all .4s ease;
}

@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: #ffffff;
    margin: 0 0 20px;
    transition: all .4s ease;
}

@media (max-width: 767px) {
    .hero-style .slide-text p {
        font-size: 16px;
        font-size: 1rem;
        font-weight: normal;
        margin: 0 0 30px;
    }
}

.hero-style .slide-btns>a:first-child {
    margin-right: 10px;
}

.aboutCompany {
    height: 100%;
    width: 34%;
    padding: 0px 23px;
}

.bannerWrapperSection {
    display: flex;
    height: 100%;
    align-items: center;
    background: #005ba8;
}


.bg1 {
    background: linear-gradient(90deg, #e7e7e791, #e5e5e570), url(../img/texture/texture-bg.jpg);
    background-size: 100%;
    background-position: center center;
}

.bg2 {
    background: linear-gradient(90deg, #fffffffa, #fffffffa), url(../img/texture/astrology-bg-light.png);
    background-size: cover;
    background-position: center center;
    background-blend-mode: color-dodge;
}

.bg3 {
    background: linear-gradient(90deg, #270b79d9, #270b79de), url(../img/other/laoptop-typing.jpg);
    background-size: cover;
    background-position: center center;
}

.whatisAstro {
    position: relative;
}

.imgSec {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.imgSec img {
    width: 100%;
}

.halfContent.right {
    margin-left: 30px;
}

.textWrapper h5 {
    color: #eb642d;
    margin-bottom: 10px;
}

.textWrapper h2 {
    color: #270b79;
    font-weight: 700;
    margin-bottom: 22px;
}

.textWrapper p {
    text-align: justify;
}

.textWrapper.light h2 {
    color: #fff;
}

.textWrapper.light p {
    color: #ddd;
}

.imgSec.whatisastroImg {
    position: relative;
    width: 90%;
    margin-left: auto;
}

.whatisastroImg .circleImg {
    width: 100%;
    animation: mover360 60s linear infinite;
}

.whatisastroImg .handImg {
    position: absolute;
    width: 240px;
    top: -60px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    animation: upandDown 15s linear infinite;
}

@keyframes upandDown {
    0% {
        transform: translateY(0px);
    }

    25% {
        transform: translateY(12px);
    }

    50% {
        transform: translateX(12px);
    }

    75% {
        transform: translateX(0px);
    }

    100% {
        transform: translateY(0px);
    }

}

@keyframes mover360 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.button {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    background: #ff6600;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffff;
    gap: 10px;
    font-weight: 400;
    border: none;
    outline: none;
    overflow: hidden;
    font-size: 16px;
    padding: 11px 22px;
}

.button.no-shadow {
    box-shadow: none;

}

.icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.button:hover {
    transform: scale(1.05);
    border-color: #fff9;
}

.button:hover .icon {
    transform: translate(4px);
}

.button:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.button::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}

.titleSection {
    margin-bottom: 40px
}

.titleSection h2 {
    position: relative;
    padding-bottom: 15px;

}

.titleSection.light h2 {
    color: #fff;
}

.titleSection.light p {
    color: #acacac;
}

.titleSection h2::after {
    position: absolute;
    content: '';
    bottom: 0px;
    left: 0px;

    width: 100px;
    height: 10px;
    background: url(../img/texture/text-border.png);
    background-size: contain;
    margin: auto;
    background-repeat: no-repeat;
}

.titleSection.text-center h2::after {
    right: 0px;
}

.titleSection.text-center p {
    padding: 0px 10%;
}

.titleSection p {
    padding: 0px;
}

.serviceCard {
    position: relative;
    padding: 20px;
    background: #fff2ea;
    border: 1px solid #ffcfaf;
    transition: 0.3s cubic-bezier(0, 0.48, 1, 1);
    min-height: 160px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

/* .serviceCard::after {
    position: absolute;
    content: '';
    background-image: url(../img/texture/service-circle.png);
    background-size: contain;
    background-position: center center;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    opacity: 0;
    background-repeat: no-repeat;
    animation: mover360 30s linear infinite;
    visibility: hidden;
    transition: 0.3s ease-in-out;
} */
.serviceCard:hover::after {
    visibility: visible;
    opacity: 0.1;
}

.serviceCard:hover {
    transform: scale(1.04);
    background: #ffe1ce;
    box-shadow: rgb(149 157 165 / 18%) 0px 8px 24px;
}

.serviceContent {
    position: relative;
    z-index: 2;

}

.serviceContent img {
    width: 35%;
    margin-bottom: 18px;
    transition: 0.3s ease-in-out;
}

/* .serviceCard:hover .serviceContent img {
    width: 44%;
} */
.serviceContent h4 {
    color: #202020;
    margin-bottom: 0;
    font-size: 17px;
    font-weight: 600;
}

.serviceContent p {
    color: #978c8c;
    transition: 0.3s ease-in-out;
    height: 0px;
}

.serviceCard:hover .serviceContent p {
    visibility: hidden;
    opacity: 0;
    transform: scale(0);
    height: 0px;
}

.serviceContent span {
    visibility: hidden;
    opacity: 0;
    top: 10px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    border: 1px solid #ddd;
    padding: 7px 20px;
    border-radius: 30px;
    font-size: 15px;
    transition: 0.3s ease-in-out;
}

.serviceCard:hover .serviceContent span {
    visibility: visible;
    opacity: 1;
    top: 0px;
}

.button.outline {
    background: transparent;
    border: 1px solid #f59100;
    color: #444;
}

.row.gapb {
    gap: 24px 0px;
}

.row.col-reverse {
    flex-direction: row-reverse;
}

.halfContent.left {
    margin-right: 30px;
}

.whyAstrovala .textWrapper h2 {
    margin-bottom: 10px;
}

.whyAstrovala .textWrapper h4 {
    font-size: 18px;
    color: #444;
}

.whyFeatures {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.whyfeatCard {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 13px 14px;
    border-radius: 10px;
    width: 49%;
    min-height: 70px;
}

.whyfeatCard img {
    width: 36px;
}

.whyfeatCard h6 {}

.accordion dl,
.accordion-list {
    border: 1px solid #ddd;
}

.accordion dd,
.accordion__panel {
    background-color: #eee;
    font-size: 1em;
    line-height: 1.5em;
}

.accordion p {
    padding: 1em 2em 1em 2em;
}

.accordion {
    position: relative;
    background-color: #eee;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 2em 0 2em 0;
}

.accordionTitle,
.accordion__Heading {
    background-color: #fff;
    text-align: center;
    font-weight: 700;
    padding: 15px;
    display: block;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.5s ease-in-out;
    border-bottom: 1px solid #30bb64;
}

.accordionTitle:before,
.accordion__Heading:before {
    content: "+";
    font-size: 1.5em;
    line-height: 0.5em;
    float: left;
    transition: transform 0.3s ease-in-out;
}

.accordionTitle:hover,
.accordion__Heading:hover {
    background: linear-gradient(124deg, #f59100, #d29900);
}

.accordionTitleActive,
.accordionTitle.is-expanded {
    background: linear-gradient(124deg, #f59100, #d29900);
}

.accordionTitleActive:before,
.accordionTitle.is-expanded:before {
    transform: rotate(-225deg);
}

.accordionItem {
    height: auto;
    overflow: hidden;
    max-height: 50em;
    transition: max-height 1s;
}

@media screen and (min-width: 48em) {
    .accordionItem {
        max-height: 15em;
        transition: max-height 0.5s;
    }
}

.accordionItem.is-collapsed {
    max-height: 0;
}

.no-js .accordionItem.is-collapsed {
    max-height: auto;
}

.animateIn {
    -webkit-animation: accordionIn 0.45s normal ease-in-out both 1;
    animation: accordionIn 0.45s normal ease-in-out both 1;
}

.animateOut {
    -webkit-animation: accordionOut 0.45s alternate ease-in-out both 1;
    animation: accordionOut 0.45s alternate ease-in-out both 1;
}

@-webkit-keyframes accordionIn {
    0% {
        opacity: 0;
        transform: scale(0.9) rotateX(-60deg);
        transform-origin: 50% 0;
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes accordionIn {
    0% {
        opacity: 0;
        transform: scale(0.9) rotateX(-60deg);
        transform-origin: 50% 0;
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes accordionOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.9) rotateX(-60deg);
    }
}

@keyframes accordionOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.9) rotateX(-60deg);
    }
}

.movenormal {
    animation: upandDown 15s linear infinite;
}




/* banner */
.bannerSection {
    position: relative;
    height: 700px;
}
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0.3;
}
.bannerImg {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}
.bannerImg::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 2;
    background: radial-gradient(#000000ad, #0c0c0cc7);
}
.bannerImg img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    object-fit: cover;
}

.bannersearch {
    position: absolute;
    width: 100%;
    height: fit-content;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    z-index: 3;
}

.banenrTitle {
    text-align: center;
    max-width: 49%;
    margin: auto;
    margin-bottom: 30px;
}

.banenrTitle h3 {
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    /* min-height: 122px; */
}

@media(max-width: 500px) {
    .banenrTitle h3 {
        color: #fff;
        font-size: 30px;
        margin-top: 40px;
    }
}

.banenrTitle p {
    color: #fff;
}

.employerbannerSec.bannerSection {
    position: relative;
    height: auto;
    overflow: hidden;
    background: linear-gradient(90deg, #000000ba, #000000b3), url(../img/slider/slider-employer-bg.jpg);
    background-size: 100%;
    background-position: center;
}
.bannerSection.employerbannerSec .banenrTitle {

    text-align: left;
    margin: 0;
    max-width: 100%;
}
.bannerEmpimg {
    width: 100%;
    position: relative;
}
.bannerEmpimg img {
    width: 100%;
}
.bannerEmpimg img.employerbnrimg {
    position: relative;
    z-index: 2;
}
.bannerEmpimg img.employerbnrimgbg {
    position: absolute;
    z-index: 1;
    width: 100%;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    margin: auto;
    animation: zoom-in-zoom-out 5s ease-out infinite;
}
@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1.1, 1.1);
    }

    50% {
        transform: scale(1.2, 1.2);
    }

    100% {
        transform: scale(1.1, 1.1);
    }
}
.employerbannerSec .bannersearch {
    height: 100%;
    position: relative;
}

.employerbannerSec .banenrTitle p {
    margin-bottom: 20px;
}

.searchBar {
    width: 60%;
    margin: auto;
}
@media(max-width: 600px) {
    .searchBar {
        width: 90%;
        margin: auto;
    }
    .searchBar .row-group-search {
    border-radius: 12px;
    padding: 6px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
    .searchBar .row-group-search .form-group {
    margin: 12px;
}
}
.side-job-search .employerbannerSec .searchBar {
    width: 100% !important;
}

.employerbannerSec .searchBar {
    width: 100%;
}

.side-job-search .searchBar .row-group-search {
    margin-right: 0;
    padding: 14px 18px;
    display: flex;
    flex-direction: column !important;
}

.searchBar .row-group-search {
    background: #fff;
    box-shadow: 0 2px 2px rgba(28, 36, 51, .1);
    border-radius: 12px;
    margin-right: 0;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.side-job-search .searchBar .form-group {
    position: relative;
    width: 100%;
    /* border-right: 1px solid #efefef; */
    margin: 10px 0px !important;
    border-bottom: 1px solid #d2d2d2 !important;
}

.side-job-search {
  position: sticky;
  top: 30px;
  /* z-index: 9; */
  background: #fff;
  padding: 10px 0;
}

.searchBar .form-group {
    position: relative;
    width: 85%;
    border-right: 1px solid #efefef;
}

.searchBar .form-group-1 i {
    left: 6px;
    top: 15px;
    color: #9f9f9f;
    font-size: 20px;
    position: absolute;
}

.side-job-search .searchBar .form-group-1 i {
    left: 6 !important;
    top: 15px !important;
    color: #9f9f9f;
    font-size: 15px !important;
    position: absolute;
}

.searchBar .form-group-1 input {
    width: 100%;
    padding: 12px 24px;
    margin-left: 0;
    padding-left: 30px;
    color: #121212;
    border: unset;
    font-size: 13px;
    /* border-bottom: 1px solid #d2d2d2; */
}

.form-group-2 {
    border: unset;
    display: flex;
    align-items: center;
}

.searchBar .form-group-2 i {
    left: 0;
    top: 12px;
    color: #9f9f9f;
    font-size: 20px;
    position: absolute;
}

.searchBar .form-group-2 select {
    width: 94%;
    padding: 12px 24px;
    margin-left: 0;
    padding-left: 40px;
    color: #9f9f9f;
    border: unset;
}
.searchBar .form-group-2 select:focus-visible {
    box-shadow: none;
    border: none;
    outline: none;
}

.searchbtn {
    display: inline-block;
    border: transparent;
    border-radius: 10px;
    padding: 10px 16px;
    background: #eb642d;
    color: #fff;
    border: 1px solid #eb642d;
}




/* Home Categories */
.categoryWrapper {
    margin-top: 40px;
}

.fivecolSlider {
    position: relative;
}

.categoryCard {
    margin-bottom: 20px;
    box-shadow: none;
    border-radius: 20px;
    padding: 16px;
    background: #ffffff;
    transition: all .3s ease 0s;
    border: 1px solid #e7e7e7dd;
}

.categoryCard:hover {
    background: #270b79;
}

.categoryCard h4 {
    color: #121212;
    font-size: 20px;
    font-weight: 600;
}

.categoryCard:hover h4 {
    color: #fff;
    transition: all .3s ease 0s;
}

.categoryCard p {
    color: #64666c;
    font-size: 14px;
    line-height: 22px;
    transition: all .3s ease 0s;
    margin-bottom: 0px;
}

.categoryCard:hover p {
    color: #fff;
    transition: all .3s ease 0s;
}

.categoryCard a {
    color: #eb642d;
    font-weight: 600;
    transition: all .3s ease 0s;

}

.categoryCard:hover a {
    color: #fff;
}
.categoryHeader {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}
.categoryImg {
    width: 70px;
    height: 70px;
    background: #ebe5ff;
    padding: 10px;
    border-radius: 10px;
}
.categoryImg img {
    width: 100%;
}

/* .fivecolSlider.owl-theme .owl-dots .owl-dot span {

} */
.owl-theme.fivecolSlider .owl-dots .owl-dot.active span,
.owl-theme.fivecolSlider .owl-dots .owl-dot:hover span {
    background: #270b79;
    position: relative;
}

.owl-theme.fivecolSlider .owl-dots .owl-dot.active span::after,
.owl-theme.fivecolSlider .owl-dots .owl-dot:hover span::after {
    position: absolute;
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 100%;
    border: 1px solid #270b79;
    top: 0px;
    bottom: 0px;
    left: -3px;
    right: 0px;
    margin: auto;
}


/* Job List  */
.featuredjobs {
    background: #f5f5f5;
}

.jobListWrapper {
    margin-top: 40px;
}

.joblistNav .nav-tabs {
    justify-content: center;
    gap: 10px;
    border-bottom: 0px;
}

.joblistNav .nav-tabs .nav-link {
    padding: 7px 22px;
    border-radius: 30px;
    border: 1px solid #ebebeb;
    background: #ebebeb;
    color: #818181;
    font-weight: 400;
}

.joblistNav .nav-tabs .nav-link.active , .joblistNav .nav-tabs .nav-link:hover {
    background: #eb642d;
    color: #fff;
    border: 1px solid #eb642d;
}

.joblistNav .nav-tabs .nav-link:focus-visible {
    box-shadow: 0px;
}

/* listCard */

.astrocard {
    padding: 16px;
    border-radius: 20px;
    background: #fff;
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.068) 0px 1px 4px;
    transition: 0.3s ease-in-out;
    /* border-top: 4px solid #270b79;
    border-bottom: 4px solid #270b79; */
}
.astrocard:hover {
    transform: scale(1.01);
    box-shadow: none;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.astrocContainer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.astrohead {
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 13px;
    position: relative;
}

.astroDetails {
    width: calc(100 - 30%);
}

.astrocard img {
    width: 100%;
}

.astroImg {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    overflow: hidden;
    border: 1px solid #f3f3f3;
    position: relative;
    width: 60px;
    height: 60px;
}

.onlineShow {
    position: absolute;
    width: 19px;
    height: 19px;
    background: #00c534;
    bottom: 2px;
    right: 9px;
    z-index: 2;
    border-radius: 100%;
    display: inline-block;
    border: 1px solid #fff;

}

.astroName h4 {
    font-size: 17px;
    font-weight: 700;
    color: #000000;
}

.astroName p {
    margin-bottom: 0px;
    font-size: 13px;
}

.astroName img.verifiedCheck {
    width: 18px;
}

.astroAcheiver {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #737373;
    margin-left: -30px;
    margin-top: -10px;
    margin-bottom: -2px;    
    color: #737373;
}

.astroAcheiver li {
    color: #737373;
    font-size: 14px;
}

.astroAcheiver li i {
    color: #eb642d;
}

.astroAcheiver li span {
    color: #737373;
}

.astrolBtns {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.astrolBtns a {
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 15px;
    height: 32px;
    display: flex;
    align-items: center;
    font-size: 13px;
}

a.astrocatbadge {
    background: #ebe5ff;
    border-radius: 30px;
}

a.astrolCall {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 30px;
    background: #e79002;
    padding: 10px;
}

a.astrolChat {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 30px;
    background: #270b79;
    padding: 8px;
}

a.astrolRate {
    background: #fbefd9;
}

.astroinfo {
    display: flex;
    flex-direction: column;
    gap: 7px;
    color: #737373;
    margin-bottom: 8px;
}

.astroinfo li {
    display: flex;
    gap: 5px;
    align-items: baseline;
    font-size: 15px;
    line-height: 6px;
}

.astroinfo li img {
    width: 15px;
    position: relative;
    top: 2px;
}

.astroinfo li span {
    color: #111;
    font-size: 13px;
}

.companyName img {
    width: 15px;
}

.companyName li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.joblistfooter {
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 12px;
    justify-content: space-between;
}

.mainbtn {
    background: #eb642d;
    color: #fff;
    border: 1px solid #eb642d;
    border-radius: 30px;
    padding: 5px 10px;
    font-size: 13px;
    font-weight: 500;
}
.mainbtn:hover {
    background: #bb3b07;
}
.joblistrate {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #111;
    font-weight: 500;
}

/*  */
.outlineBtn {
    display: inline-block;
    border: transparent;
    border-radius: 30px;
    padding: 12px 28px;
    color: #ffffff;
    border: 1px solid #270b79;
    background: #270b79;
    transition: 0.3s ease-in-out;
}
.outlineBtn:hover {
    color: #270b79;
    background: #ffffff;
}


/*  Featured Companry  */
.featurecomSlider {
    position: relative;
}

.featuredcompWrap {
    margin-top: 20px;
}

.featureComCard {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 15px;
    border: 1px solid #f1f1f1;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}
.featureComCard:hover {
    transform: scale(1.01);
    background: #e5e3ed;
}

.fcomLogo {
    width: 100px;
    margin: auto;
    height: 100px;
    border-radius: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.fcomLogo img {
    width: 100%;
}

.featurecompTitle {
    text-align: center;
}

.featurecompTitle h4 {
    font-size: 20px;
    font-weight: 700;
}

.fcomreviews {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin: 3px 0px 10px;
}

.fcomreviews p {
    margin: 0px;
}

.fcomreviews i {
    color: #eb642d;
}

.fcomreviews span {
    color: #737373;
}

.featurecompara {
    margin-bottom: 20px;
}

.featurecompara p {
    text-align: center;
    line-height: 24px;
    font-size: 15px;
    margin: 0px;
}

.textcolbtn {
    color: #eb642d;
    font-weight: 600;
    transition: all .3s ease 0s;
    text-align: center;
}

.textcolbtn i {
    font-size: 13px;
}

.owl-theme.featurecomSlider .owl-dots .owl-dot.active span,
.owl-theme.featurecomSlider .owl-dots .owl-dot:hover span {
    background: #270b79;
    position: relative;
}

.owl-theme.featurecomSlider .owl-dots .owl-dot.active span::after,
.owl-theme.featurecomSlider .owl-dots .owl-dot:hover span::after {
    position: absolute;
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 100%;
    border: 1px solid #270b79;
    top: 0px;
    bottom: 0px;
    left: -3px;
    right: 0px;
    margin: auto;
}

.owl-carousel.featurecomSlider .owl-nav button.owl-next {
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: -30px;
    background: #fff;
    height: 50px;
    margin: auto;
    width: 50px;
    border: 1px solid #ddd;
    border-radius: 100%;
}

.owl-carousel.featurecomSlider .owl-nav button.owl-prev {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: -30px;
    background: #fff;
    height: 50px;
    margin: auto;
    width: 50px;
    border: 1px solid #ddd;
    border-radius: 100%;
}

.owl-carousel.featurecomSlider .owl-nav button.owl-prev:hover,
.owl-carousel.featurecomSlider .owl-nav button.owl-next:hover {
    color: #111;
}

/*  */

/* aapp banner */
.appbannerwrapper {
    padding: 50px;
    border-radius: 20px;
    background: linear-gradient(180deg, #f6f5ff, #efedff 100%);
    border: 1px solid #efedff;
}

.apbnrtitle {}

.apbnrtitle h3 {
    font-weight: 700;
    font-size: 28px;
    line-height: 31px;
    text-align: left;
    color: #121224;
}

.apbnrtitle p {
    margin-top: 10px;
}

.appbnrinput {
    margin-top: 30px;
    position: relative;
    width: fit-content;
}

.appbnrinput input {
    min-width: 392px;
    text-align: left;
    min-height: 52px;
    padding: 16px 17px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    background: #fff;
    border: 1px solid #E7E7F1;
}

.appbnrinput button {
    display: inline-block;
    border: transparent;
    border-radius: 30px;
    padding: 7px 18px;
    background: #eb642d;
    color: #fff;
    border: 1px solid #eb642d;
    position: absolute;
    right: 7px;
    top: 6px;
    transition: 0.3s ease-in-out;
}
.appbnrinput button:hover {
    background: #bb3b07;
}

@media(max-width: 500px) {
    .appbnrinput input {
        min-width: 270px;
    }

    .appbnrinput button {
        padding: 8px 13px;
        font-size: 13px;
        top: 9px;
        right: 10px;
    }
}

.appbnrimg {
    width: 100%;
}

.appbnrimg img {
    width: 100%;
}

.aapbnrdownloadbtns {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.aapbnrdownloadbtns a {
    width: 160px;
    display: inline-block;
}

.aapbnrdownloadbtns a img {
    width: 100%;
}

/* aapp banner */


.astogers {
    position: relative;
    padding: 20px;
    transition: 0.3s cubic-bezier(0, 0.48, 1, 1);
    transition-delay: 0.4s;
    height: 367px;
}

.astogers:hover {
    transform: scale(1.05);

}

.astogers::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 0%;
    top: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;
    margin: auto;
    background: #fff;
    z-index: 1;
    transition: 0.4s ease-in-out;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0px 0px 10px #ddd;
}

.astogers:hover::after {
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.astroContainer {
    position: relative;
    z-index: 2;
}

.astroDP {
    width: 190px;
    height: 190px;
    margin: auto;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* transition: 0.4s ease-in-out;
    transition-delay: 0.4s; */

}

.astroDP::after {
    position: absolute;
    content: '';
    background: url(../img/texture/author-bg.png);
    background-size: 180px;
    background-position: center center;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    z-index: 1;
    animation: mover360 80s linear infinite;
    opacity: 0.3;
}

.astroDP img {
    width: 130px !important;
    height: 130px !important;
    position: relative;
    z-index: 2;
    padding: 10px;
    /* box-shadow: 0px 0px 10px #46464633; */
}

/* .astogers:hover .astroDP {
    transform: scale(0.9);
} */
.astroContent {
    margin-top: 30px;
}

.astroContent .astroname {
    color: #202020;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 11px;
}

.astroContent h6 {
    font-size: 15px;
    color: #464646;
    margin-top: 0px;
}

.astroContent .reviews {
    font-size: 13px;
}

.astroContent .reviews span {
    padding: 4px 6px;
    border-radius: 6px;
}

.astroContent .reviews span i {
    font-size: 10px;
    position: relative;
    top: -1px;
    margin-left: 1px;
}


.astroslider {
    position: relative;
}

.astroslider.owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    right: -18px;
    background: #fff;
    border-radius: 30px;
    /* box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px; */
    border: 1px solid #fa9711;
    color: #282828;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    font-size: 13px;
}

.astroslider.owl-carousel .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: -18px;
    background: #fff;
    border-radius: 30px;
    /* box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px; */
    border: 1px solid #fa9711;
    color: #282828;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    font-size: 13px;
}

.astroslider.owl-carousel:hover .owl-nav button.owl-prev,
.astroslider.owl-carousel:hover .owl-nav button.owl-next {
    visibility: visible;
    opacity: 1;
}



.whats-new-sec {
    /* border-radius: 8px; */
    /* position: relative; */
    width: 90%;
    margin: auto;
}


.whats-new-sec::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 80%;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: #efefef;
    border-radius: 27px;
    z-index: 1;
    border: 1px dashed #ddd;
}

.addtoWishlist {
    position: absolute;
    z-index: 2;
    right: 16px;
    top: 16px;
    background: #ffffffc7;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    line-height: 48px;
    backdrop-filter: blur(7px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.whats-new-sec-img .addtoWishlist img {
    width: 30px;
}

.addtoWishlist:hover,
.addtoWishlist.active {
    color: red;
}

.offerStatuInfo {
    display: inline-block;
    position: absolute;
    left: 10px;
    background: linear-gradient(45deg, #8f035994, #89025291);
    border-radius: 22px;
    top: 10px;
    height: 30px;
    padding: 0px 13px;
    backdrop-filter: blur(8px);
}

.whats-new-sec .offerStatuInfo p {
    line-height: 29px;
    color: #ffff;
    font-size: 13px;
}

.whats-new-sec-img {
    background-color: #fff;
    width: 90%;
    border: 1px solid rgba(221, 221, 221, 0.713);
    text-align: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;
    margin: auto;
    border-radius: 27px;
    position: relative;
    z-index: 2;
}

.whats-new-sec-img img {
    width: 100%;
}

.whats-new-content {
    padding: 0px 22px;
    padding-top: 15px;
    position: relative;
    z-index: 2;
    padding-bottom: 15px;
    min-height: 190px;
    max-height: 190px;
}

.ratingShow {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.listprOtherInfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.listprOtherInfo .ratingShow span {
    font-family: "Open Sans", sans-serif;
    ;

}

.ratingShow i {
    color: #edbe00;
    margin-right: 7px;
}

.listprPrice {
    font-size: 22px;
    font-weight: 600;
}

.listprPrice span {
    color: #270b79;
}

.listprPrice .oldPrice {
    color: #979797;
    font-size: 19px;
    text-decoration: line-through;
    margin-left: 8px;
}

.whats-new-sec h4.listPrTitle {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    margin-top: 8px;
    margin-bottom: 20px;
    text-align: center;
    color: #343434;
}

.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: 38px;
    padding: 7px 20px;
    position: relative;
    top: 0px;
    border-radius: 30px;
    margin-top: 20px;
}

.productSlider {
    position: relative;
}

.productSlider.owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    right: -18px;
    background: #fff;
    border-radius: 30px;
    /* box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px; */
    border: 1px solid #fa9711;
    color: #282828;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    font-size: 13px;
}

.productSlider.owl-carousel .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: -18px;
    background: #fff;
    border-radius: 30px;
    /* box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px; */
    border: 1px solid #fa9711;
    color: #282828;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    font-size: 13px;
}

.productSlider.owl-carousel:hover .owl-nav button.owl-prev,
.productSlider.owl-carousel:hover .owl-nav button.owl-next {
    visibility: visible;
    opacity: 1;
}


.videoCard {
    position: relative;
    width: 90%;
    margin: auto;
}

.videothumb {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.videothumb img {
    width: 100%;
}

.videoContent {
    margin-top: 13px;
    ;
}



.video-player {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    width: fit-content;
    height: fit-content;
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

.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;
    transition: 0.4s ease;
}

.pulse i:hover {
    background: #ffffff54;
    color: #fff;
    backdrop-filter: blur(7px);
}

@-webkit-keyframes video-pulse-presentation {
    0% {
        -webkit-box-shadow: 0 0 0 0 #f29200, 0 0 0 0 #f29200;
        box-shadow: 0 0 0 0 #f29200, 0 0 0 0 #f29200;
    }

    40% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 #f29200;
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 #f29200;
    }

    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 #f29200, 0 0 0 0 #f29200;
        box-shadow: 0 0 0 0 #f29200, 0 0 0 0 #f29200;
    }

    40% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 #f29200;
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 #f29200;
    }

    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%);
    }
}

.text-white {
    color: #fff;
}



.newsCard {
    padding: 14px;
    background: #fff;
    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.newsImg {
    border-radius: 10px;
    overflow: hidden;
}

.newsImg img {
    width: 100%;
}

.newsContent {
    background: #fff;
    border-radius: 8px;
    width: 100%;
    padding: 13px;
    position: relative;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
    margin-top: 9px;
}

.newsContent h5 {
    font-size: 18px;
    font-weight: 600;
    color: #343434;
    ;
    margin: 0px;
    margin-bottom: 12px;
    margin-top: 5px;

}

.newsDate ul {
    display: flex;
    justify-content: space-between;
}

.newsDate ul li {
    display: flex;
    align-items: center;
}

.newsDate ul li i {
    color: #ff6600;
    font-size: 13px;
    margin-right: 7px;
}

.newsDate ul li p {
    font-size: 14px;
    margin-bottom: 0px;
}

.blogDate {
    position: absolute;
    top: -30px;
    right: 17px;
    background: #ff6600;
    border-radius: 8px;
    padding: 4px 17px;
}

.newsDate ul li.blogDate i {
    color: #fff;
}

.newsDate ul li.blogDate p {
    color: #fff;
    margin-bottom: 0px;
}

.blogSlider .item {
    padding: 10px;
}


.footer-wrp-main {
    background-color: #222222;
    background-size: 100%;
    position: relative;
    padding-top: 50px;
}

.footer-logo-wrp {
    margin-bottom: 20px;
}

.footer-logo-wrp img {
    width: 40%;
    margin: auto;
}

.footerTexture {
    position: absolute;
    width: 35%;
    margin: 0px auto;
    left: 0px;
    right: 0px;
    top: 0px;
    filter: hue-rotate(26deg) saturate(0);
}

.footerTexture img {
    width: 100%;
}

.footerMain {
    position: relative;
    padding: 0px 0px 0px;
    z-index: 2;
}

#tsparticles {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    top: 0px;
    z-index: 1;
}

#tsparticlestwo {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    top: 0px;
    z-index: 1;
}

.particle-network-animation {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    top: 0px;
    z-index: 3;
}

.somepolicyLink {
    color: #fff;
    display: inline-flex;
    gap: 7px;
}

.somepolicyLink li {
    color: #fff;
}

.somepolicyLink li a {
    color: #ddd;
    font-size: 13px;
}


#tsparticles canvas {
    position: unset !important;
}

#tsparticlestwo canvas {
    position: unset !important;
}

#nokey canvas {
    position: unset !important;
}

.ftr-link-bx {
    margin-top: 15px;
}

.ftr-link-bx a {
    display: block;
    color: #939393;
    margin: 11px 0px 11px;
    font-size: 16px;
    transition: 0.3s ease-in-out;
}
.ftr-link-bx a:hover {
    color: #eb642d;
    padding-left: 5px;
}
.ftr-link-bx a i {
    font-size: 12px;
    margin-right: 5px;
    position: relative;
    top: 0px;
}

ul.address-sec li i {
    color: #eb642d;
    font-size: 14px;
    margin-right: 8px;
}

ul.address-sec li a {
    display: flex;
    align-items: baseline;
}

.ftr-link-bx a.title-16 {
    font-size: 18px;
    font-weight: 500;
    color: #bfbfbf;
    margin-top: 0px;
    margin-bottom: 7px;
    position: relative;
    padding-bottom: 4px;
}

.ftr-link-bx a.title-16::after {
    position: absolute;
    content: '';
    width: 30px;
    height: 2px;
    background: #eb642d;
    bottom: 0px;
    left: 0px;
    z-index: 1;
}

.ftr-link-bx a.title-16::before {
    position: absolute;
    content: '';
    width: 7px;
    height: 7px;
    background: #eb642d;
    bottom: -2px;
    left: 57px;
    border-radius: 100%;
    z-index: 2;
    display: none;
}

.footerContents {
    margin-top: 20px;
}

.footerContents p {
    margin-right: 5px;
    color: #fff;
    line-height: 28px;
}

.footer-links-wrp {
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
    padding-top: 40px;
}

.footer-btm-wrp {
    background: #060606;
    padding: 5px 0px;
}

.footer-btm-wrp p {
    color: #ffff;
    margin-bottom: 0px;
    font-size: 13px;
}

.footerContents ul {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footerContents ul {
    color: #fff;
}

.footerContents ul li {
    color: #fff;
}

.footerContents ul li:first-child {
    margin-right: 0px;
}

.footerContents ul li:nth-child(2) {
    margin-left: 0px;
}

.footerContents ul li a {
    display: inline-block;
    border: none;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 100%;
    margin: 0px;
    color: #a72409;
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.footerContents ul li a i {
    font-size: 20px;
    line-height: 51px;
}

.footerContents ul li a i.fa-tiktok {
    color: #111;
}

.footerContents ul li a i.fa-facebook-f {
    color: #0075ea;
}

.footerContents ul li a i.fa-x-twitter {
    color: #000;
}

.footerContents ul li a i.fa-youtube {
    color: #f70000;
}

.footerContents ul li a i.fa-instagram {
    background: -webkit-linear-gradient(#556db3, #ea3367, #ff4f28, #ffad57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footerContents ul li a i.fa-whatsapp {
    color: #25D366;
}

ul.footerSocial {
    margin-top: 20px;
}

ul.footerSocial i {
    line-height: 27px;
    color: #fff;
    font-size: 12px;
}

.footerpaymentLink {
    margin-top: 18px;
}

.footerpaymentLink img {
    width: 150px;
}

.footershape1 {
    position: absolute;
    left: 40px;
    top: 0px;
    width: 110px;
    animation: upandDown 5s ease-in-out infinite alternate-reverse both;
}

.footerDownloads ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.footerDownloads li a img {
    width: 120px;
}

.footerNewsletter {
    border-bottom: 1px solid #dddddd0d;
}

.newsLetterInput {
    background-color: #0a0a0a26;
    padding: 10px;
    border-radius: 60px;
    position: relative;
}

.newsLetterInput input {
    border: 1px solid #3e3e3e75;
    border-radius: 36px;
    padding: 10px 16px;
    width: 100%;
    background: #20202033;
}

.newsLetterInput input {
    color: #ddd;
}

.newsLetterInput button {
    padding: 10px 26px;
    border: none;
    border-radius: 30px;
    background: #ff6600;
    color: #fff;
    position: absolute;
    right: 11px;
}


.appdownloadfooterbtns {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.appdownloadfooterbtns a {
    width: 100px;
    display: inline-block;
}

.appdownloadfooterbtns a img {
    width: 100%;
}

.appDownload.ftr-link-bx {
    padding: 16px;
    background: #1a1a1a;
    border-radius: 15px;
}

.appDownload.ftr-link-bx p {
    color: #fff;
    font-size: 12px;
}

.scrollToTop {
    background-color: #ffffff00;

    border: 1px solid #838383;
    box-shadow: 0 0 5px rgba(0, 0, 0, .05);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: all .15s ease
}

.scrollToTop:after {
    content: "";
    border: solid #838383;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(-135deg)
}

.scrollToTop.showBtn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

#progress-bar {
    --scrollAmount: 0px
}

#progress-bar svg {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 50px;
    max-height: 50px;
    transform: rotate(90deg)
}

#progress-bar svg path {
    stroke-width: .2em;
    stroke-dasharray: 154;
    stroke-dashoffset: calc(-154px + var(--scrollAmount));
    animation-fill-mode: forwards
}

.coutnersContainer {
    position: relative;
}

.countersWrap {
    width: 100%;
}

.common-box {
    text-align: center;
    position: relative;
}

.common-box::after {
    position: absolute;
    right: 0px;
    width: 1px;
    height: 100%;
    background: #bdbdbddd;
    content: '';
    top: 0px;
    bottom: 0px;
}

.counterIcon {
    width: 62px;
    margin: 0px auto;
    margin-bottom: 13px;
}

.counterIcon img {
    width: 100%;
}

.countersWraper .col-md-3:last-child .common-box:after {
    background: #9f9f9f00;
}

.counter-num span {
    font-size: 32px;
    font-weight: 600;
    font-family: 'campton';
    line-height: normal;
    color: #263844;
}

.counter-text {
    font-weight: 600;
    color: #525252;
}

.counterDataWrap {
    position: absolute;
    top: 156px;
    right: -20px;
    z-index: 3;
    animation: upandDown 5s ease-in-out infinite alternate-reverse both;
}

@-webkit-keyframes upandDown {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

.upandDown {
    animation: upandDown 5s ease-in-out infinite alternate-reverse both;
}

.counterData {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 18px 23px;
    border-radius: 8px;
}

.counterData h4 {
    font-size: 38px;
    font-weight: 700;
    color: #002588;
    line-height: normal;
}

.counterData p {
    line-height: normal;
}

.ourPresences {}


.testiSlider .item {
    padding-top: 110px;
}

.testimonials {
    position: relative;
    background: #fdd;
    border-radius: 20px;
}

.testimonials-bg {
    width: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
}

.testimonials-bg img {
    width: 100%;
}

.testimonialsWrapper {
    margin-top: 40px;

}

.testimonialsCarousel {
    padding: 0px 37px;
    border-radius: 20px;
    background-color: transparent;
    position: relative;
    background-size: 100%;
    background-position: bottom;
    min-height: 306px;
    overflow: hidden;
    backdrop-filter: none;
}

.owl-theme .owl-dots .owl-dot span {
    transition: 0.3s ease-in-out;
}

.owl-theme.testimonialsCarousel .owl-dots,
.testimonialsCarousel.owl-theme .owl-nav {
    text-align: center;
    transition: 0.3s ease-in-out;
}

.owl-theme.testimonialsCarousel .owl-dots .owl-dot.active span,
.owl-theme.testimonialsCarousel .owl-dots .owl-dot:hover span {
    background: #ed6f16;
    width: 15px;
    height: 15px;
    position: relative;
    top: 3px;
}

.testimonialsCarousel::after {
    position: absolute;
    right: 0px;
    bottom: auto;
    font-size: 40px;
    content: "\f10e";
    color: #ffe3d3;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    top: 133px;
    left: 0px;
    margin: auto;
    width: fit-content;
    z-index: -1;

}

.testimonialCard {
    position: relative;
    background: #fff5ee;
    border: 1px solid #ffe9db;
    border-radius: 20px;
    padding: 30px;
}

.testimonialCard::after {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    background: url(../img/icons/qoute.png);
    top: 10px;
    left: 0;
    z-index: 2;
    background-size: 100%;
    opacity: 0.3;
    right: 0px;
    bottom: 0px;
    margin: auto;
}

.testiContent p {
    text-align: center;
    margin-bottom: 30px;
}

.useratings {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.useratings i {
    color: #ff9933;
}

.testiauthor {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 18px;
    flex-direction: column;
    gap: 18px;
    text-align: center;
    margin-bottom: 20px;
}

.testiimg {
    width: 130px;
    height: 130px;
    border-radius: 100%;
    border: 3px solid #28266c;
    position: relative;
    z-index: 3;
    margin-top: -100px;
    overflow: hidden;
}

.testiimg img {
    width: 100%;
    border-radius: 8px;
}

.testiauthorContent {
    margin-left: 13px;
}

.testiContent {
    text-align: center;
}

.testiauthorContent h5 {
    font-size: 18px;
    font-weight: 600;
}

.testiauthorContent h5 span {
    font-weight: 400;
    font-size: 15px;
}

.testiauthorContent p {
    color: #282828;
}




.testimonialsCarousel.owl-theme .owl-dots .owl-dot.active {
    position: relative;
    display: inline-block;
}

.testimonialsCarousel.owl-theme .owl-dots .owl-dot.active:after,
.testimonialsCarousel.owl-theme .owl-dots .owl-dot:hover:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
}



/* inner Banenr  */

.inrbnr {
    position: relative;
    min-height: 200px;
    background: linear-gradient(83deg, #fff4de59, #ffe1e1ab), url(../img/bgs/inner-bnr-bg.png);
    padding-top: 80px;
    background-size: 100%;
    background-position: center center;

}

.inrbnrimg {
    width: 100%;
    height: 200px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    z-index: 1;
}

.inrbnrimg img {
    width: 40%;
    position: relative;
}

.inrbnrContent {
    position: relative;
    z-index: 2;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.inrbnrtext h2 {
    font-size: 32px;
    color: #ffffff;
}

.inrbrnNav {
    display: flex;
    align-items: center;
    margin-top: 3px;
    justify-content: flex-start;
}



.inrbrnNav li a i {
    font-size: 13px;
    margin-right: 3px;
    position: relative;
    top: -1px;
}

.inrbrnNav li:first-child {
    padding-left: 0px;
}

.inrbrnNav li {
    position: relative;
    border-right: 1px solid #959595;
    padding: 0px 10px;
}

.inrbrnNav li:last-child {
    border: none;
}

.inrbrnNav li a {
    color: #fff;
}

.inrbrnNav li:last-child a {
    color: #f59100;
}



/* style two */

.bnrNav {
    padding: 13px 0px;
    background: linear-gradient(90deg, #fbedd48c, #fbedd4ad), url(../img/texture/texture1.png);
}

.bnrNavWrap ul {
    display: flex;
    align-items: center;
    position: relative;
}

.bnrNavWrap ul li {
    padding-right: 5px;
    position: relative;
    margin-right: 5px;
}

.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: 1px;
    height: 26px;
    background-size: contain;
    top: 0px;
    bottom: 0px;
    margin: auto;
    font-size: 12px;
}

.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: #7c7c7c;
}

.bnrNavWrap ul li a {
    color: #7c7c7c;
    font-weight: 600;
    font-size: 14px;
}

.bnrNavWrap ul li:last-child a {
    color: #270b79;
    font-weight: 600;
}

/* inner Banenr End */
.mainTitle {
    margin-bottom: 30px;
}

.mainTitle h1 {
    font-weight: 700;
    font-size: 46px;
    color: #270b79;
}

.mainTitle p {
    padding: 0px 20%;
    font-size: 18px;
    margin-top: 8px;
}

.contactInfoWrap {
    margin-top: 60px;
}

.contactInfoCard {
    padding: 20px;
    /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
    background: #ffefe0;
    backdrop-filter: blur(5px);
    border-radius: 20px;
    border: 1px solid #dddddd6b;
    transition: 0.4s ease-in-out;
    position: relative;
    min-height: 220px;
}

.contactinfoIoc {
    width: 90px;
    margin: auto;
    height: 90px;
    background: linear-gradient(180deg, #003075, #00255a);
    padding: 22px;
    border-radius: 20px;
    margin-top: -58px;
    position: relative;
    z-index: 2;
    transition: 0.4s ease-in-out;
}

.contactinfoIoc img {
    filter: invert(3) brightness(5);
    width: 100%;
}

.contactinfoContent {
    position: relative;
    z-index: 2;
    margin-top: 10px;
    text-align: center;
}

.contactInfoCard::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    z-index: 1;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    border-radius: 20px;
    transition: 0.4s ease-in-out;
    background: linear-gradient(45deg, #fff8f1, white);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    visibility: hidden;
    opacity: 0;
}

.contactinfoContent h5 {
    font-size: 20px;
    font-weight: 700;
    color: #00112a;
    margin-bottom: 6px;
    margin-top: 22px;
}

.contactinfoContent a {
    display: block;
    color: #111;
    font-size: 19px;
    font-weight: 700;
    position: relative;
}

.contactinfoContent a::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ff6600;
    border-radius: 30px;
    margin-right: 7px;
}

.contactinfoContent p {
    line-height: normal;
    margin-bottom: 20px;
}

.partnerWrap {
    background: linear-gradient(180deg, #ffe9db, #fff6f2);
    padding: 30px;
    border-radius: 30px;
    /* margin-bottom: 40px; */
}
.partnerWrap.premiumPlan  {
    background: linear-gradient(180deg, #e4dbff, #e9e1ff);
}
.partnerWrap.premiumPlan.selectedPlan , .partnerWrap.premiumPlan:hover {
    background: linear-gradient(180deg, #cdbef9, #e1d6ff);
    border: 2px solid #9b85db;
}
.partnerWrap.selectedPlan , .partnerWrap:hover {
    background: linear-gradient(180deg, #fddcc7, #ffe9df);
    border: 2px solid #eb642d;
}

.partnerWrap .imgSec {
    box-shadow: none;
    border: none;
}

.textWrapper.light h5,
.textWrapper.light h2,
.textWrapper.light p {
    color: #fff;
}

.partnerWrap .textWrapper.light h2 {
    font-size: 59px;
    margin-bottom: 16px;
    font-weight: 700;
}
.partnerWrap .textWrapper.light.dark h2 {
    color: #383838;
}
.textWrapper.light.dark .normalList li {
    color: #111;
}
.partnerWrap .textWrapper.light.dark h4 {
    color: #111;
}

.partnerWrap .normalList li {
    padding-left: 23px;
    background-image: url(../img/icons/check.svg);
    background-size: 16px;
    background-position: left top 4px;
    background-repeat: no-repeat;
    text-align: justify;
    line-height: 25px;
    color: #3c3c3c;
}

.textWrapper.light .normalList {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.textWrapper.light .normalList li {
    color: #fff;
    background-image: url(../img/icons/check-light.svg);
    background-size: 23px;
    line-height: 31px;
    padding-left: 30px;
    width: 100%;
}

.partnerWrap .textWrapper.light h4 {
    color: #fff;
    margin-top: 20px;
    font-size: 30px;
    font-weight: 700;
}

.partnerWrap .button.outline {
    background: #fff;
    border: none;
}

/* blogsdetails  */

.blogMainImg {
    border-radius: 10px;
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
}

.blogMainImg img {
    width: 100%;
}

.blogMainHeader {
    margin-bottom: 30px;
}

.blogMainHeader .newsDate ul {
    justify-content: flex-start;
}

.blogMainHeader .newsDate ul li:first-child {
    margin-right: 10px;
}

.blogTitle h1,
.blogTitle h2 {
    font-size: 34px;
    font-weight: 700;
}

.blogdSidebar {

    position: sticky;
    top: 90px;

}

.blogSiderCard {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: 12px;
}

.blogNeedAssistants {
    padding: 12px;
    text-align: center;
}

.blogNeedAssistants img.mainImg {
    width: 50px;
    margin-bottom: 8px;
}

.blogNeedAssistants h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.blogNeedAssistants h5 {
    font-size: 12px;
}

.astrolBtns.ondetails.onblogs {
    flex-direction: column;
    gap: 7px;
}

.astrolBtns.ondetails.onblogs a.astrolCall:nth-child(2) {
    background: #270b79;
}

h5.sidebarTitle {
    font-weight: 600;
    position: relative;
    padding: 16px 0px 8px;
}

h5.sidebarTitle::after {
    position: absolute;
    content: '';
    width: 50px;
    height: 3px;
    background: #270b79;
    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;
    min-height: 70px;
    object-fit: cover;
    max-width: 70px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;

}

.blog-meta li {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #606060;
}

.blogContainer ul li {
    list-style: inside;
}

.registerfromWrapper {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.registerForm {
    padding: 44px;

}

.form-group span {
    color: red;
}


.form-control {
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 400;
    border: 1px solid #dddddd;
    border-radius: 10px;
}

.form-control:focus {
    box-shadow: none;
    border: 1px solid #ffbe62;
}

.form-control::placeholder {
    color: #b3b3b3;
}

.form-select {
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 400;
    border: 1px solid #dddddd;
    border-radius: 10px;
}

.form-select:focus {
    box-shadow: none;
    border: 1px solid #ffbe62;
}


.bgdark {
    background: linear-gradient(90deg, #2b2873da, #1c1a5ad8), url(../img/texture/texture2.jpg);
    background-size: 100%;
    background-position: center center;
}

.normalbtn {
    background: #eb642d;
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    color: #fff;
    transition: 0.3s ease-in-out;
    display: inline-block;
}

.greenBtn {
    background: linear-gradient(124deg, #0d6b21, #25983e);
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    color: #fff;
    transition: 0.3s ease-in-out;
    display: inline-block;
}

.greenBtn:hover {}

.registerInstruction {
    height: 100%;
}

.registerInstruction .imgsec {
    height: 100%;
}

.registerInstruction .imgsec img {
    height: 100%;

}

.imgsec {
    width: 100%;
}

.imgsec img {
    width: 100%;
}

.moreFilterBtn {
    display: flex;
    align-items: center;
    gap: 10px;
}

.moreFilterBtn p {
    margin-bottom: 0px;

}

.innersearch .row-group-search {
    gap: 10px;
}

.searchBar.innersearch {
    width: 100%;
}

.founderinfo p {
    margin: 0px;
    color: #6b6b6b;
}

.listinfviewInfo {
    justify-content: space-between;
    margin-top: 30px;
}

.otherfilter {
    text-align: right;
}

.otherfilter select {
    background: #ededed;
    border: 1px solid #e7e7e7;
    padding: 7px 8px;
    border-radius: 28px;
}

.jobListWrapper.innerveiw {
    margin-top: 10px;
}

.featuredcompWrap.mainlisting .featureComCard {
    margin-bottom: 20px;
}


.loginSignupForm {
    margin-top: 90px;
}

.loginForm {
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 1px solid #dddddd7a;
}

.dividers {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.dividers p {
    font-size: 15px;
    color: #222;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 20px 0px;

}

.dividers p::after {
    content: '';
    width: 100px;
    height: 1px;
    background: #ddd;
    display: inline-block;
    margin-top: 0px;
    margin-bottom: 0px;
}

.dividers p::before {
    content: '';
    width: 100px;
    height: 1px;
    background: #ddd;
    display: inline-block;
    margin-top: 0px;
    margin-bottom: 0px;
}

.signUpotherOptions {
    max-height: 510px;
    position: relative;
}

.otpinputRow {
    display: flex;
    gap: 14px;
    margin-bottom: 10px;
    justify-content: center;
}

.otpinputRow input.form-control {
    width: 80px;
    height: 50px;
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    color: #5e5e5e;
}

.mobileotpico {
    width: 100px;
    margin: 20px 0px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 10px;
    /* right: 0px; */
    margin-left: -65px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-radius: 5px;
}

.dropdown-content a:hover {
    background-color: #ffe6be;
}


.signupWithGmail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 10px;
    border: 1px solid #ffe0c4;
    border-radius: 8px;
    background: #ffdbdb59;
}

.signupgmailIco svg {
    width: 18px;
    position: relative;
    top: -1px;
}


.signupwithFacebook {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 7px 10px;
    border: 1px solid #bfdfff;
    border-radius: 8px;
    background: #a4d9ff38;
}

.signupFacebookIco svg {
    width: 18px;
    position: relative;
    top: -1px;
}

.signupwithEmail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 10px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    background: #f4f4f4;
}



.signupwithOtp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 10px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    background: #f4f4f4;
}

.loginForm .form-control {
    margin: 5px 0px 15px;
}

.loginImgSec {
    width: 100%;
    margin: auto;
}

.loginImgSec img {
    width: 100%;
}

.textContainer.text-justify p {
    text-align: justify;
}

/* Job Details */
.astroSider {
    position: sticky;
    top: 90px;
}

.ondetails .astrocContainer {
    flex-direction: column;
    gap: 10px;
}

.astrocard.ondetails .astrohead {
    flex-direction: row;
    width: 100%;
    align-items: center;
}

.astrocard.ondetails .astroImg {
    width: 100px;
    height: 100px;
    visibility: visible;
    border-radius: 0px;
    border: none;
}

.astrocard.ondetails .astroImg img {
    border-radius: 100%;
    border: 1px solid #f3f3f3;
}

.onlineShow {
    position: absolute;
    width: 19px;
    height: 19px;
    background: #00c534;
    bottom: 2px;
    right: 9px;
    z-index: 2;
    border-radius: 100%;
    display: inline-block;
    border: 1px solid #fff;
}

.astrocard.ondetails .astroName h4 {
    font-size: 22px;
}

.astroName img.verifiedCheck {
    width: 18px;
}

.ondetails .astroAcheiver {
    justify-content: flex-start;
}

.ondetails .astroAcheiver li {
    font-size: 16px;
}

.astrodCates a.astrocatbadge {
    padding: 6px 20px;
    display: inline-block;
}

.ondetails .astroinfo li {
    font-size: 16px;
    line-height: 20px;
    padding: 5px;
    border-bottom: 1px dashed #e5e5e5;
}

.ondetails .astroinfo li img {
    width: 24px;
    position: relative;
    top: 3px;
}

.astrolBtns.ondetails a.astrolCall {
    width: 100%;
    padding: 8px 10px;
    height: auto;
    justify-content: center;
    gap: 5px;
    color: #fff;
    line-height: normal;
    text-align: left;
}

.astrolBtns.ondetails a.astrolCall {
    width: 100%;
    padding: 8px 10px;
    height: auto;
    justify-content: center;
    gap: 5px;
    color: #fff;
    line-height: normal;
    text-align: left;
}

.astrolBtns.ondetails a.astrolChat {
    width: 100%;
    padding: 8px 10px;
    height: auto;
    justify-content: center;
    gap: 5px;
    color: #fff;
    font-size: 16px;
}

.navWrapper {
    position: sticky;
    top: 81px;
    background: #fff;
    z-index: 3;
    padding: 10px 0px;
}

.navibtn.active {
    background: #eb642d;;
    color: #fff;
}

.navibtn {
    border-radius: 8px;
    padding: 12px 25px;
    background: linear-gradient(124deg, #e7e7e7, #ededed);
    font-size: 17px;
    display: inline-block;
}

.tabContentBox {
    /* border: 1px solid #f1f1f1; */
    border-radius: 10px;
    margin-top: 8px;
}

.titletwo {
    margin-bottom: 12px;
    padding-bottom: 7px;
    position: relative;
    font-size: 20px;
    font-weight: 600;
}

.titletwo::after {
    position: absolute;
    content: '';
    width: 80px;
    height: 2px;
    background: #270b79;
    bottom: 0px;
    left: 0px;
}

.speciCard {
    padding: 10px 20px;
    width: 32%;
    background: #fbfbfb;
    border: 1px solid #efefef;
}

.speciCard img {
    width: 33px;
}

.speciCard span {
    font-size: 16px;
}

.cusReviewCreate {
    padding: 12px 0px;
}

.cusReviewCreate .comment-list>.comment .comment-body {
    position: relative;
    /* padding-left: 100px; */
    margin-bottom: 0px;
    min-height: 95px;
    border-bottom: 1px solid rgba(34, 34, 34, .1);
    padding-bottom: 25px;
}

.cusReviewCreate .comment-list>.comment .comment-body .comment-author .avatar {
    position: absolute;
    left: 0;
    height: 80px;
    width: 80px;
    border-radius: 100%;
}

.cusReviewCreate .comment-list>.comment .comment-body .comment-author .fn {
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 8px;
    display: block;
}

.cusReviewCreate .comment-list>.comment .comment-body .star-rating {
    font-size: 14px;
    margin-bottom: 10px;
}

.cusReviewCreate .text-secondary {
    color: #ffc822 !important;
}

.cusReviewCreate .comment-list>.comment .comment-body p {
    font-size: 14px;
    text-align: left;
    line-height: 21px;
    color: #646464;
}

.commentReviewForm {
    padding: 22px;
    width: 100%;
    background: #fbfbfb;
    border: 1px solid #efefef;
    border-radius: 10px;
    position: sticky;
    top: 80px;
}

.star-rating {
    /* direction: rtl; */
    display: inline-block;
    padding: 0px;
    cursor: default;
    display: flex;
    gap: 8px;
}

.star-rating input[type=radio] {
    display: none;
}

.star-rating label {
    color: #d1d1d1;
    font-size: 22px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input[type=radio]:checked~label {
    color: #f2b600;
}

.astrolBtns.ondetails a.astrolChat img {
    width: 20px;
}
.astrolBtns.ondetails a.astrolCall img {
    width: 20px;
}
.ondetails .astroinfo {
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
}
.ondetails .astroinfo li {
    width: 100%;
}
.ondetails .astroDetails {
    width: 100%;
}
.content li {
    padding-left: 23px;
    background-image: url(../img/icons/check.svg);
    background-size: 16px;
    background-position: left top 4px;
    background-repeat: no-repeat;
    text-align: justify;
    line-height: 25px;
    color: #3c3c3c;
}


/* animations */
.canvastwo {
    position: absolute;
    width: 100%;
    height: auto;
    z-index: 1;
}


.candidateProfile .astrocard {
    box-shadow: rgb(0 0 0 / 21%) 0px 1px 4px;
}
.candidateProfile .astrocard.ondetails .astrohead {
    flex-direction: column;;
}
.candidateProfile .astroName {
    text-align: center;
}


/* StudentPanel */
.studentPanel {
    margin-top: 0;
    display: flex;
    width: 100%;
    /* overflow: hidden; */
}
.panelSidebar {
    width: var(--usersideWidth);
    height: 100vh;
    background: #eee8ff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-right: 1px solid #bbabeb;
    position: sticky;
    top: 75px;
}
.panelSidebar .mainsidebar {
    padding: 20px 20px;
    
}
.panelSidebar .mainsidebar .sidebar-icon {
    margin-right: 10px;
}
.panelSidebar .mainsidebar > li > a{
    display: inline-block;
    padding: 8px 0px;
    width: 100%;
    border-bottom: 1px dashed #ddd;
    color: #000000;
} 
.panelSidebar .mainsidebar > li > a:hover , .panelSidebar .mainsidebar > li > a.active {
    background: #270b79;
    color: #fff;
    padding-left: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.mainsidebar img {
    transition: 0.3s ease-in-out;
}
.panelSidebar .mainsidebar > li > a img  {
    width: 15px;
}
.panelSidebar .mainsidebar > li > a:hover img , .panelSidebar .mainsidebar > li > a.active img {
    filter: invert(1);
}
.hassubmaiside {
    position: relative;
    
}

.submainsidebar a {
    display: inline-block;
    padding: 8px 0px;
    width: 100%;
    border-bottom: 1px dashed #ddd;
}
.submainsidebar a:hover , .submainsidebar a.active {
    background: #e8e0ff;
    color: #2c2c2c;
    padding-left: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.submainsidebar {
    display: none;
    padding-left: 15px;
    background: #e4dbff;
}
.panelMainWrapper {
    width: calc(100% - var(--usersideWidth));
    padding: 20px;
    background: #f7f7f7;
}
.panelCard {
    padding: 16px;
    border: 1px solid #ededed;
    border-radius: 20px;
    background: #fff;
    margin-bottom: 20px;
}

.profiledashDP .avatar {
    margin: auto;
    margin-bottom: 10px;
    width: 65px;
    height: 65px;
    border: 1px solid #e9e9e9;
    border-radius: 100%;
}

.avatar {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
}
.avatar img {
    width: 100%;
    height: 100%;
}
.profiledashDP .avatar .dashboardProfileEditBtn {
    position: absolute;
    bottom: -4px;
    background: #fff2f2;
    display: inline-block;
    right: -2px;
    z-index: 1;
    border-radius: 100%;
    width: 26px;
    height: 26px;
    text-align: center;
    font-size: 11px;
    line-height: 28px;
}
.avatar.avatar-online:after {
    background-color: #56ca00;
}
.avatar.avatar-online:after, .avatar.avatar-offline:after, .avatar.avatar-away:after, .avatar.avatar-busy:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 3px;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    box-shadow: 0 0 0 2px #fff;
}
.rounded-circle {
    border-radius: 50% !important;
}

.profileDashContent {
    text-align: center;
}
.profileDashContent h5 {
    font-size: 20px;
    font-weight: 600;
    color: #002f29;
}
.profileDashContent p {
    font-size: 14px;
    color: #6c6c6c;
    line-height: normal;
}
.profileDashContent h6 {
    font-size: 13px;
    font-weight: 600;
}

.profileShortInfo h4 {
    margin-bottom: 10px;
    font-size: 20px;
}
.profileShortInfo h4  span {
    font-size: 30px;
    font-weight: 700;
    color: #eb642d;
}

.profileForm .form-control{
    height: 45px;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 16px;
}
.profileForm .form-select{
    height: 45px;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 16px;
}
.profileForm .form-select:focus {
    box-shadow: none;
}
.profileForm .form-control:focus {
    box-shadow: none;
}
:root {
    --usersideWidth: 20%;
}


.normalbtn.deleteaccountbtn {
    position: absolute;
    right: 0px;
    top: 0px;
    padding: 8px 20px;
    font-size: 13px;
    background: #ffe7e7;
    border: 1px solid #ffd3d3;
    color: #ff0000;
}
.normalbtn.editaccountbtn {
    position: absolute;
    right: 0px;
    top: 0px;
    padding: 8px 20px;
    font-size: 13px;
    background: #eee8ff;
    border: 1px solid #ad95ee;
    color: #3b13a8;
}


.avatar-upload {
    position: relative;
    max-width: fit-content;
    margin: 0px;
    margin-bottom: 20px;
}

.avatar-upload .avatar-edit {
    position: absolute;
    right: 12px;
    z-index: 1;
    bottom: -6px;
}

.avatar-upload .avatar-edit input {
    display: none;
}

.avatar-upload .avatar-edit input+label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%;
    background: #FFFFFF;
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
}

.avatar-upload .avatar-edit input+label:hover {
    background: #f1f1f1;
    border-color: #d6d6d6;
}

.avatar-upload .avatar-edit input+label:after {
    content: "\f040";
    font-family: 'FontAwesome';
    color: #ef9201;
    position: absolute;
    top: 7px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    font-size: 14px;
}

.avatar-upload .avatar-preview {
    width: 132px;
    height: 132px;
    position: relative;
    border-radius: 100%;
    border: 6px solid #F8F8F8;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.avatar-upload .avatar-preview>div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.table thead th {
    background: #e1edff;
}
.table>thead {
    border-bottom: 1px solid #002968;
}

.transactiondetials img {
    width: 25px;
}
.transactiondinfo h5 {
    color: #303030;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 2px;
}
.transactiondinfo p {
    color: #737373;
    margin: 0px;
    font-size: 12px;
    line-height: 20px;
}
.text-right {
    text-align: right;
}
.paneltable .tab-content {
    max-height: 500px;
    min-height: 500px;
    overflow-y: auto;
}
.paneltable .tab-content::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

.paneltable .tab-content::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
    transition: all 0.4s ease-in-out;
}
.transactiondetials img.astrologImg {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    border: 2px solid #270b79;
}
.normalbtn.smallsize {
    padding: 3px 10px;
    font-size: 12px;
}
.bg-blue {
    background: #270b79 !important;
}
/* switch slider */
.switch input {
    display: none;
}

.switch {
    display: inline-block;
    width: 60px;
    height: 30px;
    position: relative;
}

/* Style Wired */
.slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 30px;
    box-shadow: 0 0 0 2px #9d9d9d, 0 0 4px #9d9d9d;
    cursor: pointer;
    border: 4px solid transparent;
    overflow: hidden;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #9d9d9d;
    border-radius: 30px;
    transform: translateX(-30px);
    transition: .4s;
}

input:checked+.slider:before {
    transform: translateX(30px);
    background: #002968;
}

input:checked+.slider {
    box-shadow: 0 0 0 2px #002968, 0 0 2px #002968;
}

.switch.small {
    width: 42px;
    height: 19px;
}

.switch.small .slider {
    border: 2px solid transparent;
}

.switch.small .slider:before {
    transform: translateX(-23px);
}

.switch.small input:checked+.slider:before {
    transform: translateX(23px);
}
/* Responsive */

@media screen and (max-width:1024px) and (min-width:769px) {
    .hero-style {
        height: 310px;
    }

    .headerMenu {
        gap: 20px;
    }

    a {
        font-size: 14px;
        line-height: 20px;
    }

    body {
        font-size: 14px;
        line-height: 20px;
    }

    p,
    li {
        font-size: 14px;
        line-height: 20px;
    }

    .socialSticky {
        right: 10px;
    }

    .logoSection::after {
        width: 118%;
        height: 204%;
        bottom: 0px;
        left: -30px;
        right: 0px;
        top: -22px;
    }

    .h5,
    h5 {
        font-size: 16px;
    }

    .h2,
    h2 {
        font-size: 18px;
    }

    .h1,
    h1 {
        font-size: 20px;
    }

    .h3,
    h3 {
        font-size: 17px;
    }

    h4,
    .h4 {
        font-size: 18px;
    }

    .halfContent.right {
        margin-left: 0px;
    }

    .imgSec.whatisastroImg {
        width: 100%;
    }

    .serviceCard {
        padding: 20px;
    }

    .serviceCard {
        min-height: 272px;
    }

    h4,
    .h4 {
        font-size: 14px;
    }

    h6 {
        font-size: 14px;
    }

    .whyfeatCard img {
        width: 26px;
    }

    .whyfeatCard {
        padding: 10px 14px;
    }

    .astroContent .astroname {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .astroContent h6 {
        font-size: 13px;
    }

    .astroContent .reviews {
        font-size: 10px;
    }

    .whats-new-sec h4.listPrTitle {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 10px;
    }

    .newsContent h5 {
        font-size: 16px;
        font-size: 16px;
    }

    .button {
        font-size: 14px;
        padding: 6px 16px;
    }

    .newsLetterInput input {
        width: 61%;
    }

    .newsLetterInput {
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: space-between;
    }

    .footer-links-wrp .col {
        width: 34%;
        flex: none;
    }

    .footerDownloads li a img {
        width: 108%;
    }

    .footerContents ul li a {
        width: 30px;
        height: 30px;
    }

    .footerContents ul li a i {
        font-size: 14px;
        line-height: 30px;
    }

    .footer-logo-wrp {
        margin-bottom: 10px;
    }

    ul.footerSocial {
        margin-top: 10px;
    }

    .footerContents {
        margin-top: 0px;
    }
}

@media screen and (max-width:768px) and (min-width:500px) {
    .hero-style {
        height: 200px;
    }

    .whyfeatCard {
        width: 48%;
        padding: 7px 14px;
    }

    .whyfeatCard h6 {
        font-size: 13px;
    }

    .whyfeatCard img {
        width: 24px;
    }

    .serviceWrap .row .col-md-4 {
        width: 50%;
    }

    .serviceCard {
        padding: 20px;
        min-height: 332px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

    .serviceContent p {
        height: auto;
    }

    .serviceContent h4 {
        font-size: 16px;
    }

    .serviceContent span {
        height: 36px;
        visibility: visible;
        opacity: 1;
        top: 0px;
    }

    .serviceCard:hover .serviceContent p {
        visibility: visible;
        opacity: 1;
        transform: scale(1);
        height: auto;
    }

    /* .serviceCard:hover .serviceContent img {
        width: 25%;
    } */
    p {
        font-size: 14px;
        line-height: 20px;
    }

    .astroDP img {
        width: 90px !important;
        height: 90px !important;
    }

    .astroDP::after {
        background-size: 130px;
        background-repeat: no-repeat;
    }

    .astroContent .astroname {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .astroDP {
        width: 100%;
        height: 130px;
    }

    .astroContent {
        margin-top: 10px;
    }

    .astroContent h6 {
        font-size: 12px;
    }

    .astroContent .reviews {
        font-size: 10px;
        margin-top: 5px;
        margin-bottom: 0px;
    }

    .astogers {
        padding: 10px;
    }

    .whats-new-sec-img .addtoWishlist img {
        width: 20px;
    }

    .addtoWishlist {
        width: 34px;
        height: 34px;
        border-radius: 7px;
    }

    .listprOtherInfo {
        flex-wrap: wrap;
    }

    .listprPrice {
        font-size: 18px;
        font-weight: 600;
        margin-top: 9px;
    }

    .whats-new-sec h4.listPrTitle {
        font-size: 14px;
        line-height: 21px;
        margin-top: 7px;
        margin-bottom: 18px;
    }

    .button {
        font-size: 12px;
        padding: 3px 12px;
        gap: 4px;
    }

    .ratingShow {
        color: #666;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 3px;
        position: absolute;
        top: -38px;
        background: #fff;
        padding: 2px 6px;
        border-radius: 9px;
        font-size: 10px;
    }

    .whats-new-sec-img {
        border-radius: 17px;
        width: 92%;
    }

    .whats-new-content {
        padding: 20px;
        padding-top: 15px;
        position: relative;
        z-index: 2;
        padding-bottom: 15px;
        min-height: 179px;
        max-height: max-content;
    }

    .whats-new-sec h4.listPrTitle {
        text-align: left;
        margin-bottom: 10px;
    }

    .whats-new-sec .text-center {

        text-align: left !important;
    }

    .videoContent h5 {
        font-size: 16px;
    }

    .newsContent h5 {
        font-size: 14px;
    }

    .newsDate ul li p {
        font-size: 10px;
    }

    .newsDate ul li i {
        font-size: 11px;
    }

    .blogDate {
        padding: 2px 8px;
        top: -24px;
    }

    .newsContent h5 {
        margin-bottom: 2px;
    }

    .newsCard {
        padding: 6px;
    }

    .newsLetterInput input {
        width: 71%;
        font-size: 13px;
        padding: 6px 13px;
    }

    .newsLetterInput {
        padding: 9px 10px;
    }

    .newsLetterInput button {
        padding: 7px 28px;
        border: none;
        border-radius: 5px;
        background: linear-gradient(124deg, #f59100, #d29900);
        color: #fff;
        font-size: 12px;
    }

    .footerNewsletter .titleSection {
        margin-bottom: 10px;

    }

    .footerNewsletter .titleSection p {
        margin-top: 10px;
    }

    .footerNewsletter {
        padding-bottom: 20px;
    }

    .footerContents ul li a {
        width: 40px;
        height: 40px;
    }

    .footerContents ul li a i {
        font-size: 15px;
        line-height: 41px;
    }

    .footer-links-wrp .row .col {
        width: 48%;
        flex: unset;
    }

    .ftr-link-bx a {
        margin: 2px 0px 2px;
    }

    .imgSec.whatisastroImg {
        position: relative;
        width: 60%;
        margin: auto;
        margin-bottom: 30px;
    }

    .textWrapper h2 {
        font-size: 22px;
    }

    .titleSection h2 {
        font-size: 22px;
        font-weight: 600;
    }
}




@media screen and (max-width:768px) {
    .mainTitle p {
        padding: 0px;
    }

    .mainHeader {
        display: none;
        position: fixed;
        left: 0px;
        right: 0px;
        width: 100%;
        height: 100vh;
        background: #fff;
        padding: 30px;
        top: 55px;
    }

    .hamburger {
        position: relative;
        width: 1em;
        height: 1em;
        font-size: inherit;
        transition: all .3s ease;
        cursor: pointer
    }

    .hamburger.is-md {
        font-size: 1.5rem
    }

    .hamburger-line {
        position: absolute;
        right: 0;
        width: 100%;
        height: .125em;
        border-radius: .125em;
        background: currentColor;
        transition: inherit
    }

    .hamburger-line:first-child {
        top: .125em
    }

    .hamburger.is-active .hamburger-line:first-child,
    .w-nav-button.w--open .hamburger-line:first-child {
        top: 50%;
        transform: translateY(-50%) rotate(-135deg)
    }

    .hamburger-line:nth-child(2) {
        top: .438em
    }

    .hamburger.is-active .hamburger-line:nth-child(2),
    .w-nav-button.w--open .hamburger-line:nth-child(2) {
        right: 50%;
        width: 0
    }

    .hamburger-line:nth-child(3) {
        top: .75em;
        width: .625em
    }

    .hamburger.is-active .hamburger-line:nth-child(3),
    .w-nav-button.w--open .hamburger-line:nth-child(3) {
        top: 50%;
        width: 100%;
        transform: translateY(-50%) rotate(135deg)
    }

    .headerMenu {
        flex-direction: column;
        gap: 0px;
    }

    .headerMenu>li>a {
        padding: 6px 0px;
        display: block;
        border-bottom: 1px dashed #ddd;
    }

    .allHeaders {
        width: 100%;
    }

    .headerNav {
        display: block;
    }

    .mainHeaderSection {
        display: block;
    }

    .headerMenu>li>a::after {
        bottom: 0px;
    }

    .topHeader>p {
        display: none;
    }

    .headTalkBtns li a {
        font-size: 9px;
        padding: 0px 5px;
        gap: 4px;
    }

    .headTalkBtns li a img {
        width: 12px;
    }

    .topHeader {
        justify-content: flex-end;
        border: none;
    }

    .logoSection::after {
        width: 148%;
        height: 200%;
        bottom: 0px;
        left: -50px;
        right: 0px;
        top: -14px;
    }

    .headerMain {
        display: flex;
        padding: 12px;
        justify-content: space-between;
    }

    .headerSubNav {
        position: initial;
        flex-direction: column;
        padding: 10px;
    }

    .headerSubMenu>li a {
        line-height: 30px;
        font-size: 14px;
    }

    .hasSub.megaMenu .headerSubNav .headerSubMenu li h5 {
        font-weight: 600;
        font-size: 14px;
        background: linear-gradient(180deg, #e9e9e9, transparent);
        padding-bottom: 0px;
        padding: 5px 10px;
        border-radius: 6px;
    }

    .hasSub.megaMenu .headerSubNav .headerSubMenu {
        width: 100%;
        max-height: fit-content;
        overflow-y: unset;
    }

    .hasSub.megaMenu .headerSubNav {
        max-width: 100%;
        min-width: 100%;
        width: 100%;
        padding: 10px;
        height: 251px;
        overflow-y: auto;
        display: none;
    }

    .headerMenu>li.hasSub:hover .headerSubNav {
        display: none;
        justify-content: unset;
        visibility: unset;
        opacity: unset;
        top: unset;
        margin: unset;
        transition: unset;
        border: unset;
        overflow: auto;
    }

    .headerRightMenu {
        justify-content: center;
        margin-top: 10px;
    }

    .headerRightMenu li {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .headerCallMenu.cart {
        width: 100%;
        background: #ffffff;
        border-radius: 30px;
        height: fit-content;
        padding: 3px 20px;
        border: 1px solid #f39200;
        border-radius: 30px;
        padding: 6px 16px;
        color: #323334;
    }

    .headerCallMenu.cart img {
        width: 25px;
    }

    .defaultBtn {
        width: 100%;
    }

    .loginbtn {
        width: 100%;
    }

    .headerMain {
        width: 75%;
    }

    .halfContent.right {
        margin-left: 0px;
    }

    .halfContent.left {
        margin-right: 0px;
    }

    .textWrapper {
        text-align: center;
    }

    .imgSec {
        margin-bottom: 30px;
    }

    .pb-50 {
        padding-bottom: 25px;
    }

    .pt-50 {
        padding-top: 25px;
    }
}

@media screen and (max-width:499px) and (min-width:200px) {
    .serviceWrap .row .col-md-2 {
        width: 50%;
    }

    .topHeader {
        position: fixed;
        bottom: 0;
        left: 0px;
        right: 0px;
        width: 100%;
        justify-content: center;
    }

    .hero-style {
        height: 130px;
    }

    .logoSection {
        padding-right: 0;
        width: 25%;
    }

    .logoSection::after {
        display: none;
    }

    .headerMain {
        width: 50%;
        justify-content: flex-end;
    }

    .whyfeatCard {
        width: 100%;
        padding: 7px 14px;
        text-align: left;
    }

    .whyfeatCard h6 {
        font-size: 13px;
    }

    .whyfeatCard img {
        width: 24px;
    }

    .serviceWrap .row .col-md-4 {
        width: 100%;
    }

    .serviceCard {
        padding: 10px;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

    .serviceContent p {
        height: auto;
        font-size: 13px;
    }

    .serviceContent h4 {
        font-size: 16px;
    }

    .serviceContent span {
        height: 36px;
        visibility: visible;
        opacity: 1;
        top: 0px;
    }

    .serviceCard:hover .serviceContent p {
        visibility: visible;
        opacity: 1;
        transform: scale(1);
        height: auto;
    }

    /* .serviceCard:hover .serviceContent img {
        width: 25%;
    } */
    h5 {
        font-size: 14px;
    }

    p {
        font-size: 12px;
        line-height: 18px;
    }

    li {
        font-size: 12px;
        line-height: 18px;
    }

    body {
        font-size: 12px;
        line-height: 18px;
    }

    .titleSection {
        margin-bottom: 22px;
    }

    .astroDP img {
        width: 90px !important;
        height: 90px !important;
    }

    .astroDP::after {
        background-size: 130px;
        background-repeat: no-repeat;
    }

    .astroContent .astroname {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .astroDP {
        width: 100%;
        height: 130px;
    }

    .astroContent {
        margin-top: 10px;
    }

    .astroContent h6 {
        font-size: 12px;
    }

    .astroContent .reviews {
        font-size: 10px;
        margin-top: 5px;
        margin-bottom: 0px;
    }

    .astogers {
        padding: 10px;
    }

    .whats-new-sec-img .addtoWishlist img {
        width: 20px;
    }

    .addtoWishlist {
        width: 34px;
        height: 34px;
        border-radius: 7px;
    }

    .listprOtherInfo {
        flex-wrap: wrap;
    }

    .listprPrice {
        font-size: 18px;
        font-weight: 600;
        margin-top: 9px;
    }

    .whats-new-sec h4.listPrTitle {
        font-size: 12px;
        line-height: 21px;
        margin-top: 7px;
        margin-bottom: 18px;
    }

    .button {
        font-size: 10px;
        padding: 1px 10px;
        gap: 3px;
    }

    .ratingShow {
        color: #666;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 3px;
        position: absolute;
        top: -38px;
        background: #fff;
        padding: 2px 6px;
        border-radius: 9px;
        font-size: 10px;
    }

    .whats-new-sec-img {
        border-radius: 17px;
        width: 92%;
    }

    .whats-new-content {
        padding: 10px;
        padding-top: 4px;
        position: relative;
        z-index: 2;
        padding-bottom: 5px;
        min-height: 150px;
        max-height: max-content;
    }

    .whats-new-sec::after {
        border-radius: 16px;
    }

    .whats-new-sec h4.listPrTitle {
        text-align: left;
        margin-bottom: 10px;
        line-height: 15px;
    }

    .whats-new-sec .text-center {

        text-align: left !important;
    }

    .videoContent h5 {
        font-size: 16px;
    }

    .newsContent h5 {
        font-size: 14px;
    }

    .newsDate ul li p {
        font-size: 10px;
    }

    .newsDate ul li i {
        font-size: 11px;
    }

    .blogDate {
        padding: 2px 8px;
        top: -24px;
    }

    .newsContent h5 {
        margin-bottom: 2px;
    }

    .newsCard {
        padding: 6px;
    }

    .newsLetterInput input {
        width: 100%;
        font-size: 13px;
        padding: 6px 13px;
    }

    .newsLetterInput {
        padding: 9px 10px;
    }

    .newsLetterInput button {
        padding: 7px 28px;
        border: none;
        border-radius: 5px;
        background: linear-gradient(124deg, #f59100, #d29900);
        color: #fff;
        font-size: 12px;
        width: 100%;
        margin-top: 8px;
    }

    .footerNewsletter .titleSection {
        margin-bottom: 10px;

    }

    .footerNewsletter .titleSection p {
        margin-top: 10px;
    }

    .footerNewsletter {
        padding-bottom: 20px;
    }

    .footerContents ul li a {
        width: 40px;
        height: 40px;
    }

    .footerContents ul li a i {
        font-size: 15px;
        line-height: 41px;
    }

    .footer-links-wrp .row .col {
        width: 100%;
        flex: unset;
    }

    .ftr-link-bx a {
        margin: 2px 0px 2px;
    }

    .imgSec.whatisastroImg {
        position: relative;
        width: 60%;
        margin: auto;
        margin-bottom: 30px;
    }

    .textWrapper h2 {
        font-size: 20px;
    }

    .titleSection h2 {
        font-size: 22px;
        font-weight: 600;
    }

    .whatisastroImg .handImg {
        width: 50%;
        top: 0px;
    }
}