@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");

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Alice&family=Fanwood+Text:ital@0;1&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

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

html,
body {
  overflow-x: hidden;
  font-family: var(--primary-font);
}

:root {
  --brand-color: #ec5598;
  --white-color: rgba(249, 251, 255, 1);
  --black-color: rgba(46, 46, 46, 1);
  --brand2-color: rgba(30, 93, 188, 1);
  --grey-color: rgba(43, 68, 72, 1);
  --secondry-color: #eed1d2;
  --primary-font: "Inter", sans-serif;
  --secondary-font: "Inter", sans-serif;
  --third-font: "Inter", sans-serif;
  --contact-font: "Inter", sans-serif;
  --title-font: "Inter", sans-serif;
}

.logoheader {
  /* width: 100%; */
  width: 135px;
}

.nav-link {
  font-family: var(--primary-font);
  font-weight: 600 !important;
  font-size: 18px !important;
  line-height: 24px !important;
  color: var(--white-color) !important;
}

.nav-link:hover {
  color: var(--brand-color) !important;
}

.nav-link {
  position: relative;
  display: inline-block;
  transition: color 0.3s ease-in-out;
  padding: 0 !important;
}

.navbar-expand-lg .navbar-nav {
  gap: 40px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--brand-color);
  transition: width 0.4s ease-in-out;
}

.nav-link:hover::after {
  width: 100%;
}

.navbar-expand-lg .offcanvas .offcanvas-body {
  align-items: center;
}

.navbar-btn a {
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  color: var(--white-color);
  padding: 10px 17px 8px 17px;
  text-decoration: none;
  transition: 0.4s ease-in-out;
}

.navbar-btn a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: var(--white-color);
  text-decoration: none;
  border: 2px solid var(--brand-color);
  padding: 10px 20px;
  z-index: 1;
}

.navbar-btn a::before,
.navbar-btn a::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--brand-color);
  z-index: -1;
  transition: transform 0.4s ease;
}

.navbar-btn a::before {
  left: 0;
  transform: translateX(-100%);
}

.navbar-btn a::after {
  right: 0;
  transform: translateX(100%);
}

.navbar-btn a:hover::before,
.navbar-btn a:hover::after {
  transform: translateX(0);
}

.main-header.sticky {
  position: fixed;
  padding: 10px 0;
  z-index: 1000;
  width: 100%;
  top: 3%;
}

.main-header.sticky .navbar {
  background-color: #000000;
  /* background-color: var(--brand-color); */
}

.main-header.sticky {
  position: fixed;
  padding: 10px 0;
  z-index: 1000;
  width: 100%;
  top: -2%;
}

.main-header {
  position: relative;
  z-index: 10;
}

/* Banner-start */
.banner_wrapper .banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner_wrapper .banner_img {
  position: relative;
}

.banner_wrapper .banner_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #3f246775;
  z-index: 1;
}

.banner_wrapper .banner_img .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 9;
}

.banner_wrapper .banner_img .container .inner_conntent {
  max-width: 60%;
}

.inner_conntent h1 {
  font-family: var(--primary-font);
  color: var(--white-color);
  font-size: 48px;
  letter-spacing: 2px;
  line-height: 58px;
  font-weight: 900;
}

.inner_conntent h1 span {
  color: var(--secondry-color);
}

.inner_conntent p,
.blogs-details p {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 20px;
  color: var(--white-color);
  padding: 20px 0;
}

.blogs-details p {
  padding: unset !important;
}

/* ofcanvas */
.sidebaropen {
  color: var(--white-color);
  font-size: 31px;
}

.offcanvas-header {
  background-color: #000 !important;
}

.offcanvas-header .btn-close {
  font-size: 34px !important;
  color: #fff !important;
  position: relative;
  z-index: 10;
  height: unset !important;
}

.navbar-toggler:focus {
  box-shadow: unset !important;
  border: unset !important;
}

.navbar-toggler {
  border: unset !important;
}

.offcanvas-body .navbar-nav {
  gap: 0;
}

.offcanvas-body .navbar-nav .nav-item {
  width: 100%;
  padding: 22px 20px;
}

.offcanvas-body .navbar-btn.navbtn {
  margin-top: 4px;
}

/* ofcanvas-end */

/* Bottom-Banner-start */
.bottom_banner .inner_banner {
  border-radius: 5px;
}

.bottom_banner .inner_banner::after {
  background: #00000085;
  content: "";
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  transition: all 0.5s;
  border-radius: 5px;
}

.bottom_banner .inner_cont {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #fff;
  z-index: 99;
  padding-left: 30px;
}

.inner_banner:hover::after {
  background: #ec559894;
}
.aboutbttn a {
  color: #000 !important;
}
.aboutbttn a:hover {
  border: 2px solid #ec5598 !important;
}

.bottom_banner .inner_banner img {
  height: 220px;
  border-radius: 5px;
}

.bottom_banner .inner_cont p {
  max-width: 450px;
}

.bottom_banner .col-lg-6:last-child .inner_cont p {
  max-width: 315px;
}

.bottom_banner {
  margin-top: -123px;
  position: relative;
  z-index: 9;
}

/* Bottom-Banner-end */

/* Feature-team-start */
.feature_wrapper {
  padding: 40px 0;
}

.feature_wrapper .icon_bx img {
  width: 50px;
  height: 50px;
}

.feature_wrapper .icon_bx h3 {
  font-size: 20px;
  line-height: 25px;
  color: #000000;
  font-weight: 500;
  padding-top: 12px;
}

.feature_wrapper .icon_bx p {
  font-size: 16px;
  line-height: 25px;
  color: #666666;
  font-weight: 400;
}

.feature_wrapper .col-lg-4:first-child .icon_bx {
  border-right: 1px solid red;
}

.feature_wrapper .col-lg-4:nth-child(2) .icon_bx {
  border-right: 1px solid red;
}

.feature_wrapper .col-lg-4:last-child .icon_bx {
  border: unset;
}

/* Feature-team-end */

/* about_us_wrapper-END */
.about_us_wrapper .about_content h6 {
  font-size: 16px;
  letter-spacing: 3px;
  line-height: 45px;
  text-transform: uppercase;
  color: var(--brand-color);
  font-weight: 500;
}

.about_us_wrapper .about_content h3 {
  font-size: 32px;
  letter-spacing: 3px;
  line-height: 45px;
  color: #000000;
  font-weight: 900;
  font-family: var(--secondary-font);
}

.about_us_wrapper .about_content p {
  font-size: 16px;
  line-height: 25px;
  color: #666666;
  font-weight: 400;
}

.about_us_wrapper .img_bx img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about_us_wrapper .navbar-btn a:hover {
  border: 1px solid #000;
  color: #000;
}

.about_us_wrapper {
  padding: 40px 0;
}

/* about_us_wrapper-END */

/* Service-start */

.service_wrapper .service_inner_card {
  margin: 30px 0;
}

.service_wrapper .service_inner_card .featured_image img {
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid var(--secondary-color);
  height: 300px;
}

.service_wrapper .service_inner_card .featured_image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #0000005c;
  width: 100%;
  height: 100%;
}

.service_wrapper .service_inner_card .top_content {
  position: relative;
  /* display: flex;
    align-items: center;
    gap: 20px; */
}

.service_wrapper .service_inner_card {
  background: #fff;
}

.service_wrapper .service_inner_card .price {
  position: absolute;
  top: 0%;
  width: 100%;
  background-color: var(--brand-color);
  max-width: max-content;
  padding: 5px 10px 2px 10px;
  color: var(--white-color);
}
.service_wrapper .service_inner_card .price p {
  margin: 0 !important;
}

.service_wrapper .service_inner_card .titles h4 {
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 45px;
  color: var(--black-color);
  font-weight: 900;
  font-family: var(--secondary-font);
  padding-left: 10px;
  text-transform: capitalize;
}

.service_wrapper .hoverable_image .read_btn h4 {
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--white-color);
  font-weight: 900;
  font-family: var(--secondary-font);
}

.service_wrapper .hoverable_image .read_btn a {
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--white-color);
  font-weight: 400;
  font-family: var(--secondary-font);
  text-align: center;
}

.service_wrapper .service_inner_card .bottom-content {
  padding-top: 20px;
}

.service_wrapper .service_inner_card .bottom-content p {
  font-size: 15px;
}

.service_wrapper .service_inner_card {
  transition: all 0.5s;
  position: relative;
}

.service_wrapper .service_inner_card .hoverable_image {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  transform: translateX(100%);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.service_wrapper .service_inner_card .hoverable_image::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #ec5598b3;
}

.service_wrapper .service_inner_card:hover .hoverable_image {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
}

.service_wrapper .service_inner_card .hoverable_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service_wrapper .service_inner_card .hoverable_image .read_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 94;
}

.service_crousel .owl-nav [class*="owl-"]:hover {
  background: transparent !important;
  color: #000 !important;
  text-decoration: none;
}

.service_crousel .owl-nav [class*="owl-"] {
  width: 40px !important;
  height: 40px !important;
  border: 1px solid #000 !important;
  border-radius: 50% !important;
}

.service_crousel .owl-nav {
  margin-top: 0 !important;
  position: absolute;
  bottom: -35px;
  left: 0;
}

.service_wrapper .top_heading h6,
.blog_sec .top_heading h6 {
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ec5598;
  font-weight: 500;
  font-family: var(--primary-font);
}

.service_wrapper .top_heading h4,
.blog_sec .top_heading h4 {
  font-size: 32px;
  letter-spacing: 3px;
  color: #000000;
  font-weight: 900;
  font-family: var(--secondary-font);
}

.blog_sec .top_heading h4,
.blog_sec .top_heading h6 {
  text-align: center;
}

.blog_sec .top_heading h4 {
  padding-bottom: 20px;
}

.service_wrapper {
  background-color: #eed1d2;
}

/* Service-end */

/* Our-Pholosophy-start */
.our_pholosophy .about_content h6 {
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-color);
  font-weight: 500;
}

.our_pholosophy .about_content h3,
.titleblog {
  font-size: 32px;
  letter-spacing: 3px;
  line-height: 45px;
  color: #000000;
  font-weight: 900;
  font-family: var(--secondary-font);
}
.titleblog {
  padding-top: 30px !important;
}

.our_pholosophy .feature_point .list {
  display: flex;
  align-items: start;
  gap: 10px;
}

.our_pholosophy .feature_point .feature_cont p {
  margin: 0;
}

.our_pholosophy .pholosophy_image img {
  width: 100%;
  border-radius: 5px;
}

.our_pholosophy .pholosophy_image {
  position: relative;
}

.our_pholosophy .pholosophy_image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ec5598a6;
  border-radius: 5px;
}

/* Our-Pholosophy-end */

/* Blog-section-start */

.blog_wrapper .blog_card .blog_feature img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.blog_wrapper .blog_card {
  position: relative;
}

.blog_wrapper .blog_content {
  position: absolute;
  bottom: 0px;
  background: #fff;
  width: 88%;
  padding: 20px 10px;
}

.blog_wrapper .blog_content h5 {
  font-size: 18px;
  letter-spacing: 2px;
  color: #666666;
  font-weight: 500;
  font-family: var(--secondary-font);
}

.blog_wrapper .blog_content a {
  font-size: 16px;
  letter-spacing: 2px;
  color: #666666;
  font-weight: 700;
  font-family: var(--secondary-font);
  text-align: center;
  text-decoration: none;
}

.blog_wrapper {
  background: #eed1d2;
}

.blog_wrapper .top_heading h6 {
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ec5598;
  font-weight: 500;
  font-family: var(--primary-font);
}

.blog_wrapper .top_heading h4 {
  font-size: 32px;
  letter-spacing: 3px;
  color: #000000;
  font-weight: 900;
  font-family: var(--secondary-font);
}

/* Blog-section-End */

/* Gallery-section-start */
.gallery-img {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: block;
  background: var(--secondary-color);
  padding: 5px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.gallery-img img {
  width: 100%;
  height: 300px;
  transition: opacity 0.3s ease-in-out;
  object-fit: cover;
}

.gallery-img .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #ec5598a6;
  color: #fff;
  font-size: 24px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.gallery-img .overlay span {
  width: 60px;
  height: 60px;
  background: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  /* clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); */
}
.gallery-img .overlay span i {
  color: var(--brand-color);
}

.gallery-img:hover .overlay {
  opacity: 1;
  border-radius: unset !important;
}

.gallery_wrapper .top_heading h6 {
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ec5598;
  font-weight: 500;
  font-family: var(--primary-font);
}

.gallery_wrapper .top_heading h4 {
  font-size: 32px;
  letter-spacing: 3px;
  color: #000000;
  font-weight: 900;
  font-family: var(--secondary-font);
}

/* Gallery-sec-end */

/* Footer-sec-start */
.footer_wrapper {
  background: #2c2d2d;
}
.icon_bx {
  padding-top: 10px;
  padding-right: 30px;
  padding-left: 0px;
}
.footer_wrapper .content_bx h5 {
  font-size: 18px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  font-family: var(--primary-font);
}

.footer_wrapper .content_bx p {
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  font-family: var(--primary-font);
}

.footer_wrapper .content_bx ul li {
  list-style: none;
}

.footer_wrapper .content_bx ul {
  padding-left: 0;
}

.footer_wrapper .content_bx ul a {
  text-decoration: none;
  color: var(--white-color);
  font-size: 16px;
  line-height: 35px;
  color: var(--white-color);
  font-weight: 400;
}

.footer_wrapper .content_bx input {
  border-radius: unset;
}

.footer_wrapper .content_bx .input_wrap {
  position: relative;
  margin-top: 10px;
}

.footer_wrapper .content_bx .input_wrap .submit_btn {
  position: absolute;
  top: 0;
  right: 0;
}

.footer_wrapper .content_bx .input_wrap .submit_btn a {
  width: 73px;
  height: 37px;
  background: var(--brand-color);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: var(--white-color);
}

.footer_wrapper .content_bx .input_bx span {
  color: var(--white-color);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--primary-font);
}

.footer_wrapper .footer_icon .social_icon {
  display: flex;
  gap: 10px;
}

.footer_wrapper .footer_icon .social_icon a {
  color: #fff;
  width: 40px;
  height: 40px;
  border: 1px solid var(--brand-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.5s;
}

.footer_wrapper .footer_icon .social_icon a:hover {
  background-color: #fff;
  outline: 2px solid #000;
  color: var(--brand-color);
}

.footer_wrapper .bottom_footer {
  border-top: 1px solid #fff;
  margin-top: 20px;
  padding: 20px 0;
}

.footer_wrapper .bottom_footer p {
  margin: 0;
  color: #fff;
}

.footer_wrapper .bottom_footer p a {
  color: var(--brand-color);
  text-decoration: none;
  font-weight: 500;
  font-family: var(--primary-font);
}

.footer_wrapper {
  padding-bottom: 0 !important;
}
/* 
.footer-contact-info .main-contact {
    display: flex;
    align-items: center;
    margin-bottom: 10px
}

.footer-contact-info .main-contact span i {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #fff0;
    color: var(--brand-color);
    border: 1px solid var(--brand-color);
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    line-height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s all
}

.footer-contact-info .main-contact a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    transition: 0.5s all
} */

/* Footer-sec-end */

/* About-sec-start */
.banner_wrapper .inner_banner img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.banner_wrapper .inner_banner {
  position: relative;
}

.banner_wrapper .inner_banner::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000066;
}

.banner_wrapper .inner_banner .inner_heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 9;
  /* display: flex;
  justify-content: center;
  align-items: center; */
}

.banner_wrapper .inner_banner .inner_heading h4 {
  font-family: var(--title-font);
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 40px;
  border: 2px solid var(--brand-color);
  display: inline-block;
  padding: 5px 8px;
  border-radius: 10px 0 10px;
}

/* About-section-start */
.content_wrapper .image_wrapper img {
  width: 100%;
  border-radius: 20px 0 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.gallery-item {
  border-radius: 20px 0 20px !important;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.content_wrapper .content_wrapper h3 {
  font-family: var(--title-font);
  font-size: 43px;
}

.content_wrapper .content_wrapper p {
  font-size: 15px;
  font-weight: 500;
}

.content_wrapper .container .row {
  background: var(--secondry-color);
}

/* Key-point-section-start */
.fetaure_wrapper .icon_wrapper img {
  width: 50px;
}

/* .fetaure_wrapper
.fetaure_wrapper .feature_wrapper_bx{

} */

.highlightSection,
.bookNow {
  background-color: #f9e3ee;
}

.highlightSection {
  padding: 60px 0;
  text-align: center;
}

.iconhghlight i {
  display: block;

  position: relative;
  margin: 0 auto;
}

.iconhghlight i {
  font-size: 50px;
  color: #a7704e;
}

.iconhghlight {
  fill: #a7704e;
  color: #a7704e;
  text-align: center;
  background-color: transparent;
  color: #69727d;
  /* padding: 20px ; */
  border-radius: 50px;
  border: 3px solid #a7704e;
  padding: 20px;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.highlightCard {
  background-color: #fff;
  margin: 0 0 0 0;
  padding: 20px 20px 20px 20px;
  border-radius: 20px 20px 20px 20px;
}

.highlightCard {
  transition: box-shadow 0.3s ease;
}

.highlightCard:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.Cardpink {
  background-color: #ebd6c4 !important;
}

.highlightCard h3 {
  font-family: var(--title-font);
  font-size: 22px;
  font-weight: 500;
  padding-top: 20px;
  padding-bottom: 10px;
  color: #a7704e;
}

.highlightCard p {
  color: #000;
  font-family: "Poppins", Sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.iconhghlight2 svg {
  position: relative;
  top: 10px;
}

/* ====book now==== */
.bookNow {
  padding-bottom: 50px;
}

.bookNowContainer h4 {
  max-width: 370px;
  margin-bottom: 50px;
  font-size: 22px;
  text-align: center;
  margin: 0 auto;
}

.bookNowContainer h5 a {
  color: var(--black-color);
  text-decoration: none;
}

.bookNowContainer h5 {
  font-family: "Agnifa", serif;
  font-weight: 400;
  font-size: 41px;
  margin-bottom: 20px;
  animation: zoomInOut 3s ease-in-out infinite;
  text-align: center;
  padding-top: 0px;
}

.contactContainer {
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.bookNowContainer {
  max-width: 810px;
  margin: 0px auto;
  width: 44%;
  padding: 33px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 3px 17.2px 0 #d9976c4d;
}

.contactContainer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ff8fa3 100%, #ec5598 0%);
  border-radius: 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.phonesec i {
  animation: blink 1s infinite ease-in-out;
}

.contactContainer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #ec5598 0%, #ff8fa3 100%);
  border-radius: 40px;
  font-family: "Poppins", Sans-serif;
  font-weight: 500;
  box-shadow: 0 -2px 25.7px 9px #d9976c66;
  transition: all 0.3s ease;
  z-index: 1;
  border-bottom: 1.4px solid #fff;
  white-space: nowrap;
  padding: 12px 24px;
}

.phonesec a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 29px;
  font-weight: 400;
  gap: 15px;
  color: #fff;
  text-decoration: none;
}

.phonesec {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.phonesec span {
  background-color: #fff;
  padding: 10px 14px;
  border-radius: 50px;
}

.phonesec a:hover {
  color: #fff !important;
  text-decoration: none;
}

@keyframes zoomInOut {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 991px) {
  .highlightContainer .col-lg-3 {
    margin-bottom: 30px;
  }

  .bookNowContainer {
    max-width: 100%;
    padding: 20px 0;
  }
}

.phonesec a {
  font-size: 18px;
  gap: 10px;
}

/* ==================== blog page ====================== */

.professional_service {
  padding-top: 62px;
  padding-bottom: 50px;
  background-color: #f9e3ee;
}

.professional_service .custom-card {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.professional_service .custom-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.professional_service .card-img {
  width: 100%;
  height: auto;
  display: block;
}

.professional_service .card-img {
  height: 300px;
  object-fit: cover;
}

.professional_service .custom-card-content {
  padding: 20px;
  padding-top: 7px;
}

.professional_service .custom-card-title {
  font-weight: 600;
  font-size: 17px;
  line-height: 29px;
  margin-bottom: 10px;
  color: #0a0909;
  font-family: var(--secondary-font);
}

.professional_service .custom-card-description {
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
  font-family: var(--primary-font);
}

.professional_service .custom-card-link {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: bold;
}

.professional_service .custom-card-link:hover {
  color: var(--hover-color);
}

.professional_service .custom-card-btn a {
  display: inline-block;
  padding: 12px 30px;
  background: #fff;
  color: #000;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border-radius: 50px;
  outline: 1px solid var(--secondary-color);
}

.professional_service .custom-card-btn a:hover {
  background: var(--secondary-color);
  color: #fff;
  transform: scale(1.05);
}

.professional_service .card-icon {
  position: absolute;
  bottom: 6px;
  background: #000;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: 70px;
  height: 70px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  left: 50%;
  top: 97%;
  transform: translate(-50%, -50%);
  border: 3px solid #fff;
}

.professional_service .card-icon img {
  width: 40px;
}

.professional_service .custom-card:hover .card-icon img {
  transform: rotate(360deg);
}

.custom-card .custom-card-img {
  margin: 15px;
}

.card-icon p {
  color: var(--white-color);
  margin: 0;
}

/* =================== Service page ================== */

/* servercs page start */

.sec-icon {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0 auto;
}

.sec-icon::before {
  content: "";
  position: absolute;
  height: 1px;
  left: -70px;
  margin-top: -5.5px;
  top: 60%;
  background: #333333;
  width: 50px;
}

.sec-icon::after {
  content: "";
  position: absolute;
  height: 1px;
  right: -70px;
  margin-top: -5.5px;
  top: 60%;
  background: #333;
  width: 50px;
}

.advertisers-service-sec span {
  color: #e4322b;
}

.advertisers-service-sec .col {
  padding: 0 1em 1em 1em;
  text-align: center;
}

.advertisers-service-sec .service-card {
  width: 100%;
  height: 100%;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.5s;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #fff;
}

.advertisers-service-sec .service-card:hover img {
  transform: scale(2);
}

.icon-wrapper {
  overflow: hidden;
}

/* .advertisers-service-sec .service-card::after {
  content: "";
  width: 100%;
  height: 100%;
 
  background: #ec559894;
  position: absolute;
  left: 0%;
  top: -98%;
  z-index: -2;
  transition: all 0.4s cubic-bezier(0.77, -0.04, 0, 0.99);
} */

.bookNow2 {
  padding-top: 50px;
}

.advertisers-service-sec h3 {
  font-size: 19px;
  text-transform: capitalize;
  font-weight: 500;
  color: var(--black-color);
  margin: 1em 0;
  z-index: 3;
  font-family: var(--secondary-font);
}

.advertisers-service-sec p {
  color: var(--white-color);
  font-size: 18px;
  line-height: 19px;
  z-index: 3;
  font-weight: 600;
  position: absolute;
  top: 20px;
  padding: 10px;
  background: var(--brand-color);
}

.advertisers-service-sec .icon-wrapper {
  background-color: #2c7bfe;
  position: relative;
  margin: auto;
  font-size: 30px;
  height: 200px;
  width: 100%;
  color: #ffffff;
  border-radius: 0px;
  display: grid;
  place-items: center;
  transition: 0.5s;
  z-index: 3;
}

.b-class-secondary {
  color: var(--brand-color) !important;
}

.advertisers-service-sec .service-card:hover:after {
  top: 0%;
}

.advertisers-service-sec .service-card:hover a {
  border-color: var(--brand-color);
}

.advertisers-service-sec .service-card:hover i {
  color: var(--white-color);
  transform: rotate(0deg);
}

.section-header h2 {
  font-family: var(--secondary-font);
  padding: 30px 0;
}

.service-card .icon-wrapper {
  background-color: #ffffff;
  color: #e4322b;
  border: 1px solid var(--secondary-color);
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card .icon-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 0%;
  transition: all 0.6s;
}

.advertisers-service-sec .service-card:hover .icon-wrapper {
  color: #0dcaf0;
}

/* .advertisers-service-sec .service-card:hover h3 {
  color: #ffffff;
}

.advertisers-service-sec .service-card:hover p {
  color: #f0f0f0;
} */

.service-card-btn a {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--secondary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.5s ease;
  border: 1px solid rgb(118, 111, 111);
}

.service-card-btn a:hover {
  background-color: #000;
  color: #ffffff;
}
.viewallbtn a,
.BlogCard a {
  color: #000000 !important;
}
.sdetails a {
  width: 100% !important;
  color: var(--primary-color);
}

.sdetails a:hover {
  border: 2px solid var(--brand-color);
}
.sdetails a.active {
  background: var(--brand-color);
  color: #fff;
}

.secvere-bvg-ear-icon1 img {
  width: 150px;
  position: absolute;
  top: -3%;
  left: -5%;
  display: none;
}

.secvere-bvg-ear-icon2 img {
  width: 150px;
  position: absolute;
  top: -3%;
  right: -5%;
  display: none;
}

/* ======================= gallery page ========================= */
.gallery {
  padding: 0px 0px 50px 0px;
  text-align: center;
  /* background-color: #f9e3ee; */
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 3px solid var(--brand-color);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--brand-color);
  /* Replace with a hex code if needed */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 10;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.overlay i {
  color: white;
  font-size: 30px;
}

.gallery-item:hover .overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 768px) {
  .gallery-item img {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .gallery-item img {
    height: 300px;
  }
}

/* =================== blog Details ============ */
.blog-section {
  min-height: 500px;
}

.blog-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 3px solid var(--brand-color);
  border-radius: 25px 0 25px;
}
.blog-banner-img {
  height: 318px;
  overflow: hidden;
}
.recnetPost,
.recentblogright {
  position: sticky;
  top: 210px;
}

.datespost {
  color: #6c757d;
  font-size: 14px;
}

.blogs-details p {
  line-height: 19px;
  font-size: 16px;
  font-weight: 400 !important;
}

.blog-list {
  padding-left: 2rem;
  list-style-type: decimal;
}

.blog-list li {
  margin-bottom: 10px;
}

.blog-list p {
  margin: 0;
}

.recent-post h4,
.category-post h4 {
  border-bottom: 2px solid #eee;
  margin-bottom: 20px;
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 20px;
  line-height: 29px;
  color: var(--blue-color);
}

.recent-post .recent-img img {
  border-radius: 4px;
  object-fit: cover;
}

.recent-post a {
  text-decoration: none;
  color: inherit;
}

.recent-content h6 {
  font-size: 14px !important;
  line-height: 19px;
  margin-bottom: 4px;
  font-family: var(--primary-font);
  color: var(--black-color);
  font-weight: 600 !important;
  transition: all 0.3s ease;
}
.blogs-details p {
  font-size: 18px !important;
  line-height: 27px;
  margin-bottom: 14px;
  font-family: var(--primary-font);
  color: var(--black-color);
  font-weight: 600 !important;
  transition: all 0.3s ease;
}

.recent-content h6:hover {
  color: var(--brand-color);
}

.category-post ul {
  list-style: none;
  padding: 0;
}

.category-post ul li {
  margin-bottom: 10px;
}

.category-post .link {
  text-decoration: none;
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: var(--black-color);
  transition: all 0.3s ease;
}

.category-post .link:hover {
  color: var(--brand-color);
}

.recentblogright {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 20px;
  /* border-radius: 25px 0 25px; */
  border: 3px solid var(--brand-color);
}

.blogDetails {
  padding: 60px 0;
}

.tp-service-details-area {
  padding: 60px 0;
}

.tp-service-details-thumb img {
  width: 100%;
}

.tp-service-details-area .tp-service-details-thumb img {
  height: 475px;
  width: 100%;
  object-fit: cover;
  border: 3px solid violet !important;
  border-radius: 20px 0px 20px;
}

.service-sidebar__widget {
  padding: 28px 22px 40px 22px !important;
}

.service-sidebar__widget {
  background: #eed1d2;
  height: 600px;
  overflow-y: scroll;
}

.service-sidebar__widget {
  background: #eed1d2;
  padding: 28px 40px 40px 40px;
}

.tp-service-details-left-box,
.product-img-wrapper {
  position: sticky;
  top: 110px;
}

.productsDetalsbtn {
  text-align: center;
}

.sdetails {
  width: 100% !important;
  text-align: center;
}

.tp-blog-sidebar__widget-title,
.headingemp h2 {
  font-weight: 800;
  font-size: 2em;
  margin-bottom: 10px;
  color: var(--primary-color);
  font-family: var(--title-font);
  text-align: center;
  text-transform: capitalize;
}

.empoweringsec {
  padding: 0px 0px 10px 0px;
}

.headingemp h2 {
  text-align: left !important;
}

/* ====================== ContactUS-Section==================== */

.containerContact {
  box-shadow: 0 0 30px 0 rgb(0 0 0 / 0.1);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 20px 30px 20px 30px;
  background-color: var(--white-color);
}

.containerContact h5 {
  font-size: 24px;
  letter-spacing: 2px;
  line-height: 45px;
  color: var(--grey-color);
  font-weight: 900;
  font-family: var(--secondary-font);
  text-align: left;
}

.containerContact i {
  color: var(--white-color);
  background-color: #000;
  padding: 15px;
  border-radius: 50px;
  font-size: 24px !important;
  transition: all 0.4s;
}

.containerContact:hover i {
  background-color: var(--brand-color);
}

.location {
  padding: 15px 18px !important;
}

.containerContact p a {
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  color: var(--grey-color);
  font-weight: 500;
  text-align: left;
  transition: all 0.4s;
}
.containerContact p a:hover {
  color: var(--brand-color);
}
.ContactUS-Section {
  background-color: #f9e3ee;
  padding: 10px 20px;
}
.containerContact p {
  text-align: left;
}

.contact-us-section .contact-form {
  background-color: #f9e3ee;
  padding: 40px;
  padding-bottom: 5px;
  padding-top: 20px;
}

.imgcontact img {
  width: 100%;
  max-height: 454px;
  object-fit: cover;
}

.contact-us-section .contact-form h2 {
  font-weight: 800;
  font-size: 2em;
  margin-bottom: 20px;
  color: var(--blue-color);
  font-family: var(--secondary-font);
}

.contact-us-section .contact-form .input-box {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.contact-us-section .contact-form .input-box input,
.contact-us-section .contact-form .input-box textarea {
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid #333;
  outline: none;
  resize: none;
}

.form-submit {
  width: 100%;
  background: var(--brand-color);
  color: var(--white-color);
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
  border: 1px solid var(--brand-color);
  transition: 0.5s;
  font-family: var(--primary-color);
  font-weight: 600;
}

#custome-text {
  height: 100px;
}

.contact-us-section .contact-form .input-box input[type="submit"]:hover {
  background: #fff;
  color: var(--brand-color);
}

.contactForm {
  padding: 60px 0;
}

.map-section {
  width: 100%;
  height: 600px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  padding-bottom: 50px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.tp-service-details-left-box {
  position: sticky;
  top: 120px;
  z-index: 10;
}

.description {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  padding-top: 20px;
  color: var(--blue-color);
}

.description1 {
  font-family: var(--primary-font);
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 19px;
  color: var(--blue-color);
  padding-bottom: 20px !important;
}

.package p {
  font-size: 18px;
  font-family: var(--primary-font);
  color: var(--brand-color);
  font-weight: 600;
  margin: 0;
}
.serviceBtn .serviceA {
  border: 2px solid var(--brand-color);
  padding: 10px 14px;

  transition: all 0.6s;
}
.serviceA {
  color: var(--black-color);
  text-decoration: none;
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
}

.serviceA:hover {
  background-color: unset !important;
}

.serviceA {
  position: relative;
  display: inline-block;
  overflow: hidden;
  text-decoration: none;
  border: 2px solid var(--brand-color);
  padding: 10px 20px;
  z-index: 1;
}

.serviceA::before,
.serviceA::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--brand-color);
  z-index: -1;
  transition: transform 0.4s ease;
}

.serviceA::before {
  left: 0;
  transform: translateX(-100%);
}
.serviceBtn:hover {
  background-color: unset !important;
}
.serviceA::after {
  right: 0;
  transform: translateX(100%);
}

.serviceA:hover::before,
.serviceA:hover::after {
  transform: translateX(0);
}

.serviceBtn a i {
  color: var(--black-color);
  transform: rotate(-45deg);
  transition: all 0.6s;
}

.submit-btn-icon {
  position: relative;
  padding-right: 30px;
}

.submit-btn-icon {
  position: absolute !important;
  top: 0;
  right: 0;
  padding: 7px 15px;
  border: unset;
  background-color: var(--brand-color);
  color: var(--white-color);
}

.submit-btn-icon::after {
  content: "\f1d8";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.category-post {
  background-image: url("/assets/images/blog/blog3.webp");
}

.whatsapchat {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 15px;
  right: 10px;
  background-color: #25d366;
  border-radius: 50px;
  text-align: center;
  -webkit-box-shadow: 2px 2px 3px #999;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translatey(0px);
  -ms-transform: translatey(0px);
  transform: translatey(0px);
  -webkit-animation: pulse 1.5s infinite;
  animation: pulse 1.5s infinite;
  -webkit-box-shadow: 0 0 0 0 #42db87;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

.whatsapchat i {
  font-size: 30px;
  color: #fff;
  margin-top: 2px;
}

@-webkit-keyframes pulsing {
  to {
    -webkit-box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}
.about_content p strong span {
  color: var(--brand-color) !important;
}

.containerContact {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Faq-start */

.banner_wrapper .inner_banner img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.banner_wrapper .inner_banner {
  position: relative;
}

.banner_wrapper .inner_banner::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000066;
}

.banner_wrapper .inner_banner .inner_heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 9;
  /* display: flex;
  justify-content: center;
  align-items: center; */
}

.banner_wrapper .inner_banner .inner_heading h4 {
  font-family: var(--title-font);
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 40px;
  border: 2px solid var(--brand-color);
  display: inline-block;
  padding: 5px 8px;
  border-radius: 10px 0 10px;
}

.faq_wrapper .accordion-button:not(.collapsed) {
  box-shadow: none;
  background: #fff;
}

.faq_wrapper .accordion-item {
  border: 2px solid #143b3a;
  box-shadow: 0px 10px 10px 0px #a9c39e4d;
  border-radius: 10px;
  margin: 18px 0;
}
.faq_wrapper .accordion-button {
  border-radius: 10px;
}
.faq_wrapper .accordion-item:first-of-type .accordion-button {
  border-radius: 10px;
}
.faq_wrapper .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 10px;
}
.faq_wrapper .accordion-item .accordion-button,
.faq_wrapper .accordion-item:last-of-type .accordion-button.collapsed {
  font-size: 17px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  color: #000;
}
.faq_wrapper .accordion-item .accordion-body h6 {
  font-size: 17px;
  font-weight: 600;
  line-height: 23px;
  letter-spacing: 0em;
  text-align: left;
}
.faq_wrapper .accordion-item .accordion-body {
  padding-top: 0px;
}
.faq_wrapper .accordion-button:not(.collapsed)::after {
  background: url(https://webpristine.com/work/tech-hut-new/assets/image/icon/after.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 40px;
  height: 40px;
}
.faq_wrapper .accordion-button::after {
  background: url(https://webpristine.com/work/tech-hut-new/assets/image/icon/before.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 40px;
  height: 40px;
}
.faq_wrapper .main-title h3 {
  font-size: 25px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: 0em;
  color: var(--background);
}
.faq_wrapper .main-title p {
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: center;
}

.course-title {
  font-size: 25px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: 0em;
  text-align: left;
  color: var(--brand-color);
}

/* fixed social*/
#fixed-social {
   position: fixed;
   top: 50%;
	z-index:99;
}

#fixed-social a {
   color: #fff;
   display: block;
   height: 40px;
   position: relative;
   text-align: center;
    line-height: 40px;
   width: 40px;
   margin-bottom: 1px;
   z-index: 2;
}
#fixed-social a:hover>span{
	visibility: visible;
  left: 41px;
  opacity: 1;
} 
#fixed-social a span {
	line-height: 40px;
    left: 60px;
    position: absolute;
    text-align: center;
    width: 120px;
    visibility: hidden;
    transition-duration: 0.5s;
    z-index: 1;
    opacity: 0;
}
 .fixed-facebook{
 	background-color: #00AAE5;
 }
 .fixed-facebook span{
	background-color: #00AAE5;
 }
 .fixed-twitter{
	background-color: #7D3895;

 }
 .fixed-twitter span{
 	background-color: #7D3895;
 }
 .fixed-gplus{
	background-color: #00AF54;

 }
 .fixed-gplus span{
 	background-color: #00AF54;
 }
 .fixed-linkedin{
	background-color:#17295f;

 }
 .fixed-linkedin span{
 	background-color: #17295f;
 }
 .fixed-instagrem{
	background-color: #ED2B29;

 }
 .fixed-instagrem span{
 	background-color: #ED2B29;
 }
 .fixed-tumblr{
	background-color: #EB1471;

 }
 .fixed-tumblr span{
 	background-color: #EB1471;
 }

/*end fixed social*/
