/*--------- Abstracts variable ---------- */
:root {
  --primary: #040404;
  --text-color: #FFFFFF;
  --text-color-2: #E1E1E1;
  --background-color: #222222;
  --hs-color-1: #5776ff;
  --hs-color-2: #a1b2ff;
  --hs-gradient-color: linear-gradient(90deg, #5776ff 0%, #a1b2ff 100%);
  --hs-color-4: #666669;
  --hs-color-5: #29292a;
  --font-1: "Syne", sans-serif;
  --font-2: "Inter", sans-serif;
  --size: 20px;
}

body {
  font-family: var(--font-1);
  color: var(--text-color);
  background-color: var(--primary);
}

h1 {
  font-size: 72px;
  font-weight: 600;
}

h2 {
  font-size: 48px;
  font-weight: 600;
}

h3 {
  font-size: 31px;
  font-weight: 500;
}

h4 {
  font-size: 28px;
  font-weight: 500;
}

h5 {
  font-size: 24px;
  font-weight: 500;
}

h6 {
  font-size: 20px;
  font-weight: 500;
}

button,
a {
  font-size: 18px;
  font-family: var(--font-2);
}

p {
  font-size: 16px;
  font-weight: 300;
  font-family: var(--font-2);
  color: var(--text-color-2);
  letter-spacing: 0.5px;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  transform: scale(1);
  vertical-align: middle;
}

.hs-title-box {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  z-index: 2;
}
.hs-title-box .hs-color-text {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 5px;
}

.hs-spacing {
  padding-top: 80px;
  padding-bottom: 80px;
}

.hs-color-text {
  background: var(--hs-gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hs-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  font-family: var(--font-1);
  padding: 16px 32px;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.hs-btn:hover {
  border-color: var(--hs-color-1);
  color: var(--text-color);
}
.hs-btn:hover span {
  animation: MoveScaleRightInitial 0.3s forwards, MoveScaleRightEnd 0.3s forwards 0.3s;
}

.hs-btn-fill {
  background: var(--hs-gradient-color);
  color: var(--text-color);
}

@keyframes MoveScaleRightInitial {
  to {
    transform: translate3d(105%, 0, 0) scale3d(2, 1, 1);
    opacity: 0;
  }
}
@keyframes MoveScaleRightEnd {
  from {
    transform: translate3d(-100%, 0, 0) scale3d(2, 1, 1);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
textarea,
input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color] {
  font-family: var(--font-2);
  border: 1px solid var(--hs-color-4);
  outline: 0;
  box-shadow: none;
  font-size: 14px;
  line-height: 20px;
  border-radius: 20px;
  padding: 14px 20px;
  width: 100%;
  background: var(--white);
  color: var(--rgba-dark-2);
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}

input:focus, textarea:focus, select:focus {
  box-shadow: none;
  border: solid 1px var(--hs-color-2);
  background-color: var(--background-color);
  color: var(--hs-color-2);
}

.right-shape {
  position: absolute;
  top: 0;
  right: 115px;
  width: 300px;
  height: 300px;
  background: #4b6bff;
  border-radius: 50%;
  filter: blur(150px);
  z-index: -1;
  opacity: 0.5;
}

.left-shape {
  position: absolute;
  bottom: -90px;
  left: 115px;
  width: 300px;
  height: 300px;
  background: #4b6bff;
  border-radius: 50%;
  filter: blur(150px);
  z-index: 0;
  opacity: 0.5;
}

.gradient-shape-top, .gradient-shape-bottom {
  position: absolute;
  width: 100%;
  height: 300px;
  z-index: 0;
}

.gradient-shape-top {
  top: -120px;
  background: linear-gradient(180deg, rgba(4, 4, 4, 0) 0%, rgb(4, 4, 4) 50%, rgba(4, 4, 4, 0) 100%);
}

.gradient-shape-bottom {
  bottom: -140px;
  background: linear-gradient(180deg, rgba(4, 4, 4, 0) 0%, rgb(4, 4, 4) 50%, rgba(4, 4, 4, 0) 100%);
}

.hs-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1500;
}
.hs-header.sticky {
  background-color: rgba(4, 4, 4, 0.568627451);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.hs-mobile-toggle {
  display: none;
}

.hs-menu-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hs-menu-box .hs-left {
  display: flex;
  align-items: center;
  gap: 35px;
}

.hs-logo-box img {
  width: 220px;
}

.hs-menu-list {
  display: flex;
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.hs-menu-list .hs-menu-item {
  padding: 35px 25px;
}
.hs-menu-list .hs-menu-link {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 300;
  padding: 0 6px 6px;
  color: var(--text-color);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
}
.hs-menu-list .hs-menu-link::before {
  content: "";
  position: absolute;
  background: var(--hs-gradient-color);
  bottom: 0px;
  left: 0px;
  width: 0%;
  height: 1px;
  transition: all 0.3s ease-in-out;
}
.hs-menu-list .hs-menu-link:hover::before {
  width: 100%;
}

.banner-section {
  padding: 140px 120px 0;
}
.banner-section::before {
  content: "";
  position: absolute;
  bottom: -135px;
  left: 0;
  background: linear-gradient(180deg, rgba(4, 4, 4, 0) 0%, rgb(4, 4, 4) 50%, rgba(4, 4, 4, 0) 100%);
  width: 100%;
  height: 300px;
  z-index: 1;
}

#banner-vanta {
  position: relative;
}

#banner-vanta canvas {
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.6;
}

.banner-content-box,
.banner-img-box {
  position: relative;
  z-index: 1;
}

.banner-content-box {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 16px;
  flex-direction: column;
}

.page-banner{
  text-align: center;
  padding: 140px 0 60px;
  background: #5e7cff14;
  border-bottom: 1px solid #2d4191;
}
.page-banner .page-title{
    font-size: 40px;
}
.page-banner .page-breadcrumbs{
    display: flex;
    justify-content: center;
}
.page-breadcrumbs li a{
    color: #fff;
    text-decoration: none;
}
.page-breadcrumbs li.active a{
    color: #5877ff;
}
.page-breadcrumbs li + li::before{
    content: "/";
    color: var(--font-light-color);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.hs-card {
  position: relative;
  border-radius: 20px;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  z-index: 1111;
  padding: 30px;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--hs-color-5);
}
.hs-card:hover {
  color: var(--primary);
}
.hs-card:hover .hs-card-bg {
  background: var(--hs-gradient-color);
}
.hs-card:hover .hs-sub-text {
  color: var(--primary);
}

.hs-card-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.hs-card-content .hs-sub-text {
  transition: all 0.3s ease-in-out;
}

.hs-card-bg {
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  z-index: 2;
  background: var(--primary);
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  border-radius: 20px;
  overflow: hidden;
  outline: transparent;
  transition: all 0.3s ease-in-out;
}

.hs-animated-border {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  bottom: 50%;
  right: 50%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--hs-gradient-color);
  opacity: 1;
  filter: blur(12px);
  animation: blob-smooth 8s infinite ease;
}

@keyframes blob-smooth {
  0% {
    transform: translate(-100%, -100%) translate3d(0%, 0%, 0);
  }
  25% {
    transform: translate(-100%, -100%) translate3d(100%, 0%, 0);
  }
  50% {
    transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
  }
  75% {
    transform: translate(-100%, -100%) translate3d(0%, 100%, 0);
  }
  100% {
    transform: translate(-100%, -100%) translate3d(0%, 0%, 0);
  }
}
.about-content ul {
  padding: 0;
}
.about-content ul li {
  position: relative;
  padding: 10px 0 0px 40px;
  font-family: var(--font-1);
}
.about-content ul li::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  top: 11px;
  left: 0;
  background: url("../images/icons/point.svg");
  background-size: contain;
}

.services-section::before {
  content: "";
  position: absolute;
  background: url("../images/net-globe-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: -1;
  top: 0;
}

.hs-service-box {
  background: var(--hs-color-5);
  padding: 1px;
  margin-bottom: 30px;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}
.hs-service-box:hover {
  background: var(--hs-gradient-color);
}

.hs-service-inner {
  background: var(--primary);
  padding: 25px 30px;
  height: 100%;
  display: flex;
  text-align: center;
  flex-direction: column;
  gap: 25px;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}
.hs-service-inner .content h3 {
  font-size: 26px;
}

.filter-tabs {
  position: relative;
  display: block;
  margin-bottom: 40px;
  z-index: 10;
}
.filter-tabs #filters {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  gap: 30px;
}
.filter-tabs #filters li {
  font-size: 18px;
  font-weight: 500;
}
.filter-tabs .filter-link {
  position: relative;
  cursor: pointer;
  padding: 0 15px 10px;
}
.filter-tabs .filter-link::before {
  content: "";
  position: absolute;
  background: var(--hs-gradient-color);
  bottom: 0px;
  left: 0px;
  width: 0%;
  height: 1px;
  transition: all 0.3s ease-in-out;
}
.filter-tabs .filter-link:hover::before {
  width: 100%;
}
.filter-tabs .filter-link.active::before {
  width: 100%;
}

.portfolio-section .hs-btn{
    position: relative;
    z-index: 1;
    margin: 30px auto 0;
}

.portfolio-section::before {
  content: "";
  position: absolute;
  background: url("../images/testimonial-bg.webp");
  width: 100%;
  height: 100%;
  top: 0;
  background-size: cover;
  background-position: bottom;
  z-index: -1;
  opacity: 0.3;
}

.portfolio-area {
  position: relative;
  display: grid;
  -moz-column-gap: 15px;
  column-gap: 30px;
  row-gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  z-index: 3;
}

.portfolio-item {
  padding: 10px;
  border: 1px solid var(--hs-color-5);
  border-radius: 16px;
}

.portfolio-item-img img {
  border-radius: 8px;
}

.portfolio-content {
  display: flex;
  padding: 15px;
  padding-top: 0;
  margin-top: 15px;
}

.portfolio-content .left h4{
  max-width: 300px;
}

.portfolio-content a {
  color: var(--text-color);
  text-decoration: none;
}
.portfolio-content .right {
  flex: 1;
  text-align: right;
  display: flex;
  gap: 16px;
  font-size: 18px;
  justify-content: end;
}
.portfolio-content .right a {
  font-size: 21px;
}

.contact-section {
  padding-bottom: 180px;
}
.contact-section .hs-title-box {
  text-align: left;
}

.contact-form-box {
  position: relative;
  background: #101010;
  padding: 35px 40px;
  border-radius: 20px;
}
.contact-form-box::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: 0;
  top: -15%;
  background: #4b6bff;
  filter: blur(150px);
  border-radius: 50%;
  z-index: -1;
}
.contact-form-box .form-group {
  margin-bottom: 20px;
}

.error {
  display: none;
  margin-top: 6px;
  padding-left: 20px;
  color: #ff1919;
  letter-spacing: 0.5px;
}

.section-eight {
  position: relative;
}

.op-eight-section {
  position: relative;
}
.op-eight-section::before {
  content: "";
  position: absolute;
  background: url(../images/testimonial-bg.webp);
  width: 100%;
  height: 100%;
  top: -20%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.3;
  transform: scaleX(-1);
}
.op-eight-section .gradient-shape-top, .op-eight-section .gradient-shape-bottom {
  height: 400px;
}
.op-eight-section .gradient-shape-top {
  top: -46%;
}
.op-eight-section .gradient-shape-bottom {
  bottom: 0;
}

.sec-eight-text-area {
  position: relative;
  text-align: center;
  padding: 60px 0 60px;
  z-index: 1;
}

.sec-eight-text-area img {
  background: var(--hs-gradient-color);
  border-radius: 12px;
  border: 3px solid var(--text-color);
}

.sec-eight-text-area h1 {
  padding-top: 24px;
  line-height: normal;
  font-size: 26px;
  font-family: var(--font-1);
  letter-spacing: 2px;
  padding-bottom: 0;
  margin-bottom: 0;
}


.sec-eight-text-area p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--text-color-2);
  font-family: var(--font-2);
  margin-bottom: 0;
}

.section-eight .container-pe-quote {
  position: absolute;
  height: 100%;
  top: 0px;
  z-index: 1;
}

.section-eight .container-pe-quote.left {
  left: 0px;
}

.section-eight .container-pe-quote.right {
  right: 0px;
}

.section-eight .container-pe-quote .pp-quote {
  cursor: pointer;
  position: absolute;
  border-radius: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-timing-function: linear;
  transform-origin: 50% 1px;
  opacity: 0;
  transition: all 2s ease;
}

.container-pe-quote .pp-quote img {
  background: var(--hs-gradient-color);
  overflow: hidden;
  border-radius: 12px;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}

.section-eight .container-pe-quote .pp-quote.active img {
  border: 2px solid #fff;
}

.section-eight .container-pe-quote .li-quote-1 {
  height: 104px;
  width: 104px;
  left: 15px;
  top: 95px;
  animation-duration: 10s;
  -webkit-animation-duration: 10s;
  transition-delay: 0.6s;
  opacity: 1;
}

.section-eight .container-pe-quote .li-quote-2 {
  height: 63px;
  width: 63px;
  left: 120px;
  top: 270px;
  animation-duration: 12s;
  -webkit-animation-duration: 12s;
  transition-delay: 0s;
  opacity: 1;
}

.section-eight .container-pe-quote .li-quote-3 {
  height: 64px;
  width: 64px;
  left: 68px;
  top: 380px;
  animation-duration: 6s;
  -webkit-animation-duration: 6s;
  transition-delay: 0.2s;
  opacity: 1;
}

.section-eight .container-pe-quote .li-quote-4 {
  height: 73px;
  width: 73px;
  right: -15px;
  top: 110px;
  animation-duration: 5s;
  -webkit-animation-duration: 5s;
  transition-delay: 0.7s;
  opacity: 1;
}

.section-eight .container-pe-quote .li-quote-5 {
  height: 73px;
  width: 73px;
  right: 28px;
  top: 265px;
  animation-duration: 8s;
  -webkit-animation-duration: 8s;
  transition-delay: 0.4s;
  opacity: 1;
}

.section-eight .container-pe-quote .li-quote-6 {
  height: 45px;
  width: 45px;
  right: 108px;
  top: 170px;
  animation-duration: 7s;
  -webkit-animation-duration: 7s;
  transition-delay: 0.2s;
  opacity: 1;
}

.section-eight .container-pe-quote .li-quote-7 {
  height: 48px;
  width: 48px;
  right: 40px;
  top: 414px;
  animation-duration: 7s;
  -webkit-animation-duration: 7s;
  transition-delay: 0.3s;
  opacity: 1;
}

.section-eight .container-pe-quote .li-quote-8 {
  height: 63px;
  width: 63px;
  left: 20px;
  top: 250px;
  animation-duration: 5s;
  -webkit-animation-duration: 5s;
  transition-delay: 0s;
  opacity: 1;
}

@keyframes floating {
  0% {
    transform: rotate(0deg) translate(-10px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translate(-10px) rotate(-360deg);
  }
}
.section-eight .container-quote {
  position: relative;
  width: 100%;
  margin-top: 25px;
  height: 135px;
  -ms-perspective: 10000px;
  perspective: 10000px;
}

.section-eight .container-quote .quote {
  max-width: 520px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 50%;
  cursor: pointer;
  text-align: center;
  transform: translateX(-50%);
  transition: all 1s cubic-bezier(0.5, -0.01, 0, 1.005);
}

.section-eight .container-quote .quote.hide-bottom {
  opacity: 0;
  transform: translateX(-50%) translateY(100%) rotateX(-70deg);
}

.section-eight .container-quote .quote.hide-top {
  opacity: 0;
  transform: translateX(-50%) translateY(-100%) rotateX(70deg);
}

.section-eight .container-quote .quote.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0%) rotateX(0deg);
}

.section-eight .container-dp-name {
  position: relative;
  width: 100%;
  margin-top: 10px;
  height: 200px;
  -ms-perspective: 10000px;
  perspective: 10000px;
  text-align: center;
}

.section-eight .container-dp-name .box-dpname {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  cursor: pointer;
  text-align: center;
  transition: all 1s cubic-bezier(0.5, -0.01, 0, 1.005);
}

.section-eight .container-dp-name .box-dpname.hide-dp-bottom {
  opacity: 0;
  transform: translateX(0%) translateY(100%) rotateX(-70deg);
}

.section-eight .container-dp-name .box-dpname.hide-dp-top {
  opacity: 0;
  transform: translateX(0%) translateY(-100%) rotateX(70deg);
}

.section-eight .container-dp-name .box-dpname.look {
  opacity: 1;
  transform: translateX(0%) translateY(0%) rotateX(0deg);
}

@media screen and (max-width: 767px) {
  .sec-eight-text-area {
    padding: 10px 0 10px 0;
  }
  .section-eight .container-pe-quote {
    position: relative;
    height: 500px;
    top: 0px;
    z-index: 1;
    max-width: 300px;
    margin: -70px auto 0;
  }
}
@media screen and (max-width: 480px) {
  .section-eight {
    position: relative;
  }
  .section-eight .bottom-ani-cs {
    position: absolute;
    top: 150px;
    right: 16px;
  }
  .section-eight .container-pe-quote .li-quote-2 {
    left: 60px;
    top: 270px;
  }
  .section-eight .container-pe-quote .li-quote-6 {
    right: 100px;
    top: 179px;
  }
  .section-eight .container-pe-quote .li-quote-8 {
    height: 43px;
    width: 43px;
    left: 0px;
    top: 220px;
  }
  .section-eight .container-pe-quote .li-quote-3 {
    left: 0;
  }
  .sec-eight-text-area h1{
    font-size: 18px;
  }
  .sec-eight-text-area p{
    text-align: justify;
  }
  .section-eight .container-quote{
    height: 365px;
  }
  .sec-eight-text-area {
    padding: 10px 0 100px 0;
  }
}
.footer-area {
  background: #101010;
  padding: 60px 0;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-block .footer-title {
  font-size: 21px;
  color: var(--text-color);
  font-family: var(--font-1);
  margin-bottom: 16px;
}
.footer-block ul {
  padding: 0;
}
.footer-block ul li {
  margin-bottom: 6px;
}
.footer-block ul li .footer-link {
  display: inline-block;
  position: relative;
  font-size: 16px;
  font-weight: 300;
  color: var(--text-color-2);
  letter-spacing: 0.5px;
  text-decoration: none;
}
.footer-block ul li .footer-link::before {
  content: "";
  position: absolute;
  background: var(--hs-gradient-color);
  bottom: 0px;
  left: 0px;
  width: 0%;
  height: 1px;
  transition: all 0.3s ease-in-out;
}
.footer-block ul li .footer-link:hover::before {
  width: 100%;
}
.footer-block .email-box {
  font-size: 16px;
}
.footer-block .email-box a {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-color-2);
  text-decoration: none;
}

.social-icon-list {
  display: flex;
  margin-bottom: 0;
  gap: 16px;
}
.social-icon-list .social-link img {
  width: 30px;
  height: 30px;
}

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container, .container-md, .container-sm {
    max-width: 880px;
  }
}
@media (min-width: 992px) {
  .container, .container-lg, .container-md, .container-sm {
    max-width: 1024px;
  }
  
}
@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1170px;
  }
}
@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1320px;
  }
}
@media only screen and (max-width: 1440px) {
  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 38px;
  }
  h3 {
    font-size: 26px;
  }
  h4 {
    font-size: 21px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1250px) {
  .hs-menu-list .hs-menu-item {
    padding: 35px 16px;
  }
  .hs-menu-box .hs-left {
    gap: 16px;
  }
  .banner-section {
    padding: 120px 55px 0;
  }
}
@media only screen and (max-width: 1024px) {
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 38px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 21px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 16px;
  }
  .hs-menu-list .hs-menu-item {
    padding: 25px 16px;
  }
  .hs-logo-box img {
    width: 150px;
  }
  .hs-title-box .hs-color-text {
    font-size: 18px;
  }
  .hs-menu-box {
    padding: 0 35px;
  }
  .banner-section {
    padding: 100px 55px 0;
  }
  .hs-btn {
    padding: 12px 20px;
    font-size: 16px;
  }
  .portfolio-area {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 10px;
  }
  .section-eight .container-pe-quote.right {
    right: 45px;
  }
}
@media only screen and (max-width: 991.98px) {
  .hs-order-2 {
    order: 2;
  }
  .hs-mobile-toggle {
    display: block;
  }
  .hs-mobile-toggle .mobile-menu {
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .hs-mobile-toggle .mobile-menu span {
    background: var(--text-color);
    width: 35px;
    height: 2px;
    margin: 3px 0;
    display: block;
    border-radius: 30px;
  }
  .hs-mobile-toggle .mobile-menu span:nth-child(2) {
    width: 25px;
  }
  .hs-menu-box .hs-left {
    gap: 0;
  }
  .hs-menu-list, .hs-cta-button {
    display: none;
  }
  .hs-menu-box {
    padding: 15px 0;
    flex-direction: row-reverse;
  }
  .banner-img-box {
    text-align: center;
  }
  .banner-img-box img {
    height: 350px;
  }
  .banner-content-box {
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 30px;
  }
  .hs-card {
    margin-bottom: 20px;
    height: unset;
  }
  .mobile-menu-canvas {
    background: rgba(24, 24, 24, 0.8901960784);
    z-index: 16000;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    width: 320px !important;
  }
  .mobile-menu-canvas .hs-canvas-wrapper {
    padding: 35px 40px;
  }
  .mobile-menu-canvas .hs-canvas-wrapper .close {
    background: #ffffff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 30px;
  }
  .mobile-menu-list {
    padding: 0;
    margin: 0;
  }
  .mobile-menu-list .mobile-menu-item {
    margin: 10px 0;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
  .mobile-menu-list .mobile-menu-item .mobile-menu-link {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .mobile-menu-list .mobile-menu-item:last-child {
    border-bottom: 0;
  }
  .filter-tabs #filters{
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 575px) {
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 24px;
  }
  .hs-spacing {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .left-shape {
    left: 0;
  }
  .hs-btn {
    border-radius: 8px;
  }
  .banner-section {
    padding: 100px 20px 0;
  }
  #banner-vanta canvas {
    width: 100% !important;
  }
  .page-banner{
    padding: 100px 0 35px;
  }
  .portfolio-details-area {
      padding: 60px 0 !important;
  }
  .portfolio-right-box{
    margin-top: 30px !important;
  }
  .page-banner .page-title{
    font-size: 24px;
  }
  .page-breadcrumbs li a{
    font-size: 14px;
  }
  .portfolio-area {
    grid-template-columns: repeat(1, 1fr);
  }
  .op-eight-section .hs-title-box {
    margin-bottom: 90px;
  }
  .section-eight .container-pe-quote.left {
    display: flex;
    gap: 30px;
    top: 0;
    height: 120px;
    z-index: 5;
  }
  .section-eight .container-pe-quote .pp-quote {
    position: unset;
  }
  .section-eight .container-pe-quote.right {
    right: 0px;
    display: flex;
    gap: 30px;
  }
  
  .section-eight .container-pe-quote {
    height: unset;
  }
  .footer-logo img {
    width: 150px;
  }
  .footer-block .email-box {
    margin-bottom: 30px;
  }
}