:root {
  --font: "DM Sans", sans-serif;
  --font2: "DM Sans", sans-serif;
  --liner: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --pri: #e90b35;
  --sec: #11161f;
  --text-color: #222222;
  --text-light: #8c8c8c;
  --para-color: #767676;
  --border-color: #ececec;
  --white: #fff;
  --off-white: #f5f5f8;
  --black: #111;
}

body {
  background: var(--white);
  font-family: var(--font2);
  color: var(--para-color);
  font-size: 15px;
  margin: 0;
  padding: 0;
  font-weight: 400;
  line-height: 1.5;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
}

p {
  color: var(--para-color);
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: var(--font2);
  line-height: 1.6;
}

a {
  display: block;
  text-decoration: none;
  color: var(--text-color);
}

p a {
  display: inline;
}

.head-sec {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 40px;
}

.head-sec.text-start {
  max-width: 100%;
}

.head-sec .sub-tt {
  font-size: 16px;
  font-weight: 500;
  color: var(--pri);
  align-content: center;
  font-family: var(--font);
  position: relative;
  margin-bottom: 5px;
  display: inline-block;
}

.head-sec .tt {
  font-family: var(--font);
  color: var(--text-color);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 10px;
  position: relative;
  text-transform: capitalize;
}

.head-sec .tt span {
  color: var(--pri);
}

.head-sec p {
  font-size: 15px;
  color: var(--para-color);
  font-weight: 400;
  margin-bottom: 0;
}

.head-sec.text-white .sub-tt::before {
  border-bottom: 1px solid var(--white);
}

.head-sec.text-white .tt,
.head-sec.text-white p {
  color: white;
}

.head-sec.text-white p {
  opacity: 0.8;
}

.w-btn {
  padding: 11px 15px;
  /* border-radius: 4px; */
  color: white;
  border: 1px solid #00c966;
  display: inline-flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font);
  text-transform: capitalize;
  white-space: nowrap;
  background-color: #00c966;
  outline: none;
  transition: 0.2s ease-in-out;
  line-height: 1;
}

.w-btn:hover {
  border-color: #00c966;
  background-color: #00b95d;
}

.main-btn {
  padding: 14px 19px;
  color: var(--white);
  border: 1px solid var(--sec);
  background-color: var(--sec);
  display: inline-flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font2);
  text-transform: capitalize;
  white-space: nowrap;
  outline: none;
  transition: 0.2s ease-in-out;
  justify-content: center;
  border-radius: 0px;
  line-height: 1;
}

.main-btn.light {
  background-color: transparent;
  border-color: var(--pri);
  color: var(--pri);
}

.main-btn.light:hover {
  background-color: var(--pri);
  counter-reset: var(--white);
}

.main-btn.sm,
.w-btn.sm {
  padding: 10px 13px;
  font-size: 13px;
  font-weight: 400;
}

.main-btn:hover {
  background: var(--pri);
  color: var(--white);
  border-color: var(--pri);
}

.main-btn2 {
  color: var(--white);
  background-color: var(--pri);
  border-color: var(--pri);
}

.main-btn2:hover {
  background-color: var(--white);
  border-color: var(--pri);
  color: var(--pri);
}

.social {
  display: flex;
  justify-content: end;
  list-style: none;
  gap: 10px;
  margin-bottom: 0;
  padding: 0;
  align-items: center;
}

.social li a {
  border: 1px solid var(--border-color);
  width: 35px;
  height: 35px;
  color: var(--text-color);
  border-radius: 100%;
  align-content: center;
  text-align: center;
  line-height: 1;
  transition: 0.2s ease-in-out;
}

.social li a svg {
  width: 16px;
  height: 16px;
  color: currentColor;
}

.social li a:hover {
  background-color: var(--pri);
  border-color: var(--pri);
  color: var(--white);
}

.form-label {
  font-size: 15px;
  color: var(--text-color);
  font-family: var(--font);
  font-weight: 500;
  margin-bottom: 4px;
}

.SumoSelect > .CaptionCont > span.placeholder {
  background-color: transparent;
  color: var(--text-color);
  opacity: 0.8;
  font-style: normal;
}

.SumoSelect {
  display: block;
  width: 100%;
}

.SumoSelect.open .search-txt {
  font-weight: 500;
  border-radius: 4px;
  font-size: 15px;
  padding: 8px 12px;
  color: var(--text-color);
  font-family: var(--font);
  border-color: var(--border-color);
  height: 43px;
}

.SumoSelect.open > .CaptionCont,
.SumoSelect:focus > .CaptionCont,
.SumoSelect:hover > .CaptionCont {
  box-shadow: none;
  border-color: var(--text-light);
}

.SumoSelect.open > .optWrapper {
  top: 43px;
}

.form-group {
  position: relative;
  margin-bottom: 13px;
}

.form-control,
.form-select,
.SumoSelect > .CaptionCont {
  font-weight: 400;
  border-radius: 0px;
  font-size: 15px;
  padding: 8px 12px;
  color: var(--text-color);
  font-family: var(--font2);
  border-color: transparent;
  height: 40px;
  align-content: center;
}

textarea.form-control {
  min-height: 100px;
  resize: none;
  align-content: start;
}

.form-control:focus,
.form-select:focus {
  border-color: #e3e3e3;
  box-shadow: none;
}

.logo {
  max-width: 220px;
  width: auto;
  height: auto;
}

.logo.dark {
  display: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: linear-gradient(
    0deg,
    rgba(17, 22, 31, 0) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
  backdrop-filter: blur(2px);
}

header.stricky-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  animation-name: fadeInDown;
  animation-duration: 600ms;
  animation-fill-mode: both;
}

header.stricky-fixed .top-bar {
  display: none;
}

header:not(.stricky-fixed) .logo {
  display: none;
}

header:not(.stricky-fixed) .logo.dark {
  display: block;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

header.stricky-fixed .menubar {
  padding-block: 0;
}

.inner-bg header {
  background: white;
}

.inner-bg header .logo {
  display: block;
}

.inner-bg header .logo.dark {
  display: none;
}

.menubar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.navigation .nav-header {
  display: none;
  padding: 12px 20px;
}

.navigation .navbar button {
  width: 40px;
  height: 40px;
  background: var(--pri);
  border: 0;
  outline: 0;
  color: #fff;
  font-size: 25px;
  border-radius: 0;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  position: relative;
  z-index: 99;
  padding: 5px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.navigation .navbar button span {
  display: block;
  position: absolute;
  height: 3px;
  width: 70%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 15%;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.navigation .navbar button span:nth-child(1) {
  top: 8px;
}

.navigation .navbar button span:nth-child(2),
.navigation .navbar button span:nth-child(3) {
  top: 18px;
}

.navigation .navbar button span:nth-child(4) {
  top: 28px;
}

.navigation .navbar button.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.navigation .navbar button.open span:nth-child(2) {
  transform: rotate(45deg);
}

.navigation .navbar button.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.navigation .navbar button.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.navigation .menu {
  display: block;
}

.navigation .menu ul {
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
}

.navigation .menu ul li {
  display: inline-block;
  position: relative;
}

.navigation .menu ul li a {
  padding: 30px 5px;
  /* margin-inline: 20px; */
  display: block;
  color: var(--white);
  transition: all 0.2s ease;
  font-size: 15px;
  font-family: var(--font2);
  background: transparent;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
}

.navigation .menu ul.nav > li > a {
  margin-inline: 8px;
}

.navigation .menu ul.nav > li > a::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 2px;
  background: var(--pri);
  border-radius: 0px;
  transition: transform 700ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  content: "";
}

.navigation .menu ul li:hover a,
.navigation .menu ul li.active a {
  color: var(--pri);
}

.navigation .menu ul li:hover a::before,
.navigation .menu ul li.active a::before {
  transform: scale(1, 1);
  transform-origin: left center;
}

.navigation .menu ul li ul.ls-dropdown {
  top: 100%;
  left: 0;
  text-align: left;
}

.navigation .menu ul li ul.ls-dropdown li:last-child {
  border: 0;
}

.navigation .menu ul li ul.ls-dropdown li ul.ls-dropdown {
  left: 100%;
  margin-top: -36px;
}

.navigation .menu ul li ul.ls-dropdown li ul.ls-dropdown li ul.ls-dropdown {
  left: -100%;
  margin-top: -31px;
}

.navigation .menu ul li ul.ls-dropdown {
  position: absolute;
  width: 285px;
  display: none;
  z-index: 99999;
  box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.4);
  background: #fff;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}

.navigation .menu ul li:hover ul.ls-dropdown {
  display: block;
}

.navigation .menu ul li:hover ul.ls-dropdown li ul.ls-dropdown {
  display: none;
  transition: all 0.3s ease;
  width: max-content;
}

.navigation .menu ul li ul.ls-dropdown li:hover ul.ls-dropdown {
  display: block;
}

.navigation .menu ul li ul.ls-dropdown li {
  display: block;
  padding: 0;
  width: 100%;
}

.navigation .menu ul li ul.ls-dropdown li:last-child a:after {
  display: none;
}

.navigation .menu ul li ul.ls-dropdown li a:hover {
  color: white;
  background-color: var(--pri);
}

.navigation .menu ul li ul.ls-dropdown li:hover a {
  color: white;
  background-color: var(--pri);
}

.navigation .menu ul li ul.ls-dropdown li:hover ul.ls-dropdown li a {
  background: #fff;
  color: #333;
}

.navigation .menu ul li ul.ls-dropdown li:hover ul.ls-dropdown li a:hover {
  color: #fff;
  background: var(--pri);
}

.navigation .menu ul li ul.ls-dropdown li a {
  color: var(--text-color);
  font-size: 15px;
  padding: 7px 13px;
  position: relative;
  display: block;
  text-transform: capitalize;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-weight: 400;
}

.navigation ul li.ls-submenu a button {
  border: 0;
  background: transparent;
  outline: 0;
  padding: 0;
  margin: 0 0 0 3px;
  color: var(--white);
}

header.stricky-fixed .navigation ul li.ls-submenu a button,
.inner-bg header .navigation ul li.ls-submenu a button {
  color: var(--text-color);
}

.navigation ul li.ls-submenu a button svg {
  width: 16px;
  height: 16px;
}

.navigation ul li.ls-submenu:hover svg {
  transform: rotateZ(180deg);
  color: var(--pri);
}

.navigation ul li.ls-submenu:hover ul.ls-dropdown li.ls-submenu svg {
  color: #242424;
}

.navigation ul li.ls-submenu ul.ls-dropdown li a button {
  float: right;
  color: #333;
}

.navigation ul li.ls-submenu ul.ls-dropdown li a button svg {
  transform: rotateZ(-90deg);
}

.navigation ul li.ls-submenu ul.ls-dropdown li.ls-submenu:hover svg {
  color: #fff;
}

.navigation .navbar {
  display: none;
  padding: 12px 0;
  margin: 0;
}

.navigation .menu ul > li:hover > ul.ls-dropdown {
  visibility: visible;
  opacity: 1;
}

.navigation .menu ul > li > ul.ls-dropdown > li > ul.ls-dropdown {
  left: 100%;
  margin-top: -36px;
}

.navigation
  .menu
  ul
  > li
  > ul.ls-dropdown
  > li
  > ul.ls-dropdown
  > li
  > ul.ls-dropdown {
  left: -100%;
  margin-top: -31px;
}

.navigation .menu ul > li > ul.ls-dropdown > li:hover > ul.ls-dropdown {
  visibility: visible;
  opacity: 1;
}

.navigation .menu ul > li ul.ls-dropdown {
  position: absolute;
  min-width: 200px;
  width: max-content;
  max-width: 390px;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  transition: all 0.3s ease;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
  background: #fff;
  margin: 0;
  padding: 0;
  text-align: left;
}

.navigation .menu ul > li ul.ls-dropdown li {
  display: block;
  padding: 0;
  width: 100%;
}

/* ################### main ###################### */

.contact-bar {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 10px 0;
  background: linear-gradient(
    0deg,
    rgba(17, 22, 31, 0.9) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  backdrop-filter: blur(2px);
}

.contact-bar p {
  margin: 0;
  color: var(--white);
}

.contact-bar p a {
  color: var(--white);
  font-weight: 600;
}

.contact-bar p a:hover {
  color: var(--pri);
}

.contact-bar svg {
  color: var(--pri);
  width: 18px;
  height: 18px;
  margin-top: -2px;
}

.contact-bar .social li a {
  border: 0;
  width: 30px;
  height: 30px;
  color: white;
  background-color: transparent;
}

.contact-bar .social li a:hover {
  color: var(--pri);
}

main,
main img {
  aspect-ratio: 1920 / 1000;
  overflow: hidden;
  display: block;
  width: 100%;
  position: relative;
}

.carousel-control-next,
.carousel-control-prev {
  line-height: 0;
  position: absolute;
  top: 52%;
  display: block;
  width: 38px;
  height: 38px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: #fff;
  border: 0;
  outline: 0;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
  border-radius: 100%;
  z-index: 9;
  opacity: 1;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  height: 16px;
  width: 16px;
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
  background-color: var(--pri);
  opacity: 1;
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

@media (max-width: 980px) {
  .carousel-control-next,
  .carousel-control-prev {
    width: 20px;
    height: 35px;
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    height: 15px;
    width: 15px;
  }

  .carousel-control-prev {
    left: 0px;
    border-radius: 0 3px 3px 0;
  }

  .carousel-control-next {
    right: 0px;
    border-radius: 3px 0px 0px 3px;
  }
}

.swiper_wrap {
  position: relative;
}

.cate-next,
.cate-prev {
  width: 45px;
  height: 45px;
  background-color: #fdfff8;
  border: 1px solid var(--border-color);
  border-radius: 100%;
  color: var(--para-color);
  align-content: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
}

.cate-prev {
  right: 50px;
}

.cate-next svg,
.cate-prev svg {
  width: 25px;
  height: 25px;
}

.cate-next:hover,
.cate-prev:hover {
  background-color: var(--pri);
  color: var(--white);
}

.lead-sure-section {
  padding: 70px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.bg-sec {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.95) 100%
  ) !important;
  background-color: var(--pri) !important;
}

.bg-pri {
  background-color: var(--sec);
  align-content: center;
}

.bg-pri.content-sec h1,
.bg-pri.content-sec h2,
.bg-pri.content-sec h3,
.bg-pri.content-sec h4,
.bg-pri.content-sec p,
.bg-pri.content-sec ul li {
  color: white;
}

.bg-pri.content-sec p,
.bg-pri.content-sec ul li {
  opacity: 0.8;
}

.bg-light {
  background-color: #f5f5f8 !important;
}

.text-sec {
  color: var(--sec) !important;
}

.abt-shape,
.faq-shape {
  position: absolute;
  max-width: 500px;
  width: 100%;
  top: 50px;
  pointer-events: none;
  z-index: -1;
}

.home-abt-sec {
  position: relative;
  padding-left: 70px;
}

.home-abt-sec .img {
  position: relative;
  padding-left: 20px;
}

.home-abt-sec .img::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 175px;
  width: 10px;
  background: var(--pri);
  content: "";
}

.home-abt-sec img {
  width: 100%;
}

.counter-section2 {
  background-color: var(--sec);
}

.counter-section2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/shape/shape2.webp);
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.3;
  background-attachment: fixed;
  z-index: -1;
}

.counter-bx {
  position: relative;
  padding-top: 8px;
}

.counter-bx .title {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 10px;
}

.counter-bx p {
  font-style: italic;
  color: var(--white);
}

.counter-bx::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 40px;
  height: 2px;
  background-color: #fff;
}

.counter-section2 .btm-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 5px;
  gap: 10px;
}

.counter-section2 .btm-bar p {
  color: white;
  margin-bottom: 0;
  font-size: 16px;
}

.counter-section2 .btm-bar p a {
  color: white;
  font-weight: 600;
  font-size: 16px;
}

.counter-section2 .btm-bar p a:hover {
  color: var(--pri);
}

.abt-counterbx {
  position: absolute;
  bottom: 0;
  left: 0;
}

.abt-counterbx {
  display: flex;
  align-items: center;
  gap: 15px;
}

.abt-counterbx .odometer {
  font-size: 100px;
  font-weight: 800;
  color: var(--text-color);
  line-height: 1;
}

.abt-counterbx p {
  color: var(--pri);
  font-weight: 600;
  margin-bottom: 0;
}

.abt-counterbx p {
  color: var(--pri);
  font-weight: 600;
  margin-bottom: 0;
}

.project-bx {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.project-bx img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}

.project-bx .overlay-content {
  background: linear-gradient(
    180deg,
    rgba(17, 22, 31, 0) 0%,
    rgba(41, 41, 41, 0.9) 100%
  );
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transition: 0.3s linear;
}

.swiper-slide-active .overlay-content {
  opacity: 1;
}

.mySwiper .swiper-slide.swiper-slide-thumb-active {
  opacity: 0.4;
}

.project-bx .overlay-content p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  color: white;
}

.project-bx .overlay-content .tt {
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 600;
  color: white;
}

.mySwiper .swiper-slide {
  height: auto !important;
  cursor: pointer;
}

.project-details-container {
  max-width: 1000px;
  margin: 0 auto;
}

.project-details-container img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}

.details-bar {
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
  background-color: white;
  margin-inline: 30px;
  margin-top: -20px;
  position: relative;
  z-index: 1;
  padding: 20px;
}

.details-bx .tt {
  color: var(--text-light);
  font-weight: 600;
  font-size: 15px;
}

.details-bx p {
  margin-bottom: 0;
  color: var(--text-color);
  font-size: 17px;
  font-weight: 600;
}

.share-section {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-color);
}

.share-section a {
  width: 35px;
  height: 35px;
  line-height: 1;
  align-content: center;
  text-align: center;
  color: white;
  border-radius: 100%;
}

.share-section a svg {
  width: 15px;
  height: 15px;
}

.share-section a#share-facebook {
  background: #3c5b9b;
}

.share-section a#share-twitter {
  background: var(--liner);
  background-color: #000;
}

.share-section a#share-linkedin {
  background: #027ba5;
}

.pro-bx {
  position: relative;
  overflow: hidden;
}

.pro-bx img {
  aspect-ratio: 1/1;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
  transition: 0.7s ease;
  transform: scale(1);
}

.pro-bx:hover img {
  transform: scale(1.1);
}

.pro-bx::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 15px;
  bottom: 20px;
  right: 15px;
  background-color: var(--sec);
  opacity: 0.9;
  transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  z-index: 1;
  transition: 0.5s ease-in-out;
  transition-delay: 0.1s;
  transform-origin: center;
}

.pro-bx:hover:before {
  transform: perspective(400px) rotateX(0deg) scaleY(1);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.pro-bx .proHover {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  transition: 0.5s ease-in-out;
  transition-delay: 0.1s;
  width: 100%;
  padding: 20px;
}

.pro-bx:hover .proHover {
  opacity: 1;
}

.pro-bx .proHover .icon-bx {
  padding: 10px;
  aspect-ratio: 1 /1;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  line-height: 1;
  background-color: white;
  color: var(--pri);
  transition: 0.5s ease-in-out;
  transition-delay: 0.1s;
  align-content: center;
  margin-bottom: 20px;
  transform: translateY(-20px);
  opacity: 0;
}

.pro-bx .proHover .icon-bx:hover {
  background-color: var(--pri);
  color: white;
}

.pro-bx .proHover p {
  color: white;
  opacity: 0.8;
  margin-bottom: 0;
  transform: translateY(20px);
  transition: 0.5s ease-in-out;
  transition-delay: 0.1s;
  opacity: 0;
}

.pro-bx .proHover .tt {
  color: white;
  font-weight: 600;
  font-size: 20px;
  transform: translateY(20px);
  transition: 0.5s ease-in-out;
  transition-delay: 0.1s;
  opacity: 0;
}

.pro-bx:hover .proHover .icon-bx,
.pro-bx:hover .proHover p,
.pro-bx:hover .proHover .tt {
  transform: translateY(0);
  opacity: 1;
}

.read-mr {
  font-size: 15px;
  color: var(--pri);
  font-weight: 400;
  transition: 0.2s;
  display: inline-block;
  padding: 0;
  background-color: transparent;
  border: 0;
}

.read-mr.text-decoration:hover {
  text-decoration: underline;
}

.read-mr:hover {
  color: var(--sec);
}

.cate-bx {
  background-color: white;
  border-bottom: 1px solid var(--sec);
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

.cate-bx .img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}

.cate-bx .img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  z-index: 1;
  transition: 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.cate-bx .img:hover::before {
  opacity: 0.3;
}

.cate-bx .img img {
  transition: 1s cubic-bezier(0.22, 1, 0.36, 1);
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.cate-bx .img:hover img {
  transform: scale(1.1);
}

.cate-bx .tx-bx {
  padding: 20px;
}

.cate-bx .tx-bx .tt {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
  font-family: var(--font2);
}

.cate-bx .tx-bx .tt a {
  color: var(--text-color);
  font-family: var(--font);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.cate-bx:hover .tx-bx .tt a {
  color: var(--pri);
}

.cate-bx .tx-bx p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 15px;
}

.blogSec::before,
.blogSec::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 50%;
  width: 100%;
  background: url(../images/shape/blog-bg.jpg);
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.blogSec::after {
  background: var(--sec);
  opacity: 0.8;
}

.blog-bx {
  box-shadow: 0px 0px 60px 0px rgba(16, 23, 40, 0.06);
  background-color: white;
}

.blog-bx.blog-card {
  display: flex;
}

.blog-bx.blog-card .img-bx {
  min-width: 120px;
  width: 120px;
}

.blog-bx .img-bx {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-bx .img-bx img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-bx .img-bx:hover img {
  transform: scale(1.03);
}

.blog-bx .tx-bx {
  padding: 25px;
}

.blog-sec .main-tt {
  padding-left: 13px;
  padding-block: 3px;
  font-weight: 700;
  border-left: 5px solid var(--pri);
  font-size: 25px;
  color: var(--text-color);
  margin-bottom: 20px;
}

.blog-sec .img-bx {
  margin: 20px auto 0;
  text-align: center;
  max-width: 700px;
}

.blog-sec .img-bx img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.blog-date {
  padding-left: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  font-size: 15px;
  margin-bottom: 10px;
}

.blog-date li {
  color: var(--sec);
  line-height: 1;
}

.blog-date li svg {
  margin-top: -2px;
  margin-right: 3px;
}

.blog-date li:first-child {
  background-color: var(--pri);
  color: white;
  padding: 8px;
}

.blog-bx .tx-bx .tt a,
.blog-bx .tx-bx a.tt {
  color: var(--text-color);
  font-family: var(--font);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.blog-bx .tx-bx .tt a:hover,
.blog-bx .tx-bx a.tt:hover {
  color: var(--pri);
}

.blog-bx .tx-bx p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.contact-container {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 3px;
  overflow: hidden;
  padding: 30px 25px;
}

.contact-bx .head-sec {
  margin-bottom: 30px;
}

.contact-bx .head-sec .tt {
  font-size: 25px;
  line-height: 28px;
}

.contact-bx .head-sec .tt::before {
  top: 40px;
}

.contact-bx .main-btn {
  padding: 13px 15px;
  font-size: 15px;
}

.contact-bx .con-bx {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}

.contact-bx .tx-bx .tt {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
}

.contact-bx .con-bx .ic-bx {
  min-width: 45px;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--pri);
  box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.05);
}

.contact-bx .con-bx .ic-bx svg {
  min-width: 20px;
  width: 20px;
  height: 20px;
  color: var(--white);
}

.contact-bx .con-bx a,
.contact-bx .con-bx p {
  font-family: var(--font2);
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--text-color);
  margin-bottom: 0px;
}

.contact-bx .con-bx a {
  font-weight: 500;
}

.contact-bx .con-bx a:hover {
  color: var(--pri);
}

.map-bx {
  width: 100%;
  display: block;
}

.you_may {
  font-family: var(--font);
  font-weight: 600;
  font-size: 27px;
  color: var(--text-color);
  text-transform: capitalize;
  margin-bottom: 27px;
  position: relative;
}

.you_may span {
  color: var(--pri);
}

.you_may::before {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 0px;
  width: 45px;
  height: 2px;
  background: var(--pri);
}

.pr-li {
  border: 1px solid var(--off-white);
  transition: 0.2s;
  background: white;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.pr-li:hover {
  border: 1px solid var(--border-color);
}

.pr-li .img_bx {
  padding: 0;
  border-right: 1px solid var(--off-white);
  height: 100%;
}

.pr-li:hover .img_bx {
  border-color: var(--border-color);
}

.pr-li .img_bx img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.pr-li .g_100 .img_bx {
  border: 0;
}

.pr-li .tx-bx {
  padding: 15px 20px;
}

.grid.pr_view .pr-li .tx-bx {
  padding-top: 0;
}

.pr-li .tx-bx .title {
  color: var(--pri);
  padding: 0;
  text-align: left;
  border-bottom: 1px solid var(--off-white);
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 20px;
}

.pr-li:hover .tx-bx .title {
  border-color: var(--border-color);
}

.grid.pr_view .pr-li .tx-bx .title {
  text-align: center;
  border: none;
  margin: 0;
}

.grid.pr_view .pr-li .tx-bx .bt_bx {
  text-align: center;
}

.pr-li .tx-bx .title a {
  font-size: 20px;
  color: var(--black);
  transition: 0.4s;
}

.pr-li:hover .tx-bx .title a {
  color: var(--pri);
}

.pr-li .tx-bx .info {
  max-height: 280px;
  overflow-y: auto;
  padding-right: 10px;
  margin-bottom: 0px;
}

.pr-li .tx-bx .info table {
  width: 100%;
  overflow: hidden;
}

.pr-li .tx-bx .info table thead {
  background-color: var(--pri);
  color: white;
  text-align: center;
}

.grid.pr_view .pr-li .tx-bx .info {
  display: none;
}

.pr-li .tx-bx .info::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

.pr-li .bt_bx {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 15px;
}

.pr-li .tx-bx .info::-webkit-scrollbar {
  width: 7px;
  background-color: #f5f5f5;
}

.pr-li .tx-bx .info::-webkit-scrollbar-thumb {
  background-color: #c5c5c5;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}

.multi-imgs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.multi-imgs .imgs {
  border: 1px solid #e3e3e3;
  width: 55px;
  height: 55px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
}

.multi-imgs .imgs.youTube a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #f70000;
}

.multi-imgs .imgs.youTube a svg {
  width: 30px;
  height: 30px;
  color: white;
}

.multi-imgs .imgs.active {
  border: 1px solid var(--pri);
}

.multi-imgs .imgs img {
  object-fit: contain;
  object-position: center;
}

.productBrochureandvideo a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px dashed #cdcdcd;
  padding: 5px 8px;
  font-weight: 500;
  transition: 0.3s;
  font-size: 15px;
  color: var(--text-color);
}

.productBrochureandvideo a svg {
  color: #b90000;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.productBrochureandvideo a:hover {
  color: #444;
  border: 1px dashed #444;
}

.v-btn svg {
  width: 42px;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: var(--off-white);
  border-style: solid;
  border-width: 1px;
  padding: 5px 10px;
  font-size: 15px;
}

.clientSlider .swiper-wrapper {
  transition-timing-function: linear;
}

.clients-bx img {
  aspect-ratio: 29 / 13;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  /* margin-block: 5px; */
}

.enq-sec {
  overflow: unset;
  background-image: url(../images/bg.jpg);
  background-size: cover;
  object-position: center;
  padding-bottom: 0;
  margin-bottom: 70px;
}

.enq-shape {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-image: url(../images/contact.webp);
  background-position: left bottom;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
  max-width: 390px;
}

.enq-img-bx {
  align-content: end;
  background: url(../images/cantract-1.webp) no-repeat;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.enq-img-bx .counter-bx {
  padding: 20px 30px;
  background-color: var(--pri);
  height: 100%;
}

.enq-img-bx .counter-bx.bg-pri {
  background-color: var(--sec);
}

.enq-img-bx .counter-bx::before {
  content: none;
}

.enq-img-bx .counter-bx p {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 600;
}

.custom-from-row {
  padding: 35px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  background-color: var(--white);
  max-width: 550px;
  margin-bottom: -70px;
}

.custom-from-row .form-control {
  border-radius: 0px;
  height: 45px;
  font-size: 16px;
  color: var(--black);
  font-weight: 400;
  box-shadow: none !important;
  border-color: #f5f5f8;
  background-color: #f5f5f8;
}

.custom-from-row textarea {
  padding: 12px 15px;
}

.custom-from-row .iti--allow-dropdown .iti__flag-container,
.custom-from-row .iti--separate-dial-code .iti__flag-container {
  height: 45px;
}

.custom-from-row .main-btn {
  padding-block: 14px;
  font-size: 15px;
}

.breadcum-sec {
  background: url(https://starplatethemes.com/html/xafran/assets/img/background/page-header-bg.jpg);
  background-position: center;
  padding: 100px 0 90px;
  background-size: cover;
  position: relative;
  z-index: 1;
  font-family: var(--font);
  margin-top: 80px;
  text-align: center;
}

.breadcum-sec.breadcum-sec2 {
  background: #f1f1f1;
  padding: 8px 0;
  border-bottom: 2px solid var(--border-color);
}

.breadcum-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000d24;
  opacity: 0.75;
  z-index: -1;
  transition: 0.3s ease-in-out;
}

.breadcum-sec.breadcum-sec2::before {
  content: none;
}

.breadcum-sec .main-tt {
  font-size: 30px;
  color: white;
  font-weight: 600;
  margin-bottom: 8px;
}

.breadcum-sec .main-tt span {
  color: var(--pri);
}

.breadcum-sec ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 4px 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.breadcum-sec ul li {
  color: var(--pri);
  font-weight: 400;
  font-size: 15px;
  position: relative;
  font-family: var(--font2);
}

.breadcum-sec.breadcum-sec2 ul li {
  color: var(--sec);
  font-size: 15px;
}

.breadcum-sec ul li::before {
  content: "/";
  position: absolute;
  top: 1px;
  right: -20px;
  width: 20px;
  height: 20px;
  color: white;
}

.breadcum-sec.breadcum-sec2 ul li::before {
  content: url('data:image/svg+xml;charset=utf-8,<svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="23" height="23" fill="none" viewBox="0 0 24 24"> <path stroke="%23333" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="m10 16 4-4-4-4"/> </svg>');
}

.breadcum-sec ul li:last-child:before {
  content: none;
}

.breadcum-sec ul li a {
  color: #fff;
}

.breadcum-sec.breadcum-sec2 ul li a {
  color: var(--text-color);
}

.breadcum-sec ul li a:hover {
  color: var(--pri);
}

.breadcum-sec.breadcum-sec2 ul li a:hover {
  color: var(--pri);
}

.abt-img-bx {
  float: left;
  max-width: 540px;
  width: 100%;
  margin-right: 50px;
  margin-bottom: 30px;
  overflow: hidden;
}

.factsheet-bx {
  background-color: var(--off-white);
  border: 1px dashed var(--pri);
  border-radius: 14px;
  display: flex;
  padding: 13px;
  height: 100%;
  align-items: center;
  transition: 0.2s ease-in-out;
}

.factsheet-bx .icon {
  padding-right: 5px;
  min-width: 40px;
  max-width: 40px;
}

.factsheet-bx .icon svg {
  fill: var(--pri);
  width: 100%;
  height: 100%;
  color: var(--pri);
}

.factsheet-bx .tx-bx .tt {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 2px;
}

.factsheet-bx .tx-bx p {
  color: var(--para-color);
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 0;
  opacity: 0.8;
  font-weight: 500;
}

.factsheet-bx.why-bx {
  flex-wrap: wrap;
  padding: 20px;
  gap: 10px 15px;
  display: block;
}

.factsheet-bx.why-bx .icon {
  padding-right: 0;
}

.factsheet-bx.why-bx .tx-bx .tt {
  font-size: 18px;
}

.factsheet-bx.why-bx .body-tx {
  font-size: 14px;
  margin-top: 10px;
}

.category-page .accordion-item {
  background-color: var(--off-white) !important;
}

.category-page .accordion-body {
  background-color: var(--white) !important;
}

.cate-img {
  max-width: 400px;
  float: right;
  width: 100%;
  margin-left: 30px;
  margin-bottom: 30px;
}

.cate-img.left {
  float: left;
  margin-right: 30px;
  margin-left: 0;
}

.cate-img.center {
  float: none;
  margin: 0 auto 30px;
  max-width: 500px;
}

.cate-img img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cat-nav-bx {
  background-color: var(--off-white);
  padding: 30px;
}

.cat-nav-bx .tt {
  color: var(--text-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.cat-nav-bx ul {
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cat-nav-bx ul li a {
  background-color: var(--white);
  padding: 10px 12px;
  color: var(--text-color);
  font-weight: 500;
  transition: 0.2s ease-in-out;
  position: relative;
}

.cat-nav-bx ul li a::before {
  content: url(data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20width=%2222%22%20height=%2222%22%20viewBox=%220%200%2024%2024%22%20fill=%22none%22%20stroke=%22currentColor%22%20stroke-width=%221.5%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22%20class=%22icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-arrow-narrow-right%22%3E%3Cpath%20stroke=%22none%22%20d=%22M0%200h24v24H0z%22%20fill=%22none%22/%3E%3Cpath%20d=%22M5%2012l14%200%22%20/%3E%3Cpath%20d=%22M15%2016l4%20-4%22%20/%3E%3Cpath%20d=%22M15%208l4%204%22%20/%3E%3C/svg%3E);
  position: absolute;
  right: 7px;
}

.cat-nav-bx ul li.active a::before,
.cat-nav-bx ul li a:hover:before {
  content: url(data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20width=%2222%22%20height=%2222%22%20viewBox=%220%200%2024%2024%22%20fill=%22none%22%20stroke=%22white%22%20stroke-width=%221.5%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22%20class=%22icon%20icon-tabler%20icons-tabler-outline%20icon-tabler-arrow-narrow-right%22%3E%3Cpath%20stroke=%22none%22%20d=%22M0%200h24v24H0z%22%20fill=%22none%22/%3E%3Cpath%20d=%22M5%2012l14%200%22%20/%3E%3Cpath%20d=%22M15%2016l4%20-4%22%20/%3E%3Cpath%20d=%22M15%208l4%204%22%20/%3E%3C/svg%3E);
}

.cat-nav-bx ul li.active a,
.cat-nav-bx ul li a:hover {
  background-color: var(--pri);
  color: var(--white);
}

.cat-nav-img {
  background-image: url(../images/bg1.webp);
  padding: 40px 30px;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.cat-nav-img .tt {
  color: white;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.cat-nav-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000d24;
  opacity: 0.75;
  z-index: -1;
  transition: 0.3s ease-in-out;
}

.call-bx {
  background-color: var(--off-white);
  padding: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.call-bx .icon svg {
  width: 45px;
  height: 45px;
  color: var(--pri);
}

.call-bx .tx-bx p {
  margin-bottom: 3px;
  color: var(--text-light);
  font-weight: 600;
}

.call-bx .tx-bx .tt {
  font-weight: 700;
  font-size: 20px;
  color: var(--text-color);
}

.call-bx .tx-bx .tt:hover {
  color: var(--pri);
}

.vidBx .imgBx {
  position: relative;
}

.vidBx .imgBx img {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 4px;
  box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.15);
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: 0;
  outline: 0;
  transition: 0.3s;
}

.vidBx .imgBx:hover .video-play-icon {
  transform: translate(-50%, -50%) scale(1.1);
}

.vidBx .tx-bx .tt {
  font-size: 15px;
  color: var(--text-color);
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 1px;
  text-transform: capitalize;
  text-align: center;
}

.vidBx:hover .tx-bx .tt {
  color: var(--pri);
}

.vidBx .tx-bx p {
  text-align: center;
}

.content-sec.img-content {
  background-image: url(../images/banner/1.jpg);
  align-content: center;
  position: relative;
  z-index: 1;
}

.content-sec.img-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(23 23 23 / 70%);
  z-index: -1;
  backdrop-filter: blur(2px);
}

.content-sec.img-content .scroll-bx {
  max-height: 410px;
  overflow-y: auto;
  padding-right: 10px;
}

.content-sec.img-content .scroll-bx::-webkit-scrollbar {
  background-color: transparent;
  width: 0px;
}

.content-sec.img-content .scroll-bx:hover::-webkit-scrollbar {
  width: 5px;
}

.content-sec.img-content .scroll-bx:hover::-webkit-scrollbar-thumb {
  background-color: rgba(232, 232, 232, 0.861);
}

@media (hover: none) {
  .content-sec.img-content .scroll-bx::-webkit-scrollbar {
    width: 5px;
  }

  .content-sec.img-content .scroll-bx::-webkit-scrollbar-thumb {
    background-color: rgba(225, 225, 225, 0.2);
  }
}

.content-sec.img-content .main-tt,
.content-sec.img-content h1,
.content-sec.img-content h2,
.content-sec.img-content h3 {
  color: var(--white);
  line-height: 1.3;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 5px;
}

.content-sec.img-content h2,
.content-sec.img-content h3 {
  font-size: 25px;
}

.content-sec.img-content ul {
  padding-left: 0;
  margin: 0;
  margin-bottom: 10px;
}

.content-sec.img-content p,
.content-sec.img-content ul li {
  color: white;
  opacity: 0.9;
  font-weight: 400;
  line-height: 1.7;
  text-align: justify;
}

.content-sec.img-content ul li {
  margin-bottom: 2px;
}

.faq-tt {
  transform: rotate(180deg) translateX(0%);
  width: 100%;
  align-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-transform: uppercase;
  font-weight: bolder;
  font-size: 200px;
  color: #cecece;
}

.faq-sec .nav-pills .nav-link {
  background-color: white;
  color: var(--text-color);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.07);
  border-radius: 0;
  border-left: 3px solid var(--pri);
  padding: 15px 20px;
  text-align: left;
  font-size: 17px;
}

.faq-sec .nav-pills .nav-link:hover {
  color: var(--pri);
}

.faq-sec .nav-pills .nav-link.active,
.faq-sec .nav-pills .show > .nav-link {
  color: var(--white);
  background-color: var(--pri);
  /* border: 1px solid var(--pri); */
}

.testimonial-sec {
  background-color: #f5f5f8;
  background-image: url(../images/shape/testimonials.png);
  background-position: right center;
  background-size: contain;
  background-repeat: no-repeat;
}

.testi-bx {
  background-color: white;
  padding: 40px 40px 30px;
  position: relative;
  height: 100%;
}

.testi-bx::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 1px;
  right: 0;
  transform: scaleX(0.9) rotateX(0deg);
  border: 1px solid var(--pri);
  transition: 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
}

.testi-bx:hover:before {
  opacity: 1;
  transform: scaleX(1) rotateX(0deg);
}

.testi-bx::after {
  position: absolute;
  content: "";
  right: 35px;
  top: 35px;
  z-index: 1;
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="65" height="65" viewBox="0 0 24 24" fill="%23747474" ><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M9 5a2 2 0 0 1 2 2v6c0 3.13 -1.65 5.193 -4.757 5.97a1 1 0 1 1 -.486 -1.94c2.227 -.557 3.243 -1.827 3.243 -4.03v-1h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 2 -2z" /><path d="M18 5a2 2 0 0 1 2 2v6c0 3.13 -1.65 5.193 -4.757 5.97a1 1 0 1 1 -.486 -1.94c2.227 -.557 3.243 -1.827 3.243 -4.03v-1h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 2 -2z" /></svg>');
  background-repeat: no-repeat;
  width: 65px;
  height: 65px;
  transition: 0.3s ease-in-out;
}

.testi-bx:hover:after {
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="65" height="65" viewBox="0 0 24 24" fill="%23e90b35" ><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M9 5a2 2 0 0 1 2 2v6c0 3.13 -1.65 5.193 -4.757 5.97a1 1 0 1 1 -.486 -1.94c2.227 -.557 3.243 -1.827 3.243 -4.03v-1h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 2 -2z" /><path d="M18 5a2 2 0 0 1 2 2v6c0 3.13 -1.65 5.193 -4.757 5.97a1 1 0 1 1 -.486 -1.94c2.227 -.557 3.243 -1.827 3.243 -4.03v-1h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 2 -2z" /></svg>');
}

.testi-bx .icon-bx {
  border-radius: 100%;
  overflow: hidden;
  width: 75px;
  height: 75px;
  margin-bottom: 20px;
  border: 1px solid #e3e3e3;
}

.testi-bx .icon-bx img {
  width: 100%;
  display: block;
}

.testi-bx .tx-bx {
  line-height: 1.6;
}

.testi-bx .name {
  font-size: 18px;
  font-weight: 600;
  margin-top: 15px;
  color: var(--text-color);
}

.swiper-slide {
  height: auto;
}

#testimonials-two__pagination {
  position: relative;
  padding-top: 42px;
  z-index: 55;
}

#testimonials-two__pagination .swiper-pagination-bullet {
  position: relative;
  width: 8px;
  height: 8px;
  margin: 0px 7.5px;
  background: #a7a7a7;
  border-radius: 50%;
  opacity: 1;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

#testimonials-two__pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--pri);
}

#testimonials-two__pagination .swiper-pagination-bullet::before {
  position: absolute;
  top: -4px;
  left: -4px;
  bottom: -4px;
  right: -4px;
  border: 1px solid var(--pri);
  border-radius: 50%;
  transform: scaleX(0);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  content: "";
}

#testimonials-two__pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
#testimonials-two__pagination .swiper-pagination-bullet:hover {
  transform: scaleX(1);
}

.team-card {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  position: relative;
  box-shadow: 0px 0px 60px 0px rgba(16, 23, 40, 0.06);
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(
    90deg,
    rgb(42, 40, 51) 0%,
    rgba(42, 40, 51, 0) 100%
  );
  opacity: 0.8;
}

.team-card img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  transition: 0.5s ease;
  transform: scale(1.05);
}

.team-card:hover img {
  transform: scale(1);
}

.team-card .tx-bx {
  position: absolute;
  bottom: 10px;
  left: 20px;
}

.team-card .tx-bx .tt,
.team-card .tx-bx p {
  color: white;
  font-size: 16px;
  font-weight: 600;
}

.accordion-item,
.accordion-item:first-of-type,
.accordion-item:not(:first-of-type) {
  margin-bottom: 15px;
  background: #fff;
  border: 0;
  border-radius: 0;
  padding: 20px 30px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.07);
}

.accordion-item:last-of-type {
  margin-bottom: 0;
}

.accordion-button {
  background: transparent;
  font-weight: 600;
  outline: 0 !important;
  color: var(--text-color);
  font-size: 18px;
  padding: 0 0 0;
  padding-right: 59px;
  font-family: var(--font);
  border-radius: 0 !important;
}

.accordion-body {
  line-height: 1.7;
  font-size: 16px;
  color: var(--para-color);
  padding: 16px 20px;
  background-color: #f5f5f8;
  margin-top: 20px;
}

.accordion-body p {
  margin-block: 2px;
}

.accordion-button::after {
  position: absolute;
  right: 0;
  top: -3px;
  width: 35px;
  height: 35px;
  background-color: var(--pri);
  background-size: 1.1rem;
  background-position: center;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-plus-lg" viewBox="0 0 16 16"> <path fill-rule="evenodd" d="M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2"/> </svg>');
}

.accordion-button::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  right: 59px;
  top: 0;
}

.accordion-button:not(.collapsed) {
  box-shadow: none !important;
  background: transparent;
  border: 0;
  color: var(--text-color);
}

.accordion-button:focus {
  box-shadow: none !important;
  border: 0;
}

.accordion-button:not(.collapsed)::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-dash-lg" viewBox="0 0 16 16"> <path fill-rule="evenodd" d="M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8"/> </svg>');
  background-color: var(--sec);
}

.iti {
  width: 100%;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  height: 40px;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag,
.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
}

.g-recaptcha {
  transform: scale(0.8);
  transform-origin: 0 0;
}

.business-enq {
  position: fixed;
  bottom: 55px;
  right: 20px;
  z-index: 9;
  border: 0;
  outline: 0;
  background-color: var(--pri);
  color: var(--white);
  font-size: 15px;
  padding: 5px;
  padding-right: 15px;
  border-radius: 24px;
  transition: 0.2s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  font-weight: 400;
}

.business-enq:hover {
  transform: scale(1.03);
}

.business-enq .icon {
  height: 32px;
  width: 32px;
  border-radius: 100%;
  line-height: 32px;
  text-align: center;
  display: inline-block;
  background: var(--white);
  color: var(--pri);
}

.business-enq .icon svg {
  height: 18px;
  width: 18px;
}

.whatapp_btn {
  background: #01e675;
  width: 40px;
  height: 40px;
  color: var(--white);
  position: fixed;
  right: 20px;
  bottom: 120px;
  cursor: pointer;
  z-index: 9;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
  box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.15);
  border: 0;
}

.whatapp_btn svg {
  width: 19px;
  height: 19px;
}

.whatapp_btn:hover {
  transform: scale(1.1);
}

.whatapp_btn:focus,
.whatapp_btn:hover {
  background: #01e675;
  color: var(--white);
}

.error {
  font-size: 15px;
  color: red;
}

.modal-header {
  padding: 0;
  padding-inline: 20px;
  padding-top: 18px;
  border-radius: 0;
  border: 0;
  /* border-bottom: 1px solid #e3e3e3; */
}

.modal-header.modal-header2 {
  background: var(--liner);
  background-color: var(--pri);
  color: white;
  padding-block: 12px;
}

.modal-header.modal-header2 .main-tt {
  color: white;
}

.modal-content {
  background: #f5f5f5;
  border-radius: 0;
  border: 0;
}

.modal-header.modal-header2 .btn-close {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

@media (min-width: 576px) {
  .modal-sm {
    max-width: 300px;
  }
}

.modal-body {
  padding: 13px 18px 20px;
}

.modal-content .main-tt {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--font);
  margin-bottom: 15px;
}

.btn-close {
  float: right;
  box-shadow: none;
}

.btn-close:hover,
.btn-close:focus {
  box-shadow: none;
}

.pop-img {
  aspect-ratio: 1 / 1;
}

.pop-img img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.content-sec h1,
.content-sec h2,
.content-sec h3,
.content-sec h4,
.content-sec h5,
.content-sec .tt,
.cmTitle {
  text-transform: capitalize;
  font-size: 25px;
  font-weight: 600;
  color: var(--text-color);
  text-align: left;
  margin-bottom: 7px;
  line-height: 1.3;
  color: var(--font);
}

.cmTitle {
  color: var(--pri);
  font-size: 18px;
  margin-bottom: 5px;
}

.content-sec h2,
.content-sec h3,
.content-sec .tt,
.content-sec h4,
.content-sec h5 {
  font-size: 22px;
  color: var(--text-color);
}

.content-sec ul {
  padding-left: 0;
  margin: 0;
  margin-bottom: 10px;
  list-style: none;
  display: flow-root;
}

.content-sec ol {
  padding-left: 18px;
  margin-bottom: 15px;
}

.content-sec p {
  margin-bottom: 15px;
}

.content-sec p,
.content-sec ul li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--para-color);
  text-align: justify;
  font-family: var(--font2);
  font-weight: 400;
}

.content-sec ul li {
  margin-bottom: 3px;
  position: relative;
  padding-left: 20px;
}

.content-sec ul li::before {
  content: "➤";
  position: absolute;
  left: 0px;
  color: var(--pri);
  font-size: 15px;
  top: 1px;
}

.content-sec ul li a {
  display: inline;
  color: var(--text-color);
}

.content-sec table {
  margin-bottom: 15px;
}

.content-sec table p {
  margin-bottom: 0;
}

ul.footer-menu-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 18px;
  list-style: none;
}

ul.footer-menu-list li {
  padding-left: 0;
}

ul.footer-menu-list li::before {
  content: none;
}

ul.footer-menu-list li a {
  margin-right: 15px;
  display: inline-block;
  line-height: 1.3;
  position: relative;
  text-transform: capitalize;
  color: var(--white);
  opacity: 0.9;
}

ul.footer-menu-list li a:hover {
  color: var(--pri);
  opacity: 1;
}

ul.footer-menu-list li a::before {
  content: "|";
  padding: 0;
  font-size: 13px;
  position: absolute;
  right: -9px;
  top: 1px;
  color: var(--white);
  opacity: 0.8;
}

ul.footer-menu-list li:last-child a::before {
  content: none;
}

.cta-sec {
  position: relative;
  z-index: 1;
  background: url(../images/shape/call-to-action-bg.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  padding-block: 60px;
}

.cta-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--sec);
  opacity: 0.3;
  z-index: -1;
}

footer {
  overflow: hidden;
  padding: 90px 0 25px;
  position: relative;
  z-index: 1;
  background-color: #11161f;
}

.ft-shape {
  position: absolute;
  max-width: 500px;
  width: 100%;
  top: 50px;
  right: 0;
  opacity: 0.1;
  pointer-events: none;
  z-index: -1;
}

.ft-bx {
  position: relative;
  z-index: 1;
}

.ft-bx .con-bx {
  display: flex;
  align-items: start;
  margin-bottom: 10px;
  gap: 10px;
}

.ft-bx .con-bx .ic-bx svg {
  min-width: 17px;
  width: 17px;
  height: 17px;
  color: var(--pri);
}

.ft-bx .con-bx a,
.ft-bx .con-bx p {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 0px;
}

.ft-bx .con-bx p strong {
  font-weight: 600;
}

.ft-bx .con-bx a:hover {
  color: var(--pri);
  opacity: 1;
}

.ft-bx .ft-tt {
  font-family: var(--font);
  font-weight: 600;
  font-size: 22px;
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 15px;
  position: relative;
}

.ft-bx p {
  color: var(--white);
  line-height: 1.6;
  opacity: 0.9;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 20px;
}

.ft-bx ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.ft-bx ul li a {
  font-size: 15px;
  color: var(--white);
  padding: 5px 0;
  transition: 0.1s;
  display: inline-block;
  font-weight: 300;
  opacity: 0.9;
}

.ft-bx ul li a:hover {
  color: var(--pri);
  opacity: 1;
}

.ft-bx ul.social {
  display: flex;
  gap: 7px;
  justify-content: start;
}

.ft-bx ul.social li a {
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 35px;
  height: 35px;
  color: rgb(255, 255, 255);
  border-radius: 100%;
  align-content: center;
  text-align: center;
  line-height: 1;
  opacity: 1;
}

.contact-bx.ft-bx ul.social li a {
  border: 1px solid rgba(0, 0, 0, 0.4);
  color: var(--pri);
}

.contact-bx.ft-bx ul.social li.facebook a {
  background: #3c5b9b;
  color: white;
  border: 0;
}

.contact-bx.ft-bx ul.social li.twitter a {
  background: var(--liner);
  background-color: #000;
  color: white;
  border: 0;
}

.contact-bx.ft-bx ul.social li.linkedin a {
  background: #027ba5;
  color: white;
  border: 0;
}

.contact-bx.ft-bx ul.social li.youtube a {
  background: #f70000;
  color: white;
  border: 0;
}

.contact-bx.ft-bx ul.social li.whatsapp a {
  background: #01e675;
  color: white;
  border: 0;
}

.contact-bx.ft-bx ul.social li.instagram a {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  color: white;
  border: 0;
}

.contactBx-container {
  background-color: #f8f8f8;
  padding: 30px;
  border: 1px solid #f8f8f8;
  height: 100%;
}

.contactBx-container .form-control,
.contactBx-container .iti--allow-dropdown .iti__flag-container,
.contactBx-container .iti--separate-dial-code .iti__flag-container {
  height: 52px;
}

.contactBx-container textarea.form-control {
  min-height: 150px;
}

.ft-bx ul.social li a:hover {
  border-color: var(--pri);
  background-color: var(--pri);
  color: white;
}

.copyright {
  padding-top: 25px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.copyright svg {
  color: var(--pri);
}

.copyright p {
  color: var(--white);
  margin-bottom: 0;
  font-weight: 500;
  font-size: 15px;
  opacity: 0.8;
}

.copyright p a {
  color: var(--white);
  display: inline;
  font-weight: 600;
}

.copyright p a:hover {
  color: var(--pri);
}

footer .content-sec h1,
footer .content-sec h2,
footer .content-sec h3,
footer .content-sec .tt {
  color: var(--white);
  font-size: 18px;
  text-transform: capitalize;
}

footer .content-sec p,
footer .content-sec ul li {
  color: var(--off-white);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
}

.sitemap {
  border-left: 1px solid #666;
  padding: 0;
}

.sitemap li {
  list-style: none !important;
  background: transparent url(../images/sitemap_hr.png) no-repeat scroll 0px 9px;
  padding: 0px 0px 0px 15px;
  margin-bottom: 5px;
  font-family: var(--font2);
  color: var(--text-color);
  font-weight: 400;
}

.sitemap li ul {
  border-left: 1px solid #666;
  padding: 0;
}

.sitemap li a {
  color: var(--text-color);
  font-size: 15px;
  padding-bottom: 5px;
  display: inline-block;
}

.sitemap li a:hover {
  color: var(--pri);
}

.market-sec {
  padding: 60px 0;
  font-family: var(--font2);
}

.market-sec h1,
.market-sec .main-tt,
.market-sec h2,
.market-sec h3 {
  font-size: 25px;
  color: var(--text-color);
  line-height: 26px;
  margin: 20px 0 15px;
  font-weight: 600;
}

.market-sec h2,
.market-sec h3 {
  font-size: 25px;
  font-weight: 600;
}

.market-sec .market-bx {
  padding: 10px 12px;
  background-color: #e8e8e8;
  color: var(--text-color);
  font-size: 15px;
  transition: 0.2s ease-in-out;
}

.market-sec .market-bx:hover {
  background-color: var(--pri);
  color: white;
}

.expend-content-sec {
  max-height: 433px;
  /* collapsed height */
  overflow: hidden;
}

.expend-content-sec.expanded {
  max-height: 8000px;
  /* expanded height */
  overflow: unset;
}

.read-toggle {
  display: inline-block;
  color: var(--text-light);
  cursor: pointer;
  font-weight: 600;
  margin-top: 5px;
  user-select: none;
}

.read-toggle:hover {
  color: var(--text-color);
}

@-webkit-keyframes float-bob-y {
  0% {
    transform: translateY(-20px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(-20px);
  }
}

@keyframes float-bob-y {
  0% {
    transform: translateY(-20px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(-20px);
  }
}

.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.pg-mainRow {
  position: relative;
  z-index: 1;
}

.pg-thumbs,
.lb-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
}

.lb-thumbs {
  max-width: 500px;
  margin: 0 auto;
}

.pg-thumb,
.lb-thumb {
  width: 110px;
  aspect-ratio: 3 / 2;
  flex-grow: 1;
  background-color: white;
  border: 1px solid #e3e3e3;
  padding: 0;
}

.lb-thumb {
  flex-grow: 0;
  width: 60px;
}

.pg-thumb img,
.lb-thumb img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}

.lb-thumb img {
  object-fit: contain;
}

.pg-thumb.active,
.lg-thumb.active {
  opacity: 0.4;
}

.pg-stage {
  background-color: white;
  border: 1px solid #e3e3e3;
}

.pg-stage .js-mainImg {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}

/* Lens */
.pg-lens {
  position: absolute;
  display: none;
  pointer-events: none;
  width: 150px;
  height: 150px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.26);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

/* Magnifier Popup on page */
.pg-zoom {
  width: 390px;
  height: 390px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #eee;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  display: none;
}

.pg-zoomArea {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
}

/* Modal / Lightbox */
.js-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(34 34 34 / 50%);
  transform-origin: center;
  transform: scale(0);
  transition: 0.2s ease-in-out;
  pointer-events: none;
  opacity: 0;
  z-index: 9999;
  align-content: center;
  backdrop-filter: blur(10px);
}

.js-lightbox.open {
  transform: scale(1);
  pointer-events: all;
  opacity: 1;
}

.js-lightbox .lb-panel {
  border-radius: 10px;
  width: 100%;
  max-width: 1100px;
  background-color: #85162b;
  /* aspect-ratio: 3 / 2; */
  position: relative;
  margin: 0 auto;
  align-content: center;
  padding: 40px;
}

.lb-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-size: 26px;
  line-height: 34px;
  cursor: pointer;
}

.lb-close:hover {
  color: #fff;
}

.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 24px;
  border: 0;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  font-size: 26px;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lb-arrow:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lb-prev {
  left: 18px;
}

.lb-next {
  right: 18px;
}

.lb-center {
  max-width: 600px;
  padding: 0;
  background-color: white;
  margin: 0 auto 30px;
}

.lb-center img {
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
}

.ceo-img img {
  border-radius: 0 50px 0 50px;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

.ceo-tx p {
  margin-bottom: 15px;
}

.ceo-tx p a:hover {
  color: var(--pri);
}

.ceo-tx p b {
  color: var(--text-color);
}
