@font-face {
  font-family: "Plus Jakarta Sans Semi Bold";
  src: url("assets/fonts/PlusJakartaSans-SemiBold.woff2") format("woff2"), url("assets/fonts/PlusJakartaSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans Light";
  src: url("assets/fonts/PlusJakartaSans-Light.woff2") format("woff2"), url("assets/fonts/PlusJakartaSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans Regular";
  src: url("assets/fonts/PlusJakartaSans-Regular.woff2") format("woff2"), url("assets/fonts/PlusJakartaSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  font-family: "Plus Jakarta Sans Regular";
}

.dark {
  background-color: #191B22;
}

/* Navbar Style */
.ptb-40 {
  padding: 40px 0;
}

.ptb-60 {
  padding: 60px 0;
}

.wt-text {
  color: #fff;
}

.pt-90 {
  padding-top: 90px;
}

.heading__s .heading {
  text-transform: uppercase;
  font-size: 3rem;
}
.heading__s p {
  color: #656567;
}

.heading__m .heading {
  text-transform: uppercase;
  font-size: 5rem;
}
@media screen and (max-width: 768px) {
  .heading__m .heading {
    font-size: 3rem;
    line-height: 4.5rem;
  }
}

.heading__l {
  text-transform: uppercase;
  font-size: 5.5rem;
}

@media screen and (max-width: 768px) {
  .heading__l {
    font-size: 3.5rem;
  }
}
.heading__xl {
  text-transform: uppercase;
  font-size: 10.5rem;
}

.arrow-button {
  display: flex;
  transition: all 0.3s ease;
  cursor: pointer;
  align-items: center;
  max-width: 23%;
  justify-content: space-between;
}

.arrow-button > .arrow {
  width: 15px;
  height: 15px;
  border-right: 2px solid #656567;
  border-bottom: 2px solid #656567;
  position: relative;
  bottom: -1px;
  transform: rotate(-90deg);
  margin: 10px 6px 0 6px;
  transition: all 0.3s ease;
}

.arrow-button > .arrow::before {
  display: block;
  background-color: currentColor;
  width: 15px;
  transform-origin: bottom right;
  height: 2px;
  position: absolute;
  opacity: 1;
  bottom: -1px;
  transform: rotate(45deg);
  transition: all 0.3s ease;
  content: "";
  right: 0;
}

.arrow-button:hover > .arrow {
  transform: rotate(-90deg) translate(4px, 4px);
  border-color: text-hover-color;
}

.arrow-button:hover > .arrow::before {
  opacity: 1;
  width: 20px;
}

.main {
  overflow-x: hidden;
}

.horizontal-sliders {
  display: flex;
  flex-wrap: no-wrap;
  width: 500%;
  overflow-x: hidden;
}

.slide {
  height: 80%;
  margin-right: 50px;
}

.next-block {
  height: 100vh;
  background: blue;
}

.custom-cursor {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1); /* Transparent background */
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px); /* Apply blur to the area behind the element */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Slight border for visibility */
  pointer-events: none; /* Ensure the cursor does not interfere with other interactions */
  display: flex; /* Use flexbox to center content */
  justify-content: center; /* Horizontally center */
  align-items: center; /* Vertically center */
  opacity: 0; /* Hidden by default */
  transform: scale(0); /* Hidden by default */
}

.custom-cursor p {
  margin: 0; /* No extra margin */
  padding: 0; /* No extra padding */
  color: white; /* White text for contrast */
  font-size: 12px; /* Text size */
  text-align: center; /* Centered text */
}

.submitbtn {
  padding: 15px 40px;
  background: transparent;
  border: 0;
  color: #fff;
  text-transform: uppercase;
  font-family: helvetica;
  font-size: 8px;
  letter-spacing: 3px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  cursor: pointer;
  display: block;
}

.submitbtn::after,
.submitbtn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.submitbtn::after {
  width: 15px;
  height: 1px;
  background: white;
  transform: translateX(-3px);
  margin-top: 0px;
}

.submitbtn::before {
  content: "";
  transform: rotate(-135deg) translateX(50%);
  width: 7px;
  height: 7px;
  background: transparent;
  border-left: 1px solid white;
  border-bottom: 1px solid white;
  margin-top: -1px;
}

@media screen and (min-width: 768px) {
  .desktop_show {
    display: block !important;
  }
  .mobile_show {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .desktop_show {
    display: none !important;
  }
  .mobile_show {
    display: block !important;
  }
}
.submitbtn:hover {
  padding: 15px 40px 15px 60px;
}

.submitbtn:hover::after,
.submitbtn:hover::before {
  opacity: 1;
  right: 15px;
}

.section__bg_color {
  background-color: #191B22;
  transition: background-color 2s;
}

.dot-element {
  position: relative;
}

.dot-element::before {
  content: ""; /* Empty content to create the pseudo-element */
  display: inline-block; /* Allows for adding block-level styling */
  background-color: #fff; /* Change the color of the circle */
  border-radius: 50%; /* Makes the shape a circle */
  width: 7px; /* Diameter of the circle */
  height: 7px; /* Diameter of the circle */
  margin-right: 10px; /* Space between the circle and the text */
  vertical-align: middle; /* Aligns the circle with the middle of the text */
}

.subtitle {
  display: flex;
}
.subtitle.title-container .inner-subtitle {
  display: flex;
  align-items: center;
  cursor: pointer;
  background-color: #FFF5F8;
  color: #e7004c;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  padding: 10px 25px;
}
@media screen and (max-width: 768px) {
  .subtitle.title-container .inner-subtitle {
    padding: 10px 25px;
  }
}
.subtitle.title-container .line-container {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.subtitle.title-container .line-container .line {
  width: 20px;
  height: 2px;
  background-color: #e7004c;
  transition: width 0.3s;
}
.subtitle.title-container .line-container .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e7004c;
  position: absolute;
  right: 0;
  transition: right 1.5s;
}
.subtitle:hover .line-container .line {
  width: 50px;
}
.subtitle:hover .line-container .dot {
  right: 0px;
}
.subtitle p {
  background-color: #FFF5F8;
  color: #e7004c;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
.subtitle p span {
  font-family: "Plus Jakarta Sans Semi Bold";
}

.outline_btn {
  color: #e7004c;
}
.outline_btn a {
  padding-bottom: 10px;
  border-bottom: 1px solid #e7004c; /* Thickness and color of the underline */
  padding-bottom: 5px;
  padding: 8px;
}

.bg-color-grey {
  background-color: #E1D7CD;
}

.height_50 {
  min-height: 50vh;
}

.element-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.element-right {
  display: flex;
  justify-content: right;
  align-items: self-start;
}

.element-left {
  display: flex;
  justify-content: left;
  align-items: left;
}

.active {
  display: inline;
}

.Heading_with_text .description_text {
  display: flex;
  justify-content: center;
  align-items: center;
}
.Heading_with_text .description_text p {
  color: #656567;
  margin-left: 3rem;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .Heading_with_text .description_text p {
    margin-top: 1rem;
    margin-left: 0rem;
  }
}

.banner__footer_slideshow .lines {
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner__footer_slideshow .lines .line {
  width: 80%;
  border: 1px solid #fff;
  padding: 0;
  height: 0;
  position: relative;
}
.banner__footer_slideshow .lines .line:after {
  content: ""; /* Required for ::after pseudo-elements */
  position: absolute; /* Position the dot absolutely within the .line */
  width: 10px; /* Width of the dot */
  height: 10px; /* Height of the dot */
  background: #fff; /* Color of the dot */
  border-radius: 50%; /* Make it circular */
  top: 50%; /* Vertically center the dot */
  transform: translateY(-50%); /* Adjust for vertical centering */
  right: -4px; /* Position the dot at the end (slightly outside) of the line */
}
.banner__footer_slideshow .banner_desctiption p {
  color: #fff;
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .banner__footer_slideshow .banner_desctiption p {
    font-size: 0.8rem;
  }
}

.hero-banner .banner__overlay {
  position: relative;
}
.hero-banner .banner__footer_slideshow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.entire_navbar .company-title {
  font-family: "Plus Jakarta Sans Semi Bold";
}
.entire_navbar ul li a {
  font-size: 16px;
  font-family: "Plus Jakarta Sans Semi Bold";
  text-transform: uppercase;
}

.brands_presents {
  background-color: #F6F6F6;
}

.about__us .middle__padding .about__us__left__side {
  position: relative;
}
.about__us .middle__padding .about__us__left__side .subtitle {
  display: flex;
}
.about__us .middle__padding .about__us__left__side .subtitle p {
  background-color: #FFF5F8;
  color: #e7004c;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
.about__us .middle__padding .about__us__left__side .outline_btn {
  position: absolute;
  bottom: 0;
}
.about__us .middle__padding .about__us__left__side .title__xl h1 {
  font-size: 6rem;
}
@media screen and (max-width: 768px) {
  .about__us .middle__padding .about__us__left__side .title__xl h1 {
    font-size: 3rem;
  }
}
.about__us .middle__padding .about__us__left__side .title__xl p {
  color: #656567;
}
.about__us .middle__padding .about__us__right__side {
  width: 100%;
}
.about__us .middle__padding .about__us__right__side .about__us_img_bg {
  background-color: #F2E7DE;
  padding: 60px;
  border-radius: 50px;
  max-width: 750px;
}
.about__us .middle__padding .about__us__right__side .about__us_img_bg .image_flex {
  display: flex;
  justify-content: center;
}
.about__us .middle__padding .about__us__right__side .about__us_img_bg .about__image__text {
  display: flex;
  justify-content: center;
}
.about__us .middle__padding .about__us__right__side .about__us_img_bg .about__image__text .inner__image__text {
  padding-top: 2rem;
}
.about__us .middle__padding .about__us__right__side .about__us_img_bg .about__image__text .inner__image__text p {
  font-size: 24px;
}
.about__us .middle__padding .about__us__right__side .about__us_img_bg .about__image__text .inner__image__text hr {
  padding-top: 2rem;
  border-bottom: 1px solid rgba(23, 26, 31, 0.4);
}

.about_us_slider_mobile .title__xl {
  padding: 2rem 0;
}
.about_us_slider_mobile .title__xl h1 {
  font-size: 50px;
}
.about_us_slider_mobile .sliders_mobile {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  justify-content: flex-start !important;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: nowrap !important;
  gap: 20px;
  overflow-x: scroll;
}
.about_us_slider_mobile .sliders_mobile .slides {
  background: #E1D7CD;
  margin-top: 20px;
  border-radius: 10px;
}
.about_us_slider_mobile .sliders_mobile .slides .slide_mobile {
  width: 90vw;
  padding: 30px;
}
.about_us_slider_mobile .sliders_mobile .slides .slide_mobile img {
  width: 100%;
  margin: 0 auto;
}
.about_us_slider_mobile .sliders_mobile .slides .slide_mobile .horizontal_div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about_us_slider_mobile .sliders_mobile .slides .slide_mobile .horizontal_div hr {
  width: 80%;
  border-top: 1px solid rgba(23, 26, 31, 0.4);
}
.about_us_slider_mobile .sliders_mobile .slides .slide_mobile .text_container {
  font-size: 18px;
}

.rebel__services .heading_side .inner-subtitle {
  background-color: #2b2a30;
}
.rebel__services .heading_side .inner-subtitle p {
  background-color: #2b2a30;
  color: #fff;
}
.rebel__services .heading_side .subtitle .line-container .line {
  background-color: #fff;
}
.rebel__services .heading_side .subtitle .line-container .dot {
  background-color: #fff;
}
.rebel__services .section_default_color .heading_side .heading__l {
  color: #fff;
}
.rebel__services .section_default_color .services__left .services__list ul li {
  margin-bottom: 1.1rem;
  max-width: 80%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1.1rem;
}
.rebel__services .section_default_color .services__left .services__list ul li .services_url {
  color: #fff;
  display: flex;
  gap: 10px;
  font-size: 1.2rem;
}
.rebel__services .section_default_color .services__left .services__list ul li .services_url .service__description p {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.rebel__services .section_default_color .services__left .services__list ul li .services_url .service__description span {
  display: none;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 768px) {
  .rebel__services .section_default_color .services__left .services__list ul li {
    max-width: 100%;
  }
  .rebel__services .section_default_color .services__left .services__list ul li:hover {
    border-bottom: 1px solid #fff;
  }
  .rebel__services .section_default_color .services__left .services__list ul li .services_url {
    color: rgba(255, 255, 255, 0.5);
  }
  .rebel__services .section_default_color .services__left .services__list ul li .services_url:hover {
    color: #fff;
  }
}
.rebel__services .section_default_color .services__right .grid {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}
.rebel__services .section_default_color .services__right .grid .images img {
  margin-bottom: 2.2rem;
}
.rebel__services .section_default_color .services__right .grid .text_generation {
  color: #fff;
}
.rebel__services .section_default_color .footer_btn {
  display: flex;
  justify-content: end;
}
.rebel__services .section_default_color .footer_btn .outline_btn {
  color: #fff;
}
.rebel__services .section_default_color .footer_btn .outline_btn a {
  border-bottom: 1px solid #fff; /* Thickness and color of the underline */
}

.sample__projects {
  padding-bottom: 5rem;
}
.sample__projects .heading_title .heading__l h1 {
  line-height: 1.3;
}
.sample__projects .content__img__part .row_images {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (max-width: 768px) {
  .sample__projects .content__img__part .first_image_row {
    padding-left: 0;
    padding-right: 0;
  }
  .sample__projects .content__img__part .third_image_row {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.sample__projects .content__img__part .reveal {
  visibility: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.sample__projects .footer_btn {
  padding-top: 8rem;
  text-align: right;
}

.subscription_part .big_connect_url {
  color: #656567;
  font-size: 32px;
}
.subscription_part .big_connect_url a {
  border-bottom: 2px solid #656567; /* Thickness and color of the underline */
}
@media screen and (max-width: 768px) {
  .subscription_part .heading__l {
    font-size: 4rem !important;
  }
  .subscription_part .arrow-button {
    max-width: 70%;
  }
}

.swipeimage {
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.footer .footer-inner .footer__left {
  max-width: 70%;
}
.footer .footer-inner .footer__left .stayknow {
  margin-top: 25px;
  margin-bottom: 20px;
}
.footer .footer-inner .footer__left .stayknow p {
  font-size: 1.2rem;
}
.footer .footer-inner .footer__left .subscription {
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
}
.footer .footer-inner .footer__left .subscription input {
  background: transparent;
}
.footer .footer-inner .footer__left .subscription:placeholder {
  color: #fff;
}
.footer .footer-inner .footer__right {
  margin-left: 4rem;
}
.footer .footer-inner .footer__right .description {
  font-size: 2rem;
  max-width: 80%;
}
.footer .footer-inner .footer__right .footer-columns {
  padding-top: 60px;
}
.footer .footer-inner .footer__right .footer-columns .footer-title {
  padding-bottom: 1rem;
}
.footer .footer-inner .footer__right .footer-columns ul li {
  padding: 5px;
}
@media screen and (max-width: 768px) {
  .footer .footer-inner .footer__left {
    max-width: 100%;
    padding: 0 0.87rem;
  }
  .footer .footer-inner .footer__right {
    margin: 0 0.87rem;
  }
  .footer .footer-inner .footer__right .description {
    font-size: 1rem;
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    background-color: #191B22;
  }
}
.subpage-nav .dark_text {
  color: #000;
}

.contact__us .grid-cols-enable {
  grid-template-columns: none;
}
.contact__us .heading__xl {
  overflow: hidden;
  white-space: nowrap;
}
.contact__us .heading__xl h1 {
  font-size: 10.5rem;
}
.contact__us .marquee {
  font-size: 0;
}
.contact__us .clipped-text {
  display: inline-block;
  font-size: 250px;
  margin-right: 100px;
}
@media screen and (max-width: 768px) {
  .contact__us .clipped-text {
    font-size: 35px;
    margin-right: 0;
  }
}
.contact__us .address_grid {
  margin-top: 3rem;
  max-width: 35%;
}
.contact__us .address_grid .description_text {
  display: block;
  margin-top: 0px;
  margin-left: 1rem;
}
.contact__us .address_grid .description_text .upper_text {
  font-size: 16px;
  margin-left: 0rem;
  max-width: 80%;
}
.contact__us .address_grid .description_text .full_address {
  margin-top: 4rem;
}
.contact__us .address_grid .description_text .full_address ul li {
  margin-bottom: 20px;
}
.contact__us .address_grid .description_text .full_address .fa {
  width: 20px;
  margin-right: 10px;
}
.contact__us .address_grid .description_text .full_address .fa.fa-mobile {
  font-size: 22px;
  margin-left: 2px;
}
@media screen and (max-width: 768px) {
  .contact__us .address_grid {
    max-width: 100%;
  }
}
.contact__us .subtitle {
  padding-left: 9.5%;
  margin-top: 30px;
}
.contact__us .subtitle .inner-subtitle {
  display: flex;
  align-items: center;
  cursor: pointer;
  background-color: #fff;
  color: #e7004c;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  padding: 10px 25px;
}
.contact__us .subtitle .line-container {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.contact__us .subtitle .line-container .line {
  width: 350px;
  height: 2px;
  background-color: #e7004c;
  transition: width 0.3s;
}
.contact__us .subtitle .line-container .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e7004c;
  position: absolute;
  right: 0;
  transition: right 1.5s;
}
.contact__us:hover .line-container .dot {
  right: 0px;
}
@media screen and (max-width: 768px) {
  .contact__us .subtitle {
    padding-left: 0%;
  }
}
.contact__us .contact_us_image .image_flex {
  display: flex;
  justify-content: center;
}
.contact__us .about__us__right__side {
  position: absolute;
  top: 20%;
  right: 10%;
  width: auto !important;
}
@media screen and (max-width: 768px) {
  .contact__us .about__us__right__side {
    position: relative;
  }
  .contact__us .mobile_version_contact {
    padding-top: 20px;
  }
}

.about_us__heroic {
  padding-top: 8rem;
}
.about_us__heroic .subtitle .inner-subtitle {
  background-color: #2b2a30;
}
.about_us__heroic .subtitle p {
  background-color: #2b2a30;
  color: #fff;
}
.about_us__heroic .subtitle.title-container .inner-subtitle .line-container .line {
  background-color: #fff;
}
.about_us__heroic .subtitle.title-container .inner-subtitle .line-container .dot {
  background-color: #fff;
}
.about_us__heroic .heading__m {
  padding-top: 2rem;
  color: #fff;
  line-height: 6.5rem;
}
.about_us__heroic .about_heroric_img {
  padding-top: 8rem;
}
@media screen and (max-width: 768px) {
  .about_us__heroic .about_heroric_img {
    padding-top: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .about_us__heroic {
    padding-top: 4rem;
  }
}
.think_smart {
  padding-bottom: 12rem;
}
.think_smart .innter-container {
  max-width: 53%;
  padding-left: 8rem;
}
.think_smart .innter-container .description_text {
  padding: 6rem 0;
}
.think_smart .innter-container .description_text p {
  color: #656567;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .think_smart .innter-container .description_text {
    padding: 2rem 0;
  }
}
@media screen and (max-width: 768px) {
  .think_smart .innter-container {
    max-width: 100%;
    padding-left: 0rem;
  }
}
.think_smart .three_images {
  display: flex;
  padding-left: 8rem;
  justify-content: space-between;
  max-width: 85%;
}
.think_smart .three_images .three_img_gallery {
  display: flex;
  justify-content: center;
  align-items: end;
  margin: 0 5px;
}
@media screen and (max-width: 768px) {
  .think_smart .three_images {
    padding: 4rem 0;
    padding-left: 0rem;
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .think_smart {
    padding-bottom: 0rem;
  }
}
.all_brand_logos {
  padding-bottom: 5rem;
}
.all_brand_logos .heading__s {
  color: #fff;
}
.all_brand_logos .banner__footer__text .banner_desctiption {
  max-width: 90%;
}
.all_brand_logos .banner__footer__text .banner_desctiption p {
  font-size: 24px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .all_brand_logos .banner__footer__text .banner_desctiption {
    max-width: 100%;
  }
  .all_brand_logos .banner__footer__text .banner_desctiption p {
    font-size: 22px;
  }
}
.all_brand_logos .grid-logo {
  padding: 40px 50px;
}
@media screen and (max-width: 768px) {
  .all_brand_logos .grid-logo {
    padding: 0;
  }
}

.work_place .middle__padding .about__us__left__side .subtitle p {
  color: #000;
}
@media screen and (max-width: 768px) {
  .work_place .middle__padding .about__us__left__side.pl-20 {
    padding-left: 0rem;
  }
  .work_place .middle__padding .about__us__left__side.pt-90 {
    padding-top: 20px;
  }
}

.all_services_tab .subtitle p {
  color: #000;
}
.all_services_tab .tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  background-color: #FAFAFA;
  padding: 5px 30px;
}
@media screen and (max-width: 768px) {
  .all_services_tab .tabs {
    overflow-x: scroll;
  }
}
.all_services_tab .tab {
  padding: 15px 0;
  margin: 0 5px;
  border: none;
  cursor: pointer;
  outline: none;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .all_services_tab .tab {
    flex-grow: 1;
    flex-basis: 0;
    white-space: nowrap;
  }
}
.all_services_tab .tab:hover {
  border-bottom: 2px solid #CC0043;
}
.all_services_tab .tab.active {
  border-bottom: 2px solid #CC0043;
}
.all_services_tab .tab-content {
  margin-top: 8rem;
  padding: 10px;
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .all_services_tab .tab-content {
    margin-top: 3rem;
  }
}
.all_services_tab .content {
  display: none;
}
.all_services_tab .content.active {
  display: block;
}
.all_services_tab .left_side_txt h2 {
  text-transform: uppercase;
  font-size: 45px;
  margin-bottom: 1rem;
}
.all_services_tab .left_side_txt p {
  max-width: 70%;
  color: #656567;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .all_services_tab .left_side_txt p {
    max-width: 100%;
  }
}
.all_services_tab .left_side_txt .btn-red {
  padding: 10px 25px;
  color: #fff;
  background-color: #CC0043;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .all_services_tab .left_side_txt {
    margin-bottom: 30px;
  }
}
.all_services_tab .right_side_img {
  display: flex;
  justify-content: space-between;
}
.all_services_tab .right_side_img .image_text h3 {
  padding-top: 2rem;
  padding-bottom: 0.5rem;
  font-weight: 900;
}
.all_services_tab .right_side_img .image_text p {
  color: #656567;
}
@media screen and (max-width: 768px) {
  .all_services_tab .right_side_img .image_text p {
    max-width: 90%;
  }
}
.all_services_tab .right_side_img .first_img {
  padding: 0px 20px;
}
@media screen and (max-width: 768px) {
  .all_services_tab .right_side_img .first_img {
    padding: 0px;
  }
}
.all_services_tab .right_side_img .second_image {
  margin-top: -40px;
}
.all_services_tab .odds {
  order: 2;
  padding-left: 8rem;
}
.all_services_tab .odds p {
  max-width: 100%;
}
.all_services_tab .odd {
  order: 1;
}

.title_with_description {
  padding-left: 8rem;
}
.title_with_description .title_description {
  max-width: 65%;
}
.title_with_description .title_description h2 {
  font-size: 2.3rem;
  margin-bottom: 35px;
}
.title_with_description .title_description p {
  max-width: 80%;
  color: #656567;
}

@media screen and (max-width: 768px) {
  .title_with_description {
    padding-left: 0rem;
  }
  .title_with_description .title_description {
    max-width: 100%;
  }
  .title_with_description .title_description h2 {
    font-size: 2rem;
  }
  .title_with_description .title_description p {
    max-width: 100%;
  }
}
.Fade-up {
  opacity: 0;
}

.three_column_images .images_comn {
  display: grid;
  justify-content: end;
  align-items: end;
}
.three_column_images .images_comn .reveal {
  visibility: hidden;
  position: relative;
  width: 80%;
  height: 80%;
  max-width: 500px;
  overflow: hidden;
}
.three_column_images .first_image_url {
  max-width: 80%;
}
.three_column_images .third_image_url {
  align-items: start;
  max-width: 78%;
}
.three_column_images .place_2rd {
  padding: 0.75rem;
}
.three_column_images .place_2rd img {
  padding: 0.75rem;
}
.three_column_images .place_2rd .placess_img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.three_column_images .place_3rd img {
  padding: 0.75rem;
}

.services.about__us .title__xl h1 {
  font-size: 7rem !important;
}
.services.about__us .title__xl p {
  max-width: 60%;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .services.about__us .title__xl h1 {
    font-size: 3rem !important;
  }
  .services.about__us .title__xl p {
    max-width: 90%;
    font-size: 18px;
  }
}

.origial_image_gallery {
  padding-top: 4rem;
  padding-bottom: 10rem;
  background-color: #FAFAFA;
}
@media screen and (max-width: 768px) {
  .origial_image_gallery .two_img_rights img {
    margin: 5px 0;
  }
}
.origial_image_gallery .one_img_left {
  position: relative;
  overflow: hidden;
}
.origial_image_gallery .one_img_left .image1,
.origial_image_gallery .one_img_left .image2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.origial_image_gallery .one_img_left .image2 {
  -webkit-clip-path: circle(0% at 50% 50%);
          clip-path: circle(0% at 50% 50%);
}
.origial_image_gallery .one_img_left .reveal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.origial_image_gallery .heading__s {
  margin-bottom: 4rem;
}
.origial_image_gallery .heading__s .heading {
  margin-bottom: 1rem;
}
.origial_image_gallery .heading__s p {
  max-width: 60%;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .origial_image_gallery .heading__s p {
    max-width: 100%;
  }
}
.origial_image_gallery .four_img_right .twin_photo {
  height: 100%;
}
.origial_image_gallery .four_img_right .twin_photo .two_img_right {
  display: grid;
  justify-content: center;
  align-items: end;
  gap: 18px;
}
@media screen and (max-width: 768px) {
  .origial_image_gallery .four_img_right .twin_photo .two_img_right {
    gap: 10px;
  }
}

.dark_hover_img {
  padding: 6rem;
}
.dark_hover_img .about__us__left__side .heading {
  color: #fff;
}
.dark_hover_img .about__us__left__side .heading h1 {
  font-size: 6rem;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .dark_hover_img .about__us__left__side .heading h1 {
    font-size: 3rem;
  }
}
.dark_hover_img .about__us__left__side .heading p {
  max-width: 65%;
}
@media screen and (max-width: 768px) {
  .dark_hover_img .about__us__left__side .heading p {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .dark_hover_img {
    padding: 0rem;
  }
}
.project_menu {
  background: transparent;
}

.project_parallax_slider {
  margin-top: -100px;
  background-image: url("assets/img/project-bg-images.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  height: 200vh;
  position: relative;
  z-index: -99;
}
.project_parallax_slider .project_text_part {
  position: absolute;
  bottom: 30%;
}
.project_parallax_slider .project_text_part .project_description {
  max-width: 60%;
  color: #fff;
}
.project_parallax_slider .project_text_part .project_description p {
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  .project_parallax_slider .project_text_part .project_description {
    max-width: 100%;
  }
  .project_parallax_slider .project_text_part .project_description p {
    font-size: 16px;
  }
}
.project_parallax_slider .project_text_part .project_details_table {
  padding-top: 5rem;
}
.project_parallax_slider .project_text_part .project_details_table table td {
  vertical-align: top;
}
.project_parallax_slider .project_text_part .project_details_table table td p {
  padding: 5px 10px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .project_parallax_slider {
    height: 100vh;
    background-position: center;
  }
}
.project_services .left_side_txt .subtitle {
  display: grid;
  max-width: 35%;
}
.project_services .left_side_txt p {
  margin-bottom: 0;
}
.project_services .right_side_img {
  display: block;
}
.project_services .right_side_img p {
  color: #656567;
  padding-left: 8rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .project_services .right_side_img p {
    padding-left: 0rem;
  }
}

.bg_img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.project_slide_gallery {
  padding-bottom: 8rem;
}
.project_slide_gallery .container {
  max-width: 1400px;
}
.project_slide_gallery .grid {
  gap: 5px;
}
.project_slide_gallery .left_slider_gallery .inner_grid_system .inner_slider_gallery {
  padding: 0 5px 5px 0;
}
.project_slide_gallery .left_slider_gallery .inner_grid_system .inner_slider_gallery img {
  margin-bottom: 10px;
}
.project_slide_gallery .left_slider_gallery .inner_grid_system .middle_slider_gallery {
  margin: 0 5px;
  max-height: 80%;
  background-position: top;
}
.project_slide_gallery .left_slider_gallery .slider_img_1 {
  min-height: 385px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .project_slide_gallery .left_slider_gallery .slider_img_1 {
    min-height: 130px;
  }
}
.project_slide_gallery .right_slider_gallery {
  margin: 0 5px;
  display: grid;
}
.project_slide_gallery .right_slider_gallery img {
  margin-bottom: 10px;
}

.project_parallax_image {
  position: relative;
  height: 100vh; /* Adjust height as needed */
  overflow: hidden;
}
.project_parallax_image .image {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.project_header_change {
  padding: 3rem 0 6rem 0;
}
.project_header_change .left_side_txt {
  padding: 0 50px;
}
.project_header_change .left_side_txt .subtitle {
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.project_header_change .left_side_txt p {
  max-width: 90%;
  color: #3a3a3b;
  font-size: 18px;
  text-align: justify;
  padding: 10px 25px;
}
@media screen and (max-width: 768px) {
  .project_header_change .left_side_txt {
    padding: 0 10px;
    margin-bottom: 60px;
  }
  .project_header_change .left_side_txt p {
    padding: 10px 0px;
  }
}
.project_header_change .right_side_img .first_img {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .project_header_change {
    padding: 3rem 0 0rem 0;
  }
  .splide__arrow {
    top: 35%;
  }
  .more-projects-slider .splide__slide {
    margin-left: -25px;
  }
}
.more-projects-slider {
  background: #191B22;
}
.more-projects-slider p {
  color: #fff;
}
.more-projects-slider .splide {
  padding: 2rem 0;
}
.more-projects-slider .splide__slide:hover .projects_descrip {
  opacity: 1;
  transform: translateY(0);
}
.more-projects-slider .splide__slide {
  position: relative;
  padding: 0 1rem;
}
.more-projects-slider .splide__slide .slider_overlady {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
}
.more-projects-slider .splide__slide .projects_descrip {
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 0;
  position: absolute;
  bottom: 10%;
  left: 10%;
}
.more-projects-slider .splide__slide .projects_descrip h4 {
  color: #fff;
  font-size: 22px;
}
.more-projects-slider .splide__slide .projects_descrip ul {
  padding: 5px 0;
  display: flex;
}
.more-projects-slider .splide__slide .projects_descrip ul li {
  margin-right: 14px;
  color: #fff;
}
.more-projects-slider .splide__slide .projects_descrip ul li p {
  padding-right: 10px;
}
.more-projects-slider .splide__slide .projects_descrip ul li:nth-child(1) {
  list-style: none;
}
.more-projects-slider .splide__slide .projects_descrip a {
  color: #fff;
  padding-bottom: 2px;
  border-bottom: 1px solid #fff;
}
.more-projects-slider .splide__slide img {
  display: block;
  width: 100%;
  transition: transform 400ms;
  transform: scale(0.9);
  transform-origin: center center;
}
.more-projects-slider .splide.is-initialized {
  height: 400px;
}/*# sourceMappingURL=main-style.css.map */