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

@font-face {
  font-family: pvmed-regular;
  src: url(../fonts/ProximaNova-Regular.woff);
  font-weight: 400;
}

@font-face {
  font-family: pvmed-semi-bold;
  src: url(../fonts/ProximaNova-Semibold.woff);
  font-weight: 500;
}

body {
  font-family: "Anybody", sans-serif;
  line-height: 1.5;
}

.image {
  position: relative;
  overflow: hidden;
}

.image img {
  transform: scale(1.01);
  height: auto;
}

.section-head.text-center {
  text-align: center;
  flex-direction: column;
  justify-content: center;
}

.section-head.text-center h2 {
  padding: 0;
}

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

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-fluid {
  padding: 0 30px;
  margin: 0 auto;
}

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

.col-2 {
  width: 50%;
}

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

img,
video {
  max-width: 100%;
}

.w-full {
  width: 100%;
}

.section-padding {
  padding: 65px 0;
}

.button {
  color: #00202f;
  padding: 12px 20px;
  transition: 0.3s;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 30px;
  background: linear-gradient(#fff 0 0) padding-box,
    linear-gradient(to right, #9c20aa, #fb3570) border-box;
  border: 2px solid transparent;
}

.button:hover {
  background-color: #fff;
  color: #0072bb;
}

a.cover-link {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

header .logo {
  display: flex;
}

header {
  position: absolute;
  padding: 30px 0;
  width: 100%;
  z-index: 1;
  color: #fff;
}

header .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

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

.navigation ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  gap: 30px;
  font-size: 15px;
  justify-content: space-between;
  font-weight: 500;
  text-transform: uppercase;
}

header .logo img {
  width: calc(100% - 8px);
}

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

.main-banner .container,
.home-banner .container {
  position: relative;
  color: #fff;
}

.banner-content h1 {
  letter-spacing: 1px;
  font-size: 50px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.3;
}

.banner-content p {
  padding: 25px 0;
  margin-top: 20px;
  border-top: 1px solid rgb(255 255 255 / 28%);
  max-width: 80%;
  font-family: "pvmed-regular";
}

.home-banner .banner-content .button {
  color: #fff;
  border-radius: 30px;
  /* background: linear-gradient(#00142f 0 0) padding-box, linear-gradient(to right, #9c20aa, #fb3570) border-box; */
  background: transparent;
  border: 1.5px solid #fff;
}
.dropdown {
  position: relative;
  display: flex;
}

.dropdown-menu {
  position: absolute;
  list-style: none;
  border: 1px solid #5fbfa7;
  min-width: 90px;
  padding: 5px 0;
  right: 0;
  top: 100%;
  margin-top: 10px;
  border-radius: 5px;
  text-align: center;
  opacity: 0.2;
  visibility: hidden;
  transition: 0.5s;
  transform: translateY(-10px);
  background-color: #00142f;
}

.dropdown > div {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.home-banner {
  width: 100%;
}

.dropdown-menu li {
  padding: 5px 10px;
  border-bottom: 1px solid #5fbfa7;
  width: 100%;
}

.dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.menu-item.menu-item-has-children {
  position: relative;
}

.menu-item.menu-item-has-children .sub-menu {
  position: absolute;
  list-style: none;
  border: 1px solid #5fbfa7;
  min-width: 90px;
  width: max-content;
  padding: 5px 0;
  left: 0;
  top: 100%;
  margin-top: 10px;
  border-radius: 5px;
  text-align: center;
  opacity: 0.2;
  visibility: hidden;
  transition: 0.3s;
  transform: translateY(-10px);
  background-color: #00142f;
  gap: 0;
  flex-direction: column;
  font-size: 13px;
}

.navigation {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
}

.menu-item.menu-item-has-children:hover .sub-menu {
  transform: translate(0);
  opacity: 1;
  visibility: visible;
}

.menu-item.menu-item-has-children .sub-menu > li {
  padding: 10px;
  border-bottom: 1px solid #5fbfa7;
}

.menu-item.menu-item-has-children .sub-menu > li:last-child {
  border: none;
}

.dropdown .dropdown-menu {
  gap: 0;
  flex-direction: column;
}

.dropdown-menu li:last-child {
  border: none;
}

.home-banner-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 80px;
  display: flex;
  width: 100%;
  align-items: center;
}

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

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

.home-banner-section .swiper {
  height: 100%;
  display: flex;
  align-items: center;
}

.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;
}

.home-banner .banner-content {
  width: 65%;
}

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

.section-head h2 {
  font-size: 50px;
  color: #00202f;
  font-weight: 500;
  /* letter-spacing: 1.1px; */
  line-height: 1.3;
  text-transform: uppercase;
}

.section-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #535353;
  text-align: justify;
  line-height: 1.6;
  font-size: 15px;
}

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

.section-head h4 {
  color: #0072bb;
  font-size: 15px;
  font-weight: 500;
  padding-bottom: 15px;
}

.section-head p {
  font-family: "pvmed-regular";
  margin-top: 17px;
  /* line-height: 1.5; */
}

.section-head.split-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.section-head.split-head p {
  width: 32%;
  margin-top: 0;
}

.section-head.split-head h2 {
  width: 60%;
}

.products-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 30px;
  gap: 30px;
}

.product-card .content h3 {
  font-family: "pvmed-semi-bold";
  font-size: 26px;
  background: linear-gradient(92.3deg, #ffffff 2.26%, #ffffff 140.49%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: 0.3s;
}

.product-card .content p {
  font-family: "pvmed-regular";
  color: #84949b;
  line-height: 1.5;
  transition: 0.3s;
}

.product-card .content a {
  background: linear-gradient(92.3deg, #00a1e3 2.26%, #6bc2ac 140.49%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.3s;
  opacity: 0;
}

.product-card {
  position: relative;
  border: 1px solid #256a84;
  padding: 7px;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card:hover .content a {
  opacity: 1;
}

.product-card:hover {
  background-color: #fff;
}

.product-card:hover .content h3 {
  background: linear-gradient(92.3deg, #00a1e3 2.26%, #6bc2ac 140.49%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-card:hover .content p {
  color: #444444;
}

.our-products-section {
  background-color: #00142f;
  color: #fff;
}

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

.product-card .content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.who-we-are-section .section-head p {
  font-size: 28px;
  max-width: 82%;
  color: #272727;
  margin: 22px 0;
}

.image-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.image-container .image {
  position: relative;
}

.who-we-are-section .image {
  max-width: 50%;
}

.who-we-are-section .image video {
  width: 100%;
}

.image .pay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.who-we-are-section .graphic {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.who-we-are-section {
  position: relative;
}

.use-case-section .section-head.split-head p {
  width: 27%;
}

.use-case-grid-container {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid #c8c8c8;
  margin-top: 10px;
}

.use-case-grid {
  border-right: 1px solid #c8c8c8;
  padding: 30px 20px;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.use-case-grid:last-child {
  border: none;
}

.use-case-grid .content h3 {
  color: #4f8daa;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 20px;
  padding-bottom: 30px;
  transition: 0.3s;
}

.use-case-grid .content p {
  font-size: 15px;
  line-height: 1.4;
  font-family: "pvmed-regular";
  opacity: 0;
  transition: 0.3s;
}

.use-case-grid .progress {
  margin-top: 12em;
}

.use-case-grid .progress h3 {
  font-weight: 400;
  font-size: 45px;
  display: inline-block;
  background: linear-gradient(92.3deg, #00a1e3 2.26%, #6bc2ac 140.49%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.use-case-grid:hover {
  background: #00142f;
}

.use-case-grid:hover .content h3 {
  color: #fff;
}

.use-case-grid:hover .content p {
  opacity: 1;
  color: #fff;
}

.testimonial-grid {
  background: radial-gradient(
    42.53% 56.04% at 87.76% 105.68%,
    #ededed 0%,
    #ededed 100%
  );
  padding: 40px;
  transition: 0.1s;
}

.testimonial-grid:hover {
  background: radial-gradient(
    42.53% 56.04% at 87.76% 105.68%,
    #5fbfa7 0%,
    #00202f 100%
  );
  color: #fff;
}

.testimonial-grid .image-content {
  display: flex;
  gap: 20px;
}

.testimonial-grid .image-content .content p {
  font-family: "pvmed-semi-bold";
  margin-bottom: 7px;
}

.testimonial-grid .image-content .content .flag-country {
  display: flex;
  align-items: center;
  font-size: 15px;
  gap: 7px;
}

.testimonial-grid .image-content .content .flag-country span {
  font-family: "pvmed-semi-bold";
}

.testimonial-grid .paragraph {
  font-family: "pvmed-regular";
  line-height: 1.5;
  margin-top: 20px;
  color: #00202f;
  transition: 0.3s;
}

.testimonial-grid:hover .paragraph {
  color: #fff;
}

.testimonial-grid .image-content .content {
  padding-top: 15px;
}

.testimonials-slider-wrapper {
  position: relative;
  padding: 20px 0 50px;
}

.testimonials-section {
  padding-top: 0;
}

.news-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 30px;
  row-gap: 30px;
}

.news-container .content h3 {
  font-family: "pvmed-semi-bold";
  padding: 13px 0 18px;
}

.news-container .content p {
  font-family: "pvmed-regular";
  line-height: 1.5;
}

.news-section {
  position: relative;
  background: #00142f;
  color: #fff;
}

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

.news-section .button {
  background: linear-gradient(#00142f 0 0) padding-box,
    linear-gradient(to right, #9c20aa, #fb3570) border-box;
  color: #fff;
  margin-top: 40px;
}

.publications-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 30px 0;
}

.publication-card {
  padding: 0px 3rem;
}

.publications-container .publication-card:first-child {
  border-right: 1px solid #dedede;
  padding-left: 0;
}

.publications-container .publication-card:last-child {
  padding-right: 0;
}

.publication-card .content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.publication-card .date {
  font-family: "pvmed-regular";
  display: inline-block;
  background: linear-gradient(90deg, #00a1e3 0%, #6bc2ac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.publication-card h3 {
  font-family: "pvmed-semi-bold";
  line-height: 1.5;
  color: #00202f;
  font-size: 20px;
}

.publication-card p {
  font-family: "pvmed-regular";
  line-height: 1.5;
  color: #444444;
}

.publication-card a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.publication-card a span {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  color: #00202f;
}

footer {
  position: relative;
  background: #00142f;
  color: #fff;
  padding: 70px 0 0;
}

.footer-newsletter-wrapper {
  padding: 40px 60px;
  margin-bottom: 50px;
}

.footer-newsletter .section-head h2 {
  color: #fff;
  width: 75%;
  font-size: 36px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-newsletter .section-head {
  padding-bottom: 0;
}

.footer-newsletter-wrapper .footer-newsletter .button {
  border: 1.5px solid #fff;
  background: transparent;
  color: #fff;
  padding: 14px 37px;
  font-weight: 500;
  font-size: 15px;
}

footer .footer-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-col-navigation h3 {
  margin-bottom: 20px;
}

.footer-col-navigation .navigation-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-col-navigation .navigation-list a {
  font-family: "pvmed-regular";
  color: #dedede;
}

.footer-navigation-wrapper {
  padding: 0 40px;
  justify-content: space-between;
}

.footer-navigation-wrapper .footer-col-navigation {
    min-width: 40%;
    width: min-content;
}

.footer-col-navigation .menu-item a {
    font-family: "pvmed-regular";
    color: #dedede;
}

.footer-col-navigation .menu-item {
    list-style: none;
    margin-bottom: 10px;
}

footer h3 {
  font-weight: 500;
  font-size: 17px;
  text-transform: uppercase;
}

footer p {
  font-family: "pvmed-regular";
  line-height: 1.5;
  color: #dedede;
}

footer .logo-description {
  margin-top: 20px;
}

.footer-email-div {
    margin-top: 15px;
}

.footer-email-div a {
    font-family: "pvmed-regular";
    line-height: 1.5;
    color: #dedede;
    text-decoration: underline;
}

.social-logos ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
}

.footer-newsletter input {
  display: block;
  padding: 10px;
  width: 100%;
  margin: 20px 0 16px;
}

.footer-newsletter button {
  background: linear-gradient(#00142f 0 0) padding-box,
    linear-gradient(92.3deg, #00a1e3 2.26%, #6bc2ac 140.49%) border-box;
  color: #fff;
  padding: 10px 35px;
  font-weight: 500;
  border-width: 1.5px;
}

.footer-newsletter input.button {
    background: linear-gradient(#00142f 0 0) padding-box, linear-gradient(92.3deg, #00a1e3 2.26%, #6bc2ac 140.49%) border-box;
    color: #fff;
    padding: 10px 35px;
    font-weight: 500;
    border-width: 1.5px;
    width: auto;
    margin-top: 0;
}

.footer-newsletter input.wpcf7-form-control {
    margin-bottom: 0;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #84949b;
  padding: 40px 0;
}

.footer-row .footer-newsletter {
  padding-left: 50px;
}

.footer-copyright * {
  font-family: "pvmed-regular";
}

.product-main-section {
  background-image: url(../images/pdp-gradient-bg-1.jpg);
  padding-top: 9rem;
  color: #fff;
  background-color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 1400px) {
    .product-main-section {
        background-size: cover;
        padding-bottom: 30px;
    }
}

.product-main-section .section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 55px;
}

.product-main-section .section-head h1 {
  font-size: 7rem;
  font-weight: 400;
  /*text-transform: uppercase;*/
  display: inline-block;
  background: linear-gradient(107.15deg, #00a1e3 -51.97%, #6bc2ac 77.38%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 0.9;
}

.product-main-section .section-head h2 {
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
  font-size: 45px;
  padding-right: 60px;
}

.product-main-section .section-head > p {
  width: 40%;
  padding-left: 30px;
  margin-top: -20px;
}

.product-main-section .section-head > div {
  width: 60%;
}

.tabs-container {
  background-color: #edf5f3;
  padding: 35px;
  margin-top: 30px;
}

.tabs-layout {
  display: flex;
  flex-wrap: wrap;
}

.tab-icons {
  width: 16%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tabs-content-area {
  width: 84%;
  padding-left: 50px;
}

.tab-switcher {
  background: #fff;
  text-align: center;
  font-size: 15px;
  padding: 25px 10px;
  transition: 0.3s;
}

.tab-switcher img {
  height: 70px;
}

.tab-switcher p {
  font-family: "pvmed-semi-bold";
  margin-top: 10px;
}

.tab-switcher.active,
.tab-switcher:hover {
  background: linear-gradient(129.35deg, #00a1e3 -22.64%, #5fbfa7 105.63%);
  color: #fff;
}

.tab-content .img {
  max-width: 100%;
  width: 100%;
}

.tab-content .image {
  display: flex;
}

.tab-content .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}

.tab-content:not(.active) {
  display: none;
}

.tab-content .image video,
.tab-content .image img {
  max-width: 100%;
  width: 100%;
}

.button.button-with-icon span {
  display: inline-block;
  padding-right: 30px;
}

[tab-toggle],
[data-inner-toggle] {
  cursor: pointer;
}

.button.button-with-icon {
  display: flex;
  align-items: center;
}

.tab-content .content p {
  font-family: "pvmed-regular";
  color: #00202f;
}

.tab-content .content .button.button-with-icon span {
  font-size: 13px;
}

.tab-content .content .button.button-with-icon {
  padding: 8px 20px;
  background: linear-gradient(#edf5f3 0 0) padding-box,
    linear-gradient(to right, #9c20aa, #fb3570) border-box;
}

.ai-cotouring-section .section-head h2 {
  text-transform: uppercase;
}

.image-fusion-section .row .section-head {
  width: 40%;
  padding-right: 10px;
}

.image-fusion-section .image-container {
  display: block;
  text-align: center;
  width: 60%;
  padding-left: 20px;
}

.image-fusion-section .row .section-head ul li {
  position: relative;
  font-family: "pvmed-regular";
  margin-bottom: 5px;
}

.image-fusion-section .section-head .content {
  font-size: 16px;
  line-height: 1.5;
  color: #444444;
}

.image-fusion-section .section-head .content ul {
  padding-left: 21px;
  margin-top: 30px;
}

.image-fusion-section .section-head .button {
  justify-content: space-between;
  width: fit-content;
  margin-top: 20px;
  padding: 9px 20px;
  width: 210px;
}

.product-features-section {
  background: #00142f;
  color: #fff;
}

.product-features-section .section-head h2 {
  color: inherit;
}

.product-features-section .section-head p {
  color: #84949b;
  max-width: 50%;
  margin: 10px auto 0;
}

.features-grid-container {
  margin-top: 40px;
  display: flex;
  column-gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.featues-grid-col {
  display: flex;
  flex-direction: column;
  row-gap: 70px;
  width: calc(43% - 10px);
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.features-grid .inner-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.features-grid .image img {
  width: 100%;
}

.features-grid .content h3 {
  font-family: "pvmed-semi-bold";
  font-size: 35px;
  margin-bottom: 20px;
}

.features-grid .content .inner-content * {
  font-family: "pvmed-regular";
  line-height: 1.5;
}

.features-grid .content .inner-content ul {
  padding-left: 20px;
  margin-top: 15px;
}

.features-grid .content .inner-content ul li {
  margin-bottom: 10px;
}

.features-grid.reverse {
  flex-direction: column-reverse;
}

.news-page-section {
  padding-top: 8rem;
}

.news-page-section .news-container {
  gap: 70px 0;
}

.news-container .news-card {
  position: relative;
  padding: 15px;
  transition: 0.3s;
}

.news-container .news-card:hover {
  background: #04293a;
}

.container.container-narrow {
  max-width: 70%;
}

.news-content * {
  font-family: "pvmed-regular";
  line-height: 1.5;
}

.news-content {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  border-top: 1px solid #28456c;
  padding: 55px 0 0;
  margin-top: 35px;
}

.uploal-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}

.uploal-details > div {
  font-family: "pvmed-regular";
}

.news-detail-page-section {
  padding-top: 9rem;
  border-bottom: 1px solid #28456c;
}

.publications-page-section {
  padding-top: 10rem;
}

.publications-page-section .publications-container {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.publications-page-section .publication-card {
  border-right: none !important;
  padding: 20px !important;
  background-color: #fff;
  border-top: 4px solid;
  border-image: linear-gradient(to right, #fff 0%, #fff 100%) 1;
  transition: 0.3s;
}

.publications-page-section .publication-card:hover {
  border-image: linear-gradient(to right, #3acfd5 0%, #3a4ed5 100%) 1;
}

.publications-page-section .publication-card a {
  background: linear-gradient(92.3deg, #00a1e3 2.26%, #6bc2ac 140.49%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  font-weight: 500;
}

.publications-page-section .publication-card h3 {
  height: 220px;
}

.publications-page-section .publication-card .date {
  background: #f1f6f5;
  color: #00202f !important;
  -webkit-text-fill-color: initial !important;
  font-family: "pvmed-semi-bold";
  font-size: 14px;
  padding: 7px 8px;
  margin-bottom: 14px;
}

.literature-card {
  padding: 40px 30px;
  background-color: #fff;
  color: #00202f;
  font-family: "pvmed-semi-bold";
  border-top: 4px solid;
  border-image: linear-gradient(to right, #ffffff 0%, #ffffff 100%) 1;
  transition: 0.3s;
}

.literature-card:not(.active) {
  display: none;
}

.literature-card:hover {
  border-image: linear-gradient(to right, #3acfd5 0%, #3a4ed5 100%) 1;
}

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

.literature-card h3 {
  font-family: "pvmed-semi-bold";
  font-size: 20px;
  height: 70px;
}

.product-literature-page-section {
  padding-top: 8rem;
}

.literature-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px 0 15px;
}

.literature-filters .filter {
  background-color: #1c3657;
  padding: 14px 20px;
  font-size: 15px;
  border-radius: 30px;
  font-family: "pvmed-semi-bold";
  transition: 0.3s;
}

.literature-filters .filter:hover,
.literature-filters .filter.active {
  background-color: #fff;
  color: #000;
}

.events-grid {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.events-grid .image {
  width: 60%;
}

.events-grid .section-head {
  width: 40%;
  padding: 20px;
}

.sub-head {
  color: #00a1e3;
  font-size: 15px;
  margin-bottom: 8px;
}

.events-grid .section-head h3 {
  font-family: "pvmed-semi-bold";
  font-size: 37px;
}

.events-grid .image img {
  width: 95%;
}

.events-grid .section-head p.text {
  color: #84949b;
}

.events-grid .section-head .button {
  margin-top: 20px;
}

.events-filter-area {
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 50px;
  background-color: #fff;
}

.events-filter {
  display: flex;
  gap: 20px;
}

.events-filter .filters {
  font-family: "pvmed-regular";
  min-width: 73px;
  border-bottom: 2px solid #ffffff;
  transition: 0.3s;
  padding: 20px 45px 5px 5px;
  color: #444444;
  cursor: pointer;
}

.events-filter .filters.active,
.events-filter .filters:hover {
  border-bottom: 2px solid #00202f;
  color: #00202f;
}

.events-list-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  padding-bottom: 50px;
}

.events-list-wrapper .events-grid {
  background-color: #fff;
  display: none;
}

.events-list-wrapper .events-grid.active {
  display: block;
}

.events-list-wrapper .events-grid .content h2 {
  font-family: "pvmed-semi-bold";
  font-size: 19px;
  line-height: 1.5;
  padding-bottom: 10px;
  color: #00202f;
  -webkit-line-clamp: 3;
  min-height: 96px;
}

.events-list-wrapper .events-grid .image {
  width: 100%;
  display: flex;
  height: 210px;
}

.events-list-wrapper .events-grid .image img {
  width: 100%;
  object-fit: cover;
}

.events-list-wrapper .events-grid .content .date {
  background: #f1f6f5;
  color: #00202f !important;
  -webkit-text-fill-color: initial !important;
  font-family: "pvmed-semi-bold";
  font-size: 14px;
  padding: 7px 8px;
  margin-top: 14px;
  display: inline-block;
}

.events-page-section {
  background-color: #f8f8f8;
}

.events-list-wrapper .events-grid .content {
  padding: 20px 20px 30px;
}

.events-detail-page-section {
  padding-top: 8rem;
  background-color: #f8f8f8;
  background-size: contain;
  background-repeat: no-repeat;
}

.events-detail-page-section .section-head h2 {
  color: #fff;
  max-width: 80%;
  margin: 0 auto;
  font-size: 40px;
}

.events-details-wrapper * {
  font-family: "pvmed-regular";
  color: #444444;
}

.events-details-wrapper h3 {
  font-family: "pvmed-semi-bold";
  color: #00202f;
  margin-top: 15px;
}

.event-publish-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.event-publish-details .details {
  width: 75%;
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.event-publish-details .details .content {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: 3px;
}

.event-publish-details .details .content span {
  color: #00a1e3;
}

.share-event h3 {
  margin-bottom: 10px;
}

.share-event ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.events-detail-page-section .container.container-narrow {
  max-width: 80%;
}

.events-details-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.events-details-wrapper .image {
  display: flex;
}

.events-details-wrapper .events-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 1.5;
  border-top: 1px solid #cecece;
  padding-top: 30px;
}

.events-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  text-transform: uppercase;
}

.events-navigation a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "pvmed-semi-bold";
  color: #00202f;
}

.events-details-wrapper h3:first-child {
  margin-top: 0;
}

.contact-us-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-us-wrapper .form-container {
  width: 55%;
}

.contact-us-wrapper .content {
  width: 35%;
}

.contact-us-page-section {
  padding-top: 9rem;
}

.contact-us-wrapper .contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
}

.contact-us-wrapper .contact-details h4 {
  font-family: "pvmed-semi-bold";
  margin-bottom: 7px;
}

.contact-us-wrapper .contact-details p,
.contact-us-wrapper .contact-details a {
  font-family: "pvmed-regular";
  line-height: 1.5;
}

.contact-us-wrapper .form-container form {
  background-color: #fff;
  color: #00202f;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-top: 4px solid;
  border-image: linear-gradient(to right, #3acfd5 0%, #3a4ed5 100%) 1;
}

.form-group label {
  font-family: "pvmed-semi-bold";
  margin-bottom: 6px;
}

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

.form-input {
  border: 1.5px solid #ccd5e2;
  background-color: #edfafa;
  padding: 10px;
  border-radius: 6px;
  width: 100%;
}

.form-btn .button {
  margin-top: 10px;
  background: linear-gradient(#fff 0 0) padding-box,
    linear-gradient(to right, #9c20aa, #fb3570) border-box;
  color: inherit;
  width: 200px;
}

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

.about-us-page-section {
  padding-top: 8rem;
  background-size: 101% 101%;
}

.about-us-page-section .row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
}

.about-us-page-section .image {
  position: relative;
}

.about-us-page-section .paragraph {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 50px 0 40px;
}

.about-us-page-section .paragraph p {
  font-family: "pvmed-regular";
  line-height: 1.5;
}

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

.about-content-grid {
  background-color: #1d4462;
  padding: 30px 30px 40px;
  border: 1px solid #256a84;
  background: linear-gradient(129.35deg, #1d4462 -22.64%, #1d4462 105.63%);
  transition: 0.3s;
}

.about-content-grid:hover {
  background: linear-gradient(129.35deg, #00a1e3 -22.64%, #5fbfa7 105.63%);
}

.about-content-grid h3 {
  font-size: 45px;
  font-weight: 500;
  text-transform: uppercase;
}

.about-content-grid p {
  font-family: "pvmed-regular";
  line-height: 1.5;
  margin-top: 8px;
}

.mission-vision-section .row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.mission-vision-section .content {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mission-vision-section .content h5 {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #5fbfa7;
  transition: 0.3s;
}

.mission-vision-section .content > div:hover h5 {
  color: #00a1e3;
}

.mission-vision-section .content p {
  font-family: "pvmed-regular";
  font-size: 27px;
  line-height: 1.35;
  line-height: 36px;
}

.map-container {
  position: relative;
}

.map-container .content {
  position: absolute;
  top: 40px;
  left: 40px;
  background-color: #00202f;
  color: #fff;
  padding: 25px;
  width: 340px;
}

.map-container .content p {
  font-family: "pvmed-regular";
  margin-bottom: 10px;
  padding: 10px;
  line-height: 1.5;
}

.location-map {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  transition: 0.3s;
  cursor: pointer;
}

.location-map .map-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-map .map-name span {
  font-family: "pvmed-semi-bold";
}

.location-map:hover,
.location-map.active {
  background-color: #052c3f;
}

.location-map .arrow {
  transform: translateX(-10px);
  opacity: 0;
  transition: 0.3s;
}

.location-map:hover .arrow,
.location-map.active .arrow {
  opacity: 1;
  transform: translateX(0);
}

.timeline-slider-container {
  height: 60vh;
  display: flex;
  flex-direction: row;
}

.timeline-section {
  background-color: #00142f;
  color: #fff;
}

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

.timeline-section .section-head p {
  color: #84949b;
}

.timeline-content {
  height: 100%;
  overflow-y: scroll;
}

.timeline-content::-webkit-scrollbar {
  width: 5px;
}
/* 
.timeline-content::-webkit-scrollbar-track {
  background-color: #000c1b; 
  border-radius: 10px;
}

.timeline-content::-webkit-scrollbar-thumb {
  background: #00a1e3; 
  border-radius: 10px;
}
 */
.timeline-content .swiper {
  height: 100%;
}

.timeline-year {
  width: 50%;
}

.timeline-year .swiper {
  height: 100%;
}

.timeline-year {
  text-align: center;
  width: 30%;
}

.timeline-content .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: auto;
  gap: 30px;
}

.timeline-content .timeline {
  width: 56%;
  padding: 20px;
  background-color: #1d2f47;
}

.timeline-month {
  font-family: "pvmed-regular";
  font-size: 17px;
}

.timeline-year-text {
  background: linear-gradient(107.15deg, #00a1e3 -51.97%, #6bc2ac 77.38%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  font-size: 110px;
  display: inline-block;
}

.timeline-content .timeline .text {
  margin-top: 10px;
}

.timeline-content .timeline .text p {
  font-family: "pvmed-regular";
  line-height: 1.5;
}

.timeline-slider {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.timeline-content .scroll {
  font-family: "pvmed-regular";
  color: #84949b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 5px;
  margin-top: 60px;
}

.timeline-content .scroll * {
  font-family: inherit;
  width: 100%;
}

.leadership-container {
  display: flex;
  flex-direction: row;
  transition: 0.3s;
  gap: 20px;
  margin-top: 20px;
}

.leadership-container .leadership-grid .image {
  height: 320px;
}

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

.leadership-grid {
  width: 28.4%;
  transition: 0.3s;
}

.leadership-grid.active {
  width: 42.6%;
}

.leadership-grid .text .name {
  font-family: "pvmed-semi-bold";
}

.leadership-grid .text .designation {
  font-family: "pvmed-regular";
}

.leadership-grid .text {
  margin-top: 10px;
}

.image-fusion-section .image-container p {
  font-family: "pvmed-regular";
  margin-top: 5px;
}

@media screen and (max-width: 900px) {
  .mobile-nav-toggle {
    display: inline-block;
    cursor: pointer;
  }

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

  .container {
    padding: 0 15px;
  }

  .footer-map-locator {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0 0;
  }

  .mobile-nav-toggle .mobile-nav-icon {
    display: grid;
    gap: 6px 0;
  }

  .mobile-nav-toggle .mobile-nav-icon .line {
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
  }

  .mobile-nav-toggle .mobile-nav-icon.active .line:first-child {
    transform: rotate(42deg);
    transform-origin: top left;
  }

  .mobile-nav-toggle .mobile-nav-icon.active .line:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-toggle .mobile-nav-icon.active .line:last-child {
    transform: rotate(-40deg);
    transform-origin: bottom left;
  }

  header {
    background-color: #00142f;
    position: sticky;
    top: 0;
    z-index: 99;
  }

  header .navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    background-color: #00142f;
    width: 100%;
    padding: 25px 15px 30px;
    box-shadow: 0px 15px 10px #00a1e312;
  }

  header .navigation ul {
    gap: 20px;
  }

  header .navigation ul > li {
    width: 100%;
  }

  header .navigation ul > li > a {
    display: block;
  }

  header .navigation ul > li a.button {
    display: inline-block;
  }
  .home-banner .banner-content {
    width: 100%;
  }

  .banner-content h1 {
    font-size: 35px;
  }

  .home-banner-section {
    /* height: 55vh; */
    min-height: initial;
    padding-top: 4rem;
  }

  .col-2 {
    width: 100%;
  }

  .section-head h2 {
    font-size: 35px;
    letter-spacing: 0;
  }

  .section-head h4 {
    font-size: 14px;
  }

  .section-head p {
    font-size: 16px;
  }

  .section-head.text-center {
    max-width: 100%;
  }

  .footer-copyright {
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
    text-align: center;
  }

  .products-container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .product-card .image img {
    width: 100%;
    max-width: 100%;
  }

  .who-we-are-section .section-head p {
    max-width: 100%;
    font-size: 22px;
  }

  .who-we-are-section .graphic svg {
    width: 100%;
    height: auto;
  }

  .who-we-are-section .graphic {
    max-width: 70%;
    display: flex;
    align-items: flex-end;
  }

  .who-we-are-section .image-container {
    flex-direction: column;
    gap: 40px;
  }

  .section-head.split-head h2,
  .section-head.split-head p {
    width: 100%;
  }

  .use-case-section .section-head.split-head p {
    width: 100%;
  }

  .container-fluid {
    padding: 15px;
  }

  .use-case-grid-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .use-case-grid {
    border: 1px solid #c8c8c8 !important;
  }

  .use-case-grid:last-child {
    grid-column: span 2;
    text-align: center;
  }

  .news-container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .publications-container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 50px;
  }

  .publications-container .publication-card {
    border: none !important;
    padding: 0;
  }

  .footer-newsletter-wrapper {
    padding: 20px;
  }

  footer {
    padding-top: 25px;
  }

  .footer-newsletter .section-head h2 {
    width: 100%;
    font-size: 30px;
  }

  .footer-newsletter-wrapper .footer-newsletter .button {
    width: 100%;
    text-align: center;
  }

  footer .footer-row {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px;
  }

  .footer-navigation-wrapper {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-row .footer-newsletter {
    padding: 0;
  }

  .footer-newsletter button {
    width: 100%;
  }

  .use-case-grid .content p {
    opacity: 1;
  }

  .use-case-grid .progress {
    margin-top: 6rem;
  }

  .about-us-page-section {
    padding-top: 3rem;
  }

  .about-us-page-section .row {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px;
  }

  .about-content-grids {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .mission-vision-section .row {
    grid-template-columns: 1fr;
  }

  .map-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
  }

  .map-container .content {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px;
  }

  .timeline-content .swiper-slide {
    flex-direction: column;
  }

  .timeline-content .swiper-slide > div {
    width: 100%;
  }

  .leadership-grid {
    width: 100% !important;
  }

  .leadership-container {
    flex-direction: column;
    gap: 35px;
  }

  .contact-us-page-section {
    padding-top: 3rem;
  }

  .contact-us-wrapper {
    flex-direction: column;
    gap: 60px;
  }

  .contact-us-wrapper > div {
    width: 100% !important;
  }

  .contact-us-wrapper .contact-details {
    margin-top: 20px;
  }
  .events-detail-page-section {
    background-size: 140%;
  }

  .container.container-narrow {
    max-width: 100% !important;
  }

  .events-detail-page-section .section-head h2 {
    max-width: 100%;
  }

  .event-publish-details > div {
    width: 100% !important;
  }

  .event-publish-details .share-event {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .event-publish-details {
    gap: 30px;
  }

  .events-navigation a {
    font-size: 15px;
  }

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

  .events-grid > div {
    width: 100% !important;
  }

  .events-grid .image img {
    width: 100%;
  }

  .events-grid .section-head {
    padding: 20px 0;
  }

  .publications-page-section {
    padding-top: 3rem;
    background-size: cover;
    background-position: 20%;
  }

  .events-list-wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .news-detail-page-section {
    padding-top: 3rem;
  }

  .news-content {
    margin-top: 15px;
    padding-top: 40px;
  }

  .news-page-section {
    padding-top: 3rem;
  }

  .news-page-section .news-container .news-card {
    padding: 0;
  }

  .news-page-section .news-container .news-card .content {
    padding: 15px;
  }

  .news-page-section .news-container .news-card .image img {
    width: 100%;
  }

  .product-literature-page-section {
    padding-top: 3rem;
  }

  .literature-filters {
    gap: 10px;
  }

  .literature-filters .filter {
    font-size: 14px;
    cursor: pointer;
  }

  .literature-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .literature-card {
    padding: 15px;
  }

  .literature-card img {
    width: 60px;
  }

  .product-main-section {
    padding-top: 3rem;
    background-size: 100% 90%;
  }

  .product-main-section .section-head {
    flex-direction: column;
    gap: 40px;
  }

  .product-main-section .section-head > * {
    width: 100% !important;
    padding: 0 !important;
  }

  .tabs-container {
    padding: 15px;
  }

  .tabs-layout {
    flex-direction: column;
    gap: 20px;
  }

  .tab-icons {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tabs-content-area {
    width: 100%;
    padding: 0;
  }

  .image-fusion-section .row {
    flex-direction: column;
    gap: 30px;
  }

  .image-fusion-section .row > div {
    width: 100%;
    padding: 0;
  }

  .image-fusion-section {
    padding-top: 20px;
  }

  .product-features-section .section-head p {
    max-width: 100%;
  }

  .features-grid-container .features-grid.reverse {
    flex-direction: column;
  }

  .features-grid-container > div {
    width: 100%;
  }

  .publications-page-section .publications-container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .publications-page-section .publication-card h3 {
    height: 160px;
    -webkit-line-clamp: 4;
  }
}

@media screen and (max-width: 540px) {
  .events-detail-page-section {
    background-size: 200%;
    padding-top: 3rem;
  }
}

.product-solutions-section {
  padding-top: 5rem;
}

.literature-filters.justify-center {
  justify-content: center;
}

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

.solutions-card {
  padding: 25px 20px 15px;
  text-align: center;
  font-family: "pvmed-regular";
  background-color: #01193c;
  border: 1px solid #256a84;
  transition: 0.3s;
}

.solutions-card:hover,
.solutions-card.active {
  background-color: #fff;
  color: #444444;
}

.solutions-card .content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 25px;
}

.solutions-card .content h3 {
  font-size: 25px;
  font-family: "pvmed-semi-bold";
}

.solutions-card .content a {
  text-transform: uppercase;
  font-family: "Anybody";
  font-weight: 500;
  padding-top: 23px;
}

.solutions-card.active .content h3,
.solutions-card:hover .content h3 {
  background: linear-gradient(92.3deg, #00a1e3 2.26%, #6bc2ac 140.49%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.what-looks-like-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: center;
  margin-top: 40px;
}

.looks-like-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  font-family: "pvmed-semi-bold";
  background-color: #edf5f3;
  padding: 20px 35px;
}

.looks-like-grid .icon {
  width: 55px;
  display: flex;
  justify-content: center;
}

.looks-like-grid .text {
  width: calc(100% - 70px);
}

.what-looks-like-container .content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.what-looks-like-container .image {
  display: flex;
  flex-wrap: wrap;
}

.auto-cotouring-section {
  background: #00142f;
  color: #fff;
}

.tabs-container.top-align {
  background: none;
  padding: 0;
}

.auto-cotouring-section h2 {
  color: #fff;
}

.tabs-container.top-align .tab-switcher {
  background-color: #092346;
  width: calc((100% / 8) - 10px);
  padding: 15px;
}

.tabs-container.top-align .tab-icons {
  width: 100%;
  flex-wrap: wrap;
  flex-direction: initial;
  justify-content: center;
  gap: 10px;
}

.tabs-container.top-align .tab-icons img {
  height: 60px;
  width: 60px;
  object-fit: contain;
}

.tabs-container.top-align .tab-switcher p {
  display: flex;
  flex-direction: column;
}

.inner-content-tabs {
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
  grid-auto-flow: column;
  text-align: center;
  width: 100%;
  font-family: pvmed-semi-bold;
  margin: 30px 0;
}

.tabs-container.top-align .tabs-content-area {
  width: 100%;
  padding: 0;
}

.inner-content-tabs .inner-tab {
  padding: 12px 10px;
  border-bottom: 1px solid #2e496c;
}

.inner-content-tabs .inner-tab.active {
  border-bottom: 1px solid #6bc2ac;
}

[tab-content]:not(.active),
[data-inner-content]:not(.active) {
  display: none;
}

.inner-tabs-content {
  text-align: center;
  font-family: pvmed-regular;
  color: #84949b;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 20px;
}

.list-style-logo li::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  background-image: url(../images/favicon.ico);
  height: 20px;
  width: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.list-style-logo {
  padding-left: 0 !important;
  list-style: none;
}

.list-style-logo li {
  padding-left: 30px;
  position: relative;
  padding-bottom: 25px;
  font-family: "pvmed-semi-bold" !important;
}

.pvmed-product-image-fusion-section .section-head {
  padding-bottom: 40px;
}

.pvmed-product-image-fusion-section .section-head p {
  max-width: 50%;
  margin: 10px auto 0;
}
.advantages-grid {
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
  grid-auto-flow: column;
  font-family: "pvmed-regular";
  gap: 50px;
  color: #444444;
}

.advantages-grid h3 {
  font-family: "pvmed-semi-bold";
  font-size: 26px;
  margin-bottom: 15px;
  color: #00202f;
}

.advantages-grid .inner-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.advantages-grid-col {
  position: relative;
  padding: 50px 0;
}

.border-y {
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
}

.advantages-features-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 35px;
  font-family: "pvmed-regular";
  margin-top: 50px;
}
.advantages-features-wrapper h4 {
  font-family: "pvmed-semi-bold";
  font-size: 19px;
}

.advantages-features-wrapper .icon {
  display: flex;
  font-size: 55px;
  font-family: "pvmed-semi-bold";
  color: #00588e;
  line-height: 1;
}

.advantages-features-wrapper .icon svg,
.advantages-features-wrapper .icon img {
  height: 45px;
  width: auto;
  margin-bottom: 5px;
}

.advantages-feature-grid .content {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.advantages-feature-grid {
  color: #444444;
}

.product-collaboration-section {
  background-color: #00142f;
  color: #fff;
}

.product-collaboration-section h2 {
  color: #fff;
}

.collaboration-card .section-head {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.collaboration-card .image img {
  width: 100%;
  height: auto;
}

.collaboration-card .section-head h2 {
  font-size: 38px;
  text-transform: initial;
  font-family: "pvmed-semi-bold";
}

.images-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin-top: 20px;
}

.images-container .image-grid p {
  font-family: pvmed-regular;
  text-align: center;
  margin-top: 15px;
}

.product-collaboration-section .section-head.text-center p {
  color: #949eaa;
}

.product-process-container {
  position: relative;
  padding-top: 60px;
  text-transform: initial;
  font-family: "pvmed-semi-bold";
}

.product-process-container .section-head h2 {
  font-size: 38px;
  text-transform: initial;
}

.swiper-navigation .swiper-button-next,
.swiper-navigation .swiper-button-prev {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: initial;
  left: initial;
  right: initial;
  margin-top: 20px;
  background-color: #1c3657;
  border-radius: 50%;
}

.swiper-navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.swiper-navigation .swiper-button-next:after,
.swiper-navigation .swiper-button-prev:after {
  content: none;
}

.swiper-navigation .swiper-button-next svg,
.swiper-navigation .swiper-button-prev svg {
  height: 15px;
}

.product-process-grid {
  background-color: #fff;
  padding: 20px;
  color: #00202f;
  text-align: center;
  font-family: "pvmed-semi-bold";
  font-size: 18px;
  cursor: pointer;
}

.product-process-grid .content-hover {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: 0.3s;
  opacity: 0;
  background-color: #fff;
  align-items: center;
  display: flex;
  padding: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.product-process-grid .duration {
  margin: 0 auto;
  margin-top: 15px;
  height: 70px;
  width: 70px;
  background-color: #daeae6;
  border-radius: 50%;
  display: flex;
  line-height: 1;
  align-items: center;
}

.product-process-grid .duration > span {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-size: 17px;
}

.product-process-grid .content {
  padding-top: 4rem;
}

.product-process-grid .content h3 {
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.product-process-grid:hover .content-hover {
  opacity: 1;
}
.swiper-slide-next .product-process-grid .content-hover {
  opacity: 1;
  transition-delay: 0.3s;
}

.product-process-grid .content-hover .image img {
  max-height: 100px;
  margin-bottom: 10px;
}
