/*=================================================================
Project:Home Rakshak Painter 
Author: 
Last change:
Primary use: Painting theme 
=================================================================*/
/*============================ Table of contents Start ============================
1.Default CSS
2.Header CSS
3.Hero CSS
4.Offer CSS
5.Conter CSS
6.Choose CSS
7.Who CSS
8.Meet CSS
9.Work CSS
10.Testimonial CSS
11.Dream CSS
12.Itwork CSS
13.News CSS
14.Rollimage CSS
15.Footer CSS
16.About_page CSS
17.Process_page CSS
18.Team_page CSS
19.Faq_page CSS
20.Pricing_plan CSS
21.Appointment CSS
22.Testimonial CSS
23.Error CSS
24.Service_page CSS
25.Project_page CSS
26.Blog_page CSS
27.Contect CSS
>.Prelaoder CSS 
>.Bottom To Top CSS
>.Custom-Cursor CSS
============================ Table of contents End ============================*/
/*============================ Color codes ============================
Background:   #fff #420000 #F5F6F7
Content:      #FF2424 #000
================================================================= */
/* ============================ Whole Page scroll Aniamtion CSS ======================= */
.fade_up,
.fade_down,
.zoom_in,
.zoom_out {
  opacity: 0;
  transition: all 2s;
}
.fade_up {
  transform: translateY(-50%);
}
.fade_down {
  transform: translateY(100%);
}
.zoom_in {
  transform: scale(0.5);
}
.zoom_out {
  transform: scale(1.5);
}
.fade_right {
  opacity: 0;
  transform: translateX(-100%);
  transition: all 2s;
}
.fade_left {
  opacity: 0;
  transform: translateX(100%);
  transition: all 2s;
}
.flip_left {
  opacity: 0;
  transform: perspective(400px) rotateY(-90deg);
  transition: all 2s;
}
.flip_right {
  opacity: 0;
  transform: perspective(400px) rotateY(90deg);
  transition: all 2s;
}
.flip_up {
  opacity: 0;
  transform: perspective(400px) rotateX(-90deg);
  transition: all 2s;
}
.flip_down {
  opacity: 0;
  transform: perspective(400px) rotateX(90deg);
  transition: all 2s;
}
.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.img-animation-style1,
.img-animation-style2,
.img-animation-style3 {
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}
.img-animation-style1 img,
.img-animation-style2 img,
.img-animation-style3 img {
  transform-origin: 50% 50%;
  transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}
.img-animation-style1.active,
.img-animation-style2.active,
.img-animation-style3.active {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.img-animation-style1.active img,
.img-animation-style2.active img,
.img-animation-style3.active img {
  transform: scale(1) translate(0px, 0px);
}
.img-animation-style1 {
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
.img-animation-style1 img {
  transform: scale(1.5) translate(-100px, 0px);
}
.img-animation-style2 {
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
}
.img-animation-style2 img {
  transform: scale(1.5) translate(100px, 0px);
}
.img-animation-style3 {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
.img-animation-style3 img {
  transform: scale(1.5) translate(0, -100px);
}
/* ============================ 1.Defualt CSS ======================= */
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none !important;
}
html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  /* user-select: none; */
}
body {
  /* cursor: none; */
}
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-corner {
  display: none;
}
::-webkit-scrollbar-thumb {
  background: #ff2424;
  background-clip: content-box;
}
::-webkit-scrollbar-track {
  background-color: #171819;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
.mt-60 {
  margin-top: 60px;
}
.mt-100 {
  margin-top: 100px;
}
.paint-first-image {
  height: auto !important;
}

.choose_row.position-relative .img-mask img {
  height: 400px;
}
/* ============================ 2.Header CSS ======================= */
header.scrolled {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
  transition: all 0.5s ease;
  background-color: #fff;
  border-bottom: 2px solid #ff2424;
}
header.scrolled .nav {
  background-color: transparent;
}
.nav {
  display: flex;
  gap: 30px;
  align-items: center;
  background-color: #fff;
}
.navbar_header {
  display: flex;
  align-items: center;
  gap: 60px;
}
.header_containt {
  padding: 10px 20px;
}
.sidebar_logo {
  display: none;
}
.nav li a {
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  display: flex;
  align-items: center;
}
.headerarrow {
  margin-left: 5px;
}
.dropdown {
  position: relative;
}
.dropdown_menu {
  position: absolute;
  min-width: 210px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  top: calc(100% + 15px);
  left: 0;
  background-color: #fff;
  z-index: 99;
  padding-left: 0;
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
  transition: all 0.3s ease;
}
.dropdown.active .dropdown_menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.dropdown::before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 15px;
  z-index: 100;
}
.dropdown_menu li {
  list-style: none;
}
.dropdown_menu li a {
  display: block;
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  padding: 10px 20px;
  text-decoration: none;
  transition:
    color 0.3s ease,
    margin-left 0.3s ease;
}
.dropdown_menu li:hover a {
  color: #ff2424;
  margin-left: 5px;
}
.headerarrow {
  margin-left: 5px;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.dropdown.active .headerarrow {
  transform: rotate(180deg);
  filter: brightness(0) saturate(100%) invert(21%) sepia(97%) saturate(3253%)
    hue-rotate(348deg) brightness(103%) contrast(101%);
}
.dropdown.active .demo_txt {
  color: #ff2424;
}
.dropdown:hover > .demo_txt p {
  color: #ff2424;
}
.dropdown:hover > .demo_txt .headerarrow {
  filter: brightness(0) saturate(100%) invert(21%) sepia(97%) saturate(3253%)
    hue-rotate(348deg) brightness(103%) contrast(101%);
}
.nav li.dropdown > a.active .headerarrow {
  filter: brightness(0) saturate(100%) invert(21%) sepia(97%) saturate(3253%)
    hue-rotate(348deg) brightness(103%) contrast(101%);
  transition: transform 0.3s ease;
}
.bubbles {
  width: fit-content;
  padding: 20px 30px;
  background-color: #ff2424;
  border: 2px solid #ff2424;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: 300ms cubic-bezier(0.83, 0, 0.17, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.text {
  color: #fff;
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  position: relative;
  z-index: 1;
  transition-delay: 0.5s;
}
.bubbles::before {
  top: 0;
  left: 0;
}
.bubbles::after {
  top: 100%;
  left: 100%;
}
.bubbles::before,
.bubbles::after {
  content: "";
  width: 150%;
  aspect-ratio: 1 / 1;
  scale: 0;
  transition: 1000ms cubic-bezier(0.76, 0, 0.24, 1);
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  translate: -50% -50%;
}
.button_img {
  position: relative;
  z-index: 1;
  transition-delay: 0.5s;
  padding-left: 10px;
}
.bubbles:hover .text {
  color: #ff2424;
}
.bubbles:hover .button_img {
  filter: brightness(0) saturate(100%) invert(21%) sepia(91%) saturate(3856%)
    hue-rotate(349deg) brightness(108%) contrast(101%);
}
.bubbles:hover::before,
.bubbles:hover::after {
  scale: 1;
}
.bubbles:active {
  scale: 0.98;
  filter: brightness(0.9);
}
.bubbles1 {
  width: fit-content;
  padding: 20px 30px;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: 300ms cubic-bezier(0.83, 0, 0.17, 1);
  gap: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bubbles1:hover > .text {
  color: #ff2424;
}
.bubbles1:hover .button_img {
  filter: brightness(0) saturate(100%) invert(21%) sepia(91%) saturate(3856%)
    hue-rotate(349deg) brightness(108%) contrast(101%);
}
.bubbles1:hover::before,
.bubbles1:hover::after {
  scale: 1;
}
.bubbles1:active {
  scale: 0.98;
  filter: brightness(0.9);
}
.bubbles1::before {
  top: 0;
  left: 0;
}
.bubbles1::after {
  top: 100%;
  left: 100%;
}
.bubbles1::before,
.bubbles1::after {
  content: "";
  width: 150%;
  aspect-ratio: 1 / 1;
  scale: 0;
  transition: 1000ms cubic-bezier(0.76, 0, 0.24, 1);
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  translate: -50% -50%;
}
.redirect_button {
  width: fit-content;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  margin-top: 15px;
  position: relative;
  z-index: 1000;
  height: 50px;
  width: 50px;
  background-color: #ff2424;
  border-radius: 10px;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger span:nth-child(1) {
  top: 5px;
}
.hamburger span:nth-child(2) {
  top: 13px;
}
.hamburger span:nth-child(3) {
  top: 21px;
}
.nav a.active {
  color: #ff2424 !important;
}
.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 90;
}
.body-overlay.active {
  opacity: 1;
  visibility: visible;
}
body.sidebar-open {
  overflow: hidden;
}
.navbar_header {
  flex-wrap: nowrap;
  flex-shrink: 0;
}
.header_button {
  flex-shrink: 0;
}
/* ============================ 3.Hero CSS ======================= */
.hero_section {
  background-color: #420000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero_pttx {
  color: var(--5, #fff);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.hero_main_txt {
  margin-top: 10px;
  color: var(--5, #fff);
  font-family: Outfit;
  font-size: 79px;
  font-style: normal;
  font-weight: 700;
  line-height: 100px;
}
.buttons1 {
  width: fit-content;
  margin-top: 80px !important;
}
.hero_paint {
  z-index: 10;
  bottom: -93px;
  right: 0px;
  transform-origin: center bottom;
  animation: bucketTilt 5s ease-in-out infinite;
}
@keyframes bucketTilt {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(-3deg);
  }
  50% {
    transform: translateY(0) rotate(2deg);
  }
  75% {
    transform: translateY(-6px) rotate(-2deg);
  }
}
.myslid {
  padding: 110px 0px;
}
.mySwiper {
  height: fit-content !important;
}
.border_txt {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-top: 20px;
}
.hero_pttx1 {
  color: var(--5, #fff);
  font-family: Outfit, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  margin: 0;
}
.border_hero {
  position: relative;
  width: 30px;
  background-color: #ff2424;
  display: flex;
  align-items: center;
}
#paint-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #400000;
  z-index: 0;
}
.hero_section {
  position: relative;
  z-index: 1;
}
.slide1 {
  background-image: url(../image/home/hero1.jpg);
  height: 835px;
  object-fit: fill;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide2 {
  background-image: url(../image/home/hero2.jpg);
  height: 835px;
  object-fit: fill;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide3 {
  background-image: url(../image/home/hro3.jpg);
  height: 835px;
  object-fit: fill;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider_content {
  max-width: 630px;
  position: absolute;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.home_video_section {
  position: relative;
  height: 835px;
  overflow: hidden;
}
.hero_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.home_video_section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}
.video_conent {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 700px;
  width: 100%;
}
.slider_content_video {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 665px;
  width: 100%;
  margin: 0 auto;
  padding: 0 12px;
}
.home_video_slider1 {
  width: 100%;
  height: 835px;
  position: relative;
  overflow: hidden;
}
.main-swiper-video-bg1 {
  position: relative;
}
.main-swiper-video-bg1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 2;
}
.background-media-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.background-media-wrapper img,
.background-media-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slider_content_video1 {
  position: absolute;
  z-index: 3;
  color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 665px;
  width: 100%;
  padding: 0 12px;
  text-align: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.swiper-slide-active .slider_content_video1 {
  opacity: 1;
}
/* ============================ 4.Offer CSS ======================= */
.offer_p {
  color: var(--10, #ff2424);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.offer_h2 {
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px;
}
.offer_paragraph {
  max-width: 630px;
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.offer_section {
  padding: 100px 0px;
}
.offer_row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.offer_box {
  overflow: hidden;
}
.offer_box .read_more {
  display: flex;
  align-items: center;
  overflow: hidden;
  gap: 10px;
  width: fit-content;
  margin-top: 30px;
  margin-left: -100px;
  transition: all 0.3s ease;
}
.offer_box .read_more_text {
  opacity: 1;
  display: inline;
  white-space: nowrap;
  color: var(--10, #ff2424);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  transition: all 0.3s ease;
}
.offer_box:hover .read_more {
  margin-left: 1px;
}
.offer_box:hover .read_more img {
  transition: transform 0.3s ease;
  filter: brightness(0) saturate(100%) invert(21%) sepia(97%) saturate(3253%)
    hue-rotate(348deg) brightness(103%) contrast(101%);
}
.offer_head {
  gap: 20px;
  margin-top: 10px;
}
.offer_h3 {
  max-width: 260px;
  margin-top: 20px;
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
}
.offer_ptxt {
  margin-top: 20px;
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
/* ============================ 5.Conter CSS ======================= */
.counter-container {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}
.counter-item {
  max-width: 300px;
  width: 100%;
  text-align: center;
}
.counter-label {
  max-width: 300px;
  width: 100%;
  color: var(--3, #000);
  text-align: center;
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 10px;
  text-align: center;
}
.counter {
  max-width: 300px;
  width: 100%;
  color: var(--3, #000);
  text-align: center;
  font-family: Outfit;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  gap: 0px;
  display: flex;
  height: 1em;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.digit-container {
  display: flex;
  flex-direction: column;
  transition: transform 1s ease-in-out;
}
.plus-sign {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  margin-left: 5px;
}
.plus-show {
  opacity: 1;
}
/* ============================ 6.Choose CSS ======================= */
.chhose_section {
  background-color: #f5f6f7;
  margin: 100px 100px 0px 100px;
  border-radius: 100px;
  padding: 100px;
}
.choose_p {
  margin-top: 100px;
  max-width: 550px;
  margin-left: 70px;
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.choose_img {
  border-radius: 50px;
}
.choose_row {
  gap: 100px;
  z-index: 1;
}
.choose_p2 {
  max-width: 630px;
  margin-top: 20px;
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.choose_boxes {
  margin-top: 30px;
  gap: 30px;
}
.choose_h3 {
  margin: 10px 0px;
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
}
.choose_box {
  max-width: 300px;
}
.choose_box_ptxtx {
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.choose2 {
  border-radius: 50px;
  margin-top: 100px;
}
.choose_img1 {
  top: -107px;
  right: 0px;
  z-index: 0;
}
.choose_img2 {
  bottom: -55px;
  left: -100px;
  animation: brushFloat2 4s ease-in-out infinite;
  z-index: 0;
}
@keyframes brushFloat2 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(-3deg);
  }
}
/* ============================ 7.Who CSS ======================= */
.border_hero1 {
  position: relative;
  width: 6px;
  background-color: #ff2424;
  display: flex;
  align-items: center;
}
.who_ptxt {
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.border_txt1 {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-top: 30px;
}
.who_ptxt1 {
  max-width: 630px;
  margin-top: 20px;
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.who_ptxt2 {
  margin-top: 5px;
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.who_right {
  margin-top: 30px;
  gap: 20px;
}
.who_h3 {
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}
.who_help_h3 {
  color: var(--5, #fff);
  font-family: Outfit;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.who_help_p {
  margin-top: 2px;
  color: var(--5, #fff);
  font-family: Outfit;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
}
.who_help {
  gap: 10px;
  width: 100%;
  border-radius: 50px;
  padding: 6px 30px 6px 6px;
  background-color: #000;
}
.whohelp {
  width: 24px;
  height: 24px;
}
.who_help_img {
  width: 48px;
  height: 48px;
  background-color: #fff;
  border-radius: 50%;
}
.who_imgs {
  margin: 30px 0px;
  gap: 20px;
}
.who4 {
  border-radius: 50px;
}
.whor_row {
  gap: 30px;
}
.who_help_p:hover {
  color: #ff2424;
}
.who1_img {
  border-radius: 0 0 30px 30px;
}
.who2_img {
  border-radius: 30px 30px 0px 0px;
}
.who_img_section {
  max-width: 630px;
  width: 100%;
}
/* ============================ 8.Meet CSS ======================= */
.meet_section {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../image/home/meet.jpg);
  background-repeat: no-repeat;
  border-radius: 100px;
  margin: 0px 100px;
  background-size: cover;
}
.meet_button {
  gap: 30px;
}
.meet_h2 {
  max-width: 740px;
  color: var(--5, #fff);
  font-family: Outfit;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 64px;
}
/* ============================ 9.Work CSS ======================= */
.work_section {
  margin: 100px 100px 0px 100px;
}
.work_img {
  border-radius: 40px;
}
.work_box {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
.work_box .work_img {
  display: block;
  width: 200px;
  height: auto;
  border-radius: 15px;
  margin: 0 auto;
}
.work_overlay {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  width: calc(100% - 40px);
  border-radius: 20px;
  background: var(--5, #fff);
  padding: 15px;
  opacity: 0;
  transform: translateY(100%);
  transition:
    opacity 0.3s ease-out,
    transform 0.3s ease-out;
}
.work_box:hover .work_overlay {
  opacity: 1;
  transform: translateY(0);
}
.work_h3 {
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}
.work_ptxt {
  margin-top: 4px;
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
/* ============================ 10.Testimonial CSS ======================= */
.testimonial_back {
  margin-top: 60px;
  max-width: 630px;
  border-radius: 30px;
  background: var(--5, #fff);
}
.testimonial_section {
  background-image: url(../image/home/roll_img.png);
  background-position: right;
  background-repeat: no-repeat;
  margin: 100px;
  padding: 100px 0px;
  border-radius: 100px;
  background-size: cover;
}
.testi_star {
  gap: 5px;
}
.testi_slide_box {
  padding: 40px;
}
.testimonial_h3 {
  margin-top: 20px;
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}
.testimonial_ptxt {
  margin-top: 15px;
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.testimonial_h4 {
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
.testi_per p {
  margin-top: 5px;
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.testimonial_img {
  width: 80px;
  height: 80px;
}
.testimonia_detail {
  margin-top: 30px;
  gap: 20px;
}
.testimonial-prev,
.testimonial-next {
  position: absolute;
  width: 64px;
  height: 64px;
  border: 2px solid #222;
  margin-top: 20px;
  cursor: pointer;
}
.testimonial-next {
  left: 84px;
}
.testimonial-next:hover {
  background-color: #ff2424;
  border: 2px solid #fff;
}
.testimonial-next:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7490%)
    hue-rotate(15deg) brightness(98%) contrast(104%);
}
.testimonial-prev:hover {
  background-color: #ff2424;
  border: 2px solid #fff;
}
.testimonial-prev:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7490%)
    hue-rotate(15deg) brightness(98%) contrast(104%);
}
.testimonial-prev:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7490%)
    hue-rotate(15deg) brightness(98%) contrast(104%);
}
.testimonial_slider {
  transition-timing-function: linear !important;
}
.testimonial_slider_image {
  filter: brightness(0) saturate(100%) invert(43%) sepia(8%) saturate(1%)
    hue-rotate(352deg) brightness(96%) contrast(94%);
}
.mySwiper1 {
  margin-top: 144px;
}
/* ============================ 11.Dream CSS ======================= */
.dream2 {
  max-width: 550px;
  width: 100%;
  margin-left: -265px;
}
.dream_row {
  max-width: 630px;
}
.dream_pxtx {
  margin-top: 30px;
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.dream_input::placeholder {
  color: var(--8, #a8a9ad);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.deream_inp {
  padding: 12px 15px;
  border-radius: 10px;
  border: 2px solid var(--12, #f5f6f7);
  background: var(--5, #fff);
}
.deream_inp input[type="number"]::-webkit-outer-spin-button,
.deream_inp input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.deream_inp input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}
.dream_input {
  outline: none;
  color: var(--8, #000);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.dream_form {
  margin-top: 30px;
  gap: 30px;
}
.dream_input1 {
  outline: none;
  color: var(--8, #000);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  cursor: pointer;
}
.dream_input1::placeholder {
  color: var(--8, #a8a9ad);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.dropdown_icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
  pointer-events: none;
}
.dream_inp.open .dropdown_icon {
  transform: translateY(-50%) rotate(180deg);
}
.custom_dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-top: 5px;
  display: none;
  z-index: 100;
  max-height: 200px;
  overflow-y: auto;
}
.custom_dropdown li {
  padding: 10px 15px;
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  transition: background 0.2s;
}
.custom_dropdown li:hover {
  background-color: #ff2424;
  color: #fff;
}
.dream_txtarea {
  width: 100%;
  height: 95px;
  border-radius: 10px;
  border: 2px solid var(--12, #f5f6f7);
  background: var(--5, #fff);
  padding: 12px 15px;
  outline: none;
  color: var(--8, #000);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  resize: none;
}
.dream_txtarea::placeholder {
  color: var(--8, #a8a9ad);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.dream_button {
  margin-top: 30px;
}
.dream_section_row {
  gap: 30px !important;
}
.dream1 {
  border-radius: 40px;
}
.drop:hover a {
  color: #ff2424;
}
.ui-datepicker {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  font-family: "Poppins", sans-serif;
}
.ui-datepicker-header {
  background: #ff2424;
  color: #fff;
  border-radius: 8px 8px 0 0;
  padding: 8px 0;
}
.ui-state-active,
.ui-widget-content .ui-state-active {
  background: #ff2424;
  color: #fff !important;
  border-radius: 50%;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  top: 3px;
}
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #ff2424;
  background: #ff2424;
  color: #fff;
}
.ui-state-active,
.ui-widget-content .ui-state-active {
  background: #ff2424;
  color: #fff !important;
  border-radius: 45%;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid transparent;
  background: #a8a9ad;
}
/* ============================ 12.Itwork CSS ======================= */
.it_work {
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: color-burn;
  height: 700px;
  object-fit: cover;
}
.offer_h21 {
  margin: auto;
  max-width: 630px;
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px;
}
.it_work_ptxt {
  padding-top: 30px;
  margin: auto;
  max-width: 850px;
  color: var(--4, #222);
  text-align: center;
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.itwork_h3 {
  margin-top: 20px;
  color: var(--3, #000);
  text-align: center;
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}
.itwork_p {
  margin-top: 10px;
  color: var(--4, #222);
  text-align: center;
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.itwork_row {
  gap: 40px;
}
.itwork_box {
  position: relative;
  cursor: pointer;
  perspective: 1000px;
}
.itwork_img {
  position: relative;
  background-color: #fff;
  width: 140px;
  height: 140px;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.9s ease;
  transform-style: preserve-3d;
}
.itwork_box:hover .itwork_img {
  transform: rotateY(180deg);
}
.itwork_img img {
  position: relative;
  z-index: 2;
  transition: filter 0.3s ease;
}
.itwork_img::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ff2424;
  z-index: 1;
  transition: bottom 0.5s ease;
}
.itwork_box:hover .itwork_img::before {
  bottom: 0;
}
.itwork_box:hover .itwork_img img {
  transition: unset;
  filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(6%)
    hue-rotate(262deg) brightness(102%) contrast(104%);
}
.itwork_choose {
  right: 0px;
  bottom: -160px;
  animation: floatUpDown 4s ease-in-out infinite;
}
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
/* ============================ 13.News CSS ======================= */
.blog-date::before {
  bottom: 0px;
  left: -30px;
  height: 60px;
  width: 30px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
.blog-date::after {
  content: "";
  bottom: 0px;
  right: -30px;
  height: 60px;
  width: 30px;
  border-bottom-left-radius: 20px;
  transition: all 0.4s ease;
}
.blog-date {
  color: var(--4, #222);
  text-align: center;
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  padding: 10px 20px;
  background: #ffffff;
  position: absolute;
  bottom: 0;
  left: 30px;
  border-radius: 20px 20px 0 0;
  transition: all 0.4s ease;
}
.blog-date::before,
.blog-date::after {
  content: "";
  position: absolute;
  background-color: transparent;
  height: 60px;
  width: 30px;
  box-shadow: 0 20px 0 0 #fff;
  transition: all 0.4s ease;
}
.new_containt {
  padding: 30px;
}
.new_h3 {
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news_p {
  width: 100%;
  max-width: 350px;
  margin-top: 10px;
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news_box {
  border-radius: 20px;
  border: 2px solid var(--12, #f5f6f7);
  background: var(--5, #fff);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.new_row {
  gap: 30px;
  z-index: 1;
}
.new_img {
  height: 300px;
  width: 100%;
  border-radius: 20px 20px 20px 0;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.news_box:hover .new_img {
  transform: scale(1.05);
  border-radius: 20px 20px 0 0;
}
.news_main_effect {
  overflow: hidden;
}
.news_box:hover {
  border-color: #ff2424;
}
.news_box:hover .new_h3 {
  color: #ff2424;
}
.news1,
.news2 {
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.news2 {
  left: -280px;
}
.news1 {
  right: -278px;
}
/* ============================ 14.Rolliamge CSS ======================= */
.rollimage_section {
  margin: 0px 100px;
  border-radius: 100px;
}
.expand-img-main {
  overflow: hidden;
}
.expand-img {
  width: 100%;
}
/* ============================ 15.Footer CSS ======================= */
.working_p {
  gap: 70px;
  padding: 15px 0px;
  justify-content: space-between;
  max-width: 300px;
  width: 100%;
}
.footer_ptxt {
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.footer_ptxt1 {
  color: var(--4, #222);
  text-align: right;
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.footer_ptxt2 {
  padding-bottom: 5px;
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
}
.footer_ul {
  padding-left: 0px;
}
.footer_ul li {
  list-style: none;
}
.footer_ul li a {
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}
.footer_ul_li {
  margin-bottom: 20px;
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
}
.footer_ul li:hover a {
  color: #ff2424;
}
.working1 {
  gap: 30px;
}
.footer_row {
  gap: 20px;
  padding: 20px 30px;
  border-radius: 30px;
  background-color: #000;
}
.footer_img {
  width: 80px;
  height: 80px;
  background-color: #000;
}
.footer_call {
  gap: 20px;
  max-width: 410px;
  padding: 10px;
  background-color: #ff2424;
  border-radius: 50px;
}
.footer_ptxt3 {
  color: var(--5, #fff);
  font-family: Outfit;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
.footer_ptxt4 {
  margin-top: 10px;
  color: var(--5, #fff);
  font-family: Outfit;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}
.footer_ptxt4:hover {
  color: #fff;
}
.small_footer {
  margin: 40px 0px;
}
.small_footer_p1 {
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 0px 10px;
}
.small_footer_p {
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.small_footer_p1:hover {
  color: #ff2424;
}
.footer_border {
  border-left: 2px solid #222;
}
.footer_span:hover {
  color: #ff2424;
  cursor: pointer;
}
.footer_icons {
  display: flex;
  gap: 20px;
}
.footer_icon {
  width: 60px;
  height: 60px;
  background-color: #191919;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.footer_icon img {
  width: 25px;
  height: 25px;
  z-index: 2;
  position: relative;
}
.footer_icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: #ff2424;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.5s ease,
    height 0.5s ease;
  z-index: 1;
}
.footer_icon:hover::before {
  width: 120%;
  height: 120%;
}
/* ============================ Preloader CSS ======================= */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.graf {
  width: fit-content;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.text_pre {
  font-family: Outfit;
  font-size: 5em;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  position: relative;
  color: #ff2424;
  transform: rotate(-5deg);
}
.droplets {
  position: relative;
  width: 200px;
}
.gota1 {
  width: 8px;
  height: 150px;
  background-color: #ff2424;
  border-radius: 0px 0px 10px 10px;
  position: absolute;
  left: calc(50% - 30px);
  top: 15px;
  -webkit-animation: gota1-move 15s infinite ease-out;
  animation: gota1-move 15s infinite ease-out;
}
.gota2 {
  width: 6px;
  height: 70px;
  background-color: #ff2424;
  border-radius: 0px 0px 10px 10px;
  position: absolute;
  left: calc(50% + -20px);
  top: 15px;
  -webkit-animation: gota2-move 15s infinite ease-out;
  animation: gota2-move 10s infinite ease-out;
}
.gota1 {
  -webkit-animation-timing-function: ease-out;
}
.gota1 {
  animation-timing-function: ease-out;
}
@-webkit-keyframes gota1-move {
  0% {
    height: 0px;
  }
  50% {
    height: 150px;
    background-color: #ff2424;
  }
  90% {
    background-color: #ff2424;
  }
  100% {
    background-color: transparent;
  }
}
@keyframes gota1-move {
  0% {
    height: 0px;
  }
  50% {
    height: 150px;
    background-color: #ff2424;
  }
  90% {
    background-color: #ff2424;
  }
  100% {
    background-color: transparent;
  }
}
.gota2 {
  -webkit-animation-timing-function: ease-out;
}
.gota2 {
  animation-timing-function: ease-out;
}
@-webkit-keyframes gota2-move {
  0% {
    height: 0px;
  }
  50% {
    height: 70px;
    background-color: #ff2424;
  }
  90% {
    background-color: #ff2424;
  }
  100% {
    background-color: transparent;
  }
}
@keyframes gota2-move {
  0% {
    height: 0px;
  }
  50% {
    height: 50px;
    background-color: #ff2424;
  }
  90% {
    background-color: #ff2424;
  }
  100% {
    background-color: transparent;
  }
}
/* ============================ Bottom To Top CSS ======================= */
.scroll-top {
  position: fixed;
  width: 60px;
  height: 60px;
  background-color: #ff2424;
  color: #fff;
  bottom: 40px;
  right: 40px;
  z-index: 9999;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: none;
  opacity: 0;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  transform: translateY(6px);
}
.scroll-top.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}
/* ============================ Custom-Cursor CSS ======================= */
.circle-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 10px;
  box-sizing: border-box;
  z-index: 1000;
  transform-origin: center center;
  will-change: transform;
}
.circle-cursor--outer {
  width: 40px;
  height: 40px;
  border: 2px solid #ff2424;
  border-radius: 50px;
}
.circle-cursor--inner {
  width: 6px;
  height: 6px;
  background: #ff2424;
}
/* ============================ 16.About_page CSS ======================= */
.about_hero_section {
  background-image: url(../image/about/about.jpg);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.about_hero_section::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.about_heading {
  padding: 20px 0px;
  color: var(--5, #fff);
  font-family: Outfit;
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 100px;
}
.about_content {
  position: relative;
  z-index: 2;
  padding: 100px 0px;
}
.breadcrumb-item a {
  color: var(--8, #a8a9ad);
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}
.breadcrumb-item a:hover {
  color: var(--10, #ff2424);
}
.breadcrumb-item.active {
  color: var(--5, #fff);
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../image/svg/about_arrow.svg);
  margin: 7px 10px 0px 10px;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0px;
}
.about_border {
  gap: 20px;
}
.border_hero2 {
  border-left: 10px solid #ff2424;
}
.about_who_p {
  margin-top: 30px;
  margin-bottom: 40px;
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.about_border1 {
  border-top: 2px solid #f5f6f7;
  margin: 30px 0px;
}
.about_flex_img {
  gap: 30px;
}
.about_flex_img1 {
  margin-top: 60px;
  gap: 40px;
}
.about_flex {
  gap: 30px;
}
.about_img {
  border-radius: 30px;
  width: 100%;
}
.about_img1 {
  margin-right: 60px;
}
.about_brush {
  top: 138px;
  z-index: 1;
  right: 0px;
  animation: brushFloat2 4s ease-in-out infinite;
}
.about_help_img {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.1);
}
.about_p_txt {
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.about_p_txt1 {
  color: var(--10, #ff2424);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.about_call {
  gap: 10px;
}
.about_p_txt1:hover {
  color: #000;
}
.about_call_row {
  gap: 100px;
}
.about_call_row1 {
  max-width: 550px;
}
.about_balty {
  top: -370px;
  left: -100px;
  z-index: 1;
  animation: floatUpDown 4s ease-in-out infinite;
}
.counter_section {
  position: relative;
  z-index: 2;
}
.wedo_row {
  gap: 100px;
}
.wedo_h3 {
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
}
.wedo_p_txt {
  margin-top: 10px;
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.baby_row {
  gap: 30px;
}
.wedo_img {
  border-radius: 30px;
}
.wedo_h31 {
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px;
}
.wedo_h32 {
  max-width: 90px;
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}
.years {
  gap: 20px;
  margin-left: 300px;
  padding-bottom: 30px;
}
.dream3 {
  max-width: 700px;
  width: 100%;
  margin-left: -265px;
}
.accordion-button:not(.collapsed) {
  color: var(--10, #ff2424);
  font-family: Outfit;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  background-color: rgba(255, 36, 36, 0.1);
  box-shadow: none;
}
.accordion-item {
  border: none;
  outline: none;
}
.accordion-body {
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 15px 0px;
}
.accordion-button {
  margin-top: 15px;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px;
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  background-color: #f5f6f7;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed)::after {
  background-image: url(../image/svg/acc.svg);
  width: 30px;
  height: 30px;
  background-size: cover;
  filter: brightness(0) saturate(100%) invert(21%) sepia(100%) saturate(2288%)
    hue-rotate(345deg) brightness(104%) contrast(108%);
}
.accordion-button::after {
  width: 30px;
  height: 30px;
  content: "";
  background-image: url(../image/svg/acc.svg);
  background-size: cover;
}
.wedo_row1 {
  width: 630px;
}
.wedo_row2 {
  max-width: 550px;
}
/* ============================ 17.Process_page CSS ======================= */
.process_hero_section {
  background-image: url(../image/process/process.jpg);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.process_hero_section::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.buiding_section {
  background-color: #f5f6f7;
}
.offer_h22 {
  margin: auto;
  max-width: 850px;
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px;
}
.building_box {
  gap: 40px;
}
.building_slider {
  margin-right: -300px;
}
.work_section1 {
  margin: 100px;
}
/* ============================ 18.Team_page CSS ======================= */
.team_hero_section {
  background-image: url(../image/team/team_hero.jpg);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.team_hero_section::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.team_member {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}
.blog-date1::before {
  bottom: 0px;
  left: -40px;
  height: 60px;
  width: 40px;
  border-bottom-right-radius: 20px;
}
.blog-date1::after {
  content: "";
  bottom: 0px;
  right: -40px;
  height: 60px;
  width: 40px;
  border-bottom-left-radius: 20px;
  transition: all 0.4s ease;
}
.blog-date1 {
  padding: 10px 15px;
  background: #fff;
  position: absolute;
  bottom: 0;
  right: 40px;
  border-radius: 25px 25px 0 0;
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 10px 15px;
  height: auto;
  overflow: visible;
}
.blog-date1::before,
.blog-date1::after {
  content: "";
  position: absolute;
  background-color: transparent;
  height: 60px;
  width: 40px;
  box-shadow: 0 20px 0 0 #fff;
  transition: all 0.4s ease;
}
.new_img1 {
  height: 300px;
  width: 100%;
  border-radius: 20px;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.new_h4 {
  margin-top: 10px;
  color: var(--4, #222);
  text-align: center;
  text-overflow: ellipsis;
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.team_box {
  border-radius: 20px;
  border: 2px solid var(--12, #f5f6f7);
  background: var(--5, #fff);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.team_box:hover .new_img1 {
  transform: scale(1.05);
  border-radius: 20px 20px 0 0;
}
.team_box:hover {
  border-color: #ff2424;
}
.team_box:hover .new_h3 {
  color: #ff2424;
}
.blog-date1 .main-icon {
  width: 20px;
  height: 20px;
  display: block;
}
.social-icons {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.social-icons .icon {
  background: #191919;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s ease;
}
.team_box:hover .social-icons {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.team_box:hover .social-icons .icon {
  opacity: 1;
  transform: translateY(0);
}
.team_box:hover .social-icons .icon:nth-child(1) {
  transition-delay: 0.1s;
}
.team_box:hover .social-icons .icon:nth-child(2) {
  transition-delay: 0.2s;
}
.team_box:hover .social-icons .icon:nth-child(3) {
  transition-delay: 0.3s;
}
.team_box:hover .social-icons .icon:nth-child(4) {
  transition-delay: 0.4s;
}
.team_icon {
  width: 40px;
  height: 40px;
  background-color: #191919;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.team_icon img {
  width: 22px;
  height: 22px;
  z-index: 2;
  position: relative;
}
.team_icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: #ff2424;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.5s ease,
    height 0.5s ease;
  z-index: 1;
}
.team_icon:hover::before {
  width: 120%;
  height: 120%;
}
.extra-team {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.extra-team.show {
  opacity: 1;
  transform: translateY(0);
}
.team_buttom {
  margin-top: 60px !important;
}
.team_detail {
  gap: 140px;
}
.team_detail_ptxt {
  margin-top: 30px;
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.progress_bar {
  padding: 30px;
  border-radius: 20px;
  background: var(--12, #f5f6f7);
  margin-top: 30px;
}
.progress-bar {
  overflow: hidden;
  text-align: start;
  background-color: transparent;
}
.progress-title-holder {
  position: relative;
}
.progress-title-holder1 {
  margin-top: 30px;
}
.progress-title {
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
}
.progress-number-wrapper,
.progress-number-mark {
  color: var(--4, #222);
  text-align: center;
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
}
.progress-number-mark {
  margin-bottom: 4px;
  position: absolute;
  bottom: 0;
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.progress-content-outter {
  margin-top: 15px;
  height: 4px;
  background-color: #fff;
}
.progress-content {
  height: 4px;
  background-color: #ff2424;
  width: 0%;
}
.team_detail_h3 {
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
}
.right_img {
  max-width: 36px;
  width: 100%;
  height: 36px;
  background-color: #ff2424;
  filter: drop-shadow(0 3px 10px rgba(248, 56, 57, 0.8));
}
.rigth_line {
  margin-top: 20px;
  gap: 15px;
}
.right_ptxt {
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.tema_detail1 {
  position: sticky;
  top: 120px;
}
.parent-section {
  overflow: visible;
}
.team-image-wrapper {
  position: relative;
  overflow: hidden;
}
.team-image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
  border-radius: inherit;
}
.detail_icon {
  position: absolute;
  width: 48px;
  height: 48px;
  background-color: #fff;
  top: 10px;
  right: 10px;
  z-index: 20;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail_icon img {
  width: 60%;
  height: 60%;
}
.social-media-icons {
  position: absolute;
  top: 70px;
  right: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
  z-index: 15;
}
.social-media-icons .team_icon {
  width: 40px;
  height: 40px;
  background-color: #191919;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.social-media-icons .team_icon img {
  width: 50%;
  filter: brightness(0) invert(1);
}
.tema_detail1:hover .team-image-wrapper::after {
  opacity: 1;
}
.tema_detail1:hover .social-media-icons {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.team_detail_h3txt {
  color: var(--3, #000);
  text-align: center;
  font-family: Outfit;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px;
}
/* ============================ 19.Faq_page CSS ======================= */
.faq_hero_section {
  background-image: url(../image/faq/faq_hero.jpg);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.faq_hero_section::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
/* ============================ 20.Pricing_plan CSS ======================= */
.pricing_hero_section {
  background-image: url(../image/pricing/pricing1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.pricing_hero_section::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.pricing_ptxt {
  margin: auto;
  max-width: 630px;
  margin-top: 20px;
  color: var(--4, #222);
  text-align: center;
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.pricing-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
input:checked + .slider {
  background-color: #ff2424;
}
input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
.toggle-label1 {
  color: var(--10, #ff2424);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
.toggle-label2 {
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
.toggle-label3 {
  background-color: rgba(255, 36, 36, 0.2);
  padding: 5px;
  color: var(--10, #ff2424);
  font-family: Outfit;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.plan_boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  opacity: 1;
  transform: scale(1);
  transition: all 0.4s ease;
}
.show-animate {
  animation: fadeInUp 0.6s ease forwards;
}
.hide-animate {
  animation: fadeOutDown 0.4s ease forwards;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
}
.plan_box {
  max-width: 410px;
  border: 1px solid var(--3, #000);
}
.plan_containt {
  background-color: #000;
  padding: 30px;
}
.plan_h3 {
  color: var(--10, #ff2424);
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
}
.plan_ptxt {
  margin-top: 15px;
  color: var(--5, #fff);
  font-family: Outfit;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
}
.plan_ptxt_span {
  color: var(--12, #f5f6f7);
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.plan_containt2 {
  padding: 30px;
}
.plan_containt1 li {
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}
.plan_containt1 {
  padding: 0px 30px;
}
.plan_button {
  margin-top: 30px;
}
/* ============================ 21.Appointment CSS ======================= */
.appointment_hero_section {
  background-image: url(../image/appointment/appointment.jpg);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.appointment_hero_section::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.chhose_section2 {
  background-color: #f5f6f7;
  margin: 100px;
  border-radius: 100px;
  padding: 100px;
}
/* ============================ 22.Testimonial CSS ======================= */
.testimonial_hero_section {
  background-image: url(../image/testimonial/testimonial.jpg);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.testimonial_hero_section::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.testimonial_back1 {
  margin-top: 60px;
  max-width: 600px;
  border-radius: 30px;
  background: var(--5, #f5f6f7);
}
.testi_mySwiper1 {
  padding-top: 60px;
}
.who1_img_test {
  border-radius: 30px;
}
.who2_img_test {
  border-radius: 30px;
}
.testi_slide_box1 {
  padding: 30px;
}
.whor_row1 {
  gap: 30px;
}
/* ============================ 23.Error CSS ======================= */
.error_hero_section {
  background-image: url(../image/error/error.jpg);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.error_hero_section::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.error-main-image {
  max-width: 415px;
  animation: brushRotate 10s linear infinite;
}
@keyframes brushRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.error-number {
  animation:
    float404 3s ease-in-out infinite,
    glow404 3s ease-in-out infinite;
}
@keyframes float404 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.error-image-area {
  margin-top: 25px;
}
.error_txt {
  margin-top: 45px;
  color: var(--4, #222);
  text-align: center;
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}
.error_button {
  margin-top: 40px !important;
}
.error-number {
  min-height: 360px;
  max-width: 274px;
}
/* ============================ 24.Service_page CSS ======================= */
.service_hero_section {
  background-image: url(../image/service/service.jpg);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.service_hero_section::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.redirect_box {
  border: 2px solid var(--12, #f5f6f7);
  padding: 30px;
}
.redirect_link {
  border: 2px solid var(--12, #f5f6f7);
  padding: 12px 20px;
  transition:
    background-color 0.5s ease,
    color 0.5s ease;
  overflow: hidden;
  position: relative;
}
.redirect_txt {
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  transition: color 0.5s ease;
}
.redirect_link1 {
  margin-top: 10px;
}
.redirect_link img {
  transition:
    transform 0.6s ease,
    filter 0.5s ease;
}
.redirect_link:hover {
  background-color: #000;
}
.redirect_link:hover .redirect_txt {
  color: #fff;
}
.redirect_link:hover img {
  filter: brightness(0) saturate(100%) invert(83%) sepia(100%) saturate(0%)
    hue-rotate(360deg) brightness(105%) contrast(101%);
  transform: rotate(-30deg);
}
.redirect_link.active {
  background-color: #000;
}
.redirect_link.active .redirect_txt {
  color: #fff;
}
.redirect_link.active img {
  filter: brightness(0) saturate(100%) invert(83%) sepia(100%) saturate(0%)
    hue-rotate(360deg) brightness(105%) contrast(101%);
  transform: rotate(-30deg);
}
.redirect_link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #000;
  transition: left 0.6s ease;
  z-index: 0;
}
.redirect_link:hover::before,
.redirect_link.active::before {
  left: 0;
}
.redirect_txt,
.redirect_link img {
  position: relative;
  z-index: 1;
}
.pdf_box {
  margin: 40px 0px;
  padding: 10px;
  border: 2px solid var(--12, #f5f6f7);
}
.pdf {
  width: 60px;
  height: 60px;
  background-color: #f5f6f7;
}
.pdf_icon_box {
  gap: 15px;
}
.pdf_icon_box_ptxt {
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.pdf_arrow_box {
  width: 100%;
  margin-left: 10px;
  max-width: 48px;
  height: 48px;
  border: 2px solid var(--3, #000);
}
.service_back_image {
  width: 100%;
  max-width: 410px;
  min-height: 485px;
  background-image: url("../image/service/service1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: darken;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.content-box {
  max-width: 210px;
}
.service_pimage {
  color: var(--5, #fff);
  text-align: center;
  font-family: Outfit;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
.service_pimage1 {
  margin-top: 15px;
  color: var(--5, #fff);
  text-align: center;
  font-family: Outfit;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
}
.service_h2 {
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px;
}
.service_title {
  gap: 30px;
}
.servive_p {
  margin-top: 20px;
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.service_image {
  margin: 40px 0px;
  border-radius: 30px;
}
.service_h3 {
  margin-top: 40px;
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
}
.serivce_two_iamge {
  margin-top: 40px;
}
.serivce_two_img {
  border-radius: 30px;
}
.service_play {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  margin-top: 40px;
}
.service_paly_img {
  width: 100%;
  border-radius: 30px;
  display: block;
  object-fit: cover;
}
.service_play1 {
  display: flex;
  width: 100px;
  height: 100px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
  transition: transform 0.3s ease;
  justify-content: center;
  align-items: center;
}
.service_play1:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.service_sticky {
  position: sticky;
  top: 120px;
}
/* ============================ 25.Project_page CSS ======================= */
.project_hero_section {
  background-image: url(../image/project/project_back.jpg);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.project_hero_section::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.quick-view-content {
  display: none;
}
.project {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.project_img {
  border-radius: 30px;
}
.filters {
  gap: 40px;
}
.filters a {
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.filter_link.active {
  color: #ff2424;
  border-bottom: 2px solid #ff2424;
}
.project_h2 {
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 72px;
}
.project_ptxt {
  margin-top: 30px;
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.project_ptxt2 {
  max-width: 150px;
  color: var(--8, #a8a9ad);
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
}
.project_box {
  border: 2px solid var(--12, #f5f6f7);
  padding: 12px 20px;
}
.project_ptxt1 {
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
}
.project_box1 {
  margin-top: 30px;
}
.project_box2 {
  margin-top: 10px;
}
.project_two_image {
  margin-top: 30px;
  gap: 30px;
}
.project3_img {
  margin-top: 30px;
  border-radius: 30px;
}
.project_masonry {
  column-count: 3;
  --webkit-column-count: 3;
  --moz-column-count: 3;
  gap: 30px;
}
.masonry_product {
  margin-bottom: 30px;
}
/* ============================ 26.Blog_page CSS ======================= */
.blog_hero_section {
  background-image: url(../image/blog/blog_back.jpg);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.blog_hero_section::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.new_row1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.custom-pagination {
  margin-top: 40px;
  gap: 20px;
}
.page-item {
  width: 60px;
  height: 60px;
  border: 2px solid #f5f6f7;
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}
.page-item.active {
  background: #000;
  color: #fff;
  border-color: #000;
  opacity: 1;
}
.page-item.arrow {
  cursor: pointer;
  background-color: #f5f6f7;
}
.page-item.arrow:hover {
  background-color: #000;
}
.page-item.arrow:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(273deg) brightness(103%) contrast(103%);
}
.page-item:hover {
  color: #fff;
  background-color: #000;
}
.searchbar {
  max-width: 60px;
  width: 100%;
  height: 60px;
  background: var(--12, #f5f6f7);
}
.blogsearch {
  padding: 10px 15px;
  width: 100%;
  color: var(--8, #000);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  outline: none;
}
.blogsearch::placeholder {
  color: var(--8, #a8a9ad);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.search_box {
  padding: 10px;
  border: 2px solid var(--12, #f5f6f7);
  background: var(--5, #fff);
}
.blog_ptxt {
  margin-top: 40px;
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.blog_p_color {
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.blog_color {
  gap: 10px;
}
.blog_read {
  gap: 20px;
}
.blog_tag {
  gap: 20px;
}
.blog_tab {
  margin-top: 20px;
}
.blog_ptxt1 {
  margin-top: 20px;
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.blog_p_cote {
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
}
.nav-link {
  padding: 0px;
}
.cote_box {
  margin-top: 40px;
  gap: 30px;
}
.blog_line {
  max-width: 100px;
  width: 100%;
  height: 2px;
  background-color: #222;
}
.blog_line_part {
  margin-top: 20px;
  gap: 12px;
}
.blog_line_txt {
  color: var(--4, #222);
  text-align: center;
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.youtub_btn {
  width: 80px;
  height: 80px;
  background-color: #fff;
}
.youtub_btn {
  transform: translate(-50%, -50%);
}
.blog_play {
  margin-top: 40px;
  overflow: hidden;
  border-radius: 30px;
}
.blog_play img.video_thumb {
  width: 100%;
  display: block;
}
.youtub_btn {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.85);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: 0.3s ease;
}
.video-loaded iframe {
  max-width: 850px;
  width: 100%;
  height: 500px;
  border-radius: 30px;
}
.blog_border1 {
  margin: 40px 0px;
  border-top: 2px solid #f5f6f7;
}
.blog_tag_color {
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  padding: 18px 20px;
  background: var(--12, #f5f6f7);
  display: inline-block;
  transition: transform 0.3s ease;
}
.blog_tag_color:hover {
  color: #fff;
  transform: translateY(-5px);
  background-color: #ff2424;
}
.blog_color_tag {
  gap: 10px;
}
.blog_heart {
  width: 60px;
  height: 60px;
  border: 2px solid #f5f6f7;
}
.blog_heart_tag {
  gap: 30px;
  position: relative;
}
.blog_heart {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: #fff;
  transition: transform 0.3s ease;
  overflow: hidden;
}
.blog_heart img {
  position: relative;
  z-index: 5;
}
.blog_heart:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(273deg) brightness(103%) contrast(103%) !important;
}
.blog_heart::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: #ff2424;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.4s ease,
    height 0.4s ease,
    opacity 0.4s ease;
  z-index: 1;
  opacity: 0;
}
.blog_heart:hover::before {
  width: 120%;
  height: 120%;
  opacity: 1;
}
.arrow-text {
  color: var(--8, #a8a9ad);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.9px;
  gap: 10px;
}
.link-title {
  max-width: 350px;
  width: 100%;
  margin-top: 10px;
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}
.prev a {
  text-align: left;
}
.prev .arrow-text {
  justify-content: flex-start;
}
.next {
  text-align: right;
}
.next .arrow-text {
  justify-content: flex-end;
}
.blog_h3 {
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
}
.comment_inp {
  border-bottom: 2px solid #f5f6f7 !important;
  color: var(--8, #000);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  outline: none;
  padding: 0px 10px 10px 0px;
}
.comments {
  margin-top: 30px;
  gap: 30px;
}
.comment_inp::placeholder {
  color: var(--8, #a8a9ad);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.comment_textare::placeholder {
  color: var(--8, #a8a9ad);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.comment_textare {
  border-bottom: 2px solid #f5f6f7 !important;
  color: var(--8, #000);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  outline: none;
  resize: none;
  height: 100px;
}
.consent-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  margin-top: 30px;
}
.custom-checkbox {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #888;
  border-radius: 9px;
  margin-right: 10px;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visually-hidden:checked + .custom-checkbox {
  border-color: #ff2424;
  background-color: #ff2424;
}
.visually-hidden:checked + .custom-checkbox::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 15px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.agree_ptxt {
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.blog_button {
  margin-top: 30px;
}
.blod_resend {
  padding: 30px;
  margin-top: 40px;
  border: 2px solid var(--12, #f5f6f7);
}
.blog_h4 {
  color: var(--8, #a8a9ad);
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.blog_ptxt2 {
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.resent_blog {
  gap: 15px;
}
.resent_blog_border {
  border-top: 2px solid #f5f6f7;
  margin: 20px 0px;
}
.service_back_image1 {
  margin-top: 40px;
}
.new_row2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
/* ============================ 27.Contect CSS ======================= */
.contact_ptxt {
  margin-top: 30px;
  margin-bottom: 20px;
  color: var(--4, #222);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.contact_call {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.1);
}
.contact_pcall {
  color: var(--8, #a8a9ad);
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.contact_pcall1 {
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.contact_pcall1:hover {
  color: #ff2424;
}
.contact_con {
  gap: 10px;
  padding-top: 20px;
  max-width: 300px;
  width: 100%;
}
.contact_pcall2 {
  color: var(--3, #000);
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.contact_icon {
  gap: 20px;
  margin-top: 40px;
}
.contact_icon a img {
  transition: transform 0.3s ease;
}
.contact_icon a:hover img {
  transform: scale(1.2);
  filter: brightness(0) saturate(100%) invert(24%) sepia(89%) saturate(4143%)
    hue-rotate(348deg) brightness(101%) contrast(101%);
}
.contact_form {
  padding: 30px;
  background: rgba(168, 169, 173, 0.1);
}
.contact_inp {
  padding: 15px 20px;
  color: var(--4, #000);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  outline: none;
}
.contact_inp[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.contact_inp::placeholder {
  color: var(--4, #222);
}
.contact_inp1 {
  margin-top: 20px;
}
.contact_txtarea {
  padding: 15px 20px;
  color: var(--4, #000);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  outline: none;
  resize: none;
  height: 120px;
}
.contact_txtarea::placeholder {
  color: var(--4, #222);
}
.contact_button {
  margin-top: 30px;
}
.map-iframe {
  width: 100%;
  height: 750px;
}
.deream_inp {
  position: relative;
  align-items: center;
  gap: 8px;
}
.dream_input {
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
}
.calendar_icon {
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.hidden_date {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.pulse {
  animation: pulse 2s infinite;
}
.pulse:hover {
  animation: none;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.arrow-down-icon {
  position: absolute;
  bottom: 200px;
  right: 5%;
  transform: translateX(-50%);
  font-size: 36px;
  font-weight: bolder;
  animation: arrowDown 1.5s infinite;
}
@keyframes arrowDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.6;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.logo img {
  width: 160px !important;
  height: auto;
}
.footerlogo {
  width: 200px !important;
  height: auto;
}
.sidebar_logo a img {
  width: 200px !important;
  height: auto;
}
