.mob-only {
  display: none !important; }
  @media (max-width: 900px) {
    .mob-only {
      display: grid !important; } }

.desktop-only {
  display: none !important; }
  @media (min-width: 901px) {
    .desktop-only {
      display: grid !important; } }

.category-holder {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25); }
  .category-holder .categories {
    display: flex;
    gap: 30px;
    padding: 30px 0px; }
    @media (max-width: 900px) {
      .category-holder .categories {
        gap: 10px; } }
    .category-holder .categories li a {
      display: inline-block;
      padding: 5px 5px;
      font-size: 18px;
      border-radius: 21px;
      color: #818181;
      transition: 0.2s all;
      text-align: center; }
      @media (max-width: 900px) {
        .category-holder .categories li a {
          font-size: 14px; } }
      .category-holder .categories li a.active {
        background: #00afcd;
        color: #fff;
        padding: 5px 20px; }

.products_holder {
  padding: 20px 0px; }
  .products_holder .product-listing-grid {
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr 1fr; }
    @media (max-width: 900px) {
      .products_holder .product-listing-grid {
        grid-template-columns: 1fr; } }
  .products_holder .products-listing-single {
    list-style: none;
    position: relative;
    border: 1px solid #d9d9d9; }
    .products_holder .products-listing-single.bigger_length {
      grid-column: span 2; }
    @media (max-width: 900px) {
      .products_holder .products-listing-single.bigger_length {
        grid-column: 1; } }
    .products_holder .products-listing-single a {
      position: relative;
      display: block;
      overflow: hidden; }
    .products_holder .products-listing-single .bg-img-pjs {
      background-size: 70%;
      background-repeat: no-repeat;
      background-position: center;
      transition: 0.2s all; }
      .products_holder .products-listing-single .bg-img-pjs.bigger_aspect {
        height: 450px;
        background-size: 30%; }
        @media (max-width: 900px) {
          .products_holder .products-listing-single .bg-img-pjs.bigger_aspect {
            height: auto; }
            .products_holder .products-listing-single .bg-img-pjs.bigger_aspect:after {
              content: "";
              display: table;
              clear: both; }
            .products_holder .products-listing-single .bg-img-pjs.bigger_aspect:before {
              content: "";
              float: left;
              padding-bottom: 75%; } }
    .products_holder .products-listing-single .info {
      position: absolute;
      transform-origin: top top;
      transform: translateY(100%);
      transition: 0.2s all;
      z-index: 5;
      bottom: 0;
      padding: 30px 50px;
      background: #00afcd;
      color: #fff;
      width: 100%; }
      .products_holder .products-listing-single .info h3 {
        padding: 0px 0px 10px !important;
        font-size: 25px !important;
        color: #fff !important;
        font-family: "Open-Sans-Medium" !important; }
      .products_holder .products-listing-single .info p {
        font-family: "Open-Sans-Book";
        font-size: 15px;
        width: 85%; }
      .products_holder .products-listing-single .info .arrow-down {
        position: absolute;
        top: 15px;
        right: 20px;
        z-index: 5; }
      .products_holder .products-listing-single .info .inner {
        position: relative;
        z-index: 100; }
      .products_holder .products-listing-single .info button {
        margin-top: 20px;
        transition: 0.2s all;
        cursor: pointer;
        border-radius: 21px;
        padding: 8px 22px 6px;
        border: 2px solid #fff;
        color: #fff;
        background-color: transparent;
        font-size: 16px;
        font-family: "Open-Sans-Medium";
        font-weight: 500; }
        .products_holder .products-listing-single .info button.active, .products_holder .products-listing-single .info button:hover {
          background: #fff;
          color: #00afcd; }
    .products_holder .products-listing-single .pjs-triangle-left {
      transform: translateY(100%);
      opacity: 0;
      bottom: 0px;
      transition: 0.3s all; }
    .products_holder .products-listing-single:hover .info {
      transform: translateY(0); }
    .products_holder .products-listing-single:hover .pjs-triangle-left {
      transform: translateY(0%);
      bottom: 500px;
      opacity: 1; }
    .products_holder .products-listing-single:hover .bg-img-pjs {
      background-position: center 35%;
      background-size: 50%; }
      .products_holder .products-listing-single:hover .bg-img-pjs.bigger_aspect {
        background-size: 20%; }
        @media (max-width: 900px) {
          .products_holder .products-listing-single:hover .bg-img-pjs.bigger_aspect {
            background-size: 50%; } }
    .products_holder .products-listing-single .bottom {
      position: relative;
      z-index: 4; }
      .products_holder .products-listing-single .bottom h3 {
        font-family: "Open-Sans-Medium";
        color: #2f4057;
        padding: 0px 20px 10px;
        font-size: 25px; }
      .products_holder .products-listing-single .bottom .category_list {
        background: #00afcd;
        color: #fff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px; }
        .products_holder .products-listing-single .bottom .category_list .items-holder span {
          position: relative;
          font-size: 14px; }
          .products_holder .products-listing-single .bottom .category_list .items-holder span:after {
            content: "|";
            padding-left: 10px;
            padding-right: 5px; }
          .products_holder .products-listing-single .bottom .category_list .items-holder span:last-child:after {
            display: none; }

.tech_row .product-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  margin-top: 30px;
  width: 75%;
  gap: 5px; }
  @media (max-width: 900px) {
    .tech_row .product-info {
      width: 100%;
      margin-top: 50px;
      padding: 0 20px; } }

.products-listing-item {
  display: grid;
  background: #2f4057;
  opacity: 1;
  transition: 0.2s all;
  transform-origin: center center;
  transform: scale(1);
  grid-template-columns: 100px 1fr 150px; }
  .products-listing-item:hover {
    transform: scale(1.05);
    opacity: 0.95; }
  @media (max-width: 900px) {
    .products-listing-item {
      grid-template-columns: 100px 1fr; } }
  .products-listing-item .img-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 10px; }
    .products-listing-item .img-holder img {
      object-fit: contain;
      height: 90px;
      width: 90px; }
  .products-listing-item .info .inner {
    padding: 20px 5px 20px 20px;
    color: #fff; }
    @media (max-width: 900px) {
      .products-listing-item .info .inner {
        padding: 20px; } }
    .products-listing-item .info .inner h3 {
      font-size: 16px;
      margin-bottom: 6px; }
    .products-listing-item .info .inner p {
      font-size: 11px; }
    .products-listing-item .info .inner button {
      transition: 0.2s all;
      cursor: pointer;
      border-radius: 21px;
      padding: 8px 22px 6px;
      border: 2px solid #fff;
      color: #fff;
      background-color: transparent;
      font-size: 16px;
      font-family: "Open-Sans-Medium";
      font-weight: 500;
      font-size: 15px;
      margin-top: 20px; }
      .products-listing-item .info .inner button.active, .products-listing-item .info .inner button:hover {
        background: #fff;
        color: #00afcd; }
  .products-listing-item .btn-holder {
    display: flex;
    justify-content: flex-start;
    align-items: center; }
    .products-listing-item .btn-holder button {
      transition: 0.2s all;
      cursor: pointer;
      border-radius: 21px;
      padding: 8px 22px 6px;
      border: 2px solid #fff;
      color: #fff;
      background-color: transparent;
      font-size: 16px;
      font-family: "Open-Sans-Medium";
      font-weight: 500;
      font-size: 15px; }
      .products-listing-item .btn-holder button.active, .products-listing-item .btn-holder button:hover {
        background: #fff;
        color: #00afcd; }

.product_entry {
  position: relative; }
  .product_entry .category-product-list {
    position: absolute;
    right: 0;
    top: 30px;
    padding: 10px 20px 10px 20px;
    text-align: center;
    background-color: #2f4057;
    color: #fff; }
    .product_entry .category-product-list span {
      font-size: 14px; }
    @media (max-width: 900px) {
      .product_entry .category-product-list {
        left: 0;
        top: 0;
        padding: 10px;
        text-align: center;
        height: 45px; } }
  .product_entry .product-info {
    justify-content: center;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr 1fr; }
    @media (max-width: 900px) {
      .product_entry .product-info {
        grid-template-columns: 1fr;
        margin-bottom: 50px; } }
    .product_entry .product-info .product-image-holder {
      background-image: url("images/background-image.png");
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center; }
    .product_entry .product-info .image {
      padding: 0px 100px 50px 0px; }
      @media (max-width: 900px) {
        .product_entry .product-info .image {
          padding: 0 0 20px 0;
          margin: 45px -15px 20px; } }
    .product_entry .product-info .info {
      height: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center; }
      .product_entry .product-info .info h1 {
        font-size: 53px;
        color: #2f4057;
        font-family: "Open-Sans-Medium";
        margin-bottom: 30px; }
      .product_entry .product-info .info p {
        font-size: 15px;
        color: #2f4057;
        margin-bottom: 20px; }
      .product_entry .product-info .info a {
        transition: 0.2s all;
        cursor: pointer;
        border-radius: 21px;
        padding: 8px 22px 6px;
        border: 2px solid #fff;
        color: #fff;
        background-color: transparent;
        font-size: 16px;
        font-family: "Open-Sans-Medium";
        font-weight: 500;
        margin-top: 20px;
        display: inline-block;
        background-color: #00afcd;
        color: #fff;
        width: 340px;
        text-align: center;
        padding: 10px 20px 9px;
        border: 2px solid #00afcd;
        font-family: "Open-Sans-Book"; }
        .product_entry .product-info .info a.active, .product_entry .product-info .info a:hover {
          background: #fff;
          color: #00afcd; }
        @media (max-width: 900px) {
          .product_entry .product-info .info a {
            padding: 10px 10px 10px;
            width: 100%;
            text-align: center; } }
  .product_entry .usp-benefit-holder {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px; }
    @media (max-width: 900px) {
      .product_entry .usp-benefit-holder {
        grid-template-columns: 1fr;
        gap: 20px; } }
    .product_entry .usp-benefit-holder .lister {
      padding: 40px;
      position: relative;
      overflow: hidden; }
      @media (max-width: 900px) {
        .product_entry .usp-benefit-holder .lister {
          padding: 40px 30px; } }
      .product_entry .usp-benefit-holder .lister .readmore {
        color: #fff;
        text-decoration: underline;
        margin-left: 5px; }
      .product_entry .usp-benefit-holder .lister h4 {
        font-family: "Open-Sans-Medium";
        color: #fff;
        font-size: 29px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        width: 100%;
        padding-bottom: 30px;
        position: relative;
        z-index: 5; }
      .product_entry .usp-benefit-holder .lister ul li {
        position: relative;
        z-index: 5;
        color: #fff;
        font-family: "Open-Sans-Book";
        font-size: 16px;
        line-height: 1.8em;
        padding: 20px 0px 20px 50px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.4); }
        .product_entry .usp-benefit-holder .lister ul li:before {
          content: "";
          width: 16px;
          height: 19px;
          display: block;
          background-image: url("images/util/arrow-right.svg");
          background-size: contain;
          background-repeat: no-repeat;
          position: absolute;
          left: 2px;
          top: 23px; }
      .product_entry .usp-benefit-holder .lister .pjs-triangle {
        z-index: 2; }
      .product_entry .usp-benefit-holder .lister.usps-list {
        background-color: #00afcd; }
        .product_entry .usp-benefit-holder .lister.usps-list .pjs-triangle:after {
          border-top: 500px solid #01a7c3; }
      .product_entry .usp-benefit-holder .lister.benefits-list {
        background-color: #2f4057; }
        .product_entry .usp-benefit-holder .lister.benefits-list .pjs-triangle:after {
          border-top: 500px solid #2b3c53; }
  .product_entry .history-holder {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    padding-top: 40px; }
    @media (max-width: 900px) {
      .product_entry .history-holder {
        grid-template-columns: 1fr; } }
    .product_entry .history-holder .history-list {
      padding: 40px 80px 40px 40px; }
      @media (max-width: 900px) {
        .product_entry .history-holder .history-list {
          padding: 0px 20px 30px 20px; } }
      .product_entry .history-holder .history-list h2 {
        font-family: "Open-Sans-Medium";
        color: #2f4057;
        font-size: 30px;
        margin-bottom: 20px; }
      .product_entry .history-holder .history-list p {
        color: #818181;
        font-size: 15px;
        margin-bottom: 15px; }
    .product_entry .history-holder .video {
      opacity: 1;
      transition: 0.2s all;
      transform-origin: center center;
      transform: scale(1); }
      .product_entry .history-holder .video:hover {
        transform: scale(1.05);
        opacity: 0.95; }
      .product_entry .history-holder .video .video-hover {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        pointer-events: none;
        background: rgba(0, 0, 0, 0.2);
        transition: 0.2s all; }
      .product_entry .history-holder .video:hover .video-hover {
        opacity: 0; }
  .product_entry .accordion-holder {
    padding-top: 40px; }
    .product_entry .accordion-holder .accordion .title {
      transition: 0.2s all;
      cursor: pointer;
      padding: 30px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center; }
      .product_entry .accordion-holder .accordion .title h4 {
        font-size: 29px;
        font-family: "Open-Sans-Medium"; }
      .product_entry .accordion-holder .accordion .title .accordion-action {
        width: 35px;
        height: 35px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        cursor: pointer;
        display: block;
        background-image: url("images/util/accord-open-white.svg"); }
    .product_entry .accordion-holder .accordion.active .accordion-action {
      background-image: url("images/util/accord-close-white.svg"); }
    .product_entry .accordion-holder .accordion .content {
      padding: 30px 80px; }
      @media (max-width: 900px) {
        .product_entry .accordion-holder .accordion .content {
          padding: 30px; } }
      .product_entry .accordion-holder .accordion .content .holder {
        position: relative;
        padding-bottom: 20px; }
        @media (min-width: 901px) {
          .product_entry .accordion-holder .accordion .content .holder:before {
            content: "";
            width: 16px;
            height: 19px;
            display: block;
            background-image: url("images/util/arrow-right.svg");
            background-size: contain;
            background-repeat: no-repeat;
            position: absolute;
            left: 2px;
            top: 23px;
            left: -40px;
            top: 2px; } }
      .product_entry .accordion-holder .accordion .content p {
        color: #fff;
        font-family: "Open-Sans-Book";
        font-size: 15px; }
      .product_entry .accordion-holder .accordion .content .downloads-buttons {
        display: flex;
        justify-content: flex-start;
        gap: 15px; }
        @media (max-width: 900px) {
          .product_entry .accordion-holder .accordion .content .downloads-buttons {
            flex-direction: column;
            justify-content: center; } }
        .product_entry .accordion-holder .accordion .content .downloads-buttons button {
          transition: 0.2s all;
          cursor: pointer;
          border-radius: 21px;
          padding: 8px 22px 6px;
          border: 2px solid #fff;
          color: #fff;
          background-color: transparent;
          font-size: 16px;
          font-family: "Open-Sans-Medium";
          font-weight: 500;
          font-size: 17px;
          display: flex;
          gap: 15px;
          padding-right: 20px;
          align-items: center;
          justify-content: space-between; }
          .product_entry .accordion-holder .accordion .content .downloads-buttons button.active, .product_entry .accordion-holder .accordion .content .downloads-buttons button:hover {
            background: #fff;
            color: #00afcd; }
          @media (max-width: 900px) {
            .product_entry .accordion-holder .accordion .content .downloads-buttons button {
              padding-top: 20px;
              padding-bottom: 20px; } }
          .product_entry .accordion-holder .accordion .content .downloads-buttons button:after {
            content: "";
            width: 18px;
            height: 18px;
            display: block;
            background-image: url("images/util/download.svg");
            background-size: contain;
            background-repeat: no-repeat; }
          .product_entry .accordion-holder .accordion .content .downloads-buttons button:hover:after {
            background-image: url("images/util/download-blue.svg"); }
    .product_entry .accordion-holder .accordion.active .title {
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15); }
    .product_entry .accordion-holder .accordion.downloads {
      background-color: #00afcd; }
      .product_entry .accordion-holder .accordion.downloads .title {
        color: #fff; }
    .product_entry .accordion-holder .accordion.references {
      background-color: rgba(47, 64, 87, 0.17); }
      .product_entry .accordion-holder .accordion.references .title {
        color: #2f4057; }
      .product_entry .accordion-holder .accordion.references .accordion-action {
        background-image: url("images/util/accord-open-grey.svg"); }
      .product_entry .accordion-holder .accordion.references.active .accordion-action {
        background-image: url("images/util/accord-close-grey.svg"); }
      .product_entry .accordion-holder .accordion.references .content a {
        color: #2f4057; }
      .product_entry .accordion-holder .accordion.references .content ol {
        list-style-type: decimal; }
        .product_entry .accordion-holder .accordion.references .content ol li {
          font-size: 12px;
          margin-bottom: 3px; }

.products_holder h2 {
  font-family: "Open-Sans-Medium";
  width: 100%;
  text-align: center;
  padding: 40px 0px;
  display: block;
  font-size: 30px;
  color: #2f4057; }

.products_holder p {
  width: 100% !important;
  font-size: 14px !important; }

.products_holder a {
  text-align: left; }

.products_holder .info {
  padding: 30px !important; }

.products_holder .products-listing-single .pjs-triangle-right:after {
  border-top: 200px solid #01a7c3 !important;
  border-left: 200px solid transparent !important; }

.product-slider {
  width: 100%;
  /* the slides */
  /* the parent */ }
  .product-slider .slick-slide {
    margin: 0 5px; }
  .product-slider .slick-list {
    margin: 0 -5px; }

.slide-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center; }
  .slide-container .slide-arrow-container {
    margin-top: 40px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; }
    .slide-container .slide-arrow-container .slide-arrow {
      width: 38px;
      height: 38px;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      cursor: pointer;
      opacity: 1;
      transition: 0.2s all;
      transform-origin: center center;
      transform: scale(1); }
      .slide-container .slide-arrow-container .slide-arrow:hover {
        transform: scale(1.05);
        opacity: 0.95; }
      .slide-container .slide-arrow-container .slide-arrow.back {
        background-image: url("images/util/back.svg"); }
      .slide-container .slide-arrow-container .slide-arrow.next {
        background-image: url("images/util/forward.svg"); }

.connect_text {
  overflow: hidden;
  position: relative;
  background-position: center center;
  background-size: cover; }
  .connect_text:before {
    position: absolute;
    content: "";
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    z-index: 2;
    background-color: rgba(0, 175, 205, 0.7); }
  .connect_text .container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 110px 0;
    z-index: 50; }
    .connect_text .container .info {
      width: 68%;
      color: #fff;
      text-align: center; }
      @media (max-width: 900px) {
        .connect_text .container .info {
          width: 90%; } }
      .connect_text .container .info h4 {
        font-size: 29px;
        font-family: "Open-Sans-Medium";
        text-transform: uppercase;
        margin-bottom: 18px; }
      .connect_text .container .info p {
        margin-bottom: 30px;
        font-size: 15px;
        font-family: "Open-Sans-Book"; }
      .connect_text .container .info a {
        display: inline-block;
        transition: 0.2s all;
        cursor: pointer;
        border-radius: 21px;
        padding: 8px 22px 6px;
        border: 2px solid #fff;
        color: #fff;
        background-color: transparent;
        font-size: 16px;
        font-family: "Open-Sans-Medium";
        font-weight: 500;
        background-color: #fff;
        color: #00afcd;
        font-size: 17px;
        padding: 8px 40px; }
        .connect_text .container .info a.active, .connect_text .container .info a:hover {
          background: #fff;
          color: #00afcd; }
        .connect_text .container .info a:hover {
          background-color: transparent;
          color: #fff; }

.download-modal {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.2s all;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none; }
  @media (max-width: 900px) {
    .download-modal {
      align-items: flex-start; } }
  .download-modal.active {
    pointer-events: all;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.5); }
  .download-modal .modal-main {
    position: relative;
    width: 70%;
    background-color: #fff;
    z-index: 10; }
    @media (max-width: 900px) {
      .download-modal .modal-main {
        width: 90%;
        overflow: scroll;
        max-height: 100vh; } }
  .download-modal .download-modal-header {
    position: relative;
    overflow: hidden;
    background: #00afcd;
    padding: 40px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    @media (max-width: 900px) {
      .download-modal .download-modal-header {
        padding: 40px 20px 20px;
        flex-direction: column;
        gap: 20px; }
        .download-modal .download-modal-header .pjs-triangle {
          display: none; } }
    .download-modal .download-modal-header .close {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      align-items: center;
      position: relative;
      z-index: 10;
      cursor: pointer; }
      .download-modal .download-modal-header .close .close_icon {
        display: block;
        content: "";
        width: 35px;
        height: 35px;
        display: block;
        background-image: url("images/util/close.svg");
        background-size: contain;
        background-repeat: no-repeat; }
        @media (max-width: 900px) {
          .download-modal .download-modal-header .close .close_icon {
            width: 20px;
            height: 20px; } }
      .download-modal .download-modal-header .close span {
        display: block;
        color: #fff;
        text-transform: uppercase;
        font-size: 21px; }
        @media (max-width: 900px) {
          .download-modal .download-modal-header .close span {
            font-size: 16px;
            margin-top: 3px; } }
    .download-modal .download-modal-header h3 {
      color: #fff;
      font-size: 40px;
      font-family: "Open-Sans-Medium";
      font-weight: 500;
      line-height: 0;
      margin-top: 5px; }
  .download-modal .downloads-headers {
    padding: 40px 40px 20px;
    display: flex;
    gap: 10px; }
    @media (max-width: 900px) {
      .download-modal .downloads-headers {
        padding: 20px;
        display: flex;
        gap: 10px;
        flex-direction: column;
        border-bottom: 1px solid #dbdee2; } }
    .download-modal .downloads-headers button {
      cursor: pointer;
      font-family: "Open-Sans-Book";
      display: inline-block;
      padding: 10px 15px 6px;
      font-size: 16px;
      border-radius: 21px;
      color: #818181;
      transition: 0.2s all;
      text-align: center;
      border: 0px !important;
      background: #fff; }
      .download-modal .downloads-headers button.active {
        background: #00afcd;
        color: #fff;
        padding: 8px 15px 6px; }
  .download-modal .download-content {
    padding: 0px 40px 40px; }
    @media (max-width: 900px) {
      .download-modal .download-content {
        padding: 0px 20px 20px; } }
    .download-modal .download-content div:last-child ul li:last-child {
      border-bottom: 0px !important; }
  .download-modal .download-list ul li {
    position: relative;
    z-index: 5;
    font-family: "Open-Sans-Book";
    font-size: 16px;
    line-height: 1.8em;
    padding: 20px 0px 20px 50px;
    border-bottom: 1px solid #dbdee2; }
    @media (min-width: 901px) {
      .download-modal .download-list ul li:before {
        content: "";
        width: 11px;
        height: 15px;
        display: block;
        background-image: url("images/util/arrow-right-dblue.svg");
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        left: 2px;
        top: 30px; } }
    @media (max-width: 900px) {
      .download-modal .download-list ul li {
        padding: 20px 0px 20px; } }
    .download-modal .download-list ul li a {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center; }
      @media (max-width: 900px) {
        .download-modal .download-list ul li a {
          flex-direction: column; } }
      .download-modal .download-list ul li a span {
        color: #2f4057; }
        @media (max-width: 900px) {
          .download-modal .download-list ul li a span {
            font-size: 13px;
            line-height: 20px;
            text-align: center;
            margin-bottom: 10px; } }
      .download-modal .download-list ul li a button {
        transition: 0.2s all;
        cursor: pointer;
        border-radius: 21px;
        padding: 8px 22px 6px;
        border: 2px solid #fff;
        color: #fff;
        background-color: transparent;
        font-size: 16px;
        font-family: "Open-Sans-Medium";
        font-weight: 500;
        font-size: 17px;
        display: flex;
        gap: 15px;
        padding-right: 20px;
        align-items: center;
        justify-content: space-between;
        border-color: #00afcd;
        color: #00afcd;
        font-size: 17px; }
        .download-modal .download-list ul li a button.active, .download-modal .download-list ul li a button:hover {
          background: #fff;
          color: #00afcd; }
        .download-modal .download-list ul li a button:after {
          content: "";
          width: 18px;
          height: 18px;
          display: block;
          background-image: url("images/util/download-blue.svg");
          background-size: contain;
          background-repeat: no-repeat; }
        .download-modal .download-list ul li a button:hover {
          background-color: #00afcd;
          color: #fff; }
          .download-modal .download-list ul li a button:hover:after {
            background-image: url("images/util/download.svg"); }
  .download-modal .download-all {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 0px 50px; }
    .download-modal .download-all a {
      transition: 0.2s all;
      cursor: pointer;
      border-radius: 21px;
      padding: 8px 22px 6px;
      border: 2px solid #fff;
      color: #fff;
      background-color: transparent;
      font-size: 16px;
      font-family: "Open-Sans-Medium";
      font-weight: 500;
      font-size: 17px;
      display: flex;
      gap: 15px;
      padding-right: 20px;
      align-items: center;
      justify-content: space-between;
      background-color: #00afcd; }
      .download-modal .download-all a.active, .download-modal .download-all a:hover {
        background: #fff;
        color: #00afcd; }
      .download-modal .download-all a:after {
        content: "";
        width: 18px;
        height: 18px;
        display: block;
        background-image: url("images/util/download.svg");
        background-size: contain;
        background-repeat: no-repeat; }
      .download-modal .download-all a:hover:after {
        background-image: url("images/util/download-blue.svg"); }

@media (max-width: 900px) {
  .nomobpad {
    padding: 0px 5px !important; } }

.pjs-icon.arrow-up {
  width: 10px;
  height: 10px;
  background-position: center;
  background-size: cover;
  background-image: url("/assets/product-additions/images/human/arrow_up.svg"); }

.pjs-icon.arrow-down {
  width: 10px;
  height: 10px;
  transform-origin: center;
  transform: rotate(180deg);
  background-position: center;
  background-size: cover;
  background-image: url("/assets/product-additions/images/human/arrow_up.svg"); }

.pjs-icon.play-button {
  width: 70px;
  height: 50px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("/assets/product-additions/images/playbutton.svg"); }

.pjs-triangle {
  position: absolute;
  height: 0;
  transition: transform 0.3s; }
  .pjs-triangle:after {
    content: "";
    display: block;
    width: 0;
    height: 0; }
  .pjs-triangle.pjs-triangle-left {
    bottom: 500px;
    left: 0;
    z-index: 2; }
    .pjs-triangle.pjs-triangle-left:after {
      border-right: 500px solid transparent; }
  .pjs-triangle.pjs-triangle-right {
    top: 0;
    right: 0;
    z-index: 2; }
    .pjs-triangle.pjs-triangle-right:after {
      border-left: 350px solid transparent; }

.products-listing-single .pjs-triangle-left:after {
  border-bottom: 500px solid rgba(0, 175, 205, 0.3); }

.products-listing-single .pjs-triangle-right:after {
  border-top: 300px solid #01a7c3; }

.connect_text .pjs-triangle-left:after {
  border-bottom: 500px solid rgba(0, 175, 205, 0.3); }

.download-modal-header .pjs-triangle-right:after {
  border-top: 300px solid #01a7c3; }

.module-new-holder {
  width: 45%;
  display: flex;
  justify-content: flex-start;
  flex-shrink: 0; }
  @media (max-width: 900px) {
    .module-new-holder {
      width: 100%; } }
  .module-new-holder .loadBackground {
    display: none;
    background-image: url("images/human/Back.png"); }
  .module-new-holder .module-new {
    height: 700px;
    width: 360px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative; }
    .module-new-holder .module-new .pin-holder {
      z-index: 1000;
      transition: 0.2s all;
      position: absolute;
      left: 0px;
      right: 0px;
      top: 0px;
      bottom: 0px;
      width: 100%; }
      .module-new-holder .module-new .pin-holder .pin {
        width: 20px;
        height: 20px;
        background: #00afcd;
        border: 4px solid #2f4057;
        position: absolute;
        border-radius: 100%;
        transition: 0.2s all;
        transform-origin: center center;
        z-index: 100;
        transform: translateX(-50%) translateY(-50%); }
        .module-new-holder .module-new .pin-holder .pin:hover, .module-new-holder .module-new .pin-holder .pin.active {
          width: 30px;
          height: 30px; }
      .module-new-holder .module-new .pin-holder.frontpins .shoulder {
        top: 150px;
        left: 110px; }
      .module-new-holder .module-new .pin-holder.frontpins .knee {
        top: 500px;
        left: 210px; }
      .module-new-holder .module-new .pin-holder.frontpins .hip {
        top: 300px;
        left: 140px; }
      .module-new-holder .module-new .pin-holder.frontpins .ent {
        top: 65px;
        left: 150px; }
      .module-new-holder .module-new .pin-holder.backpins .shoulder {
        top: 150px;
        left: 110px; }
      .module-new-holder .module-new .pin-holder.backpins .knee {
        top: 500px;
        left: 155px; }
      .module-new-holder .module-new .pin-holder.backpins .hip {
        top: 300px;
        left: 225px; }
      .module-new-holder .module-new .pin-holder.backpins .spine {
        top: 250px;
        left: 180px; }
      .module-new-holder .module-new .pin-holder.backpins .ent {
        top: 65px;
        left: 150px; }
    .module-new-holder .module-new.front {
      background-image: url("images/human/Front.png"); }
      .module-new-holder .module-new.front .frontpins {
        pointer-events: all;
        opacity: 1; }
      .module-new-holder .module-new.front .backpins {
        opacity: 0;
        pointer-events: none; }
    .module-new-holder .module-new.back {
      background-image: url("images/human/Back.png"); }
      .module-new-holder .module-new.back .frontpins {
        opacity: 0;
        pointer-events: none; }
      .module-new-holder .module-new.back .backpins {
        opacity: 1;
        pointer-events: all; }

.dotter {
  width: 10px;
  height: 10px;
  position: absolute;
  transform-origin: center center;
  border-radius: 100%;
  z-index: 10000; }

.liner {
  width: 4px;
  height: 4px;
  background: #2f4057;
  position: absolute;
  transform-origin: center center;
  z-index: 100;
  opacity: 0;
  pointer-events: none; }
  @media (max-width: 900px) {
    .liner {
      display: none; } }

.interactive-rightArrow {
  width: 20px;
  height: 30px;
  background-image: url("images/util/left-arrow-grey.svg");
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 100;
  opacity: 0;
  pointer-events: none; }
  @media (max-width: 900px) {
    .interactive-rightArrow {
      display: none; } }

.special_flex {
  display: flex;
  justify-content: center;
  align-items: center; }

.tb_nav-item {
  margin-right: -5px; }

.tech_top {
  padding: 50px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 700px; }
  @media (max-width: 900px) {
    .tech_top {
      padding: 50px 0px; } }
  .tech_top .sidepanel {
    position: absolute;
    right: 0px;
    top: 80px; }
    @media (max-width: 900px) {
      .tech_top .sidepanel {
        position: relative;
        top: 0;
        padding: 50px 30px 0px; } }
  .tech_top .orientation {
    display: flex;
    gap: 8px;
    justify-content: space-between;
    padding-right: 25px;
    margin-top: 30px; }
    @media (max-width: 900px) {
      .tech_top .orientation {
        padding-right: 0px; } }
    .tech_top .orientation img {
      width: 38px;
      height: 42px; }
    .tech_top .orientation .orient_button {
      transition: 0.2s all;
      cursor: pointer;
      border-radius: 21px;
      padding: 8px 22px 6px;
      border: 2px solid #fff;
      color: #fff;
      background-color: transparent;
      font-size: 16px;
      font-family: "Open-Sans-Medium";
      font-weight: 500; }
      .tech_top .orientation .orient_button.active, .tech_top .orientation .orient_button:hover {
        background: #fff;
        color: #00afcd; }
  .tech_top .nodeHolder {
    background: #2f4057;
    padding: 10px;
    border-top-left-radius: 42px;
    border-bottom-left-radius: 42px;
    color: #fff;
    padding: 22px 20px 22px 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; }
    @media (max-width: 900px) {
      .tech_top .nodeHolder {
        padding: 20px;
        border-radius: 42px; } }
    .tech_top .nodeHolder .node {
      width: 32px;
      height: 32px; }
    .tech_top .nodeHolder p {
      width: 150px;
      line-height: 1em;
      font-size: 13px;
      font-weight: 600; }
  .tech_top .tech_row {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 20px; }
    @media (max-width: 900px) {
      .tech_top .tech_row {
        flex-direction: column; } }
  .tech_top .text {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    flex-grow: 1; }
    @media (max-width: 900px) {
      .tech_top .text {
        flex-direction: column; } }
    .tech_top .text .text_holder {
      width: 70%; }
      @media (max-width: 900px) {
        .tech_top .text .text_holder {
          width: 100%;
          padding: 0px 20px; } }
      .tech_top .text .text_holder h1 {
        font-size: 53px;
        font-weight: bold;
        margin-bottom: 5px; }
      .tech_top .text .text_holder h2 {
        color: #fff;
        font-size: 25px;
        margin-bottom: 5px; }
      .tech_top .text .text_holder p {
        color: #fff;
        font-size: 15px; }
    @media (max-width: 900px) {
      .tech_top .text {
        width: 100%; } }
  .tech_top .module {
    width: 50%; }
    @media (max-width: 900px) {
      .tech_top .module {
        width: 100%;
        padding-right: 0;
        padding-top: 40px; } }
    .tech_top .module .module_holder {
      position: relative;
      height: 80vh;
      max-height: 700px; }
      .tech_top .module .module_holder img {
        transition: 0.2s all;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        opacity: 0;
        position: absolute;
        width: auto;
        height: 100%;
        min-height: 600px;
        max-height: 700px;
        transform: rotateY(80deg); }
        @media (max-width: 900px) {
          .tech_top .module .module_holder img {
            margin: 0 auto !important; } }
      .tech_top .module .module_holder img.active {
        transform: rotateY(0deg);
        opacity: 1; }

@keyframes rotate {
  0% {
    transform: rotateY(40deg); }
  100% {
    transform: rotateY(0deg); } }

@keyframes rotate2 {
  0% {
    transform: rotateY(40deg); }
  100% {
    transform: rotateY(0deg); } }

.my-div {
  animation: animatename 1s linear infinite;
  /* animation shorthand */
  animation: animation-name animation-duration animation-direction animation-iteration-count; }

.fade-in-anim {
  opacity: 0;
  transition: 0.3s 0.2s all; }
  .fade-in-anim.fadeMeIn {
    opacity: 1; }
