@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
:root {
  --clr-primary-500: #0071B8;
  --clr-primary-500-hover: #005d97;
  --clr-secondary-500: #E62D18;
  --clr-secondary-500-hover: #d1230f;
  --clr-neutral-900: #1D1E24;
  --clr-neutral-800: #1F2937;
  --clr-neutral-700: #374151;
  --clr-neutral-600: #676767;
  --clr-neutral-300: #E7E8E9;
  --clr-neutral-200: #F3F3F3;
  --clr-neutral-100: hsl(0 0% 100%);
  --ff-primary: "Open Sans", serif;
  --ff-secondary: "Open Sans", serif;
  --ff-body: var(--ff-secondary);
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semiBold: 600;
  --fw-bold: 700;
  --fw-extraBold: 800;
  --fw-black: 900;
  --fs-200: 14px;
  --fs-250: 16px;
  --fs-300: 18px;
  --fs-400: 20px;
  --fs-500: 24px;
  --fs-600: 32px;
  --fs-700: 40px;
  --fs-800: 72px;
  --fs-900: 90px;
  --fs-body: var(--fs-300);
  --size-100: 0.25rem;
  --size-200: 0.5rem;
  --size-300: 0.75rem;
  --size-400: 1rem;
  --size-500: 1.5rem;
  --size-600: 2rem;
  --size-700: 3rem;
  --size-800: 4rem;
  --size-900: 5rem;
}

@media (max-width: 768px) {
  :root {
    --fs-800: 55px;
  }
}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

[id] {
  scroll-margin-top: 100px;
}

/* Remove default margin */
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: initial;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: initial;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: initial;
}

@media (min-width: 768px) {
  html.lenis {
    height: auto;
  }
  .lenis.lenis-smooth {
    scroll-behavior: auto;
  }
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  .lenis.lenis-scrolling iframe {
    pointer-events: none;
  }
}
/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture,
svg {
  max-width: 100%;
  display: block;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* general styling */
body {
  font-size: var(--fs-body);
  font-family: var(--ff-body);
  color: var(--clr-neutral-800);
}

p {
  position: relative;
  font-size: 18px;
  line-height: 1.5;
  font-weight: var(--fw-regular);
  color: var(--clr-neutral-800);
  text-align: justify;
}
@media (max-width: 768px) {
  p {
    font-size: 16px;
  }
}

#main {
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
}

a {
  text-decoration: none;
  color: inherit;
}

.hideMobile {
  display: block;
}
@media (max-width: 768px) {
  .hideMobile {
    display: none !important;
  }
}

.hideDesktop {
  display: none;
}
@media (max-width: 768px) {
  .hideDesktop {
    display: block !important;
  }
}

.text-primary-500 {
  color: var(--clr-primary-500);
}

.text-neutral-100 {
  color: var(--clr-neutral-100) !important;
}

.text-neutral-400 {
  color: var(--clr-neutral-400);
}

.text-neutral-600 {
  color: var(--clr-neutral-600);
}

.text-neutral-800 {
  color: var(--clr-neutral-800);
}

.text-neutral-900 {
  color: var(--clr-neutral-900) !important;
}

.bg-primary-200 {
  background-color: var(--clr-primary-200);
}

.bg-primary-300 {
  background-color: var(--clr-primary-300);
}

.bg-primary-400 {
  background-color: var(--clr-primary-400);
}

.bg-neutral-100 {
  background-color: var(--clr-neutral-100);
}

.bg-neutral-200 {
  background-color: var(--clr-neutral-200);
}

.bg-grey-100 {
  background-color: var(--clr-grey-100);
}

.fw-bold {
  font-weight: var(--fw-bold);
}

.fw-semiBold {
  font-weight: var(--fw-semiBold);
}

.fw-medium {
  font-weight: var(--fw-medium);
}

.fw-regular {
  font-weight: var(--fw-regular);
}

.fs-200 {
  font-size: var(--fs-200) !important;
}

.fs-250 {
  font-size: var(--fs-250) !important;
}

.fs-300 {
  font-size: var(--fs-300) !important;
}

.fs-400 {
  font-size: var(--fs-400) !important;
}

.fs-500 {
  font-size: var(--fs-500) !important;
}

.fs-600 {
  font-size: var(--fs-600) !important;
}

.h-100 {
  height: 100vh !important;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-normal {
  text-transform: none !important;
}

.padding-block-900 {
  padding: 100px 0;
}

.padding-block-500 {
  padding: 70px 0;
}

.margin-top-900 {
  margin-top: var(--size-900);
}

.margin-bottom-900 {
  margin-bottom: var(--size-900);
}

.margin-top-max {
  margin-top: 110px;
}

.margin-block-max {
  margin: 110px 0;
}

.margin-bottom-max {
  margin-bottom: 110px;
}

.padding-top-900 {
  padding-top: 100px;
}

.padding-block-max {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .margin-top-max {
    margin-top: 70px;
  }
  .margin-block-max {
    margin: 70px 0;
  }
  .margin-bottom-max {
    margin-bottom: 70px;
  }
  .padding-block-900 {
    padding: 70px 0;
  }
  .margin-top-900 {
    margin-top: 70px;
  }
  .margin-bottom-900 {
    margin-bottom: 70px;
  }
  .padding-top-max {
    padding-top: 70px;
  }
  .padding-block-max {
    padding: 70px 0;
  }
}
.error,
.error p,
label.error {
  font-size: var(--fs-200);
  margin-top: 0;
  color: #ff0000;
}

.btn1 {
  position: relative;
  padding: 15px 50px 15px 30px;
  height: 55px;
  display: flex;
  align-items: center;
  background-color: var(--clr-secondary-500);
  color: var(--clr-neutral-100);
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  border: 0;
}
.btn1::before {
  position: absolute;
  content: "";
  background-color: var(--clr-primary-500);
  right: 0;
  top: 0;
  width: 100%;
  border-radius: 5px;
  height: 100%;
  -webkit-clip-path: polygon(calc(100% - 10px) 0, 100% 0%, 100% 100%, calc(100% - 30px) 100%);
          clip-path: polygon(calc(100% - 10px) 0, 100% 0%, 100% 100%, calc(100% - 30px) 100%);
  transition: all 0.3s;
  z-index: 1;
}
.btn1 span {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  z-index: 2;
}
.btn1:hover::before {
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
}

.btn2 {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-secondary-500);
  padding-bottom: 5px;
}
.btn2::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--clr-secondary-500);
  left: 0;
  bottom: 0;
  transition: all 0.3s;
}
.btn2:hover::before {
  width: 10%;
}

header {
  position: fixed;
  width: 100%;
  z-index: 9;
  top: 0;
  transition: all 0.3s;
}
header .topSec {
  position: relative;
  height: 65px;
  display: flex;
  align-items: center;
}
header .topSec .contact {
  position: relative;
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
}
header .topSec .contact li {
  display: flex;
  gap: 5px;
}
header .topSec .contact li .icon {
  position: relative;
}
header .topSec .contact li span {
  font-size: 600;
  font-size: 14px;
  color: var(--clr-neutral-100);
}
header .topSec .socialWrap {
  position: absolute;
  width: 190px;
  height: 55px;
  background-color: var(--clr-primary-500);
  right: 15px;
  bottom: -7px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
header .topSec .socialWrap .title {
  position: relative;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
header .topSec .socialWrap ul {
  position: relative;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 7px;
}
header .topSec .socialWrap ul li {
  width: 28px;
}
header .mainSec {
  position: relative;
  width: 100%;
  height: 80px;
  background: var(--clr-neutral-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  header .mainSec {
    top: 20px;
  }
}
header .mainSec .btn1 {
  transition: all 0.3s;
  transform-origin: right;
}
header .mainSec .nav-links {
  display: inline-flex;
  margin: 0;
  padding: 0;
}
header .mainSec .nav-links input {
  display: none;
}
header .mainSec .nav-links li {
  list-style: none;
}
header .mainSec .nav-links > li {
  padding: 20px;
}
header .mainSec .nav-links li > a {
  position: relative;
  display: block;
  color: var(--clr-neutral-800);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}
header .mainSec .nav-links li > a::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 2px;
  bottom: -3px;
  background-color: var(--clr-secondary-500);
  transition: all 0.3s ease;
}
header .mainSec .nav-links li.dropdown > a::after {
  content: "";
  width: 12px;
  height: 8px;
  padding-left: 5px;
  vertical-align: 1px;
  background: url("../images/icons/png/arrow-down.png") no-repeat center;
  display: inline-block;
  margin: 0 0 0 6px;
}
header .mainSec .nav-links li:hover a::before, header .mainSec .nav-links li.active a::before {
  width: 100%;
}
header .mainSec .nav-links .mobile-item {
  display: none;
}
header .mainSec .nav-links .drop-menu {
  position: absolute;
  background: var(--clr-neutral-100);
  margin: 0;
  top: 50px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 15px 15px 0px rgba(110, 65, 25, 0.1);
  padding: 12px 10px;
  border-radius: 0 0 8px 8px;
}
header .mainSec .nav-links li:hover .drop-menu,
header .mainSec .nav-links li:hover .mega-box {
  transition: all 0.3s ease;
  top: 60px;
  opacity: 1;
  visibility: visible;
}
header .mainSec .drop-menu li {
  margin: 3px;
}
header .mainSec .drop-menu li a {
  width: 100%;
  width: 250px;
  display: block;
  font-size: 15px;
  text-align: left;
  padding: 8px 12px;
  font-weight: 500;
  border-radius: 0px;
}
header .mainSec .drop-menu li a::after, header .mainSec .drop-menu li a::before {
  display: none;
}
header .mainSec .drop-menu li a:hover {
  background-color: var(--clr-secondary-500);
  color: var(--clr-neutral-100);
}
header .mainSec .handBurger {
  display: none;
}
@media screen and (max-width: 970px) {
  header .mainSec .nav-links {
    display: none !important;
  }
  header .mainSec .handBurger {
    position: relative;
    display: block;
    cursor: pointer;
    width: 30px;
    margin-left: 15px;
  }
}
header.scroll {
  top: -65px;
  background: var(--clr-neutral-100);
}
@media (max-width: 768px) {
  header.scroll {
    top: 0px;
  }
}
header.scroll .mainSec {
  height: 70px;
  padding: 15px 0;
}
@media (max-width: 768px) {
  header.scroll .mainSec {
    top: 0px;
  }
}
header.scroll .logo {
  width: 120px;
}
header.scroll .btn1 {
  transform: scale(0.8) !important;
}
header.scroll .socialWrap {
  bottom: 0;
}

.mobileMenu {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 99;
  padding: 20px;
  background-color: var(--clr-primary-500);
  left: -100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transition: all 0.5s;
}
.mobileMenu .closeButton {
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.mobileMenu.open {
  left: 0;
}
.mobileMenu .menuSection {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow-y: auto;
}
.mobileMenu .menuSection .single {
  position: relative;
  display: block;
  padding: 15px 0;
  color: var(--clr-neutral-100);
  font-size: 1rem;
}
.mobileMenu .menuSection .accordion {
  margin-top: 50px;
}
.mobileMenu .menuSection .accordion .accordion-item {
  background: transparent;
  border: 0;
}
.mobileMenu .menuSection .accordion .accordion-button {
  padding: 15px 0;
  background: transparent;
  color: var(--clr-neutral-100);
  border-bottom: 0;
  box-shadow: none;
}
.mobileMenu .menuSection .accordion .accordion-button::after {
  background-image: url("../images/icons/svg/arrow.svg");
}
.mobileMenu .menuSection .accordion .accordion-body {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
}
.mobileMenu .menuSection .accordion .accordion-body ul {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobileMenu .menuSection .accordion .accordion-body ul li a {
  position: relative;
  display: block;
  text-align: center;
  padding: 5px;
  text-decoration: none;
  font-size: 15px;
  padding: 8px 12px;
  font-weight: 600;
  color: var(--clr-neutral-800);
}
.mobileMenu .menuSection .contact {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  list-style: none;
  margin: 0;
  gap: 10px;
}
.mobileMenu .menuSection .contact a {
  color: #fff;
  display: flex;
  text-decoration: none;
  width: 100%;
  gap: 10px;
  font-size: 16px;
}
.mobileMenu .menuSection .social {
  position: relative;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}
.mobileMenu .menuSection .social a {
  color: var(--clr-neutral-100);
  border-radius: 5px;
}

.popupInquiry .modal-header {
  border-bottom: 0;
  padding-bottom: 0;
}
.popupInquiry .modal-header h4 {
  font-weight: 600;
  font-size: 26px;
  color: var(--clr-primary-500);
}
.popupInquiry p {
  text-align: left;
  font-size: 16px;
  color: var(--clr-neutral-900);
}
.popupInquiry form {
  position: relative;
}
.popupInquiry form input, .popupInquiry form textarea {
  position: relative;
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}
.popupInquiry .success {
  padding: 1em;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #468847;
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
  border-radius: 4px;
}
.popupInquiry .error {
  padding: 1em;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #b94a48;
  background-color: #f2dede;
  border: 1px solid rgba(185, 74, 72, 0.3);
  border-radius: 4px;
}

.banner {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #000000;
}
.banner .whitedWrap {
  position: absolute;
  width: 100%;
  height: 170px;
  bottom: 0;
  right: 0;
  background-color: var(--clr-neutral-100);
  z-index: 5;
  -webkit-clip-path: polygon(100% 0, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(100% 0, 100% 0%, 100% 100%, 0% 100%);
}
.banner .item {
  position: relative;
  width: 100%;
  height: calc(100vh + 100px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .banner .item {
    height: calc(100vh + 200px);
    align-items: flex-start;
  }
}
.banner .item .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.banner .item .boy {
  position: absolute;
  height: calc(100vh - 100px);
  z-index: 2;
  right: 10%;
  bottom: 50px;
  z-index: 3;
}
@media (max-width: 768px) {
  .banner .item .boy {
    height: 300px;
  }
}
.banner .item .details {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  .banner .item .details {
    align-items: center;
  }
}
.banner .item h1 {
  position: relative;
  font-size: 50px;
  color: var(--clr-neutral-100);
  font-weight: 700;
}
@media (max-width: 768px) {
  .banner .item h1 {
    font-size: 35px;
    margin-top: 150px;
    text-align: center;
  }
}
.banner .item p {
  color: var(--clr-neutral-100);
  text-align: left;
}
@media (max-width: 768px) {
  .banner .item p {
    text-align: center;
  }
}
.banner .item .redWrap {
  position: absolute;
  width: 55%;
  height: 350px;
  bottom: 0;
  right: 0;
  background-color: var(--clr-secondary-500);
  z-index: 2;
  -webkit-clip-path: polygon(100% 0, 100% 0%, 100% 100%, 10% 100%);
          clip-path: polygon(100% 0, 100% 0%, 100% 100%, 10% 100%);
}
@media (max-width: 768px) {
  .banner .item .redWrap {
    -webkit-clip-path: polygon(100% 0, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(100% 0, 100% 0%, 100% 100%, 0% 100%);
  }
}

.banner-insidePage {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-insidePage .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: 0;
}
.banner-insidePage h1 {
  position: relative;
  text-align: center;
  font-size: 45px;
  font-weight: 700;
  color: var(--clr-neutral-100);
  padding-top: 100px;
}

.heading1 {
  position: relative;
}
.heading1 h2 {
  color: var(--clr-neutral-900);
  font-weight: 700;
  font-size: 36px;
}
@media (max-width: 768px) {
  .heading1 h2 {
    font-size: 28px;
  }
}
.heading1 h3 {
  font-size: 26px;
  color: var(--clr-secondary-500);
}
@media (max-width: 768px) {
  .heading1 h3 {
    font-size: 20px;
  }
}

.heading2 {
  position: relative;
}
.heading2 h2, .heading2 h3 {
  color: var(--clr-neutral-900);
  font-weight: 700;
  font-size: 28px;
}
@media (max-width: 768px) {
  .heading2 h2, .heading2 h3 {
    font-size: 28px;
  }
}

.floatingPlane {
  position: absolute;
  margin-top: -130px;
  right: 0;
  z-index: 8;
}

.iconBox1 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.iconBox1 .icon {
  width: 70px;
}
.iconBox1 h4 {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-neutral-900);
  margin-top: 15px;
}
.iconBox1 p {
  text-align: left;
}

.iconBox2 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.iconBox2 .icon {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 15px;
  background-color: var(--clr-primary-500);
  display: flex;
  align-items: center;
  justify-content: center;
}
.iconBox2 .icon img {
  width: 40px;
}
.iconBox2 h4 {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-neutral-900);
  margin-top: 15px;
}
.iconBox2 p {
  text-align: center;
  margin: 0;
}

.swiper-pagination {
  position: relative !important;
  margin-top: 30px !important;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background: var(--clr-secondary-500);
}

.swiperNav {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.swiperNav .swiper-button-next img, .swiperNav .swiper-button-prev img {
  min-width: 50px;
}
.swiperNav .swiper-button-prev {
  left: -50px;
}
.swiperNav .swiper-button-next {
  right: -30px;
}

.homeAbout .imgwrapper {
  position: relative;
}
.homeAbout .imgwrapper .speen {
  position: absolute;
  width: 220px;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
}
.homeAbout .imgwrapper .speen img {
  transform: rotate(180deg);
  transition: all 0.9s;
}
.homeAbout .imgwrapper .speen img.aos-animate {
  transform: rotate(0);
}

.serviceHome {
  position: relative;
}
.serviceHome .item {
  position: relative;
  display: flex;
  flex-direction: column;
}
.serviceHome .item .img {
  position: relative;
  width: 100%;
  padding: 0 15px;
}
.serviceHome .item .img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 60%;
  bottom: 0%;
  left: 0;
  background-color: var(--clr-neutral-200);
  border-radius: 15px 15px 0 0;
}
.serviceHome .item .img img {
  position: relative;
  border-radius: 15px;
  width: 100%;
}
.serviceHome .item .details {
  position: relative;
  width: 100%;
  min-height: 236px;
  padding: 40px 45px 30px;
  background-color: var(--clr-neutral-200);
  border-radius: 0 0 15px 15px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .serviceHome .item .details {
    padding: 30px 35px 20px;
  }
}
.serviceHome .item .details .icon {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 15px;
  background-color: var(--clr-primary-500);
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
}
.serviceHome .item .details .icon img {
  width: 40px;
}
@media (max-width: 768px) {
  .serviceHome .item .details .icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    top: -30px;
  }
  .serviceHome .item .details .icon img {
    width: 30px;
  }
}
.serviceHome .item .details h4 {
  position: relative;
  color: var(--clr-neutral-900);
  font-size: 28px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .serviceHome .item .details h4 {
    font-size: 22px;
  }
}
.serviceHome .item .details p {
  text-align: left;
}
.serviceHome .item .details a {
  margin-top: auto;
}

.benifitsHome {
  position: relative;
  background: url("../images/bg/bg1.jpg");
  background-position: center center;
  background-size: cover;
}
.benifitsHome .heading1 h2 {
  color: var(--clr-neutral-100);
}
.benifitsHome .iconBox2 h4 {
  color: var(--clr-neutral-100);
}
.benifitsHome .iconBox2 p {
  color: var(--clr-neutral-300);
}

.supportBox {
  position: relative;
}
.supportBox::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  background-color: var(--clr-neutral-200);
}
.supportBox .wrapper {
  position: relative;
  width: 100%;
  min-height: 400px;
  background: url("../images/bg/bg2.jpg");
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 70px;
}
.supportBox .wrapper::before {
  position: absolute;
  content: "";
  background-color: var(--clr-secondary-500);
  right: 0;
  top: 0;
  width: 100%;
  border-radius: 5px;
  height: 100%;
  -webkit-clip-path: polygon(calc(100% - 240px) 0, 100% 0%, 100% 100%, calc(100% - 560px) 100%);
          clip-path: polygon(calc(100% - 240px) 0, 100% 0%, 100% 100%, calc(100% - 560px) 100%);
  transition: all 0.3s;
  z-index: 1;
}
@media (max-width: 768px) {
  .supportBox .wrapper::before {
    -webkit-clip-path: polygon(0 84%, 100% 65%, 100% 100%, 0% 100%);
            clip-path: polygon(0 84%, 100% 65%, 100% 100%, 0% 100%);
  }
}
.supportBox .wrapper .heading1 h2 {
  color: var(--clr-neutral-100);
}
.supportBox .wrapper .img {
  position: absolute;
  width: 550px;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
@media (max-width: 768px) {
  .supportBox .wrapper .img {
    position: relative;
    width: 100%;
    right: 0;
    top: auto;
    transform: translateY(0%);
  }
}

.visionMission {
  position: relative;
  background-image: url("../images/bg/bg4.jpg");
  background-position: center center;
  background-size: cover;
}
.visionMission .details {
  padding: 0 40px;
}
.visionMission .details h2 {
  position: relative;
  color: var(--clr-neutral-100);
  font-size: 32px;
  font-weight: 600;
}
.visionMission .details p {
  color: var(--clr-neutral-100);
  font-size: 18px;
}

.coreValues {
  position: relative;
  background: var(--clr-neutral-200);
  background-position: center center;
  background-size: cover;
}
.coreValues .heading1 h2 {
  color: var(--clr-neutral-900);
}
.coreValues .iconBox2 .icon {
  background-color: var(--clr-secondary-500);
}

.sideBarMenu {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 10px;
}
.sideBarMenu li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 15px;
  width: 100%;
  background-color: var(--clr-neutral-200);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
  color: var(--clr-neutral-900);
  transition: all 0.3s;
}
.sideBarMenu li a span {
  z-index: 1;
}
.sideBarMenu li a img {
  z-index: 1;
}
.sideBarMenu li a::before {
  position: absolute;
  content: "";
  width: 120%;
  height: 100%;
  left: -130%;
  top: 0;
  background-color: var(--clr-secondary-500);
  transform: skew(-20deg);
  transition: all 0.5s;
}
.sideBarMenu li a:hover, .sideBarMenu li a.active {
  color: var(--clr-neutral-100);
}
.sideBarMenu li a:hover::before, .sideBarMenu li a.active::before {
  left: -10%;
}

.keyFeature {
  position: relative;
  padding: 35px;
  background-color: var(--clr-neutral-200);
  border-radius: 20px;
}
.keyFeature ul {
  position: relative;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.keyFeature ul li {
  position: relative;
  padding-left: 25px;
}
.keyFeature ul li::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: url("../images/icons/svg/key-arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-top: 5px;
  left: 0;
}
.keyFeature ul li p {
  margin: 0;
}

.sideContact {
  position: relative;
  padding: 40px;
  background-color: var(--clr-primary-500);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sideContact h4 {
  position: relative;
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  color: var(--clr-neutral-100);
}
.sideContact a {
  position: relative;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--clr-neutral-100);
}

.faqs {
  position: relative;
}
.faqs .accordion-item {
  position: relative;
  margin-bottom: 20px;
  border: none;
}
.faqs .accordion-item .accordion-button {
  background-color: var(--clr-neutral-200);
  border: 0;
  border-radius: 10px !important;
  box-shadow: none;
  font-weight: 600;
}
.faqs .accordion-item .accordion-button span {
  color: var(--clr-neutral-900);
  z-index: 3;
}
.faqs .accordion-item .accordion-button::before {
  position: absolute;
  content: "";
  background-color: var(--clr-secondary-500);
  right: 0;
  top: 0;
  width: 100%;
  border-radius: 5px;
  height: 100%;
  -webkit-clip-path: polygon(calc(100% - 40px) 0, 100% 0%, 100% 100%, calc(100% - 60px) 100%);
          clip-path: polygon(calc(100% - 40px) 0, 100% 0%, 100% 100%, calc(100% - 60px) 100%);
  transition: all 0.3s;
  z-index: 1;
}
.faqs .accordion-item .accordion-button::after {
  background-image: url("../images/icons/svg/arrow-down-white.svg") !important;
  z-index: 2;
}
.faqs .accordion-item .accordion-button:not(.collapsed) span {
  color: var(--clr-neutral-100);
}
.faqs .accordion-item .accordion-button:not(.collapsed)::before {
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
}
.faqs .accordion-item p {
  font-size: 16px;
  line-height: 180%;
}

.contact ul {
  position: relative;
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 20px;
  background-color: var(--clr-secondary-500);
  border-radius: 15px;
  gap: 10px;
  height: 100%;
}
.contact ul li {
  position: relative;
  display: flex;
  gap: 10px;
}
.contact ul li .icon {
  min-width: 28px;
  margin-top: 0px;
}
.contact ul li .icon img {
  width: 100%;
}
.contact ul li p {
  color: var(--clr-neutral-100);
  text-align: left;
  margin: 0;
  font-size: 16px;
}
.contact .businessHrs {
  position: relative;
  padding: 20px;
  border-radius: 15px;
  background-color: var(--clr-primary-500);
  height: 100%;
}
.contact .businessHrs h3 {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-neutral-900);
}
.contact .businessHrs p {
  color: var(--clr-neutral-100);
  font-size: 14px;
  text-align: left;
}

.testimonials {
  position: relative;
  background-image: url("../images/bg/testimonials.png");
  background-position: center center;
  background-size: cover;
}
.testimonials .icon {
  position: relative;
  margin: auto;
  margin-left: 50%;
  transform: translateX(-50%);
}
.testimonials .item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials .item p {
  text-align: center;
  font-size: 23px;
  color: var(--clr-neutral-900);
}
.testimonials .item .details {
  position: relative;
  margin-top: 20px;
}
.testimonials .item h2 {
  position: relative;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--clr-neutral-900);
}
.testimonials .item h3 {
  position: relative;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-primary-500);
}

footer {
  position: relative;
  width: 100%;
  background-color: #0e0f14;
  background-image: url("../images/bg/bg3.jpg");
  background-position: center center;
  background-size: cover;
}
footer h6 {
  position: relative;
  font-size: 20px;
  color: var(--clr-neutral-100);
  font-weight: 600;
  text-transform: uppercase;
}
footer h6::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--clr-primary-500);
  bottom: -10px;
  left: 0;
}
footer .links {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 25px 0 0 0;
  gap: 10px;
  -moz-columns: 2;
       columns: 2;
}
footer .links li {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
}
footer .links li::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 1px;
  background-color: var(--clr-neutral-100);
  bottom: -3px;
  left: 0;
  transition: all 0.3s;
}
footer .links li a {
  position: relative;
  display: block;
  color: var(--clr-neutral-100);
  font-size: 16px;
}
footer .links li:hover::before {
  width: 100%;
}
footer .contact {
  position: relative;
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 25px 0 0 0;
  gap: 10px;
}
footer .contact li {
  position: relative;
  display: flex;
  gap: 10px;
}
footer .contact li .icon {
  min-width: 22px;
  margin-top: 2px;
}
footer .contact li .icon img {
  width: 100%;
}
footer .contact li p {
  color: var(--clr-neutral-100);
  text-align: left;
  font-size: 17px;
  margin: 0;
}
footer .social {
  position: relative;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
  gap: 7px;
}
footer .social li {
  width: 28px;
}
footer .copyRight {
  position: relative;
  margin-top: 60px;
  padding: 30px 20px;
  border-top: 1px solid var(--clr-neutral-600);
  font-size: 14px;
  color: var(--clr-neutral-100);
  text-align: center;
}/*# sourceMappingURL=style.css.map */