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

/* universal * page default config */
/* Global reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
  text-decoration: none;
  scroll-behavior: smooth;
  font-family: "Outfit", Arial;
}
/* siteColor palette */
:root {
  --bgClr: #fff;
  --altClr: #f3f3f3;
  --bdClr: #e9e9e9;
  --txtClr: #212529;
  --txtLight: #fff;
  --brand: #161921;
  --mainClr: #e83a15;
  --hvClr: #062b50;
}
/* body properties */
body {
  background: var(--bgClr);
  color: var(--txtClr);
  font-family: "Outfit", Arial;
  font-size: 1.6rem;
  font-weight: 400;
}
/* html ratio configuration for rem:pixels*/
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
/* all section default properties */
section,
.section {
  max-width: 1440px;
  margin: auto;
  padding: 8rem 4rem;
}
/* navBar */
header {
  max-width: 1440px;
  margin: auto;
}
/* headerTop */
.header-top {
  padding: 1.2rem 5rem 1.4rem;
  background-color: #e83a15;
  color: var(--txtLight);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top::before {
  content: "";
  height: 100%;
  width: 28.3%;
  background-color: var(--brand);
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 48px) 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 48px) 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.welcomeMsg span {
  color: var(--mainClr);
  font-weight: bold;
  font-family: "Montserrat", Arial;
}
.socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.socials span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 0.15rem solid var(--bgClr);
  color: var(--txtLight);
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
.socials span i {
  font-size: 1rem;
  text-align: center;
}
.socials span:hover {
  transform: translateY(-0.5rem);
  color: var(--mainClr);
  background-color: var(--bgClr);
}
/* Header Top Ends */

/* Main navStructure */
/* Navbar */
nav {
  position: relative;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  background-color: var(--bgClr);
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 3rem 4rem;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
nav.sticky-nav{
  max-width: 1440px;
  margin: auto;
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.07);
-webkit-animation: stickyAni 0.4s ease-in-out;
animation: stickyAni 0.4s ease-in-out;
}

@-webkit-keyframes stickyAni {
0% {
    -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
    transform: translate3d(0, -40px, 0) scaleY(0.8);
    opacity: 0.7;
}

100% {
    -webkit-transform: translate3d(0, 0, 0) scaleY(1);
    transform: translate3d(0, 0, 0) scaleY(1);
    opacity: 1;
}
}

@keyframes stickyAni {
0% {
    -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
    transform: translate3d(0, -40px, 0) scaleY(0.8);
    opacity: 0.7;
}

100% {
    -webkit-transform: translate3d(0, 0, 0) scaleY(1);
    transform: translate3d(0, 0, 0) scaleY(1);
    opacity: 1;
}
}
.logo-bg:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #eff3fa;
  -webkit-clip-path: polygon(
    0 0,
    calc(100% - 80%) 0,
    calc(100% - 88%) 100%,
    0% 100%
  );
  clip-path: polygon(0 0, calc(100% - 80%) 0, calc(100% - 88%) 100%, 0% 100%);
  -webkit-clip-path: polygon(0 0, calc(100% - 80%) 0, calc(100% - 88%) 100%, 0% 100%);
  clip-path: polygon(0 0, calc(100% - 80%) 0, calc(100% - 88%) 100%, 0% 100%);
  z-index: -1;
}

/* navMainContents */
/* Brand Main ~ Brand Logo*/
.brand-Logo h1.brand {
  font-weight: bold;
  font-family: "Calistoga", "'Outfit'", Arial;
  font-size: 3rem;
  color: var(--brand);
  line-height: 3rem;
}
.brandName {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.brandName img {
  width: 150px;
  /* height: 12rem; */
}
.brand-Logo h4 {
  color: var(--mainClr);
  font-weight: 500;
}
/* Nav-info */
.navInfo {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: 1.2rem;
}
button.btn_repair {
  background-color: transparent;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  border: 1px solid var(--mainClr);
  border-radius: 2rem;
  transition: all ease-in-out 0.3s;
  padding: 1.15rem;
}
button.btn_repair img {
  height: 2rem;
}
button.btn_repair:hover {
  background-color: var(--mainClr);
  color: var(--txtLight);
}
/* Nav-info Ends */

/* header-info-container starts */
.header-info-container {
  display: flex;
  align-items: center;
  gap: 5rem;
}
.header-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header-info .header-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--mainClr);
  color: var(--mainClr);
  transition: all ease-in-out 0.3s;
}
.header-info-icon:hover {
  background-color: var(--mainClr);
  color: var(--txtLight);
}
.header-info-link {
  text-decoration: none;
  color: var(--brand);
  font-weight: bold;
  transition: all ease-in-out 0.3s;
}
.header-info-link:hover {
  color: var(--mainClr);
}
/* header-info-container ends*/

/* navMain */
.navMain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 0;
  border-top: 1px solid var(--bdClr);
}
.navbarContent{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbarContent ul.navbarLinks {
  display: flex;
  align-items: center;
  list-style: none;
}
ul.navbarLinks li.navLink {
  position: relative;
  padding: 1.6rem;
  font-size: 1.4rem;
  font-family: "Poppins", Arial;
  cursor: pointer;
  transition: all ease-in-out 0.2s;
}
ul.navbarLinks li.navLink:hover {
  color: var(--mainClr);
}
ul.navbarLinks li.navLink:before {
  content: "";
  position: absolute;
  bottom: 1rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-top: 2px solid var(--mainClr);
  border-radius: 2rem;
  transition: ease-in-out 0.15s;
  width: 0;
}
ul.navbarLinks li.navLink:hover::before {
  width: 4rem;
}
.menu-icon, .OpenNav, .mobb,.btn_repair.mobile,
.contact_selector_container {
  display: none;
}
/* NavMain Ends */

/* navbar service_dropdown menu */
#dropdown_list {
  position: relative;
}
#dropdown_list i#dropIcondown {
  margin-left: 0.5rem;
  transition: all ease-in-out 0.3s;
  font-size: 1.2rem;
  color: var(--mainClr);
}
#dropdown_list ul.service_List {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: var(--bgClr);
  box-shadow: 0.1rem -0.1rem 1rem 0 rgba(0, 0, 0, 0.05);
  border-bottom: 2px solid var(--mainClr);
  padding: 0;
  margin: 0;
  transition: all ease-in-out 0.3s;
  opacity: 0;
  pointer-events: none;
  z-index: 9;
}
ul.service_List .service_Listitem {
  list-style: none;
  width: 22rem;
  border-left: 2px solid transparent;
  transition: all ease-in-out 0.15s;
}

#dropdown_list .service_List:before {
  content: "";
  position: absolute;
  top: 0;
  left: 5rem;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  border: 10px solid transparent;
  border-bottom-color: #fff;
}
#dropdown_list:hover ul.service_List {
  top: 100%;
  opacity: 1;
  pointer-events: all;
}
#dropdown_list:hover i#dropIcondown {
  transform: rotate(-540deg);
}
ul.service_List .service_Listitem a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1.5rem;
  text-decoration: none;
  font-size: 1.4rem;
  color: var(--txtClr);
  transition: all ease-in-out 0.3s;
}
.service_Listitem a img {
  height: 3rem;
}
ul.service_List .service_Listitem:hover a span {
  color: var(--mainClr);
}
ul.service_List .service_Listitem:hover {
  background-color: #f9f9f9;
  border-left: 2px solid var(--mainClr);
}
/* navbar service_dropdown menu ends*/

/* Hero Section */
.hero-landing {
  max-width: 1440px;
  margin: auto;
  padding: 5rem;
  background: url("../images/pageContents/technician-repair.jpg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.hero-container {
  position: relative;
  padding: 6rem 0 8rem;
  z-index: 2;
  color: var(--txtLight);
  width: 70%;
  margin-right: auto;
}
.sub-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--mainClr);
  font-size: 2.4rem;
  font-weight: 500;
}
.sub-title img {
  width: 3rem;
}
.hero-container .hero-title {
  font-size: 6rem;
  margin-block-end: 2rem;
  line-height: 1.135;
}
.hero-text {
  width: 80%;
  font-size: 1.8rem;
}
/* buttons Styling */
.btn-group {
  display: flex;
  align-items: center;
  margin-block-start: 4rem;
  gap: 3rem;
}
a.btn-brand,
button.btn-brand {
  position: relative;
  display: flex;
  overflow: hidden;
  z-index: 2;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  gap: 1rem;
  padding: 2rem 4rem;
  color: var(--txtLight);
  background-color: transparent;
  font-size: 1.4rem;
  font-weight: 500;
  border: 1px solid var(--txtLight);
}
a.btn-main,
button.btn-main {
  position: relative;
  display: flex;
  overflow: hidden;
  z-index: 2;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 4rem;
  color: var(--txtLight);
  background-color: var(--mainClr);
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}
a.btn-brand:before,
a.btn-brand:after,
a.btn-main:before,
a.btn-main:after,
button.btn-brand:before,
button.btn-main:before,
button.btn-brand:after,
button.btn-main:after {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bdClr);
  z-index: -1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  border-radius: 0;
}
a.btn-brand:before,
a.btn-main:before,
button.btn-brand:before,
button.btn-main:before {
  -webkit-transform: scale(0) rotate(-45deg);
  -ms-transform: scale(0) rotate(-45deg);
  transform: scale(0) rotate(-45deg);
}
a.btn-brand:after,
a.btn-main:after,
button.btn-brand:after,
button.btn-main:after {
  -webkit-transform: scale(0) rotate(45deg);
  -ms-transform: scale(0) rotate(45deg);
  transform: scale(0) rotate(45deg);
}
a.btn-brand:hover,
a.btn-main:hover,
button.btn-brand:hover,
button.btn-main:hover {
  color: var(--brand);
  box-shadow: none;
}
a.btn-brand:hover::before,
a.btn-brand:hover:after,
a.btn-main:hover::before,
a.btn-main:hover:after,
button.btn-brand:hover::before,
button.btn-main:hover::before,
button.btn-brand:hover::after,
button.btn-main:hover::after {
  border-radius: 0;
  -webkit-transform: scale(1) rotate(0);
  -ms-transform: scale(1) rotate(0);
  transform: scale(1) rotate(0);
}
/* Hero section ends */

/* facilities section */
.facilities.section {
  padding: 3rem 5rem;
  background-color: var(--mainClr);
  color: var(--txtLight);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
}
.facilityItem {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.facilityItem:not(:first-child) {
  border-left: 1px dotted #fff;
}
.facilityItem .facilityImg {
  display: flex;
  align-items: center;
  width: 6rem;
  height: 6rem;
}
.facilityImg img {
  max-height: 6rem;
}

.facilityItem .facility-textContent {
  font-size: 1.6rem;
  font-weight: bold;
}
/* facilities Section Ends */
/* About-section */
.about-section {
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  padding: 10rem 4rem;
}
.about-company {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.company-media {
  position: relative;
  z-index: 2;
}
.company-media .media {
  display: inline-block;
  position: relative;
  z-index: 2;
  border: 0.8rem solid var(--bdClr);
  width: 40rem;
  height:30rem;
}
.company-media .media .ripple-shape{
  position: absolute;
  bottom: -5rem;
  left: 0rem;
}
.company-media .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company-media .mediaImg2 {
  position: absolute;
  bottom: -2rem;
  right: 5rem;
  border: 0.8rem solid var(--bgClr);
  z-index: 3;
  width: 30rem;
}
.company-media .mediaImg2 img {
  width: 100%;
  object-fit: cover;
}
.company-media .year-counter {
  position: absolute;
  top: 2rem;
  right: 6rem;
  z-index: 4;
  width: 15rem;
  max-height: 25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  writing-mode: vertical-rl;
}
.timeExp {
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
}
.yr-counter_number {
  display: flex;
  align-items: center;
  writing-mode: horizontal-tb;
}
.year-counter_number {
  font-size: 5rem;
  font-weight: 700;
  color: var(--mainClr);
  line-height: 46px;
}
.year-counter_title {
  font-size: 1.6rem;
  font-weight: 600;
}
.media-body{
  font-size: 1.4rem;
}
.repair-process {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-block: 3rem;
}
.repair-process li {
  list-style: none;
  padding: 2rem;
  border: 1px solid var(--brand);
  border-radius: 0.5rem;
}
.repair-process li i {
  color: var(--mainClr);
  margin-right: 1rem;
}
.company-details-text{
  padding-top: 1rem;
}
.punchline-msg {
  padding-top: 1rem;
  font-size: 2.8rem;
}
.details-btn-container {
  width: 35%;
}


/* Ripple effect */
.ripple-shape {
  --border-color: #e83a15;
  --circle-size: 54px;
  --opacity-original: 1;
  --opacity-animate: 0;
  --duration: 10s;
  position: absolute;
  opacity: 60%;
  bottom: -12rem;
  left: 5rem;
  z-index: 3;
}
.ripple-shape {
  --circle-size: 54px;
  height: var(--circle-size);
  width: var(--circle-size);
}
.ripple-shape i {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  color: var(--mainClr);
  font-size: 2.5rem;
}

.ripple-1,
.ripple-2,
.ripple-3,
.ripple-4,
.ripple-5,
.ripple-6 {
  --duration: 6s;
  height: var(--circle-size);
  width: var(--circle-size);
  position: absolute;
  inset: 0;
  background-color: transparent;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  -webkit-animation: rippleShape var(--duration) linear infinite;
  animation: rippleShape var(--duration) linear infinite;
}

.ripple-1 {
  -webkit-animation-delay: 0;
  animation-delay: 0;
}

.ripple-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.ripple-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.ripple-4 {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.ripple-4 {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.ripple-5 {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.ripple-6 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@-webkit-keyframes rippleShape {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: var(--opacity-original, 0.2);
  }

  100% {
    opacity: var(--opacity-animate, 0);
    -webkit-transform: scale(4);
    transform: scale(4);
  }
}

@keyframes rippleShape {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: var(--opacity-original, 0.2);
  }

  100% {
    opacity: var(--opacity-animate, 0);
    -webkit-transform: scale(4);
    transform: scale(4);
  }
}
/* About Us Section ends */
/* repair-services section */
.repair-services {
  position: relative;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  background-color: var(--altClr);
}
.online-repair {
  background-image: url("../images/Logos_Icons/iconBox/repairing.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 14%;
  left: 65%;
  width: 4rem;
  aspect-ratio: 1;
  opacity: 10%;
  z-index: 1;
}
.online-icon {
  position: relative;
}
.online-icon .ripple-shape {
  top: -0.5rem;
  left: -1rem;
}
.serviceList-Container {
  margin-block: 5rem 1rem;
  padding-inline: 1rem;
}
.service-card {
  position: relative;
  margin-block:2rem;
  border-radius: 0.5rem;
  text-align: center;
  z-index: 2;
  transition: all 0.4s ease-in-out;
}
.serviceCardContent {
  box-shadow: 0 0.3rem 1rem 0 rgba(0, 0, 0, 0.05);
  padding: 2rem;
  background-color: var(--bgClr);
}
.service-card_header {
  margin-bottom: 1rem;
}
.cardImgBox {
  overflow: hidden;
  height: 22rem;
  background-color: var(--bdClr);
  border-radius: 1rem 1rem 0 0;
  transition: all ease-in-out 0.3s;
}
.cardImgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease-in-out 0.3s;
}
.service-card:hover .cardImgBox {
  background-color: var(--hvClr);
}
.service-card:hover .cardImgBox img {
  transform: scale(1.05);
}
.card-route-button {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card_icon {
  width: 5rem;
  aspect-ratio: 1;
  background-color: var(--bdClr);
  border-radius: 50%;
  border: 0.5rem solid var(--bgClr);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 46%;
  right: 2rem;
  z-index: 4;
  transition: all 0.4s ease-in-out;
}
.service-card_icon img {
  width: 2.5rem;
}
.service-card .ripple-shape {
  position: absolute;
  top: 40rem;
  left: -2rem;
  --circle-size: 60px;
  --border-color: #f7f7f7;
}
.hdr-Content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: flex-end;
}
.subcontent_header h2 {
  font-size: 2.8rem;
  margin-block: 0.5rem;
}
.exp-btn-container a {
  width: 50%;
  margin-left: auto;
}

/* repair-Services section ends */
/* why choose Us */
.teamWork_sect {
  position: relative;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
}
.tools-technician {
  background-image: url(../images/team/technician-rpr.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 10%;
  right: 5%;
  z-index: -1;
  width: 20rem;
  height: 40rem;
}
.tools-icon {
  background-image: url(../images/Logos_Icons/iconBox/tools-icon.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 20%;
  right: 20%;
  z-index: -1;
  width: 10rem;
  height: 10rem;
  filter: grayscale() opacity(10%);
}
.technician-icon {
  position: relative;
}
.technician-icon .ripple-shape {
  top: -1rem;
  left: -1rem;
}
.content_header {
  width: 60%;
  margin-right: auto;
}
.content_header h2 {
  margin-block: 0.5rem;
  font-size: 2.8rem;
}
.teams_guarantee {
  margin-block: 4rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.teamwork_item {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 2rem;
  background-color: var(--bgClr);
  box-shadow: 0 0.3rem 1rem 0 rgba(0, 0, 0, 0.05);
  padding: 3rem 2rem;
}
.teamwork_item .guaranteeIcon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.guaranteeIcon img {
  width: 4rem;
}
.guarantee_content h4 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
.guarantee_content p {
  font-size: 1.3rem;
}
.teamwork_repair {
  width: 90%;
  margin: 0 auto;
}
.teamwork_repair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0.5rem;
}
/* why choose use section ends */
/* counter section */
.counter-section {
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  background-color: var(--altClr);
}
.counter-card-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.counter-card {
  position: relative;
}
.counter-card-wrap > .counter-card:not(:first-child) {
  border-left: 1px dashed var(--mainClr);
}
.counter-card h2 {
  font-size: 4rem;
  color: var(--mainClr);
}
/* Counter Section ends */
/* Meet Our Team */
.ourTeam{
  position: relative;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
}
.ourTeam .tools-icon{
  right: 5%;
}
.team_Container {
  margin: 5rem 0 0;
  padding: 1rem;
}
.team-member {
  text-align: center;
  background-color: var(--bdClr);
  padding: 0;
  height: 32rem;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.05);
}
.team-member img {
  height: 100%;
  transition: all ease-in-out .2s;
}
.team-member-details {
  display: flex;
  align-items: center;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
}
.share-icon {
  padding: 2rem 1.5rem;
  background-color: var(--mainClr);
  color: var(--txtLight);
  position: relative;
}
.icon-menu {
  position: absolute;
  top: -17rem;
  left: 0.2rem;
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: all ease-in-out .3s;
}
ul.icon-menu li {
  list-style: none;
  padding: 1rem 1.25rem;
  background-color: var(--bgClr);
  border: 0.1rem solid var(--bdClr);
  color: var(--mainClr);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease 0.3s;
}
ul.icon-menu li:hover{
  background-color: var(--mainClr);
  color: var(--txtLight);
  border: 0.1rem solid var(--mainClr);
}
.team-card:hover .team-member img{
transform: scale(0.98);
} 
.team-card:hover .icon-menu{
  transform: scaleY(1)
}
.team-member_info {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
  padding: 1rem;
}
/* Team Section Ends */
/* Faq Section Starts */
.faq{
  background: url("../images/pageContents/why_bg_2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
}
.faq-title{
  font-size: 3.5rem;
  margin-block: 2rem;
}
.faq-content-box{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.faq-btn-container{
  margin-top: 4rem;
  width: 45%;
}
.choice-accordion{
  width: 100%;
  margin: 0;
  padding: 0;
}
.choice-accordion li{
  list-style:none;
  width: 100%;
  margin: 10px 0;
  padding: .5rem 10px;
  border-radius: 0.5rem;
  background: var(--bgClr);
  /* background: #ebecee; */
  border-left: 1px solid var(--hvClr);
  border-right: 1px solid var(--hvClr);
  box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, .15),
            -6px -6px 10px -1px rgba(255, 255, 255, 0.702);
}

.choice-accordion li label{
  display: flex;
  align-items: center;
  padding:5px 10px;
  font-weight: 700;
  cursor: pointer;
}
label i.fa-bars-progress{
  margin-left: auto;
  display: block;
  color: var(--brand-color);
  transition: all ease .5s;
}
label i.fa-ellipsis{
  margin-left: auto;
  color: var(--brand-color);
  display: none;
  transition: all ease .5s;
}
input[type="radio"]{
  display: none;
}
.accordion-content{
  padding: 0 10px;
  line-height: 21px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.accordion-content p{
  padding-top: 2rem;
}

.choice-accordion input[type="radio"]:checked + label + .accordion-content {
  max-height: 400px;
}
.choice-accordion input[type="radio"]:checked + label{
  color: var(--mainClr);
}
.choice-accordion input[type="radio"]:checked + label i.fa-ellipsis{
  display: block;
  color: var(--mainClr);
}

.choice-accordion input[type="radio"]:checked + label i.fa-bars-progress{
  display: none;
}
.choice-accordion input[type="radio"]:checked + label i.active-indicator{
  color: var(--mainClr);
}
/* Faq Section ends */
/* work_process section */
.work-process{
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
}
.work_process_Content{
  text-align: center;
  width: 50%;
  margin: 0 auto;
}
.work_process_Content .sub-title{
  justify-content: center;
}
.work_process_title{
margin-block: 0.5rem;
font-size: 4rem;
}
.work_process_container{
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.process_card{
  text-align: center;
  background-color: var(--bgClr);
  border-radius: 2rem 2rem 0 2rem;
  padding-block-start: 2rem;
  transition: all ease-in-out .3s;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
}
.process_card:hover .process_details{
background-color: #7586c046;
}
.process_imgBox{
  border: 1px solid var(--mainClr);
  padding: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19rem;
  aspect-ratio: 1;
  margin: 0 auto;
  margin-bottom: 2rem;
  position: relative;
}
.process_imgBox img{
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  border-radius: 50%;
}
.process_icon{
  position: absolute;
  left: 0;
  top: 0;
  color: var(--mainClr);
  background-color: var(--bgClr);
  border-radius: 50%;
  padding: 0.8rem;
  border: 7px solid #e83c151f;
}
.process_icon2{
  position: absolute;
  bottom: 0;
  right: 0;
  color: var(--mainClr);
  background-color: var(--bgClr);
  border-radius: 50%;
  padding: 0.8rem;
  border: 7px solid #e83c151f;
  transition: all ease-in-out .3s;
}
.process_icon2 .effect-wave{
  position: relative;
}
.effect-wave .ripple-shape{
visibility: hidden;
left: -0.6rem;
top: -2.4rem;
--circle-size: 2.8rem;
}
.process_card:hover .effect-wave .ripple-shape{
visibility: visible;
}
.process_details{
  background-color: var(--altClr);
  padding: 2rem;
  font-size: 1.4rem;
  transition: all ease 0.3s;
  border-radius: 0 2rem;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
}
.process_title{
  font-size: 1.8rem;
  font-weight: 600;
  padding-block-end: 1rem;
  line-height: 1;
}
/* work process sect ends */
/* completed-projects */
.completed-projects{
  position: relative;
  background: url(../images/pageContents/banner-bg.png) center center no-repeat;
  background-size:cover;
}
.completed-projects .tools-icon{
  z-index: 5;
  right: 5%;
}
.project-container{
  margin-top: 5rem;
  padding: 1rem;
}
.project-container .swiper{
  padding: 2rem;
}
.project-card{
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  position: relative;
  border-radius: 0.9rem;
}
.project-img{ 
  position:relative;
  border-radius: 1rem;
  z-index: 1;
  overflow: hidden;
  height: 32rem;
}
.project-img-gradient{
  background-image: linear-gradient(to bottom, #00000096, transparent);
  z-index:3;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 90%;
  border-radius: 0.5rem;
}
.project-img img{
  width: 100%;
  height: 100%;
  z-index: 2;
  object-fit: cover;
  border-radius: 0.5rem;
  transition: all ease-in-out 0.5s;
}

/* .project-card:hover .project-content-wrap, */
.project-card.swiper-slide-active .project-content-wrap{
  transform: scaleY(1);
} 
.project-card:hover .project-img img, .project-card.swiper-slide-active .project-img img{
  transform: scale(1.09);
}
.project-content-wrap{
  background-image: linear-gradient(to top, var(--hvClr), transparent);
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  position: absolute;
  top: 0;
  left: 0%;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: all ease-in-out 0.5s;
}
.project-content{
  padding: 2rem;
  color: var(--txtLight);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
}
.project-card-icon{
  position: absolute;
  top: 0;
  right: 0;
  margin: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: 5s revolve linear 0.5s infinite;
}

@keyframes revolve {
0%{
transform: rotate(0);
}  
50%{
  transform: rotate(0);
}
100%{
  transform: rotate(-360deg);
}
}
.project-subtitle{
  color: var(--mainClr);
  font-weight: bold;
}
/* completed Projects section Ends */
/* testimonials section */
.testimonials {
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
}
.testimonial-header{
  text-align: center;
  width: 50%;
  margin: 0 auto;
}
.testimonial-header .sub-title{
  justify-content: center;
}
.client-profile{
display: flex;
flex-direction: column;
text-align: center;
gap: 1rem;
}
.client-profile img{
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
span.stars {
  text-align: center;
  color: #fdc91e;
}
.review_Container {
  margin-block: 5rem 0;
  padding: 1rem;
}
.review {
  display: grid;
  grid-template-columns: 12rem repeat(1,1fr);
  gap: 1rem;
  padding:2rem;
  background-color: var(--bgClr);
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  position: relative;
}
.review:after {
  content: '';
  height: 4px;
  width: 64%;
  background-color: var(--mainClr);
  position: absolute;
  bottom: -1px;
  right: -1px;
  -webkit-clip-path: polygon(10px 0%, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(10px 0%, 100% 0, 100% 100%, 0% 100%);
  z-index: 2
}
.reiew-comment{
  position: relative;
  font-size: 1.4rem;
}
.review-loc{
  padding-bottom: 1rem;
}
.repair-type{
  padding-top: 0.5rem;
}
.quote-icon1{
  position: absolute;
  opacity: 30%;
  width: 3.2rem;
  right: 0;
  top: -1rem;
}
.quote-icon2{
  position: absolute;
  opacity: 30%;
  width: 3.2rem;
  right: 0;
  bottom: -1rem;
}
.feedback {
  text-align: center;
  font-size: 1.4rem;
}
.feedback span {
  font-weight: bold;
}
.swiper {
  width: 100%;
  height: 100%;
}
/* testimonials section ends */
/* cta_cta section */
.cta_cta{
  position: relative;
  background: url(../images/pageContents/cta_cta.jpg) center center no-repeat;
  background-size:cover;
}
.cta-content{
  text-align: center;
  width: 60%;
  margin: 0 auto;
}
.cta-content p{
  color: var(--mainClr);
  font-size: 3rem;
  margin-bottom: 3rem;
}
.cta-content h3{
  margin-top: 2rem;
  color: var(--txtLight);
}
h2.sect-lead{
  font-size: 4rem;
  color: var(--txtLight);
}
.cta-btn-group{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-block-start: 5rem;
    gap: 3rem;
}
/* cta_cta section ends */
/* Blogs section start */
.blogs{
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
}
.blog-container{
  margin-top: 5rem;
  padding: 1rem;
}
.blog-card{
    box-shadow: 0px 0px 15px rgba(229,229,229,0.5);
    padding: 3rem;
    background-color: var(--bgClr);
}
.blog-img {
  position: relative;
  height: 21rem;
}
.blog-img img{
  width: 100%;
  height: 100%;
}

.blog-img .blog-date {
  position: absolute;
  top: -4px;
  left: -4px;
  background-color: var(--mainClr);
  color: var(--txtLight);
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 70px;
  width: 70px;
  border: 4px solid var(--txtLight);
  text-transform: uppercase;
  padding: 6px;
  z-index:2;
  cursor: pointer;
}
/* .blog-img .blog-date::first-line {
  display: block;
  font-size: 18px;
  font-weight: 700;
} */

.blog-card .box-title {
  margin-bottom: 22px;
  font-size: 1.6rem;
}

.blog-card .box-title a {
  background-image: -webkit-linear-gradient(right, var(--mainClr), var(--mainClr));
  background-image: linear-gradient(to left, var(--mainClr), var(--mainClr));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 2px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  color: var(--txtClr);
}

.blog-card .box-title a:hover {
  background-size: 100% 2px;
  color: var(--mainClr);
}

.blog-card .blog-img {
  overflow: hidden;
}

.blog-card .blog-img img {
  width: 100%;
  object-fit: cover;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.blog-card .blog-meta {
  margin: 18px 0 18px 0;
  display: flex;
  justify-content: space-between;
}
.blog-card .blog-meta a{
  color: var(--txtClr);
}
.blog-card .blog-meta a i{
  color: var(--mainClr);
}

.blog-card .themeholy-btn {
  padding: 17px 20px;
  min-width: 148px;
}

.blog-card.style2 .blog-img {
  margin: -30px -30px 22px -30px;
}

.blog-card.style2 .blog-img .blog-date {
  top: 26px;
  left: 26px;
}

.blog-card:hover .blog-img img {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}
/* Blog section ends */

/* footer Section */
footer {
  background-color: #161921;
  color: var(--bgClr);
  padding: 0;
}
footer section{
  padding: 0;
}
.company-info-grid{
  display: grid;
  grid-template-columns: 40% repeat(1, 1fr);
}
.widget-schedule .brand-Logo h1.brand{
  font-size: 3rem;
  color: var(--txtLight);
}
.widget-schedule p.text{
  color: #bdbdbd;
}
.schedule-head-title{
  margin-top: 3rem;
  font-size: 2rem;
}
.schedule-timeline{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.schedule-timeline .schedule-info{
  padding-block: 2rem;
  border-bottom: 1px dashed rgba(255,255,255,0.2);
}
.widget-contact{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.5rem;
}
.footer-widget h3.widget_title {
  max-width: 270px;
  font-weight: 500;
  text-transform: capitalize;
  margin: -0.12em 0 2rem 0;
  position: relative;
}

.footer-widget h3.widget_title:before{
  content: "";
  position: absolute;
  left: 0;
  bottom: -1.2rem;
  height: 2px;
  width: 80px;
  background-color:transparent;
  z-index: 5;
  background-image: -webkit-linear-gradient(left, var(--mainClr), transparent);
  background-image: linear-gradient(to right, var(--mainClr), transparent);
}
.menu li{
list-style: none;
margin-bottom: 1.5rem;
}
.menu li a, .widget-contact .info-box a{
  color: var(--txtLight);
  transition: all ease-in-out 0.2s;
}
.menu li a{
position: relative;
padding-left: 2rem;
}
.menu li a::before{
  content: "\f061";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  left: 0;
  top: 2px;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  font-size: 0.9em;
  background-color: transparent;
  border: none;
  color: inherit
}
.menu li a:hover, .widget-contact .info-box a:hover{
  color: var(--mainClr);
  font-weight: bold;
}
.widget-contact .info-box{
  display: flex;
  align-items: center;
  gap: 2rem;
}
.info-box_icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 0.15rem solid var(--bgClr);
  color: var(--txtLight);
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
.info-box_icon i{
  font-size: 1rem;
}
.widget-area2{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  border-top: 0.5px solid #2a2f3c;
  border-left: 0.5px solid #2a2f3c;
}
.newsletter-wrap{
  border-left: 0.5px solid #2a2f3c;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
.newsletter-form{
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter-form button.btn-main{
  padding: 2rem;
}
.newsletter-form input {
  background-color: #2C3240;
  color: var(--txtLight);
  border: 1px solid #2C3240;
  width: 100%;
  display: flex;
  align-items: center;
  padding-inline:2rem;
  height: 5.4rem;
  line-height: 2.5;
  font-size: 1.8rem;
  font-weight: 500;
}
h4.newsletter-title {
  font-size: 3rem;
  line-height: 1.333;
}
.company-info-grid .widget-schedule, .company-info-grid .footer-details > div{
padding: 5rem;
}
.footer-Contents{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 5rem;
  border-top: 0.5px solid #2a2f3c;
}
.footer-Contents p {
  color: #bdbdbd;
  text-align: center;
  font-size: 1.4rem;
}
.footer-Contents p span.copyrgt {
  color: var(--mainClr);
  font-size: 1.6rem;
  font-weight: bold;
  cursor: pointer;
}
/* footer section ends */
