:root {
  --max-width: 1200px;
  --gap: 1rem;
  --color-white: #fff;
  --color-light: #3c2cda;
  --color-dark: #07125e;
  --mansory-gap: 13px;
  --color-orange: #f4ae52;
  --color-black: #151505;
  --font-body: "Rethink Sans", sans-serif;
  --font-heading: "Rethink Sans", sans-serif;
  /*--gradient: linear-gradient(95.67deg, #fcab72 1.98%, #934b40 154.7%);*/
  /* --dark-bg: #405659; */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: #171717;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

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

h1,
h2,
h3,
h4 {
  font-weight: 500;
  font-family: var(--font-heading);
}

h1 {
  font-size: 28px;
  /* line-height: 1.5; */
}

img {
  max-width: 100%;
}

.text-center {
  text-align: center;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 15px;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 10px;
}

.pt-2 {
  padding-top: 20px;
}

.pt-3 {
  padding-top: 30px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 10px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pb-3 {
  padding-bottom: 30px;
}

.pb-3I {
  padding-bottom: 30px !important;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.pb-2 {
  padding-bottom: 20px !important;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.direction-column {
  flex-direction: column;
}

.row-reverse .row {
  flex-direction: row-reverse;
}

.w-full {
  width: 100%;
}

.col-2 {
  width: 50%;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 10px;
}

.grid-span-2 {
  grid-column: span 2;
}

.grid-span-3 {
  grid-column: span 3;
}

.grid-span-4 {
  grid-column: span 4;
}

.grid-span-5 {
  grid-column: span 5;
}

.grid-span-6 {
  grid-column: span 6;
}

.grid-span-7 {
  grid-column: span 7;
}

.gap-1 {
  gap: 10px;
}

.gap-2 {
  gap: 20px;
}

.gap-3 {
  gap: 30px;
}

.gap-4 {
  gap: 40px;
}

.gap-5 {
  gap: 50px;
}

.gap-y-5 {
  row-gap: 50px;
}

.gap-6 {
  gap: 6rem;
}

.gap-7 {
  gap: 7rem;
}

.gap-8 {
  gap: 8rem;
}

.gap-9 {
  gap: 9rem;
}

.gap-10 {
  gap: 10rem;
}

.image-cover {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.align-center {
  align-items: center;
}

.overlay-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.overlay-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.7;
}

h4 {
  /* color: #2b2a29; */
}

.section-border-top {
  border-top: 1px solid #bebebe;
}

.unstyled-button {
  font-weight: 500;
  color: #ff0102;
}

.unstyled-button.white {
  color: #fff;
}

.section-padding {
  padding: 3.8rem 0;
}

.narrow-container {
  padding-inline: 6rem;
}

.section-padding-bottom {
  padding-bottom: 3.8rem;
}

.button-container {
  /* margin-top: 30px; */
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.button {
  background-color: #0363b2;
  color: #fff;
  padding: 12px 30px 15px;
  border-radius: 30px;
  display: inline-block;
  align-items: center;
  gap: 13px;
  transition: 0.3s;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  outline: none;
  border: none;
}

.button:hover {
  background-color: #fff;
  color: #052d93;
}

.button.white {
  background-color: #fff;
  color: #171717;
}

.button.white:hover {
  background-color: #052d93;
  color: #fff;
}

.cover-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

header .logo {
  display: flex;
  width: 75px;
  padding-block: 7px;
}

header {
  position: relative;
  z-index: 99;
  position: sticky;
  top: 0;
  background-color: #fff;
  box-shadow: 0 0 20px 2px #0000001f;
}

.navigation .navigation-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  gap: 32px;
  font-size: 14px;
  font-weight: 700;
}

header .logo img {
  width: 100%;
}

.navigation .navigation-list .nav-btn {
  font-weight: 400;
}

.topbar {
  background-color: #ddf8fe;
  /* color: #fff; */
  text-align: center;
  padding: 7px 0;
  font-size: 15px;
}

.top-nav-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
}

.top-nav-list li a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.menu-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.search-icon {
  display: flex;
}

.navbar .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.dropdown {
  position: relative;
}

.dropdown .dropdown-menu {
  position: absolute;
  width: 130px;
  background-color: #fff;
  box-shadow: 0px 2px 4px #0000002e;
  padding: 5px 0;
  border-radius: 8px;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

ul.submenu li a {
  display: block;
  padding: 5px 15px;
  font-size: 14px;
}

ul.submenu {
  list-style: none;
}

.navigation .navigation-list li {
  padding: 28px 0;
}

.navigation .navigation-list li.dropdown:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 13.1l-8-8 2.1-2.2 5.9 5.9 5.9-5.9 2.1 2.2z'/%3E%3C/svg%3E");
  height: 10px;
  width: 10px;
  display: inline-block;
  margin-left: 3px;
}

.navigation .navigation-list ul.submenu li {
  padding: 0;
}

.dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
}

.hamburg-icon .line {
  width: 20px;
  height: 2px;
  margin-bottom: 4px;
  background-color: var(--color-dark);
  border-radius: 5px;
  transition: 0.3s;
}

.hamburg-icon.open .line:first-child {
  transform: rotate(45deg) translate(5px, -2px);
}

.hamburg-icon.open .line:nth-child(2) {
  opacity: 0;
}

.hamburg-icon.open .line:last-child {
  transform: rotate(-46deg) translate(10px, -3px);
}

.hamburg-icon .line:last-child {
  margin: 0;
}

.hamburg-icon {
  display: none;
}

.main-banner .container,
.home-slider .container {
  position: absolute;
  color: #fff;
  /* font-weight: 700; */
  width: 100%;
  margin-inline: auto;
  margin-left: calc((100vw - (var(--max-width))) / 2);
}

.banner-content h1 {
  font-size: 60px;
  font-weight: 700;
}

.home-banner-section {
  position: relative;
  /* height: 85vh; */
  overflow: hidden;
}

.home-banner-section .banner-image {
  display: flex;
  width: 100%;
}

.home-banner-section .banner-image video,
.home-banner-section .banner-image iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner-section .banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner-section .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: auto;
}

.home-banner .banner-content {
  width: 60%;
  /* padding: 6rem 20px 5rem 4.3rem; */
  /* background-color: #272727; */
  color: #fff;
}

.home-banner .banner-content .button {
  display: inline-block;
  margin-top: 10px;
}

.home-banner .banner-content p {
  padding: 10px 0 25px;
  font-size: 18px;
}

.home-banner {
  background-color: #000;
}

.main-banner .banner-content {
  width: 70%;
}

.swiper .swiper-pagination-bullet {
  border: 1.5px solid #DDF8FE;
  opacity: 0.6;
  background: #D3F6FD;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  transition: 0.3s;
}

.swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 40px;
    background-color: #DDF8FE;
    opacity: 1;
}

.swiper-pagination-bullet-active {
  border-color: #0072bb;
  background-color: #0072bb;
}

.section-head h2 {
  font-size: 34px;
  margin-bottom: 10px;
  color: #171717;
  font-weight: 600;
}

.section-head p {
  color: #4a4a4a;
  font-weight: 500;
  font-size: 17px;
}

.section-content {
  padding-top: 15px;
}

.section-content h3 {
  font-size: 28px;
}

.section-head {
  padding-bottom: 20px;
}

footer {
  /* background-color: var(--color-light); */
  padding: 60px 0px 0;
  /* color: #fff; */
}

.footer-navigation-wrapper {
  width: calc(65% - 70px);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .footer-row {
  gap: 85px;
  margin-bottom: 45px;
}

footer .footer-row .footer-logo img {
  border-radius: 8px;
  mix-blend-mode: darken;
}

footer .footer-row .footer-map-locator a {
  display: flex;
  gap: 5px;
  text-decoration: underline;
  font-size: 13px;
  color: #bbc4cb;
  text-underline-offset: 2px;
}

footer .footer-row .footer-logo {
  display: flex;
  gap: 30px;
  flex-direction: column;
  width: calc(35% - 15px);
}

.footer-col-navigation h3 {
  margin-bottom: 17px;
  font-size: 19px;
  font-weight: 700;
  color: #0363b2;
}

footer .navigation-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}

.footer-copyright {
  width: 100%;
  font-family: var(--font-heading);
  background-color: #ddf8fe;
  padding: 20px 0;
}

footer .footer-row-navigation {
  padding: 40px 0px;
}

.main-banner-section {
  height: 55vh;
}

.main-banner-section .container {
  min-height: 100%;
  display: flex;
  align-items: center;
}

.main-banner {
  height: 100%;
}

.row-reverse .about-image {
  padding-left: 0;
  padding-right: 77px;
}

.category-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  border-bottom: 1px solid #bebebe;
  margin-bottom: 20px;
}

.category-grids-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  text-align: center;
  display: none;
}

.product-grid {
  background-color: #f6f6f6;
  padding: 20px 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 10px;
  text-align: center;
}

.product-grid .image {
  min-height: 170px;
  display: flex;
  align-items: center;
  mix-blend-mode: darken;
  justify-content: center;
}

.product-grid .content {
  margin-top: 13px;
}

.category-tabs .filter.active:after {
  content: "";
  background-color: #ff0102;
  height: 2px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -1px;
}

.category-tabs .filter {
  position: relative;
  padding: 7px 0 7px 7px;
  font-size: 15px;
  cursor: pointer;
}

.tab-content.category-grids-row.active {
  display: grid;
}

.solutions-section {
  background-color: #367ccc;
  color: #fff;
}

.solutions-section .section-head h2 {
  color: #fff;
}

.solutions-accordion-container {
  display: flex;
  margin-top: 10px;
  flex-direction: column;
  gap: 14px;
}

.accordion-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 10px;
  font-size: 20px;
}

.solutions-section .content {
  padding: 45px 70px;
}

.solutions-section .content .accordion-label h4 {
  color: #fff;
}

.accordion-content {
  display: none;
}

.accordion-label .arrow {
  display: flex;
}

.accordion-label .arrow svg {
  height: 8px;
  width: 11px;
  transition: 0.3s;
}

.accordion.active .accordion-label .arrow svg {
  transform: rotate(180deg);
}

.partner-clients-section .content {
  width: 35%;
}

.partner-clients-container .image img {
  height: 120px;
  width: 100%;
  object-fit: contain;
}

.partner-clients-container {
  width: calc(65% - 30px);
}

.partner-clients-section .row {
  gap: 30px;
}

.partner-clients-container .image {
  text-align: center;
}
.insight-grid .content {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.insight-grid .image {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
}

.insight-grid .content .date {
  color: #888;
  font-size: 14px;
}

.insight-grid .content h4 {
  font-size: 18px;
  height: 86px;
  padding-right: 20px;
  color: inherit;
}

.have-question-section {
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 2rem 0;
}

.have-question-section .section-head h2 {
  color: inherit;
}

.testimonials-grid .image {
  width: 145px;
  mix-blend-mode: darken;
  text-align: center;
}

.testimonials-grid .content {
  width: calc(100% - (145px + 30px));
}

.testimonials-grid {
  background-color: #f6f6f6;
  border-radius: 10px;
  padding: 30px;
}

.testimonials-grid .image .name {
  font-weight: 500;
}

.testimonials-grid .image .designation {
  font-size: 14px;
}

.testimonials-grid .content h4 {
  font-weight: 400;
  margin-top: 5px;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 30px;
  border-radius: 5px;
  height: 3px;
  background-color: #aaa;
  opacity: 1;
}

.testimonials-pagination {
  text-align: center;
  margin-top: 20px;
}

.testimonials-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ff0102;
}

.inner-banner {
  position: relative;
  overflow: hidden;
  height: 55vh;
  display: flex;
  align-items: center;
}

.inner-banner .banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.inner-banner .banner-content {
  position: relative;
  z-index: 1;
  color: #fff;
  width: 100%;
  padding-block: 2rem;
}

.inner-banner .banner-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 0.3;
}

.why-choose-grid {
  background-color: #f6f6f6;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: 0.3s;
}

.why-choose-grid .icon svg {
  height: 65px;
}

.why-choose-grid:hover .icon svg {
  fill: #fff;
  -webkit-text-stroke-color: #fff;
}

.why-choose-grid:hover .icon svg path,
.why-choose-grid:hover .icon svg circle {
  fill: inherit;
}

.why-choose-grid:hover {
  background-color: #367ccc;
  color: #fff;
}

.why-choose-grid:hover .icon svg path[fill="white"] {
  fill: #367ccc;
}

.mission-inner {
  position: relative;
  color: #fff;
}

.mission-inner .section-content {
  padding: 7rem 0;
  position: relative;
  z-index: 1;
}

.mission-inner .row {
  max-width: 70%;
  justify-content: center;
  margin-inline: auto;
}

.mission-inner .row h3 {
  width: 58%;
}

.mission-inner .row h3:first-child {
  width: 25%;
  color: #4991e3;
}

.solutions-page-section .insight-grid .content {
  padding: 0 17px 15px;
  gap: 10px;
  justify-content: space-between;
  height: calc(100% - 210px);
}

.solutions-page-section .insight-grid {
  border-radius: 10px;
  transition: 0.3s;
  background-color: #fff;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.solutions-page-section .insight-grid:hover {
  background-color: #367ccc;
  color: #fff;
}

.solutions-page-section .insight-grid:hover .content .unstyled-button {
  color: inherit;
}

.solutions-page-section .insight-grid:hover .date {
  color: inherit;
}

.solutions-page-section .insight-grid h4 {
  height: auto;
}

.solutions-page-section .insight-grid p {
  font-size: 15px;
}

.solutions-page-section .insight-grid .image {
  height: 190px;
}

.solutions-page-section .insight-grid .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.solutions-page-section .insight-grid .content > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.selectbox select {
  padding: 12px 20px;
  min-width: 260px;
  border-radius: 10px;
  border: 1px solid #c3c3c3;
  background-color: #f6f6f6;
  font-size: 15px;
  color: inherit;
}

.products-page-section .product-filters {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.products-page-section .product-grid {
  text-align: center;
}

.product-detail-section {
  position: relative;
  background-color: #367ccc;
  color: #fff;
}

.product-image-slider-wrapper {
  position: relative;
  width: 40%;
  padding: 40px;
  background-color: #fff;
  border-radius: 8px;
}

.product-details-wrapper {
  width: 60%;
  padding-left: 5rem;
}

.product-details-wrapper h2 {
  color: inherit;
}

.product-details-wrapper .section-head {
  padding-bottom: 0;
}

.product-details-wrapper .section-content {
  padding-top: 0;
}

.how-to-use-step {
  text-align: center;
  position: relative;
}

.how-to-use-steps-wrapper {
  position: relative;
}

.steps-line {
  height: 1.5px;
  width: 76%;
  position: absolute;
  top: 70px;
  border: 1.5px dashed #888888;
  left: 50%;
  transform: translateX(-50%);
}

.step-icon {
  display: inline-flex;
  width: 140px;
  height: 140px;
  background-color: #052d93;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 20px solid #fff;
}

.step-content {
  padding-inline: 30px;
  font-weight: 500;
}

.blogs-main-wrapper {
  position: relative;
  background-color: #367ccc;
  color: #fff;
  max-height: 450px;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
}

.blogs-image-wrapper .image {
  display: flex;
}

.blogs-image-wrapper .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.blogs-content-wrapper {
  padding: 20px 50px 60px;
  position: relative;
}

.blogs-content-wrapper .insight-grid p {
  color: #b8cce2;
}

.blogs-content-wrapper .insight-grid .date {
  color: inherit;
}

.blogs-content-wrapper .insight-grid .content h4 {
  font-size: 25px;
  height: auto;
  padding-right: 0;
}

.blogs-content-wrapper .insight-grid .content {
  gap: 20px;
}
.blogs-content-wrapper .swiper-pagination {
  text-align: left;
  padding-left: 46px;
  bottom: 13px;
}

.blogs-content-wrapper .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
}

.blogs-title-content {
  position: relative;
  margin-top: -9rem;
  background-color: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 14px;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.blogs-title-content .date {
  color: #888888;
}

.share-blog-div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.share-icons ul {
  list-style: none;
  display: flex;
  gap: 10px;
}

.share-icons ul li img {
  width: 34px;
}

.share-icons ul li a {
  display: flex;
}

.blogs-title-content h1 {
  max-width: 80%;
  margin-inline: auto;
}

.share-blog-div .label {
  color: #888888;
}

.blogs-detail-content-section .section-content {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blogs-detail-content-section .section-content * {
  font-family: inherit;
  margin: 0;
  padding: 0;
}

.blogs-detail-content-section .section-content img {
  margin: 20px 0;
}

.blogs-detail-banner-section .image img {
  width: 100%;
}

.inquiry-grids {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.phone-email .label {
  color: #535353;
}

.phone-email a {
  font-weight: 500;
  font-size: 18px;
}

.contact-map {
  height: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.form {
  background-color: #f6f6f6;
  padding: 30px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(7.5px);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-control {
  padding: 15px;
  font-size: 14px;
  background-color: #fff;
  border: none;
  border-bottom: 0.3px solid #bbbbbb;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  font-family: inherit;
}

.form-group label {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.form-button {
  margin: 20px 0 20px;
}

.form-button .button {
  /* padding-inline: 50px; */
  width: fit-content;
}

.contact-page-section .content {
  display: flex;
  flex-direction: column;
}

.button.dark {
  background-color: #000;
}

.container.extend {
  max-width: 1320px;
}

.enterprise-section {
  background-color: var(--color-light);
  color: #fff;
}

.enterprise-cards-area {
  padding-top: 5rem;
}

.enterprise-cards-area .enterprise-card {
  position: relative;
  background-color: var(--color-dark);
  transition: 0.3s;
}

.enterprise-cards-area .enterprise-card h3 {
  font-size: 24px;
  padding-right: 30px;
  margin-bottom: 15px;
}

.enterprise-cards-area .enterprise-card p {
  /* margin-bottom: 30px; */
  min-height: 130px;
}

.enterprise-cards-area .enterprise-card .button {
  position: absolute;
  bottom: 30px;
  left: 20px;
  padding: 0;
  width: 65px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(255 255 255 / 20%);
}

.enterprise-cards-area .enterprise-card .content {
  padding: 30px;
  transition: 0.3s;
}

.enterprise-cards-area .enterprise-card .side-image {
  max-width: 80%;
  border-radius: 0 5px 0 0;
  overflow: hidden;
  transition: 0.3s;
  opacity: 0;
  display: flex;
}

.enterprise-cards-area .enterprise-card:hover .side-image {
  opacity: 1;
}

.enterprise-cards-area .enterprise-card:hover .content {
  color: var(--color-light);
}

.enterprise-cards-area .enterprise-card:hover {
  background-color: #fff;
}

.navigation-progress-area {
  position: relative;
  margin: 30px 0;
  display: flex;
  gap: 60px;
  align-items: center;
}

.navigation-progress-area .progressbar {
  width: 70%;
  position: relative;
}

.navigation-progress-area .navigation {
  /* width: 30%; */
  display: flex;
  gap: 12px;
  position: relative;
  top: 1px;
}

.navigation-progress-area
  .enterprise-pagination
  .swiper-pagination-progressbar-fill {
  height: 8px;
  background-color: #fff;
  top: -2px;
}

.navigation-progress-area .progressbar .enterprise-pagination {
  height: 6px;
}

.navigation-progress-area .navigation .navigation-button {
  width: 64px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 30px;
  cursor: pointer;
}

.navigation-progress-area
  .navigation
  .navigation-button.swiper-button-disabled {
  opacity: 0.2;
}

.projects-section {
  background-color: #eeeff4;
  color: var(--color-dark);
}

.projects-card {
  position: relative;
  border-radius: 7px;
  overflow: hidden;
}

.projects-card .image {
  display: flex;
}

.projects-card .content {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 34%;
  background-color: var(--color-dark);
  padding: 15px 20px 20px;
  color: #fff;
  border-radius: 5px;
  transform: translateY(-50%);
}

.projects-card .content h3 {
  font-size: 42px;
  margin-bottom: 50px;
}

.projects-card .content p {
  margin-bottom: 20px;
}

.button.outline {
  background-color: transparent;
  border: 2px solid #fff;
}

.navigation-button {
  width: 64px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  cursor: pointer;
}

.projects-navigation .navigation-button,
.projects-section .navigation-button {
  background-color: #fff;
  border: 1px solid #5f1ebe;
}

.projects-navigation .navigation,
.projects-section .navigation {
  display: flex;
  gap: 10px;
}

.projects-page-section .projects-navigation {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.projects-section .button-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.projects-cards-area {
  margin-top: 5rem;
}

.projects-section .section-head p {
  margin-bottom: 10px;
  margin-top: 10px;
}

.projects-section .slider-thumb-content {
  text-align: center;
  background-color: #fff;
  height: 100%;
}

p {
  /* line-height: 1.6; */
}

.projects-card .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.projects-slider-thumbs .swiper-slide {
  height: auto;
  opacity: 0.5;
  cursor: pointer;
}

.projects-section .slider-thumb-content .image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.projects-section .slider-thumb-content {
  padding: 10px;
}

.projects-section .swiper-slide-thumb-active {
  opacity: 1;
}

.projects-section .progress-line-outer {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background-color: #737373;
}

.projects-section .progress-line-outer .progress-line {
  background-color: var(--color-light);
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0%;
}

.reviews-section {
  background-color: #eeeff4;
}

.reviews-cards-area {
  max-width: 59%;
  margin-inline: auto;
}

.reviews-card {
  background-color: #fff;
  padding: 20px 40px 30px;
}

.reviews-card .content {
  margin-bottom: 30px;
  font-size: 18px;
}

.reviews-card .content p {
  line-height: initial;
}

.reviews-card .side-image {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  font-size: 20px;
}

.reviews-section .reviews-pagination {
  height: 5px;
  background-color: #fff;
}

.reviews-section .reviews-pagination .swiper-pagination-progressbar-fill {
  background-color: var(--color-light);
}

.reviews-section .section-head {
  color: var(--color-dark);
  margin-bottom: 30px;
}

.insights-section {
  background-color: var(--color-dark);
  color: #fff;
}

.insights-cards-area {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.insights-cards-area .insights-main-grid {
  width: 56%;
}

.insights-cards-area .insights-grid .image {
  display: flex;
  border-radius: 10px;
}

.insights-cards-area .insights-grid .image img {
  width: 100%;
  border-radius: 5px;
}

.insights-lisiting-home {
  width: calc(44% - 20px);
  border-left: 1px solid #cbcbcb;
  display: flex;
  flex-direction: column;
  gap: 26px;
  height: 100%;
}

.insights-lisiting-home .insights-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  padding-left: 38px;
  border-bottom: 1px solid #cbcbcb;
  padding-bottom: 26px;
}

.insights-lisiting-home .insights-grid .image {
  width: 35%;
}

.insights-lisiting-home .insights-grid .insights-content {
  width: calc(65% - 15px);
}

.insights-lisiting-home .insights-grid-banner {
  padding-left: 38px;
}

.insights-content h4 {
  font-size: 18px;
}

.insights-content p {
  font-size: 14px;
  margin-block: 7px;
}

.insights-cards-area .insights-main-grid .insights-content {
  padding-top: 15px;
}

.insights-content .date {
  font-size: 12px;
  font-weight: 600;
  color: #c1c1c1;
}

footer .connect-with-head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
  margin-bottom: 30px;
}

footer .connect-with-head h2 {
  font-size: 32px;
}

.form-control::placeholder {
  color: #5c5c5c;
}

.footer-navigation-wrapper .footer-col-navigation {
  width: 27%;
}

.footer-navigation-wrapper .footer-col-navigation.contact-form {
  width: calc(73% - 10px);
}

.footer-contact-form > .row:first-child {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.footer-contact-form > .row:last-child {
  flex-direction: row;
  flex-wrap: initial;
  gap: 20px;
  align-items: flex-end;
}

.footer-contact-form > .row:last-child .form-group:first-child {
  width: 100%;
}

.footer-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.projects-page-section {
}

.projects-page-section .projects-cards-area {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.projects-page-tabs-container {
  background-color: #eeeff4;
  padding: 12px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  /* gap: 5px; */
  width: calc(40% - 25px);
}

.projects-page-tabs-container .projects-page-tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  transition: 0.3s;
  border-radius: 10px;
  font-weight: 600;
  padding: 14px;
  cursor: pointer;
  align-items: center;
}

.projects-page-tabs-container .projects-page-tab.active {
  background-color: var(--color-light);
  color: #fff;
}

.projects-page-tabs-container .projects-page-tab .icon {
  height: 24px;
  transition: 0.3s;
  opacity: 0;
}

.projects-page-tabs-container .projects-page-tab.active .icon {
  opacity: 1;
}

.projects-page-section .projects-cards-area .projects-slider-container {
  width: 60%;
}

.projects-page-section .projects-card .content {
  bottom: 0;
  top: initial;
  transform: initial;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  width: 100%;
  right: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.projects-page-section .projects-slider {
  height: 100%;
}

.projects-page-section .projects-card {
  height: 100%;
}

.projects-page-section .projects-card .image {
  height: 100%;
}

.projects-page-section .projects-card .content h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-family: var(--font-body);
}

.projects-page-section .projects-card .content .text {
  width: 70%;
}

.portfolio-card .image img {
  aspect-ratio: 10 / 8.5;
  object-fit: cover;
  width: 100%;
}

.portfolio-slider {
  padding-top: 40px;
  padding-bottom: 20px;
}

.portfolio-slider .swiper-slide-next .portfolio-card {
  transform: scale(0.85);
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s;
}

.portfolio-card {
  position: relative;
  transition: 0.3s;
  border-radius: 7px;
  overflow: hidden;
}

.portfolio-card .content {
  position: absolute;
  bottom: 0;
  color: #fff;
  padding: 25px;
  text-align: center;
  width: 100%;
}

.portfolio-card .image:before {
  content: "";
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  position: absolute;
  inset: 0;
}

.portfolio-card .image {
  position: relative;
  display: flex;
}

.portfolio-slider .swiper-slide {
  opacity: 0;
  transition: 0.4s;
}

.portfolio-slider .swiper-slide-fully-visible {
  opacity: 1;
}

.portfolio-container {
  /* margin-top: 30px; */
}

.printing-portfolio-section {
  background-size: cover;
}

.portfolio-card .content-hover {
  position: absolute;
  bottom: 0;
  text-align: center;
  padding: 10px;
  margin: 10px;
  background-color: #fff;
  border-radius: 10px;
  transition: 0.3s;
  opacity: 0;
}

.portfolio-card .content-hover h3 {
  font-size: 17px;
}

.portfolio-card .content-hover p {
  font-size: 15px;
  margin-bottom: 9px;
  line-height: 1.4;
  margin-top: 4px;
}

.portfolio-card .content-hover .button {
  padding: 9px 15px 10px;
  font-size: 14px;
}

.portfolio-slider .swiper-slide-next .portfolio-card .content-hover {
  opacity: 1;
}

.slider-arrows {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.slider-arrows > div {
  cursor: pointer;
  display: flex;
}

.slider-arrows .swiper-button-disabled {
  opacity: 0.5;
  cursor: initial;
}

.printing-portfolio-section .slider-arrows > div {
  background-color: #0363b2;
  padding: 6px;
  border-radius: 50%;
}

.printing-portfolio-section .slider-arrows > div svg path {
  stroke: #fff;
}

.saturn-glance-section {
  position: relative;
  background-color: #ebfbfe;
}

.glance-content-area {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.stats-grid {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s;
}

.stats-grid h3 {
  color: #1c2e4a;
  font-weight: 900;
  font-size: 25px;
}

.stats-grid .head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
  height: 45px;
}

.stats-grid .text {
  font-size: 13px;
  font-weight: 600;
  color: #171717;
  min-height: 67px;
  display: flex;
  align-items: center;
}

.our-ink-section {
  background-color: #ebfbfe;
}

.tabs-container {
  margin-top: 40px;
}

.tabs {
  margin-bottom: 35px;
  display: flex;
  justify-content: center;
}

.tabs .tabs-inner {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  background-color: #fff;
  padding: 10px;
  border-radius: 40px;
  font-weight: 600;
}

.tabs .tabs-inner li {
  padding: 15px;
  transition: 0.3s;
  border-radius: 40px;
  cursor: pointer;
}

.tabs .tabs-inner li.active {
  background-color: #0363b2;
  color: #fff;
}

.technology-card {
  background-color: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 20px;
  transition: 0.3s;
  gap: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 160px;
}

.technology-card h3 {
  font-size: 23px;
  font-weight: 600;
}

.technology-card:hover {
  background-color: #1c2e4a;
  color: #fff;
  gap: 13px;
}

.technology-card p {
  font-size: 14px;
  height: 0px;
  overflow: hidden;
  transition: 0.3s height;
}

.technology-card:hover p {
  height: 56px;
}

.why-saturn-section {
  background-color: #1c2e4a;
  color: #fff;
}

.why-saturn-section .section-head h2,
.why-saturn-section .section-head p,
.why-saturn-section .stats-grid h3,
.why-saturn-section .stats-grid .text {
  color: inherit;
}

.why-saturn-section .stats-grid {
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.why-saturn-section .stats-grid .head {
  flex-direction: column;
  flex-wrap: initial;
  height: auto;
}

.why-saturn-section .stats-grid .text {
  min-height: auto;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
}

.why-saturn-section .stats-grid h3 {
  font-weight: 700;
  font-size: 20px;
}

.stats-grid .icon {
  display: flex;
}

.why-saturn-section .stats-grid .icon svg path {
  fill: #fff;
  transition: 0.3s;
}

.why-saturn-section .stats-grid:hover {
  color: #171717;
  background-color: #fff;
}

.why-saturn-section .stats-grid:hover .icon svg path {
  fill: #171717;
}

.lets-talk-section .section-head h2 {
  font-size: 48px;
  color: #171717;
  font-weight: 600;
}

.justify-between {
  justify-content: space-between;
}

.home-blogs-section {
  background-color: #ddf8fe;
}

.blogs-cards-area {
  margin-top: 30px;
}

.blogs-grid {
  position: relative;
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
  transition: 0.3s;
}

.blogs-grid .text h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px;
  transition: 0.3s;
}

.blogs-grid .text p {
  font-weight: 500;
  color: #5c5c5c;
  font-size: 15px;
  margin-bottom: 11px;
  transition: 0.3s;
}

.blogs-grid:hover {
  background-color: #1c2e4a;
  color: #fff;
}

.blogs-grid:hover p {
  color: #fff;
}

.blogs-grid .button {
  padding: 10px 15px;
  font-size: 12px;
}

.blogs-grid:hover .button {
  background: #fff;
  color: #171717;
}

.blogs-grid .image {
  border-radius: 11px;
  overflow: hidden;
  display: flex;
}

.blogs-grid .content {
  margin-top: 15px;
}

.footer-contact-details .contact-detail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.footer-contact-details .contact-detail .icon {
  width: 30px;
  display: flex;
}

.footer-contact-details .contact-detail a,
.footer-contact-details .contact-detail p {
  width: calc(100% - 50px);
  font-size: 15px;
  font-weight: 600;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.follow-us-footer ul {
  display: flex;
  list-style: none;
  gap: 10px;
  margin-top: 10px;
}

.follow-us-footer h5 {
  font-size: 15px;
}

.footer-copyright .row {
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
}

.follow-us-footer {
  margin-top: 15px;
}

.industries-sliders-container {
  height: 100%;
}

.industries-cater-section .grid-2 {
  align-items: stretch;
}

.industries-cater-section .section-head {
  height: fit-content;
}

.industry-slider-1,
.industry-slider-2 {
  height: 100vh; /* adjust as needed */
  overflow: hidden;
}

.industry-slider-1 .swiper-wrapper,
.industry-slider-2 .swiper-wrapper {
  transition-timing-function: linear !important;
}

.industries-cater-section {
  background-color: #ebfbfe;
}

.industries-cater-section .section-head p {
  line-height: 1.6;
  margin-top: 20px;
}

.industries-cater-section .image {
  margin-top: 50px;
}

.industry-slider-1 .swiper-slide,
.industry-slider-2 .swiper-slide {
  height: fit-content;
}

.industries-cater-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  transition: 0.3s;
}

.industries-cater-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}

.industries-cater-card p {
  font-size: 14px;
  font-weight: 600;
  height: 100px;
}

.industries-cater-card a {
  font-weight: 600;
}

.industries-cater-card:hover {
  background-color: #1c2e4a;
  color: #fff;
}

.marquee {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: scrollUp 10s linear infinite;
}

.marquee-down .marquee-track {
  animation: scrollDown 10s linear infinite;
}

/* UP */
@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* DOWN */
@keyframes scrollDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

/* Hover pause */
.marquee:hover .marquee-track {
  animation-play-state: paused;
}