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

:root {
    --theme_primary: #6b6b6b;
    --theme_secondary: #252628;
    --theme-bg: #f9f6f0;
    --font-family-main: "Roboto", sans-serif;
    /* --font-family-philosopher: "Philosopher", serif; */
    --font_color: #0a0a0a;
    --font_color_light: #606060;
    --sub_heading: ;
    --btn-primary: ;
    --btn-secondary: ;
    --body-background: #1c0601;
    --white: #efefef;
    --black: #000;
    --border-color: #838383;
}

::selection {
    background-color: var(--theme_primary);
    color: #fff;
}

body {
    /* / background-color: var(--theme-o); / */
    text-transform: capitalize;
    font-family: var(--font-family-main);
    color: var(--font-color);
    letter-spacing: .5px;
}

a {
    text-decoration: none;
    color: var(--theme_primary);
}

a:hover {
    color: var(--theme_primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-philosopher);
}

.font-main {
    font-family: var(--font-family-main);
}

.font-philosopher {
    font-family: var(--font-family-philosopher);
}

.w-fitcontent {
    width: fit-content;
}

.theme-bg {
    background-color: var(--theme-bg);
}

.border-color-theme {
    border-color: var(--theme_primary);
}

.border-color-theme-secondary {
    border-color: var(--theme_secondary);
}

.bg-theme-primary {
    background-color: var(--theme_primary);
}

.bg-theme-secondary {
    background-color: var(--theme_secondary);
}

.text-theme-secondary {
    color: var(--theme_secondary);
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: var(--font_color);
}

.white {
    color: var(--white);
}

.whiteall * {
    color: var(--white);
}

.text-theme {
    color: var(--theme_primary);
}

.bg-theme {
    background-color: var(--theme_primary);
}

.bg-theme-secondary {
    background-color: var(--theme_secondary);
}

.transition5s {
    transition: all 0.5s ease;

    :hover {
        transition: all 0.5s ease;
    }
}

.subheading {
    font-size: 16px;
    color: var(--theme_primary);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.sec_mar {
    margin-top: 100px;
    margin-bottom: 100px;

    @media (max-width: 768px) {
        margin-top: 50px;
        margin-bottom: 50px;
    }
}

.sec_mar_top {
    margin-top: 100px;

    @media (max-width: 768px) {
        margin-top: 50px;
    }
}

.sec_mar_bottom {
    margin-bottom: 100px;

    @media (max-width: 768px) {
        margin-bottom: 50px;
    }
}

.sec_mar_left {
    margin-left: 100px;

    @media (max-width: 768px) {
        margin-left: 50px;
    }
}

.sec_mar_right {
    margin-right: 100px;

    @media (max-width: 768px) {
        margin-right: 50px;
    }
}

.sec_pad {
    padding-top: 100px;
    padding-bottom: 100px;

    @media (max-width: 768px) {
        padding-top: 50px;
        padding-bottom: 50px;

    }
}

.sec_pad_top {
    padding-top: 100px;

    @media (max-width: 768px) {
        padding-top: 50px;
    }
}

.sec_pad_bottom {
    padding-bottom: 100px;

    @media (max-width: 768px) {
        padding-bottom: 50px;
    }
}

.sec_pad_left {
    padding-left: 100px;

    @media (max-width: 768px) {
        padding-left: 50px;
    }
}

.sec_pad_right {
    padding-right: 100px;

    @media (max-width: 768px) {
        padding-right: 50px;
    }
}

.theme-btn {
    background-color: var(--theme_primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid var(--theme_primary);
    transition: all .3s ease;
    text-transform: capitalize;

    &:hover {
        background-color: transparent;
        color: var(--theme_primary);
        border: 1px solid var(--theme_primary);
    }
}

.theme-btn-o {
    background-color: transparent;
    color: var(--theme_secondary);
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid var(--theme_secondary);
    transition: all .3s ease;
    text-transform: capitalize;

    &:hover {
        background-color: var(--theme_secondary);
        color: #fff;
        border: 1px solid var(--theme_secondary);
    }
}

.theme-btn-secondary {
    background-color: var(--theme_secondary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid var(--theme_secondary);
    transition: all .3s ease;

    &:hover {
        background-color: transparent;
        color: var(--theme_secondary);
        border: 1px solid var(--theme_secondary);
    }
}

.btn-outline-theme {
    background-color: transparent;
    color: var(--theme_primary);
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid var(--theme_primary);
    transition: all .3s ease;

    &:hover {
        background-color: var(--theme_primary);
        color: var(--white);
        border: 1px solid var(--theme_primary);
    }
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border-radius: 4px;
    border: 1px solid var(--white);
    transition: all .3s ease;

    &:hover {
        background-color: var(--white);
        color: var(--black);
        border: 1px solid var(--white);
    }
}

.btn-bottom-line {
    background-color: transparent;
    color: var(--theme_primary);
    padding-bottom: 5px;
    border-bottom: 1px solid var(--theme_primary);
    transition: all .3s ease;

    &:hover {
        border-bottom-color: transparent;
    }
}

p,
li {
    letter-spacing: .5px;
    /* font-weight: 500; */
    color: var(--font_color);
    line-height: 28px;
}

.breadcrumbdiv {
    background-image: url('../images/749.jpg');
    padding: 100px 0;

    .breadcrumbdivmaib {
        text-align: center;
    }

    .breadcrumb {
        background-color: #6b6b6b38;
        width: fit-content;
        padding: 5px 10px;
        border-radius: 1000px;
        margin: auto;
    }
}

.fs-14 {
    font-size: 14px !important;
    line-height: normal;
}

.fs-50 {
    font-size: 50px;

    @media (max-width: 768px) {
        font-size: 30px;
    }
}

.titlediv {

    h5,
    p {
        color: var(--font_color_light);
    }

    @media (max-width: 768px) {
        text-align: center;
        margin-bottom: 20px !important;
    }
}

.top-90 {
    top: 90px;
}

.slider__btn {
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.max_991 {
    max-width: 991px;
    margin: auto;
}

.containercust {
    max-width: 1640px;
    padding: 0 15px;
    margin: auto;
}

.headertop {
    .hdrdiv {
        * {
            color: #fff;
        }
    }

    &:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--theme_primary);
        opacity: .8;
        z-index: 0;
        width: 40%;
        box-shadow: 9px 0px 5px #7b7b7b;
    }
}

/* home */
.cursor-pointer {
    cursor: pointer;
}

header {
    box-shadow: 0 5px 10px #ededed;

    .stickyblcok {
        display: none;
    }

    .navbar-nav .nav-link.active,
    .navbar-nav .show>.nav-link,
    .nav-link:hover {
        color: var(--theme_primary) !important;
        border-bottom: 2px solid;
    }

    .nav-link {
        border: 2px solid transparent;
        color: var(--font_color);
    }

    div#offcanvasnav.show a.nav-link {
        color: var(--font_color);
    }

    div#offcanvasnav.show {
        overflow-y: auto;

        .navbar-nav {
            padding: 0 20px;
        }

        .nav-item.dropdown:hover .dropdown-menu {
            position: absolute;
        }
    }

    /* Enable hover dropdown */
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }

    /* headerbottom */
    /* General Styles */
    .navbar-nav {
        display: flex;
        /* gap: 20px; */
    }
}

/* / sticky header / */

.page-header.is-sticky {
    position: fixed;
    box-shadow: 0 0px 20px #00000024;
    background-color: #Fff;
    width: 100%;
    top: 0;
    z-index: 99;
    animation: slideDown 0.35s ease-out;

    a.nav-link {
        color: var(--font-color);

        &:hover {
            color: var(--theme_primary);
        }
    }

    .stickyhide {
        display: none !important;
    }

    .stickyblcok {
        display: block;
    }


}

.w-fitcontent {
    width: fit-content;
}

.page-header.is-sticky button.navbar-toggler.btn.border-0 i {
    color: var(--theme_primary);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* top hero sectino */
.tophero--sec {
    .topherobannerdiv {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        /* 
        max-height: 80vh;
        min-height: 80vh; */

    }

    .heroimgcntnt {
        @media (min-width: 768px) {
            transform: translateX(110px);
        }

        max-width: 625px;
    }
}

.astrosignsection {
    .astrosigncard {
        background-color: #fff;
        transition: all .3s ease;

        &:hover {
            background-color: var(--theme_primary);
            transition: all .3s ease;

            * {
                color: #fff !important;
            }
        }
    }

    .astrosignicondiv {
        overflow: hidden;
        margin: auto;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
}

/* ourastrosection */
.ourastrosection {
    .ourastrocard:hover .astrol_team_hover {
        background-color: #0000009e;
        transition: all .5s ease;
        opacity: 1;
    }

    .astrol_team_hover {
        opacity: 0;
        transition: all .5s ease;
    }
}

/* whyus */

.bg-opacitydiv {
    background-color: #0000009e;
}

.whychooseus {}

.marginminusdiv {
    margin-bottom: -345px;
}

.marginplus {
    margin-top: 345px;
}

.swiper-pagination-bullet-active {
    background: var(--theme_primary) !important;
}

.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
}

/* Specializedsection */
.Specializedsection {
    .Specializedcard {
        /* box-shadow: 0 0 25px #00000012; */

        .Specializedicondiv::after {
            border: 1.5px dashed transparent;
            content: '';
            position: absolute;
            left: -10px;
            top: -10px;
            bottom: -10px;
            right: -10px;
            border-radius: 100%;
            animation: infinite rotation 10s linear;
            transition: all .5s ease;
        }

        &:hover {
            transition: all .5s ease;

            .Specializedicondiv::after {
                border: 1.5px dashed var(--theme_primary);
                content: '';
                position: absolute;
                left: -10px;
                top: -10px;
                bottom: -10px;
                right: -10px;
                border-radius: 100%;
                animation: infinite rotation 10s linear;
                transition: all .5s ease;
            }
        }

        .Specializedicondiv {
            .stepcount {
                top: 10px;
                right: 10px;
                width: 40px;
                height: 40px;
            }

            img {
                /* width: 80px;
                height: 80px; */
            }
        }

        .Specializedtitlediv {
            h3 {
                border-bottom: 2px solid var(--theme_primary);
                padding-bottom: 5px;
                width: fit-content;
                margin: auto;
                margin-bottom: 20px;
            }
        }
    }
}

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

    100% {
        transform: rotate(360deg);
    }
}

.popularproductsec {
    .popularmaindiv {
        .swiper-pagination {}
    }
}

.productcard {
    .productimg {
        width: 170px;
        height: 200px;
        object-fit: contain;
        filter: grayscale(1);
        transition: all .5s ease;
    }

    .productimg:hover {
        filter: grayscale(0);
        transition: all .5s ease;
    }
}

.testimonial-area {
    .nav {
        a {
            border: 4px solid transparent;
            display: block;
            border-radius: 10px;
            overflow: hidden;
            transition: all .3s ease;
        }

        a.active,
        a:hover {
            border: 4px solid var(--theme_primary);
            transition: all .3s ease;
        }

        .testimonialimg {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .testmonialcarddiv {
        ::before {
            content: '';
            position: absolute;
            top: 0;
            background-image: url("../images/icons/service-circle.webp");
            right: -100px;
            background-repeat: no-repeat;
            width: 300px;
            height: 300px;
            transition: all .3s ease;
            animation: infinite rotation 10s linear;
            background-size: contain;
        }

    }
}

/* blogs */
.blogbody {

    .bloglistimg {
        overflow: hidden;
        border-radius: 25px;
    }

    .bloglistimg img {
        width: 100%;
        object-fit: cover;
    }

    hr.blogdivider {
        border-color: #bcbcbc;
    }
}

.appointmentbody {
    .appointmentform {

        input,
        input:focus,
        select {
            border-radius: 45px;
            background: #FFF;
            height: 46px;
            width: 100%;
            border: 1px solid #dddddd87;
            padding: 0 25px;
            font-size: 18px;
            font-weight: 400;
            letter-spacing: 0.5px;
            outline: 0;
            text-transform: capitalize;
        }

        select,
        select option {
            color: #666666;
        }

        textarea {
            border-radius: 15px;
            background: #FFF;
            height: 150px;
            width: 100%;
            border: 1px solid #dddddd87;
            font-size: 18px;
            font-weight: 400;
            padding: 15px;
            letter-spacing: .5px;
            text-transform: capitalize;
            display: flex;
            align-items: center;
            color: #666666;
            justify-content: center;
        }
    }
}

#faqAccordion {
    .accordion-button:not(.collapsed) {
        color: var(--theme_primary);
        background-color: #cfe2ff00;
        border-bottom: 1px solid #ddd;
        font-size: 18px;

    }

    .accordion-button:focus {
        box-shadow: none;
    }

    .accordion-body {
        color: #5c5c5c;
        font-size: 14px;
        letter-spacing: .5px;
    }

    .accordion-item {
        border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color) !important;
        border-radius: 7px;
        overflow: hidden;
    }

    button.accordion-button.collapsed {
        font-size: 18px;
        color: #525252;
    }
}

.shadowcustom {
    box-shadow: 0px 0px 40px 0px rgba(12, 12, 12, 0.1);
}

.imgbannerdiv {
    img {
        max-width: 950px;
        margin: auto;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.footer_color.bg-theme-secondary {
    * {
        color: #fff;
    }

    img.footrlogo {
        filter: brightness(0) invert(1);
    }
}

/* blog */


.blogimg {
    img {
        max-height: 260px;
        min-height: 260px;
        height: 100%;
        overflow: hidden;
        /* border-radius: 13px; */
        margin-bottom: 20px;
        object-fit: cover;
        width: 100%;
    }
}

.blogcontent h3 {
    font-size: 20px;
    letter-spacing: .5px;
    line-height: 32px;
    font-weight: 600;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    padding: 0 15px;
}

a {
    color: inherit;
    text-decoration: none;
}

.blog-conte p {
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    margin-top: 15px;
    padding: 0 15px;
}

.blogcontent {
    /* background-color: #46866c2e; */
    border-radius: 10px;
    padding-bottom: 20px;
}


/* single blog */
.blogbodydiv:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1; 
  background-repeat: no-repeat;
  background-position: -1% 74%, 103% 100%, 104% 0;
  background-size: 130px, 200px, 200px;
}

.bloglistimg {
  height: 500px;
  overflow: hidden;
  border-radius: 25px;
}

.bloglistimg img {
  width: 100%;
  object-fit: contain;
  height: 100%;
  object-position: left;
}

.bloglisttitlepara h4 {
  color: #2B2B2B;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.bloglisttitlepara p {
  font-size: 20px;
  font-weight: 300;
  line-height: 34px;
  letter-spacing: .5px;
  text-transform: capitalize;
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

span.blogdate {
  font-size: 18px;
  font-weight: 800;
  width: 55px;
  display: block;
  text-align: center;
  background-color: var(--theme_secondary);
  color: #fff;
  padding: 4px;
  position: relative;
  margin-top: -48px;
  margin-left: 15px;
  /* border-radius: 5px; */
  margin-bottom: 10px;
}

.max_991{
    max-width: 991px;
    margin: auto
}


.conticon {
    width: 80px;
    height: 80px;
    background: var(--theme_primary);
}

.con--form {
    border-radius: 30px;
    margin-top: 5rem;
    border: 1px solid;
}

.title-one h1.fw-bold {
    font-size: 48px;
    /* color: var(--theme-clr); */
    @media (max-width: 768px) {
        font-size: 30px;    
    }
}

.input-group-meta input {
    border: 1px solid var(--border-color);
    height: 47px;
    border-radius: 5px;
    padding-left: 15px;

    &:focus {
        outline: none;
        border: none;
    }
}

.input-group-meta textarea {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 15px;

    &:focus {
        outline: none;
        border: none;
    }
}
.grayscale1{
    filter: grayscale(1);
}