* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

::selection {
  background-color: var(--main-color);
  color: #fff;
}

:root {
  --main-color: #00a8b5;
  --white: #ffffff;
  --lightwhite: #cdcdcd;
  --bg1: #040404;
  --bg2: #191919;
  --border: rgba(159, 159, 159, 0.3);
}

html {
  overflow-x: hidden;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden;
  color: var(--white);
  background-color: var(--bg1);
}

a {
  text-decoration: none;
}

a:focus {
  box-shadow: none;
}

ul {
  padding: 0;
  margin-bottom: 0;
}

ul li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}

/* font size */

h1 {
  font-weight: 500;
  font-size: 150px;
  line-height: 1.2;
}

h2 {
  font-weight: 500;
  font-size: 52px;
  line-height: 1.3;
}

h3 {
  font-weight: 500;
  font-size: 38px;
  line-height: 1.3;
}

h4 {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
}

h5 {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
}
h6 {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
}
p {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--lightwhite);
}
.fs-14 {
  font-size: 14px;
  line-height: 1.5;
}
/* font size */
.transition-3 {
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

.text-underline {
  text-decoration: underline;
}
.light-white {
  color: var(--lightwhite);
}
.primary {
  color: var(--main-color);
}

.border {
  border: 1px solid var(--border);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.fs-section {
  padding: 100px 0;
}
body.overflowY {
  overflow-y: hidden;
}

.btn-fill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  border: 0;
  border-radius: 100px;
  background-color: var(--main-color);
  color: #ffffff;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.btn-fill p {
  font-weight: 500;
}
.btn-fill:hover {
  background-color: #008d97;
}
.btn-fill svg {
  width: 24px;
  height: 24px;
  transition: all 0.5s linear;
}
.btn-fill:hover svg {
  transform: rotate(41deg);
}

/* <==========header section start===========> */
.sticky-header {
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
}
.header-wrapper {
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
  position: relative;
}

.header {
  /* position: fixed;
  top: 0;
  left: 0; */
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 15px 12px;
  transition: all 0.35s ease;
  padding: 20px;
}

.header.on-scroll {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-medium);
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  column-gap: 1.25rem;
  padding: 20px 35px;
  border: 1px solid var(--border);
  border-radius: 100px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background-color: var(--bg2);
}

.brand {
  width: auto;
  max-width: 150px;
  height: 80px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu {
  position: fixed;
  top: 72px;
  right: -100%;
  width: 100%;
  height: 100%;
  padding: 3rem 0;
  overflow: hidden;
  background-color: #000;
  box-shadow: var(--shadow-medium);
  z-index: 5;
}

.menu.is-active {
  top: 85px;
  right: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 0.5rem;
}

.menu-link {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  transition: all 0.3s linear;
  position: relative;
}
.menu-link.active {
  color: var(--main-color);
}
.menu-link:hover {
  color: var(--main-color);
}
.burger {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  order: 1;
  z-index: 10;
  width: 1.6rem;
  height: 1.15rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  margin-left: auto;
  transform: rotate(0deg);
  transition: 0.35s ease;
}

.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 1.5px;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 1rem;
  transform: rotate(0deg);
  background-color: #fff;
  transition: 0.25s ease-in-out;
}

.burger-line:nth-child(1) {
  top: 0px;
}

.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}

.burger-line:nth-child(3) {
  top: 1rem;
}

.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}

.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}

.contact-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 30px 8px 8px;
  background-color: var(--bg1);
  box-shadow: -2px -3px 5px rgba(0, 168, 181, 0.6);
  border-radius: 50px;
  transition: all 0.5s linear;
  cursor: pointer;
}
.contact-num:hover {
  box-shadow: 2px 3px 5px rgba(0, 168, 181, 0.6);
}
.contact-num .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: grid;
  place-items: center;
  gap: 10px;
  background-color: var(--main-color);
}
.contact-num .icon-box svg {
  width: 26px;
  height: 26px;
}

/* banner section start  */

.home-banner {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(0, 168, 181, 0) 0%,
    rgba(0, 168, 181, 0.1) 100%
  );
  color: #fff;
  overflow: hidden;
}
.common-img-box {
  opacity: 0.9;
  position: relative;
  overflow: hidden;
}
.common-img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
  transition: all 0.5s linear;
  z-index: 2;
}
.common-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s linear;
}
.common-img-box:hover img {
  transform: scale(1.05);
}

.home-banner .img-box {
  max-width: 518px;
  height: 200px;
  border-radius: 200px;
}
.home-banner .row1 span.title,
.home-banner .row2 span.title {
  font-size: 150px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
}

.home-banner .round-box {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -25%);
  width: 80%;
  max-width: 1550px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.05);
  z-index: -1;
}
.home-banner .round-box .inner-round-box {
  width: 80%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.05);
}
.home-banner .round-box .shadow-box {
  width: 60%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 168, 181, 0.3);
  filter: blur(75px);
}

/* home about section start */
.home-about .widget-box {
  width: 160px;
  height: 160px;
  padding: 10px 10px;
  border-radius: 20px;
  background-color: var(--main-color);
  aspect-ratio: 1/1;
  border-radius: 100%;
  display: inline-flex;
}
.home-about .curved-text {
  position: relative;
  width: 160px;
  height: 160px;
}

.home-about .curved-text h6 {
  position: absolute;
  transform-origin: 0 0;
}
.widget-box .icon-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  overflow: hidden;
}
.widget-box .icon-box svg {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.home-about .main-text-curve img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: spin 20s linear infinite;
}
/* service section start */
.home-heading {
  margin-bottom: 50px;
}
.home-heading h6 {
  color: var(--main-color);
}
.service-box {
  height: 100%;
  background-color: transparent;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  overflow: hidden;
  transition: all 0.3s linear;
}
.service-box:hover {
  transform: translateY(-15px);
}
.service-box::before {
  content: "";
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: rgba(0, 168, 181, 0.2);
  filter: blur(75px);
  border-radius: 24px;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all 0.3s linear;
}
.service-box:hover::before {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.service-box .icon-box {
  width: 34px;
  height: 34px;
  overflow: hidden;
}
.service-box .icon-box svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service-box .card-body {
  background-color: var(--bg2);
  border-radius: 24px;
  padding: 16px 20px;
  margin-top: 60px;
}

.service-box .card-body h5 {
  color: var(--white);
}
.service-box .card-body p {
  color: var(--lightwhite);
}
.service .round-bg {
  width: 912px;
  height: 912px;
  border-radius: 100%;
  position: absolute;
  top: -20%;
  left: -500px;
  border: 100px solid rgba(0, 168, 181, 0.15);
  z-index: -1;
  filter: blur(35px);
}

.choose {
  overflow-x: hidden;
}
.choose .round-bg {
  width: 912px;
  height: 912px;
  border-radius: 100%;
  position: absolute;
  bottom: -0%;
  right: -500px;
  border: 100px solid rgba(0, 168, 181, 0.15);
  z-index: -1;
  filter: blur(35px);
}

/* choose section start */
.choose-inner {
  gap: 110px;
}
.choose-inner .left {
  width: 50%;
  height: fit-content;
  position: sticky;
  top: 160px;
}
.choose-inner .right {
  width: 50%;
}
.choose-inner .left .text-box {
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 24px;
  background-color: var(--bg2);
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  align-items: end;
}
.choose-inner .left .text-box h4 {
  margin-top: auto;
}
.choose-inner .img-box1 {
  width: 100%;
  height: 380px;
  border-radius: 24px;
}
.choose-inner .img-box2 {
  width: 100%;
  height: 390px;
  border-radius: 24px;
}
.choose-inner .right .icon-box {
  width: 30px;
  height: 30px;
  overflow: hidden;
  margin-bottom: 15px;
}
.choose-inner .right .icon-box svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.choose-box-main {
  display: flex;
}

.project-box {
  background-color: transparent;
  border: 0;
}

.project-box .img-box1 {
  height: 670px;
  border-radius: 24px;
}
.project-box .img-box2 {
  height: 600px;
  border-radius: 24px;
}
.project-content > div:nth-child(even) {
  padding-top: 180px;
}
.home-project .btn-fill {
  margin-top: 60px;
}
.shaddow-box {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  height: 550px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: rgba(0, 168, 181, 0.22);
  filter: blur(90px);
  border-radius: 24px;

  z-index: -1;
  transition: all 0.3s linear;
}

.home-project {
  overflow: hidden;
}

.marquee {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 200px;
  overflow-x: hidden;
}

.track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 10s linear infinite;
  display: flex;
  align-items: center;
  gap: 24px;
}
.marquee span,
.slide-text {
  font-size: 80px;
  line-height: 1.2;
}
.marquee span.special {
  transform: translateY(20px);
}

.slide-text {
  width: 100%;
  background-color: #ccff00;
  padding: 1.2em 0;
  display: flex;
  flex-direction: row;
  white-space: nowrap; /* important */
  border-top: 3px solid #23271b;
  border-bottom: 3px solid #23271b;
}

/* testimonials sectio start */
.main-img-box {
  display: flex;
  align-items: center;
  gap: -15px;
}
.testimonials-left .main-img-box .img-box {
  width: 55px;
  height: 55px;
  border-radius: 100%;
  overflow: hidden;
}

.testimonials-left .img-box2 {
  transform: translateX(-15px);
}
.testimonials-left .img-box3 {
  transform: translateX(-30px);
}
.testimonials-left {
  background-color: var(--bg2);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.testimonials-left .top {
  display: flex;
  align-items: center;
  padding: 30px;
}
.testimonials-left .border {
  border-bottom: 0.5px solid var(--border) !important;
  opacity: 0.5;
}
.testimonials-left .bottom {
  padding: 15px 30px 30px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-wrapper {
  transition-timing-function: linear !important;
}
.swiper-slide {
  background-color: transparent;
}
.reviews-swiper-back {
  background: linear-gradient(180deg, rgba(0, 168, 181, 0) 25%, #00a8b5 100%);
  padding: 1px;
  border-radius: 15px;
  transition: all 0.3s linear;
  position: relative;
  overflow: hidden;
}
/* .reviews-box:hover {
 background: linear-gradient(360deg, rgba(0, 168, 181, 0) 25%, #00a8b5 100%);
} */
/* .reviews-swiper-back::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  background: linear-gradient(0deg, rgba(0,168,181,0) 25%, #00a8b5 100%);
  z-index: -1;
  animation: spin 10s linear infinite;
} */
.reviews-box {
  position: relative;
}
.reviews-box .bg-icon {
  position: absolute;
  top: 60px;
  right: 90px;
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.reviews-box .bg-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.reviews-swiper {
  background-color: var(--bg1);
  border-radius: 15px;
  border: 1px solid var(--border);
}
.review-box-inner {
  padding: 60px;
  text-align: start;
}
.reviews-box p {
  margin-top: 24px;
  margin-bottom: 15px;
}
.swiper-button-next {
  right: -10px;
  left: auto;
}
.swiper-button-prev {
  left: -10px;
  right: auto;
}
.swiper-button-prev,
.swiper-button-next {
  background-color: var(--main-color);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: grid;
  place-items: center;
  transition: all 0.3s linear;
  opacity: 0;
  visibility: hidden;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  color: #fff;
  font-size: 20px;
}

.reviews-swiper:hover .swiper-button-prev,
.reviews-swiper:hover .swiper-button-next {
  opacity: 1;
  visibility: visible;
}
.reviews-swiper:hover .swiper-button-next {
  right: 0;
  left: auto;
}
.reviews-swiper:hover .swiper-button-prev {
  left: 0;
  right: auto;
}
.swiper-pagination-bullet {
  background-color: #fff;
}
.swiper-pagination-bullet-active {
  background-color: var(--main-color);
}

/* footer section start */
footer {
  background-color: #0a0a0a;
  overflow: hidden;
  padding-bottom: 40px;
}
footer::before {
  content: "";
  position: absolute;
  top: -650px;
  right: -600px;
  width: 1080px;
  height: 1080px;
  border-radius: 100%;
  border: 100px solid rgba(205, 205, 205, 0.15);
}
footer .logo{
  width: auto;
  height: 150px;
  overflow: hidden;
  display: inline-block;
}
footer .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-row1 h4 {
  font-weight: 400;
}
.divider {
  width: 100%;
  height: 1px;
  background-color: var(--border);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer-row2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-row2 .row-divider {
  height: 70px;
  width: 1px;
  background-color: var(--border);
}
footer .left,
footer .right {
  width: 40%;
}
footer .form-group .form-control {
  /* width: 536px; */
  padding-left: 0;
  color: #fff;
  border: 0;
  background-color: transparent;
  padding-bottom: 20px;
}
footer .form-group .form-control:focus {
  box-shadow: none;
}
footer .form-group .form-control::placeholder {
  font-size: 20px;
  line-height: 1.5;
  color: var(--lightwhite);
}
footer .form-group {
  position: relative;
  border-bottom: 1px solid var(--border);
}
footer .form-group button {
  position: absolute;
  right: 0;
  top: 0;
  background-color: transparent;
  outline: 0;
  border: 0 solid #000;
}
footer .menu-link p {
  transition: all 0.3s linear;
}
footer .menu-link:hover p {
  color: var(--main-color);
}

footer .menu-inner {
  gap: 24px !important;
}

.marqueeSwiper .swiper-slide {
  width: fit-content !important;
}
.marqueeSwiper .swiper-slide {
  font-size: 80px;
  font-weight: 900;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  text-transform: capitalize;
  text-align: center;
}

.principels .h-40vh {
  height: 20vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 50px;
}
.pre-box {
  min-width: auto;
}
.principel-list {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.pre-box h1 {
 white-space: nowrap;
 color: rgba(205, 205, 205, 0.20);
}
.principels {
  overflow-x: hidden;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* <========== about page start ==========> */
.main-heading {
  padding-bottom: 0;
}
.main-heading h2 {
  font-size: 110px;
  margin-bottom: 8px;
}
.main-heading h6 {
  font-weight: 400;
  color: var(--lightwhite);
}
.aboutus {
  overflow: hidden;
}
.aboutus .round-bg {
  width: 912px;
  height: 912px;
  border-radius: 100%;
  position: absolute;
  bottom: -0%;
  right: -500px;
  border: 100px solid rgba(0, 168, 181, 0.15);
  z-index: -1;
  filter: blur(35px);
}

.aboutus-left .img-box {
  height: 630px;
  border-radius: 24px;
}
.aboutus-right .img-box {
  border-radius: 24px;
}
.aboutus .home-heading {
  margin-bottom: 80px;
}

/* process section start */
.our-process .home-heading.text-center,
.team .home-heading.text-center {
  margin-left: auto;
  margin-right: auto;
  max-width: 540px;
}
.process-box {
  height: 100%;
  background-color: transparent;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s linear;
  color: var(--white);
  padding-right: 30px;
  transition: all 0.3s linear;
}
.process-box:hover {
  background-color: var(--bg2);
  transform: translateY(-15px);
}
.process-box .card-body {
  padding: 30px;
  padding-right: 0;
}
.process-box .img-box {
  width: 100%;
  height: 223px;
  border-top-right-radius: 24px;
}

/* parallax section start */
.parralax-box {
  min-height: 100vh;
  background-image: url("../img/9.png"); /* 🔄 put your image URL */
  background-attachment: fixed; /* <== magic for parallax */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  opacity: 0.9;
}
.parallax-section .container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
}
.parallax-section .container .content {
  width: 530px;
  max-width: 100%;
  background-color: var(--bg1);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  overflow: hidden;
}
.parallax-section .container .top {
  background-color: var(--bg2);
  padding: 40px;
}
.parallax-section .container .bottom {
  padding: 30px;
}
.parallax-section .container .bottom p {
  color: var(--main-color);
}
.parallax-section .container .bottom svg {
  transition: all 0.3s linear;
}
.parallax-section .container .bottom a:hover svg {
  transform: rotate(41deg);
}
/* team section start */
.team-box .img-box {
  height: 390px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background-color: var(--bg2);
}

.team-box {
  transition: all 0.3s linear;
}
.team-box:hover {
  transform: translateY(-15px);
}
.accordion-item:not(:last-child) {
  margin-bottom: 24px;
}
.accordion-item {
  padding: 20px 30px;
  border-radius: 24px !important;
  overflow: hidden;
  background-color: var(--bg2);
  border: 1px solid var(--border);
}
.accordion-button:not(.collapsed),
.accordion-button {
  background-color: transparent;
  box-shadow: none !important;
  padding: 0;
}
.accordion-item:first-of-type > .accordion-header .accordion-button,
.accordion-button {
  color: var(--white);
}
.accordion-button::after {
  background-image: url('data:image/svg+xml,%3Csvg width="16" height="17" viewBox="0 0 16 17" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M1 8.5H8M8 8.5H15M8 8.5V1.5M8 8.5V15.5" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E');
  background-repeat: no-repeat;
}

.accordion-button:not(.collapsed) {
  color: #fff;
}
.accordion-button:not(.collapsed)::after {
  background-image: url('data:image/svg+xml,%3Csvg width="14" height="3" viewBox="0 0 14 3" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M13 1.5H1" stroke="white" stroke-width="1.5" stroke-linecap="round"/%3E%3C/svg%3E');
}
.accordion-body {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.team .round-bg {
  width: 912px;
  height: 912px;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: -500px;
  border: 100px solid rgba(0, 168, 181, 0.15);
  z-index: -1;
  filter: blur(35px);
}

/* <========== service page start ===========> */
.service .round-circle,
.home-project .round-circle {
  width: 500px;
  height: 500px;
  border-radius: 100%;
  position: absolute;
  bottom: 5%;
  left: -300px;
  background-color: rgba(0, 168, 181, 0.15);
  z-index: -1;
  filter: blur(45px);
}
.service-page .round-circle {
  width: 500px;
  height: 500px;
  border-radius: 100%;
  position: absolute;
  bottom: -5%;
  right: -300px;
  background-color: rgba(0, 168, 181, 0.15);
  z-index: -1;
  filter: blur(45px);
}

/* contact page start */
.contact-img .img-box {
  height: 680px;
  border-radius: 24px;
}
.social-box {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: grid;
  place-items: center;
  transition: all 0.3s linear;
  background-color: var(--bg2);
}
.social-box:hover {
  background-color: var(--main-color);
}
.contactus h6 {
  margin-bottom: 10px;
}
.contactus h2,
.contactus-row {
  margin-bottom: 80px;
}
.contactus .divider + h2 {
  margin-top: 60px;
  margin-bottom: 0;
}
.contactus .divider + h2 a {
  text-decoration: underline;
  color: #fff;
  transition: all 0.3s linear;
}
.contactus .divider + h2 a:hover {
  color: var(--lightwhite);
}
