
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Upright:wght@300;400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


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

:root {
  --primary-color: #9e5723;
  --secondry-color: #d7a340;
  --third-color: #4D3C36;
  --four-color: #D2B48C;
  --five-color: #E5D3B3;
  --white-color: #fff;
  --black-color: #000;
  --black-color2: #141615;
  --black-color3: #202020;
  --black-color4: #212529;
  --lightgray-color: #e7e6e6;
  --gray-color: #F5F5F5;
  --gray-color2: #ECF0F1;
  --black-color4: #F8F8FF;
  --facebook-color: #3b5998;
  --instagram-color: #962fbf;
  --youtube-color: #c4302b;
  --background-color: #f9f6f0;
}

h1, h2, h3, h4, h5, h6{
    font-weight: 900;
     font-family: "Cormorant Upright", serif;

}

img {
  max-width: 100% !important;
}

body {
  font-family: "Poppins", sans-serif;

}

body,
html {
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none !important;
}

a:focus {
  outline: none;
  text-decoration: none;
}
/*  */

.hero_slider2{
    display: none;
}

.hero_slider .carousel-control-prev > span{
    background-color: var(--secondry-color);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 100px;
    font-size: 14px !important;
}


.hero_slider .carousel-control-next > span{
    background-color: var(--secondry-color);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 100px;
    font-size: 14px !important;
}


.hero_slider2 .carousel-control-prev > span{
    background-color: var(--secondry-color);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 100px;
    font-size: 14px !important;
}


.hero_slider2 .carousel-control-next > span{
    background-color: var(--secondry-color);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 100px;
    font-size: 14px !important;
}

/* =========================
ABOUT US SECTION
========================= */

.about_us_section{
    padding: 60px 0px;
    position: relative;
    overflow: hidden;
   background: linear-gradient(rgba(255, 255, 255, 0.806), rgb(255 255 255 / 88%)), url(../images/abbg03.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* glowing background effect */

.about_us_section::before{
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 100%;
    background: rgba(215, 163, 64, 0.08);
    top: -140px;
    left: -120px;
    filter: blur(60px);
}

.about_us_section::after{
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 100%;
    background: rgba(215, 163, 64, 0.06);
    bottom: -100px;
    right: -80px;
    filter: blur(50px);
}


/* =========================
ABOUT IMAGE
========================= */

.about_us_main_div_box_circle{
    position: relative;
    z-index: 2;
}

.about_center_img_box_circle > img{
    width: 100%;
    filter: drop-shadow(0px 20px 45px rgba(0,0,0,0.12));
}

.about_moon_circle_image_box,
.about_moon_circle_image_box2{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.about_moon_circle_image_box img{
    animation: rotateImage 90s linear infinite;
}

.about_moon_circle_image_box2 img{
    animation: rotateImage2 90s linear infinite;
}

@keyframes rotateImage{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

@keyframes rotateImage2{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(-360deg);
    }
}


/* =========================
TEXT AREA
========================= */

.about_text_tarot_div{
    padding-left: 35px;
    position: relative;
    z-index: 2;
}

.about_text_tarot_div > h1{
    font-size: 40px;
    line-height: 58px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 28px;
    position: relative;
    text-transform: capitalize;
}

.about_text_tarot_div > h1::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 100px;
    height: 4px;
    border-radius: 100px;
    background: #d7a340;
}

.about_text_tarot_div > p{
    font-size: 14px;
    line-height: 31px;
    color: #4b5563;
    font-weight: 500;
    margin-bottom: 10px !important;
}


/* =========================
BUTTON DESIGN
========================= */

.about_us_read_btn{
    margin-top: 20px;
}

.about_us_read_btn > a{
    position: relative;
    overflow: hidden;
    background: #d7a340;
    color: #fff;
    padding: 14px 20px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.4s ease;
    box-shadow: 0px 12px 30px rgba(215, 163, 64, 0.28);
}

.about_us_read_btn > a::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.18);
    transition: 0.5s ease;
}

.about_us_read_btn > a:hover::before{
    left: 100%;
}

.about_us_read_btn > a:hover{
    transform: translateY(-4px);
    color: #fff;
    background: #c6922f;
}

.about_us_read_btn > a > span{
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 100px;
    background-color: rgba(255,255,255,0.18);
    font-size: 12px;
}


/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .about_text_tarot_div{
        padding-left: 0px;
        margin-top: 40px;
    }

    .about_text_tarot_div > h1{
        font-size: 35px;
        line-height: 46px;
    }

}

@media(max-width:576px){

    .about_us_section{
        padding: 65px 0px;
    }

    .about_text_tarot_div > h1{
        font-size: 28px;
        line-height: 40px;
    }

    .about_text_tarot_div > p{
        font-size: 14px;
        line-height: 28px;
    }

    .about_us_read_btn > a{
        padding: 12px 22px;
        font-size: 14px;
    }

}
/* =========================
   PREMIUM SERVICES CSS
========================= */

.services_section{
    padding: 60px 0px 40px 0px;
    background:
    linear-gradient(rgba(255,255,255,.94),rgba(255,255,255,.94)),
    url(../images/service-bg.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* luxury blur circles */

.services_section::before{
    content: "";
    position: absolute;
    top: -180px;
    left: -180px;
    width: 420px;
    height: 420px;
    background: radial-gradient(rgba(212,164,74,.18),transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
}

.services_section::after{
    content: "";
    position: absolute;
    bottom: -180px;
    right: -180px;
    width: 420px;
    height: 420px;
    background: radial-gradient(rgba(212,164,74,.18),transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
}

/* =========================
   SECTION TITLE
========================= */

.services_title{
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.services_title > span{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 24px;
    background: rgba(184,134,11,.08);
    border: 1px solid rgba(184,134,11,.18);
    border-radius: 100px;
    color: #b8860b;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.services_title > span > img{
    width: 18px;
}

.services_title > h2{
    font-size: 46px;
    font-weight: 900;
    color: var(--black-color3);
    margin-top: 15px;
}

.services_title > h2 > span{
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondry-color);
   
}

/* =========================
   CARD DESIGN
========================= */

.services_box_main_div{
    position: relative;
    background: rgba(255,255,255,.78);
    backdrop-filter: blur(18px);
    border-radius: 28px;
    overflow: hidden;
    transition: .5s ease;
    border: 1px solid rgba(255,255,255,.55);
      margin-bottom: 30px;
     box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
   
}

/* gradient border */

.services_box_main_div::before{
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 28px;
    background:
    linear-gradient(
    180deg,
    rgba(212,164,74,.65),
    rgba(255,255,255,.15),
    rgba(212,164,74,.20)
    );

    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    pointer-events: none;
}

/* hover */

.services_box_main_div:hover{
    /* transform: translateY(-14px); */
    box-shadow:
    0px 30px 60px rgba(0,0,0,.12),
    0px 10px 35px rgba(212,164,74,.12);
}

/* image */

.service_icon_box{
    position: relative;
    overflow: hidden;
}

.service_icon_box::after{
    content: "";
    position: absolute;
    inset: 0;
    background:
    linear-gradient(
    to top,
    rgba(0,0,0,.35),
    transparent 55%
    );
}

.service_icon_box > img{
    width: 100%;
    height: 270px;
    object-fit: cover;
    transition: .7s ease;
}

.services_box_main_div:hover .service_icon_box > img{
    transform: scale(1.1);
}

/* floating icon glow */

.service_icon_box::before{
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    top: -40px;
    right: -40px;
    backdrop-filter: blur(15px);
    z-index: 1;
}

/* content */

.service_box_content{
    padding: 15px 20px;
    position: relative;
    z-index: 2;
}

.service_box_content > h3{
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 15px !important;
    color: var(--primary-color);
}

.service_box_content > p{
    font-size: 14px;
    line-height: 26px;
    color: var(--black-color4);
    margin-bottom: 15px !important;
     font-weight: 500;
    /* only 2 line */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* button */

.service_btn_div > a{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    color: #b8860b;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    transition: .3s ease;
}

.service_btn_div > a::after{
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background:
    linear-gradient(to right,#b8860b,#f5d67b);
    transition: .4s ease;
}

.service_btn_div > a:hover{
    color: #000;
    letter-spacing: .5px;
}

.service_btn_div > a:hover::after{
    width: 100%;
}

.service_btn_div > a > span{
    transition: .3s ease;
}

.service_btn_div > a:hover span{
    transform: translateX(6px);
}




/* =========================
   PREMIUM SERVICES CSS END
========================= */
/* blogs css start */
.blogs_section{
    padding: 50px 0px 40px 0px;
}

.blog_title_div{
    text-align: center;
    margin-bottom: 35px;

}

.blog_title_div > h3{
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
}


.blog_title_div > p{
    color: var(--black-color);
    letter-spacing: .2px;
    margin-bottom: 0px !important;
    font-size: 15px;
    max-width: 700px;
    margin: auto;

}

.blogs_main_div{
    margin-bottom: 20px;
    border: 1px solid var(--gray-color);
    border-radius: 4px;
}

.blogs_image_box_div{
    position: relative;
}

.blogs_image_box_div > img{
    border-radius: 4px 4px 0px 0px;
}

.blogs_content_div{
    padding: 10px 5px 4px 10px;
}

.blogs_time_date_div{
    position:absolute;
    bottom: -10px;
    right:12px;
}

.blogs_time_date_div > p{
    background-color: var(--secondry-color);
    color: var(--white-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
}

.blogs_commentdiv > a{
    margin: 0px 5px 0px 0px;
    color: var(--secondry-color);
    font-size: 13px;
    font-weight: 600;
}

.blogs_content_div > h4 > a{
    text-transform: capitalize;
    color: var(--black-color2);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px !important;
}

.blogs_content_div > p{
    color: var(--black-color);
    letter-spacing: .2px;
    margin-bottom: 4px !important;
    font-size: 15px;
}


/* blog css end */

/* testimonilas css start */
.testimonials_section{
  padding: 40px 0px 80px 0px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--color-gray);
}

/* ================= TAGLINE BOX ================= */

.main_div_heading_testimonilas{
    margin: auto;
}

.main_div_heading_testimonilas > h4{
    color: var(--black-color2);
    margin-bottom: 30px;
    font-weight: 900;
    font-size: 35px;
}

.testimonials_swiper_slider  .swiper-slide{
  background-color: var(--gray-color);
  border-radius: 10px;
  padding: 30px 24px;
  position: relative;
   border: 1.3px solid var(--color-gray) !important;
}

.testimonials_swiper_slider  .swiper-slide-active{
    background-image:linear-gradient(rgba(255, 255, 255, 0.418), rgba(255, 255, 255, 0.683)),  url('../images/footerbg01.png');
   background-position: center;
   background-repeat: no-repeat;
    background-size: cover;
}

.testimonials_contnet_main_div > h4{
  color: var(--primary-color);
  font-weight: 900;
  font-size: 25px;
  margin-bottom: 10px;
}

.rataing_div {
  margin-bottom: 10px;
}

.rataing_div > i{
  color: var(--rating-color);
  font-size: 15px;
  margin: 0px 2px 0px 0px;
}

.testimonials_contnet_main_div > p{
      color: var(--color-dark);
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 0px !important;
}

.quote_div{
  position: absolute;
  top: 20px;
  right: 20px;
}

.quote_div > i{
  font-size: 30px;
  color: var(--gray-color);
}


.pagination_div_main_div{
  position: relative;
  top: 110%;
  left: 0px;
}


.pagination_div_main_div > .swiper-pagination {
display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.pagination_div_main_div > .swiper-pagination > .swiper-pagination-bullet{
  background: none !important;
   width: 100%;
  height: 150px;
  opacity: 1;
  margin: 0 !important;
 
}

.pagination_div_main_div > .swiper-pagination > .swiper-pagination-bullet > img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  transition: 0.3s;
  object-position: top;
  filter: grayscale(100%);
  border: 5px solid var(--color-white);
}

.swiper-pagination-bullet-active > img{
  filter: grayscale(0%) !important;
  border: 2px solid var(--theme-color) !important;
  padding: 5px;
}


/* testimonilas css en */


/* footer css */

.footer {
    position: relative;
   background-image:linear-gradient(rgba(255, 255, 255, 0.418), rgba(255, 255, 255, 0.683)),  url('../images/footerbg01.png');
   background-position: center;
   background-repeat: no-repeat;
    background-size: cover;
}


@keyframes rotateImage2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}


.footer_overlay{
   padding-top: 50px;
   padding-bottom: 20px;
}

.footer_about_div{
    margin-bottom: 20px;
}

.footer_logo_div{
    margin-bottom: 20px;
      height: 80px;
   object-fit: contain;
}

.footer_logo_div img{
   height: 80px;
   object-fit: contain;
}

.footer_about_div p{
    line-height: 27px;
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color4);

}


.footer_about_div p a{
    color: var(--white-color);
}

.footer_headti{
    margin-bottom: 20px;
    position: relative;
}

.footer_headti h5{
    position: relative;
    font-weight: 900;
    text-transform: capitalize;
    font-size: 25px;
    padding-bottom: 10px;
    padding-top: 10px;
    color: var(--primary-color);
}


.footer_headti ul{
    list-style: none;
    padding: 0px 12px;
}

.footer_headti li{

    font-size: 15px;
    border-bottom: 1px dashed var(--gray-color);
    padding: 13px 0px;


}

.footer_headti li a{
    color: var(--black-color4);
    transition: .4s ease-in-out;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 14px;
     white-space: normal;
    word-break: break-word;
}


.footer_headti li a:hover{
    color: var(--secondry-color);
    transition: .4s ease-in-out;
    margin-left: 4px;
}

.footer_headti .d-flex{
    margin-bottom: 25px;
}

.footer_headti .flex-shrink-0 .bx{
    font-size: 20px;
    color: var(--white-color);
    background-color: var(--secondry-color);
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 10px;

}

.footer_headti .footer_num_div p{
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
    color: var(--black-color4);
    margin-bottom: 0px !important;
     white-space: normal;
    word-break: break-word;
}

.footer_headti .footer_num_div a{
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 27px;
    color: var(--black-color4);
    white-space: normal;
    word-break: break-word;
}


.footer_icon_div a{
    width: 35px;
    height: 35px;
    line-height: 35px;
    background-color: var(--secondry-color);
    color: var(--white-color);
    font-size: 14px;
    text-align: center;
    margin-top: -10px;
    border-radius: 10px;

}

.footer_icon_div .bxl-instagram{
    width: 35px;
    height: 35px;
    line-height: 35px;
    background-color: var(--secondry-color);
    color: var(--white-color);
    font-size: 14px;
    border-radius: 10px;
}

.footer_icon_div b{
  font-weight: 700;
  margin-right: 10px;
  font-size: 17px;
  color: var(--primary-color);
  display: block;
  margin-bottom: 20px;
}

/* footer css end */

 /* ======================copyright section start============*/


     .copyright_section p{
        text-align: center;
        padding: 15px 0px;
        text-transform: capitalize;
        font-size: 14px;
        font-weight: 600;
        color: var(--black-color4);
        margin-bottom: 0px !important;
     }

     .copyright_section p a{
        color: var(--primary-color);
        font-weight: 800;
     }
 /* ======================copyright section end============ */

