@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");
/* =============================Common styles */
@import url("https://fonts.googleapis.com/css2?family=Host+Grotesk:wght@200..700&display=swap");
* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 0.8rem;
  }
}

.ul-reset, .footer ul, .mobile-menu .mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

body {
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: #000;
  font-family: "Figtree", sans-serif;
  padding-top: 6rem;
}

img {
  max-width: 100%;
}

.global-width {
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media only screen and (min-width: 768px) {
  .global-width {
    max-width: 1300px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .global-width {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .global-width {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

::-webkit-scrollbar {
  width: 0.8rem;
  height: 0.3rem;
}

::-webkit-scrollbar-thumb {
  background: #8F9BB3;
  border-radius: 0.3rem;
  opacity: 0.3;
}

::-webkit-scrollbar-thumb:hover {
  background: #8F9BB3;
  opacity: 0.3;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.0784313725);
  border-radius: 0.3rem;
}

.sub-head {
  font-size: 5.2rem;
  font-weight: 500;
  color: #000;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .sub-head {
    font-size: 3.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .sub-head br {
    display: none;
  }
}

.sub-para {
  font-size: 1.6rem;
  color: #808080;
}
@media only screen and (max-width: 767px) {
  .sub-para {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .sub-para br {
    display: none;
  }
}

.btn-common {
  background: #01B2D6;
  color: #fff;
  border: none;
  padding: 1.6rem 3.2rem;
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 0.6rem;
  cursor: pointer;
  font-family: "Figtree", sans-serif;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out 0.3s forwards;
  opacity: 0;
}
.btn-common:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(1, 178, 214, 0.2);
  background: rgb(0.8813953488, 156.888372093, 188.6186046512);
}
.btn-common:active {
  transform: translateY(-1px);
}
@media only screen and (max-width: 767px) {
  .btn-common {
    padding: 1rem;
    font-size: 1.4rem;
  }
}

.header {
  background-color: #fff;
  padding: 2rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  transition: all 0.3s ease;
}
.header.scrolled {
  padding: 0.8rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .header .header-content {
    display: flex;
    align-items: center;
  }
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header .logo .logo-img {
  width: 230px;
  height: 50px;
}
.header .logo .logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.05em;
}
.header .logo .logo-text sup {
  font-size: 1.2rem;
  top: -0.8em;
}
.header .header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .header .header-right {
    gap: 0;
  }
}
.header .hamburger-menu {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.header .hamburger-menu .hamburger-img {
  width: 5rem;
  height: 5rem;
}
@media only screen and (max-width: 767px) {
  .header .hamburger-menu .hamburger-img {
    width: 100%;
    height: auto;
  }
}
.header .hamburger-menu:hover {
  opacity: 0.7;
}
.header .mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  display: none;
  z-index: 999;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.header .mega-dropdown.active {
  display: block;
}
.header .mega-dropdown .mega-container {
  display: flex;
  max-width: 1400px;
  margin: auto;
}
.header .mega-dropdown .mega-left {
  flex: 2;
  padding: 4rem;
}
.header .mega-dropdown .mega-left .mega-title {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.header .mega-dropdown .mega-left .mega-subtitle {
  font-size: 1.4rem;
  color: #808080;
  margin-bottom: 3rem;
  max-width: 600px;
  line-height: 1.6;
}
.header .mega-dropdown .mega-left .products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.header .mega-dropdown .mega-left .products-grid .product {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.header .mega-dropdown .mega-left .products-grid .product:hover {
  transform: translateY(-2px);
}
.header .mega-dropdown .mega-left .products-grid .product img {
  width: 42px;
  height: 42px;
}
.header .mega-dropdown .mega-left .products-grid .product h4 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: #000;
}
.header .mega-dropdown .mega-left .products-grid .product p {
  font-size: 1.3rem;
  color: #808080;
  margin-top: 0.3rem;
}
.header .mega-dropdown .mega-right {
  flex: 1;
  border-left: 1px solid #eee;
  padding: 4rem;
  position: relative;
}
.header .mega-dropdown .mega-right .close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: #f4f4f4;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
}
.header .mega-dropdown .mega-right .close-btn:hover {
  background: rgba(255, 255, 255, 0.8);
}
.header .mega-dropdown .mega-right .nav-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}
.header .mega-dropdown .mega-right .nav-list li {
  font-size: 1.8rem;
  padding: 1.4rem 0;
  cursor: pointer;
  color: #000;
}
.header .mega-dropdown .mega-right .nav-list li:hover {
  color: #dc5278;
}
.header .mega-dropdown .mega-right .nav-list li.active {
  border: 2px solid #dc5278;
  padding: 1rem 1.2rem;
  border-radius: 4px;
  color: #ff4da6;
}
.header .mega-dropdown .mega-right .social-icons {
  margin-top: 4rem;
  display: flex;
  gap: 2rem;
}
.header .mega-dropdown .mega-right .social-icons img {
  width: 22px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.header .mega-dropdown .mega-right .social-icons img:hover {
  transform: scale(1.1);
}

.ask-shoonya-btn {
  background: #CC001A;
  color: #fff;
  border: none;
  padding: 1.5rem 3rem;
  border-radius: 0.8rem;
  font-family: "Figtree", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .ask-shoonya-btn {
    gap: 0;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    display: none;
  }
}
.ask-shoonya-btn:hover {
  transform: translateY(-2px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.mobile-menu.active {
  visibility: visible;
  opacity: 1;
}
.mobile-menu.active .mobile-menu-content {
  transform: translateX(0);
}
.mobile-menu .mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.mobile-menu .mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 42rem;
  max-width: 44rem;
  height: 100%;
  background-color: #fff;
  z-index: 2;
  transform: translateX(100%);
  transition: all 0.3s ease;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 3rem 2rem;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  .mobile-menu .mobile-menu-content {
    width: 90%;
    max-width: 32rem;
  }
}
.mobile-menu .mobile-menu-content.submenu-open {
  width: 95rem;
  max-width: 95%;
}
@media only screen and (max-width: 767px) {
  .mobile-menu .mobile-menu-content.submenu-open {
    width: 90%;
  }
}
.mobile-menu .mobile-menu-content.submenu-open .mobile-nav {
  margin-left: auto;
  width: 28rem;
}
@media only screen and (max-width: 767px) {
  .mobile-menu .mobile-menu-content.submenu-open .mobile-nav {
    width: 100%;
    margin-left: 0;
  }
}
.mobile-menu .mobile-menu-content.submenu-open .mobile-social {
  left: auto;
  right: 2rem;
  width: 24rem;
}
@media only screen and (max-width: 767px) {
  .mobile-menu .mobile-menu-content.submenu-open .mobile-social {
    left: 2rem;
    width: auto;
  }
}
.mobile-menu .mobile-menu-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.mobile-menu .mobile-menu-close svg {
  width: 2.4rem;
  height: 2.4rem;
}
.mobile-menu .mobile-menu-close:hover {
  opacity: 0.7;
}
.mobile-menu .mobile-nav {
  margin-top: 4rem;
  transition: all 0.3s ease;
}
.mobile-menu .mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu .mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.2rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #4a4a4a;
  transition: all 0.3s ease;
  border-radius: 0.6rem;
}
.mobile-menu .mobile-nav-link .submenu-arrow {
  width: 1.8rem;
  height: 1.8rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.mobile-menu .mobile-nav-link:hover {
  background-color: #f8f8f8;
  color: #dc5278;
}
.mobile-menu .mobile-nav-link.active {
  background-color: transparent;
  color: #dc5278;
  font-weight: 600;
}
.mobile-menu .has-submenu.open .submenu-trigger {
  color: #dc5278;
}
.mobile-menu .has-submenu.open .submenu-trigger .submenu-arrow {
  transform: rotate(180deg);
}
.mobile-menu .mobile-submenu {
  display: none;
  padding: 0.3rem 0 0.3rem 1rem;
  margin-left: 1.2rem;
  margin-top: 0.3rem;
}
.mobile-menu .mobile-submenu.active {
  display: block;
}
.mobile-menu .mobile-submenu-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu .mobile-submenu-list .mobile-platform-item:nth-child(n+6) {
  display: none;
}
.mobile-menu .mobile-platform-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0.8rem;
  border-radius: 0.6rem;
  text-decoration: none;
  transition: background 0.2s ease;
}
.mobile-menu .mobile-platform-item:hover {
  background-color: #fff0f4;
}
.mobile-menu .mobile-platform-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.6rem;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.mobile-menu .mobile-platform-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.mobile-menu .mobile-platform-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000;
}
.mobile-menu .mobile-platform-desc {
  font-size: 1rem;
  color: #999;
  line-height: 1.3;
}
.mobile-menu .mobile-view-all {
  display: block;
  text-align: right;
  padding: 0.6rem 0.8rem 0.3rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #dc5278;
  text-decoration: none;
}
.mobile-menu .mobile-view-all:hover {
  text-decoration: underline;
}
.mobile-menu .mobile-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #eee;
}
.mobile-menu .social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: transparent;
  transition: all 0.3s ease;
}
.mobile-menu .kosmoz-submenu {
  position: absolute;
  top: 0;
  left: 0;
  width: 62rem;
  height: 100%;
  background-color: #fff;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow-y: hidden;
  overflow-x: hidden;
  padding: 3rem 3rem 3rem 3rem;
}
@media only screen and (max-width: 767px) {
  .mobile-menu .kosmoz-submenu {
    display: none;
  }
}
.mobile-menu .kosmoz-submenu.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu .submenu-back {
  display: none;
}
.mobile-menu .submenu-header {
  margin-top: 3rem;
  margin-bottom: 2.5rem;
  padding-right: 3rem;
}
.mobile-menu .submenu-title {
  font-size: 2.8rem;
  font-weight: 500;
  color: #000;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}
.mobile-menu .submenu-description {
  font-size: 1.2rem;
  color: #999;
  line-height: 1.5;
  margin: 0;
}
.mobile-menu .platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
  overflow-y: auto;
  padding-right: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .mobile-menu .platforms-grid {
    grid-template-columns: 1fr;
  }
}
.mobile-menu .platforms-grid::-webkit-scrollbar {
  width: 0.4rem;
}
.mobile-menu .platforms-grid::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 0.2rem;
}
.mobile-menu .platform-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem;
  background-color: #fff;
  border-radius: 0.8rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.mobile-menu .platform-item:hover {
  background-color: #fff0f4;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.mobile-menu .platform-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 0.8rem;
  flex-shrink: 0;
}
.mobile-menu .platform-info {
  flex: 1;
  min-width: 0;
}
.mobile-menu .platform-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  margin: 0 0 0.3rem 0;
}
.mobile-menu .platform-desc {
  font-size: 1.1rem;
  color: #999;
  margin: 0;
  line-height: 1.3;
}

.hero-section {
  padding: 11rem 0;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .hero-section {
    padding: 4rem 0;
    margin-top: 3rem;
  }
}
.hero-section .hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12rem;
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-container {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .hero-section .hero-container {
    gap: 4rem;
  }
}
.hero-section .hero-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-width: 0;
}
.hero-section .hero-left .hero-image {
  height: 41.5rem;
  animation: slideInLeft 0.6s ease-out forwards;
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-left .hero-image {
    height: auto;
  }
}
.hero-section .hero-right {
  width: 65rem;
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-right {
    width: 100%;
    order: 1;
  }
}
.hero-section .hero-right .hero-label {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  color: #808080;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  animation: fadeInDown 0.6s ease-out forwards;
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-right .hero-label {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
}
.hero-section .hero-right .hero-title {
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  margin: 0 0 2rem;
  animation: fadeInUp 0.6s ease-out 0.1s forwards;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-right .hero-title {
    font-size: 4.2rem;
    margin-bottom: 1.5rem;
  }
}
.hero-section .hero-right .hero-title .highlight {
  color: #C8182F;
}
.hero-section .hero-right .hero-subtitle {
  font-size: 1.8rem;
  color: #4B5563;
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-right .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    max-width: 100%;
  }
}
.hero-section .hero-right .hero-cta {
  background: #01B2D6;
  color: #fff;
  border: none;
  padding: 1.5rem 3.5rem;
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 0.8rem;
  cursor: pointer;
  font-family: "Figtree", sans-serif;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out 0.3s forwards;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-right .hero-cta {
    padding: 1rem 2rem;
    font-size: 1.4rem;
    display: block;
    margin: 0 auto;
  }
}
.hero-section .hero-right .hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(1, 178, 214, 0.2);
  background: rgb(0.8813953488, 156.888372093, 188.6186046512);
}
.hero-section .hero-right .hero-cta:active {
  transform: translateY(-1px);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.kosmoz-section {
  padding: 8rem 0;
  background: url("/assets/images/bg-img.svg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .kosmoz-section {
    padding: 4rem 0;
  }
}
.kosmoz-section .kosmoz-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .kosmoz-section .kosmoz-container {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .kosmoz-section .kosmoz-container {
    gap: 4rem;
  }
}
.kosmoz-section .kosmoz-left {
  flex: 1;
  min-width: 0;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .kosmoz-section .kosmoz-left {
    width: 100%;
  }
}
.kosmoz-section .kosmoz-left .kosmoz-logo {
  height: 8rem;
  margin-bottom: 2rem;
  animation: fadeInLeft 0.6s ease-out forwards;
}
@media only screen and (max-width: 767px) {
  .kosmoz-section .kosmoz-left .kosmoz-logo {
    height: 4rem;
    margin-bottom: 1.5rem;
  }
}
.kosmoz-section .kosmoz-left .kosmoz-title {
  font-size: 5.9rem;
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 2rem;
  animation: fadeInUp 0.6s ease-out 0.1s forwards;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .kosmoz-section .kosmoz-left .kosmoz-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
}
.kosmoz-section .kosmoz-left .kosmoz-description {
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.6;
  opacity: 0.7;
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  .kosmoz-section .kosmoz-left .kosmoz-description {
    font-size: 1.4rem;
  }
}
.kosmoz-section .kosmoz-right {
  flex: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .kosmoz-section .kosmoz-right {
    width: 100%;
  }
}
.kosmoz-section .kosmoz-right .products-network {
  position: relative;
  width: 716px;
  left: 145px;
  max-width: 638px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("/assets/images/orbital-line.svg") center/contain no-repeat;
}
@media only screen and (max-width: 767px) {
  .kosmoz-section .kosmoz-right .products-network {
    max-width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
  }
}
.kosmoz-section .kosmoz-right .products-network .inner-kosmoz-img {
  position: absolute;
  top: 50%;
  left: 84%;
  transform: translate(-50%, -50%);
  z-index: 3;
  max-width: 80%;
  height: auto;
}
.kosmoz-section .kosmoz-right .products-network .products-orbit {
  position: absolute;
  width: 683px;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}
.kosmoz-section .kosmoz-right .products-network .product-item {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  overflow: visible;
}
@media only screen and (max-width: 767px) {
  .kosmoz-section .kosmoz-right .products-network .product-item {
    overflow: visible;
  }
}
.kosmoz-section .kosmoz-right .products-network .product-item.aegiz {
  left: 64%;
  top: 39%;
  transform: translate(-50%, -50%);
}
.kosmoz-section .kosmoz-right .products-network .product-item.promise {
  left: 52%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.kosmoz-section .kosmoz-right .products-network .product-item.macedon {
  left: 64%;
  top: 60%;
  transform: translate(-50%, -50%);
}
.kosmoz-section .kosmoz-right .products-network .product-item.digivist {
  left: 93%;
  top: 20%;
}
.kosmoz-section .kosmoz-right .products-network .product-item.scarto {
  left: 80%;
  top: 21%;
}
.kosmoz-section .kosmoz-right .products-network .product-item.fabrik {
  left: 66%;
  top: 22%;
}
.kosmoz-section .kosmoz-right .products-network .product-item.cascado {
  left: 53%;
  top: 25%;
}
.kosmoz-section .kosmoz-right .products-network .product-item.partnertia {
  left: 41%;
  top: 28%;
}
.kosmoz-section .kosmoz-right .products-network .product-item.nous {
  left: 30%;
  top: 37%;
}
.kosmoz-section .kosmoz-right .products-network .product-item.tenax {
  left: 27%;
  top: 51%;
}
.kosmoz-section .kosmoz-right .products-network .product-item.tabono {
  left: 39%;
  top: 59%;
}
.kosmoz-section .kosmoz-right .products-network .product-item.argus {
  left: 52%;
  top: 64%;
}
.kosmoz-section .kosmoz-right .products-network .product-item.bluejay {
  left: 66%;
  top: 67%;
}
.kosmoz-section .kosmoz-right .products-network .product-item.ebantis {
  left: 79%;
  top: 69%;
}
.kosmoz-section .kosmoz-right .products-network .product-item.asseto {
  left: 91%;
  top: 70%;
}
.kosmoz-section .kosmoz-right .products-network .product-item.fortis {
  left: 88%;
  top: 10%;
}
.kosmoz-section .kosmoz-right .products-network .product-item.octave {
  left: 68%;
  top: 10%;
}
.kosmoz-section .kosmoz-right .products-network .product-item.sapience {
  left: 48%;
  top: 13%;
}
.kosmoz-section .kosmoz-right .products-network .product-item.zealur {
  left: 48%;
  top: 13%;
}
.kosmoz-section .kosmoz-right .products-network .product-item.talos {
  left: 28%;
  top: 17%;
}
.kosmoz-section .kosmoz-right .products-network .product-item.metlone {
  left: 10%;
  top: 26%;
}
.kosmoz-section .kosmoz-right .products-network .product-item.espacia {
  left: 0%;
  top: 44%;
}
.kosmoz-section .kosmoz-right .products-network .product-item.oven {
  left: 7%;
  top: 62%;
}
.kosmoz-section .kosmoz-right .products-network .product-item.repetor {
  left: 44%;
  top: 76%;
}
.kosmoz-section .kosmoz-right .products-network .product-item.zeyrax {
  left: 25%;
  top: 72%;
}
.kosmoz-section .kosmoz-right .products-network .product-item.espace {
  left: 65%;
  top: 80%;
}
.kosmoz-section .kosmoz-right .products-network .product-item.zandy {
  left: 84%;
  top: 81%;
}
.kosmoz-section .kosmoz-right .products-network .product-item img {
  width: auto !important;
  height: auto !important;
}
.kosmoz-section .kosmoz-right .products-network .product-item .img-prod-small {
  width: 50px !important;
  height: 50px !important;
  background: #9f0014;
  border-radius: 1rem;
}
.kosmoz-section .kosmoz-right .products-network .product-item .img-prod-large {
  width: 62px !important;
  height: 62px !important;
  background: #9f0014;
  border-radius: 1rem;
}
@media only screen and (max-width: 767px) {
  .kosmoz-section .kosmoz-right .products-network .product-item .img-prod-large {
    width: 48px !important;
    height: 48px !important;
  }
}

.service-section {
  padding: 8rem 0;
}
@media only screen and (max-width: 767px) {
  .service-section {
    padding: 3rem 0;
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .service-section .label-section {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.service-section .label-section .label {
  background: #FAFAF7;
  padding: 1.5rem;
  border-radius: 5rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #CC001A;
}
@media only screen and (max-width: 767px) {
  .service-section .label-section .label {
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
  }
}
.service-section .service-detail {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10rem;
}
@media only screen and (max-width: 767px) {
  .service-section .service-detail {
    flex-direction: column;
    gap: 0;
  }
}
.service-section .service-detail .sub-head {
  font-size: 5.2rem;
  text-align: left;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .service-section .service-detail .sub-head {
    text-align: center;
    line-height: 1.3;
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
  }
}
.service-section .service-detail .sub-head .highlight-red {
  color: #C8182F;
}
@media only screen and (max-width: 767px) {
  .service-section .service-detail .sub-para {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .service-section .mg-t-3 {
    margin-top: 3rem !important;
  }
}
.service-section .purpose-detail {
  display: flex;
  align-items: flex-start;
  gap: 7rem;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .service-section .purpose-detail {
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
  }
}
.service-section .purpose-detail .purpose-left {
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .service-section .purpose-detail .purpose-left {
    margin-top: 0rem;
  }
}
@media only screen and (max-width: 767px) {
  .service-section .purpose-detail .purpose-left {
    width: 100%;
  }
}
.service-section .purpose-detail .purpose-left .purpose-image {
  width: 100%;
  height: auto;
}
.service-section .purpose-detail .purpose-right {
  margin-top: 8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .service-section .purpose-detail .purpose-right {
    width: 100%;
    margin-top: 2rem;
    align-items: center;
  }
}
.service-section .purpose-detail .purpose-right .purpose-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #000;
  margin: 0;
  line-height: 1.3;
  letter-spacing: 2px;
}
.service-section .purpose-detail .purpose-right .purpose-title .highlight-red {
  color: #CC001A;
}
@media only screen and (max-width: 767px) {
  .service-section .purpose-detail .purpose-right .purpose-title {
    font-size: 2.2rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 767px) {
  .service-section .purpose-detail .purpose-right .sub-para {
    text-align: center;
  }
}
.service-section .purpose-detail .purpose-right .purpose-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.service-section .purpose-detail .purpose-right .purpose-tags .purpose-tag {
  padding: 0.6rem 1.2rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #4B5563;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-radius: 1.8rem;
  box-shadow: 0 2px 8px rgba(141, 129, 129, 0.06);
}
@media only screen and (max-width: 767px) {
  .service-section .purpose-detail .purpose-right .purpose-tags .purpose-tag {
    font-size: 1rem;
  }
}
.service-section .purpose-detail .purpose-right .purpose-btn {
  align-self: flex-start;
  padding: 1.5rem 2.4rem;
  background-color: #f2fbfd;
  border: 1px solid #01B2D6;
  color: #01B2D6;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
  margin-top: 4rem;
  font-family: "Figtree", sans-serif;
}
.service-section .purpose-detail .purpose-right .purpose-btn:hover {
  background-color: #01B2D6;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .service-section .purpose-detail .purpose-right .purpose-btn {
    font-size: 1.3rem;
    padding: 0.8rem 2rem;
    align-self: center;
    margin-top: 2rem;
  }
}

.values-block {
  padding: 2rem 0;
  margin-top: -8rem;
  padding-bottom: 0;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .values-block {
    padding: 0;
  }
}
.values-block .sub-para {
  max-width: 863px;
  text-align: center;
  margin-top: -2rem;
}

.value-sec {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .value-sec {
    margin-top: 3rem;
  }
}
.value-sec .value-sec-overlay {
  position: absolute;
  top: 34%;
  left: 70%;
  transform: translate(-50%, -50%);
  width: min(100%, 1300px);
  padding: 0 4.5rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .value-sec .value-sec-overlay {
    padding: 0 1.5rem;
    gap: 1rem;
    width: 100%;
  }
}
.value-sec .value-sec-logo {
  width: 92px;
  height: 88px;
  flex: 0 0 auto;
}
@media only screen and (max-width: 767px) {
  .value-sec .value-sec-logo {
    width: 40px;
    height: auto;
  }
}
.value-sec .value-sec-heading {
  margin: 0;
  font-size: 3rem;
  font-weight: 500;
  color: white;
  text-align: left;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 767px) {
  .value-sec .value-sec-heading {
    font-size: 1.1rem;
  }
}
.value-sec .value-sec-video {
  display: block;
  width: 100%;
  max-width: 1300px;
  height: 239px;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .value-sec .value-sec-video {
    height: auto;
  }
}

.carousel-block-1 {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .carousel-block-1 {
    padding: 4rem 0;
  }
}
.carousel-block-1 .global-width {
  position: relative;
}

.owl-carousel.line-slide .owl-stage {
  display: flex;
  justify-content: center;
  align-items: center;
}
.owl-carousel.line-slide .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 2rem;
  transition: all 0.3s ease;
  min-height: auto;
  justify-content: center;
  transform: scale(0.8);
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .owl-carousel.line-slide .item {
    min-height: auto;
    padding: 2rem;
  }
}
.owl-carousel.line-slide .item.active {
  transform: scale(1);
}
.owl-carousel.line-slide .item .anim-block {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 400px;
  height: 350px;
  margin: 0 auto 2rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .owl-carousel.line-slide .item .anim-block {
    height: 280px;
    margin-bottom: 1.5rem;
  }
}
.owl-carousel.line-slide .item .anim-block .anim-image {
  width: 90%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  animation: slideInUp 0.6s ease-out forwards;
}
.owl-carousel.line-slide .item .head {
  font-size: 3.2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1.5rem;
  text-transform: capitalize;
}
@media only screen and (max-width: 767px) {
  .owl-carousel.line-slide .item .head {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.owl-carousel.line-slide .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.5rem;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .owl-carousel.line-slide .owl-nav {
    padding: 0 0.5rem;
  }
}
.owl-carousel.line-slide .owl-nav button {
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  font-size: 0;
  color: transparent;
}
@media only screen and (max-width: 767px) {
  .owl-carousel.line-slide .owl-nav button {
    width: 40px;
    height: 40px;
  }
}
.owl-carousel.line-slide .owl-nav button::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
}
.owl-carousel.line-slide .owl-nav button.owl-prev {
  position: absolute;
  left: 305px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #CCF0F7;
}
.owl-carousel.line-slide .owl-nav button.owl-prev::before {
  border-left: none;
  border-top: none;
  transform: rotate(135deg) translateY(-2px);
  border-color: #01B2D6;
}
.owl-carousel.line-slide .owl-nav button.owl-prev:hover {
  background-color: #CCF0F7;
  box-shadow: 0 4px 12px rgba(1, 178, 214, 0.2);
}
@media only screen and (max-width: 767px) {
  .owl-carousel.line-slide .owl-nav button.owl-prev {
    left: -50px;
  }
}
.owl-carousel.line-slide .owl-nav button.owl-next {
  position: absolute;
  right: 295px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #01B2D6;
}
@media only screen and (max-width: 767px) {
  .owl-carousel.line-slide .owl-nav button.owl-next {
    display: none;
  }
}
.owl-carousel.line-slide .owl-nav button.owl-next::before {
  border-right: none;
  border-bottom: none;
  transform: rotate(135deg) translateY(2px);
  border-color: #fff;
}
.owl-carousel.line-slide .owl-nav button.owl-next:hover {
  background-color: #01B2D6;
  box-shadow: 0 4px 12px rgba(1, 178, 214, 0.2);
}
@media only screen and (max-width: 767px) {
  .owl-carousel.line-slide .owl-nav button.owl-next {
    right: -50px;
  }
}
.owl-carousel.line-slide .owl-dots {
  text-align: center;
  margin-top: -5rem;
}
@media only screen and (max-width: 767px) {
  .owl-carousel.line-slide .owl-dots {
    margin-top: -3rem;
  }
}
.owl-carousel.line-slide .owl-dots .owl-dot {
  display: inline-block;
  width: 8px;
  height: 1.5px;
  margin: 0 0.5rem;
  background-color: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}
.owl-carousel.line-slide .owl-dots .owl-dot.active {
  background-color: #01B2D6;
  transform: scale(1.2);
}
.owl-carousel.line-slide .owl-dots .owl-dot:hover {
  background-color: #01B2D6;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.text-center {
  text-align: center;
}

.sub-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #01B2D6;
  padding: 0 54px;
  min-height: 320px;
  position: relative;
  background-repeat: no-repeat, no-repeat;
  background-position: 6rem center, calc(100% - 6rem) center;
  background-size: 130px, 130px;
}
@media only screen and (max-width: 767px) {
  .sub-banner {
    margin-bottom: 0;
    padding: 0 2rem;
    min-height: 280px;
    background-size: 80px, 80px;
    background-position: 2rem center, calc(100% - 2rem) center;
  }
}
.sub-banner .banner-inner {
  font-size: 2.4rem;
  line-height: 5.2rem;
  letter-spacing: 4.8px;
  color: #fff;
  width: 100%;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
@media only screen and (max-width: 767px) {
  .sub-banner .banner-inner {
    flex-direction: column;
    font-size: 1.8rem;
    line-height: 2.8rem;
    letter-spacing: 2px;
    gap: 2rem;
    text-align: center;
  }
}
.sub-banner .banner-inner .mission-image-inner {
  width: 380px;
  height: auto;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .sub-banner .banner-inner .mission-image-inner {
    width: 100%;
    max-width: 300px;
  }
}
.sub-banner .banner-inner .mission-text {
  background: #01B2D6;
  min-width: 320px;
  padding: 2rem;
  border-radius: 1rem;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .sub-banner .banner-inner .mission-text br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .sub-banner .banner-inner .mission-text {
    min-width: auto;
    width: 100%;
    padding: 1.5rem;
    font-size: 2.5rem;
  }
}

.footer {
  background: #fff;
  border-top: 1px solid #eee;
  margin-top: 6rem;
  padding: 4rem 0 2.5rem;
  color: #000;
}
.footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
  -webkit-transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -ms-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
}
.footer .footer-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 2.5rem 0;
}
.footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .footer .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
  }
}
.footer .footer-brand .footer-logo {
  width: 180px;
  height: auto;
  display: block;
}
.footer .footer-socials {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.footer .footer-socials .social-btn {
  display: block;
  transition: opacity 0.2s ease;
  -webkit-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  -ms-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
}
.footer .footer-socials .social-btn:hover {
  opacity: 0.8;
}
.footer .footer-cols {
  display: grid;
  grid-template-columns: 1fr 2fr 1.4fr 1fr;
  gap: 4rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .footer .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .footer .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2rem;
  }
  .footer .footer-cols .footer-col--contact,
  .footer .footer-cols .footer-col--address {
    grid-column: 1/-1;
  }
}
.footer .footer-col-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #000;
  margin: 0 0 1.8rem;
}
.footer .footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer .footer-col ul li a {
  font-size: 1.4rem;
  color: #4B5563;
}
.footer .footer-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
}
@media only screen and (max-width: 767px) {
  .footer .footer-services-grid {
    grid-template-columns: 1fr;
  }
}
.footer .footer-col--contact .footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 2rem;
}
.footer .footer-col--contact .footer-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  color: #4B5563;
}
.footer .footer-col--contact .footer-contact-item .footer-icon {
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.6rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
}
.footer .newsletter-form {
  display: flex;
  align-items: stretch;
  gap: 1.2rem;
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .footer .newsletter-form {
    max-width: 100%;
    margin-left: 0;
  }
}
.footer .newsletter-input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  background: #FAFAF7;
  border: 1px solid #eee;
  border-radius: 0.6rem;
  outline: none;
  padding: 1.2rem 1.6rem;
  font-size: 1.4rem;
  font-family: "Figtree", sans-serif;
  color: #000;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.footer .newsletter-input::-moz-placeholder {
  color: #aaa;
}
.footer .newsletter-input::placeholder {
  color: #aaa;
}
.footer .newsletter-btn {
  flex: 0 0 auto;
  background: #CC001A;
  color: #fff;
  border: none;
  padding: 1.2rem 2.8rem;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 0.6rem;
  cursor: pointer;
  font-family: "Figtree", sans-serif;
  white-space: nowrap;
  transition: background 0.2s ease;
  -webkit-transition: background 0.2s ease;
  -moz-transition: background 0.2s ease;
  -ms-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
}
.footer .footer-address {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.footer .footer-address .footer-icon {
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.6rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
}
.footer .footer-address address {
  font-size: 1.4rem;
  color: #4B5563;
  line-height: 1.7;
  font-style: normal;
}
.footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
}
.footer .footer-copy {
  margin: 0;
  font-size: 1.3rem;
  color: #4B5563;
}
.footer .footer-legal {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  flex-wrap: wrap;
}
.footer .footer-legal li {
  font-size: 1.3rem;
}
.footer .footer-legal li a {
  color: #4B5563;
}
.footer .footer-legal li + li {
  position: relative;
}
.footer .footer-legal li + li::before {
  content: "";
  position: absolute;
  left: -1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.2rem;
  background: #eee;
}
.footer .footer-credentials {
  margin-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .footer .footer-credentials {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
  }
}
.footer .footer-badges {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.footer .footer-badges .badge-img {
  height: 5.6rem;
  width: auto;
}
.footer .footer-partners {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer .footer-partners .partner-img {
  height: 3.6rem;
  width: auto;
}

@media only screen and (max-width: 767px) {
  .owl-stage-outer {
    margin-top: -6rem;
  }
}

.video-section {
  position: relative;
  width: 100%;
  background: #fff;
  height: 500vh;
}
.video-section.is-pinned .vs-sticky {
  position: fixed;
  top: 0;
  left: 0;
}
.video-section.is-pinned-end .vs-sticky {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
}
.video-section .vs-sticky {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.video-section .vs-track {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 1.2rem;
  margin-top: -5rem;
  padding: 4rem 12rem;
  will-change: transform;
}
.video-section .vs-card {
  position: relative;
  flex: 0 0 auto;
  width: 350px;
  height: 470px;
  border-radius: 2.4rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media only screen and (max-width: 768px) {
  .video-section .vs-card {
    width: 60vw;
    height: 340px;
    border-radius: 1.8rem;
  }
}
.video-section .vs-card--lead {
  width: 748px;
  height: 470px;
}
@media only screen and (max-width: 768px) {
  .video-section .vs-card--lead {
    width: 80vw;
    height: 340px;
  }
}
.video-section .vs-card .vs-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}
.video-section .vs-card .vs-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.video-section .vs-card .vs-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.55) 100%);
}
.video-section .vs-card--graphic .vs-card__overlay {
  background: none;
}
.video-section .vs-card--software .vs-card__overlay {
  background: none;
}
.video-section .vs-card .vs-card__body {
  position: relative;
  z-index: 3;
  padding: 2.4rem 2.8rem 3rem;
  color: #fff;
}
.video-section .vs-card .vs-card__body--top {
  margin-top: auto;
  padding-bottom: 0;
}
.video-section .vs-card .vs-card__title {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 1.6rem;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .video-section .vs-card .vs-card__title {
    font-size: 2.4rem;
  }
}
.video-section .vs-card .vs-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.video-section .vs-card .vs-tag {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .video-section {
    height: auto !important;
  }
  .video-section.is-pinned .vs-sticky, .video-section.is-pinned-end .vs-sticky {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
  }
  .video-section .vs-sticky {
    position: relative;
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-padding-left: 1.5rem;
  }
  .video-section .vs-sticky::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
  .video-section .vs-track {
    transform: none !important;
    padding: 2rem 1.5rem;
    margin-top: 0;
    gap: 1rem;
  }
  .video-section .vs-card {
    scroll-snap-align: start;
  }
}/*# sourceMappingURL=style.css.map */