@-webkit-keyframes video-blink {
  0% {
    width: 80%;
    height: 80%;
  }
  50%,
  75% {
    width: calc(100% + 50px);
    height: calc(100% + 50px);
  }
  80%,
  to {
    opacity: 0;
  }
}
@keyframes video-blink {
  0% {
    width: 80%;
    height: 80%;
  }
  50%,
  75% {
    width: calc(100% + 50px);
    height: calc(100% + 50px);
  }
  80%,
  to {
    opacity: 0;
  }
}
@keyframes spclArrow {
  10% {
    stroke-dasharray: 0, 500, 2900;
  }
  to {
    stroke-dasharray: 2900, 500, 2900;
  }
}
.slider-card {
  width: 100%;
  aspect-ratio: 1920/870;
  background: var(--theme-light);
  position: relative;
  overflow: hidden;
}
.slider-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-light) url(../img/theme-bg-1.jpg) no-repeat center top;
  background-size: cover;
  background-blend-mode: luminosity;
  opacity: 30%;
}
.slider-card .slider-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.slider-card .carousel-caption {
  left: unset;
  bottom: 30.4vw;
  right: 13.75vw;
  padding: 0;
  width: 32.5vw;
  text-align: left;
}
.slider-card .carousel-caption h5 {
  margin-bottom: 6px;
  font-size: 3.1vw;
  font-weight: 600;
  line-height: 1.1;
  /*font-family: "Open Sans", sans-serif;*/
  color: var(--theme-dark);
}
.slider-card .carousel-caption p {
  font-size: 0.99vw;
  font-weight: 600;
  line-height: 1.35;
  font-family: "Figtree", sans-serif;
  color: var(--theme-dark);
}
.about-section {
  margin: 100px 0 0;
}
.about-section .theme-title {
  margin-bottom: 50px;
  text-align: center;
}
.about-section .about-img-area {
  position: relative;
  height: 100%;
  min-height: 545px;
  overflow: hidden;
}
.about-section .about-img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.about-section .about-img-area:hover img {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
  opacity: 0.9;
}
.video-btn {
  padding: 25px;
  width: 110px;
  height: 110px;
  z-index: 1;
}
.video-btn img {
  position: relative;
  aspect-ratio: 1/1 !important;
  z-index: 1;
}
.video-btn,
.video-btn svg,
.video-btn:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-btn,
.video-btn:before {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  border-radius: 50%;
}
.video-btn:before {
  content: "";
  background: #fff;
  -webkit-animation: video-blink 2s ease-out infinite;
  animation: video-blink 2s ease-out infinite;
}
.video-btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-color);
  border-radius: 50%;
  z-index: 0;
}
.video-btn svg {
  width: 62px;
  height: auto;
  fill: none;
  stroke: #fff;
  stroke-width: 1.2px;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  z-index: 1;
}
.video-btn svg #spclArrow {
  stroke-dasharray: 0, 0, 2900;
}
.about-img-area:hover .video-btn svg #spclArrow {
  animation: spclArrow 4s;
}
.about-section .about-content-area.content-left-padding {
  padding-left: 34px;
}
.about-section .about-content-area h2 {
  margin-bottom: 20px;
  font-size: 23px;
  line-height: 1.3;
}
.about-section .about-content-area p {
  max-width: 539px;
  font-weight: 500;
  line-height: 1.6;
}
.about-section .about-content-area .theme-btn {
  margin-top: 33px;
}
.products-section {
  margin: 100px 0 0;
}
.products-section .theme-title {
  margin: 0 auto 70px;
  text-align: center;
}
.products-area {
  background: var(--theme-dark);
}
.products-area .product-img-area {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 0;
}
.products-area .product-img-area::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(50vw - 0px);
  height: 100%;
  background: url(../img/theme-bg-1.jpg) no-repeat center left;
  background-attachment: fixed;
  background-size: 51% 100%;
  z-index: -1;
}
.products-area .product-img-area img {
  margin: 150px 0 70px;
  max-width: 50vw;
}
.products-content-area.content-left-padding {
  padding: 50px 0 50px 6.55vw;
}
.products-content-area h3 {
  margin-bottom: 20px;
  font-size: 35px;
  line-height: 1.1;
  /*font-family: "Open Sans", sans-serif;*/
  color: #fff;
  white-space: pre-line;
}
.products-content-area p {
  width: 85%;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}
.products-content-area .theme-btn {
  margin-top: 33px;
}
.applications-section {
  padding-block: 100px;
}
.applications-section .theme-title {
  margin: 0 auto 60px;
  text-align: center;
}
.applications-section .theme-title .title {
  white-space: unset;
  max-width: 900px;
  margin: 0 auto;
}
.application-card {
  margin-top: -1px;
  padding: 15px 30px;
  height: calc(100% + 1px);
  border: 0 solid #ccc;
  border-width: 1px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
}
.application-card img {
  width: 42px;
  height: 38px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.application-card p {
  font-size: 19px;
  line-height: 1.2;
}
.application-card:not(:hover) img {
  -webkit-filter: brightness(0) invert(0.4);
  filter: brightness(0) invert(0.4);
}
.events-scnn,
.events-scnn-left {
  background-color: var(--theme-light);
  padding: 100px 0;
}
.events-scnn-box > .row {
  padding: 8px;
  background: #fff;
}
.events-scnn-box:hover .events-scnn-left img {
  -webkit-transform: scale(1.12);
  -ms-transform: scale(1.12);
  transform: scale(1.12);
}
.events-scnn-box .events-scnn-left img {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  object-fit: contain;
  max-height: 110px;
}
.events-scnn-left {
  overflow: hidden;
  padding: 30px;
}
.events-scnn-right {
  padding: 32px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 310px;
  flex-wrap: wrap;
}
.events-scnn-right p {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.events-scnn-box {
  box-shadow: 0 0 10px 0 rgb(0 0 0/5%);
}
.events-slider .owl-item {
  padding: 15px;
}
.event-tag {
  display: flex;
  align-items: baseline;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 25px;
  gap: 5px 12px;
  flex-wrap: wrap;
}
.date::before,
.time::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "";
  margin-right: 6px;
}
.time::before {
  content: "";
}
.events-scnn-right ul {
  gap: 16px;
}
.events-scnn-right ul li {
  position: relative;
  font-weight: 500;
  font-size: 14px;
}
.about-section .about-content-area h2,
.event-tag,
.events-scnn-right ul li strong {
  font-weight: 600;
}
.events-scnn-right ul li:first-child::after {
  display: none;
}
.events-scnn-right ul li::after {
  content: "";
  position: absolute;
  top: 5px;
  left: -8px;
  width: 1px;
  height: 14px;
  background-color: var(--theme-dark);
}
.client-section {
  padding: 100px 0 60px;
}
.client-slider .owl-stage {
  display: flex;
  align-items: center;
}
.client-section .theme-title {
  margin-bottom: 50px;
  text-align: center;
}
.client-slider .client-card {
  padding: 0 8px;
  max-width: 220px;
  max-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-slider .client-card img {
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.cta-section-area {
  padding: 125px 0;
  background: var(--theme-dark);
  position: relative;
  z-index: 0;
}
.cta-section-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-dark) url(../img/theme-bg-1.jpg) no-repeat center
    center;
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode: color-burn;
  z-index: -1;
}
.cta-section-area h5 {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  white-space: pre-line;
  /*font-family: "Open Sans", sans-serif;*/
}
.cta-section-area .theme-btn {
  margin-top: 33px;
}
