@font-face {
  font-family: 'Gothic';
  font-style: normal;
  font-weight: 100;
  src: local('SohoGothicPro-Regular'), local('SohoGothicPro-Regular'), url('SohoGothicPro-Regular.ttf') format('truetype');
}
.font-body{font-family: Gothic;}
.color-1{color:#363f44c9; }
.icon svg {
  height: 100%;
  width: 100%;
  display: block;
  fill: currentColor;
}
.icon.icon-small {
  height: auto;
  width: 18px;
  display: inline-block;
  vertical-align: middle;
}

.bg-img {
  background-size: cover;
  background-position: center;
}

.top-5 {
  top: 5em;
}

.button {
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 12px;
  padding: 0.5rem 0.75rem;
  transition: 0.3s all ease;
}

.button-drak {
  background-color: transparent;
  border: 1px solid #78838a;
  color: #9da8ae;
}

.button-drak:hover {
  color: #fff;
  border-color: #fff;
}

.button-dark {
  background-color: transparent;
  border: 1px solid #78838a;
  color: #000;
}

.button-dark:hover {
  color: #000;
  border-color: #000;
}

.button-white {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.button-white:hover {
  color: #fff;
  border-color: #fff;
}

.button-light {
  background-color: transparent;
  border: 1px solid #c8d0d5;
  color: #363f44;
}

.button-light:hover {
  border-color: #363f44;
  color: #363f44;
}

.button-orange {
  background-color: #f36d1e;
  border: 1px solid #f36d1e;
  color: #fff;
}

.button-orange:hover {
  border-color: #e95914;
  background-color: #e95914;
}

.button-green {
  background-color: #72df14;
  border: 1px solid #72df14;
  color: #000;
}

.button-green:hover {
  border-color: #5baf11;
  background-color: #5baf11;
}

.button-red {
  background-color: #BE192D;
  border: 1px solid #BE192D;
  color: #fff;
}
.button-red:hover {
  background-color: #BE192D;
  border: 1px solid #BE192D;
  color: #fff;
}
.button-blue {
  background-color: #496d9e;
  border: 1px solid #496d9e;
  color: #fff;
}

.button-blue:hover {
  border-color: #2c6bc1;
  background-color: #2c6bc1;
}

.color_gray {
  color: #9da8ae;
}

.container-card-images {
  position: relative;
  margin-top: -5em;
}

.card-images {
  width: 1000px;
  height: 1000px;
  max-width: 100%;
  max-height: 800px;
  background-position: center;
  background-size: cover;
  z-index: 0;
}

@media (max-width: 767px) {
  .card-images {
    max-height: 60vh;
  }
}

.card-images::after {
  content: "";
  z-index: -1;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 15rem;
  opacity: 0.5;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(transparent),
    to(rgba(0, 0, 0, 0.72))
  );
  background: -o-linear-gradient(bottom, transparent 0, rgba(0, 0, 0, 0.72));
  background: linear-gradient(0deg, transparent 0, rgba(0, 0, 0, 0.72));
}

@media (min-width: 992px) {
  .card-images.first {
    position: absolute;
    top: 0;
  }
}

.card-images .card-head {
  padding: 5em 5em 0 5em;
  z-index: 2;
  position: absolute;
}

.card-images .card-head .title {
  font-size: 16px;
  letter-spacing: 2px;
}

.card-images .card-content {
  max-height: 100%;
  padding: 5em;
  position: absolute;
  bottom: 0;
  z-index: 2;
  opacity: 0;
  transition: 0.3s all ease;
}

.card-images .card-content p {
  font-size: 19px;
}

.card-images .overlay {
  background-image: linear-gradient(180deg, rgba(15, 16, 17, 0) 0, #181c20 60%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 100%;
  opacity: 0;
  transition: 0.2s ease;
  overflow: hidden;
  height: 0;
}

@media (max-width: 767px) {
  .card-images .card-head {
    padding: 1em;
    padding-left: 6em;
  }
  .card-images .card-head .title-button {
    height: 3rem;
    width: 3rem;
    position: absolute;
    left: 1rem;
    top: 1rem;
    border-radius: 4rem;
    border: 1px solid #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    pointer-events: all;
  }
  .card-images .card-head .title-button .icon {
    height: 1rem;
    width: 1rem;
    display: inline-block;
    vertical-align: middle;
    transition: 0.3s all ease;
  }
  .card-images .card-head .title-button .icon svg {
    height: 100%;
    width: 100%;
    display: block;
    fill: currentColor;
  }
  .card-images .card-head .title-button .icon[data-icon="close"] {
    display: none;
  }
  .card-images .card-content {
    padding: 1em;
    display: none;
  }
  .card-images .card-content p {
    font-size: 16px;
  }
  .card-images.opened {
    max-height: 100vh;
  }
  .card-images.opened .card-head .title-button .icon[data-icon="close"] {
    display: unset;
  }
  .card-images.opened .card-head .title-button .icon[data-icon="plus"] {
    display: none;
  }
  .card-images.opened .card-content {
    opacity: 1;
    display: block;
  }
  .card-images.opened .overlay {
    opacity: 1;
    top: 0;
    height: 100%;
  }
}
@media (min-width: 768px) {
  .card-images:hover .card-content {
    opacity: 1;
  }

  .card-images:hover .overlay {
    opacity: 1;
    top: 0;
    height: 100%;
  }

  .card-images .card-head .title-button {
    display: none;
  }
}

.catalogue-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: #000;
  outline: 1px solid #c8d0d5;
  padding-left: 1.5em;
  border-radius: 10px;
}

.catalogue-container .download-link {
  display: block;
  position: relative;
  padding: 1.2em 2.4em 1em 1.2em;
  background-image: linear-gradient(260deg, #576269, #78838a);
  transition: 0.3s all ease;
  border-radius: 10px;
}

.catalogue-container .download-link:hover {
  background-size: 130%;
}

.catalogue-container .download-link .download-title {
  color: #fff;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 13px;
}

.catalogue-container .download-link .icon-wrapper {
  position: absolute;
  right: 1em;
  bottom: 2.9em;
  width: 0.9em;
  height: 0.9em;
}

.catalogue-container .download-link .icon-wrapper .download-icon {
  display: block;
  margin-bottom: -10px;
  margin-top: 10px;
  transition: 0.3s all ease;
}

.catalogue-container .download-link:hover .icon-wrapper .download-icon {
  margin-bottom: 0;
  margin-top: 0;
}

.catalogue-container .download-link .icon-wrapper .minus-icon {
  display: block;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .catalogue-container {
    flex-direction: column;
    padding-left: 0;
  }
  .catalogue-container .content-left {
    padding: 1em;
  }
}

.bg-image {
  height: 30em;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.bg-white-light {
  background-image: linear-gradient(
    0deg,
    rgba(200, 208, 213, 0),
    rgba(200, 208, 213, 0) 29%,
    rgba(200, 208, 213, 0.25)
  );
}

.bg-light-grey {
  background-image: linear-gradient(261deg, #181c20, #363f44);
}

.next-chapter {
  position: relative;
  cursor: pointer;
}

.next-chapter::after {
  content: "";
  position: absolute;
  width: 100%;
  background-image: linear-gradient(270deg, transparent, #000 75%, #000);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.next-chapter .body-section {
  display: flex;
}

.next-chapter .image-next {
  width: 100%;
  height: 400px;
  background-size: 100%;
  background-position: center;
  display: flex;
  align-items: center;
  transition: 0.3s all ease;
  background-repeat: no-repeat;
}

.next-chapter:hover .image-next {
  background-size: 108%;
}

.next-chapter .image-next .title-next {
  z-index: 1;
  margin-left: 2em;
  padding-left: 1em;
  min-height: 12em;
  border-left: 1px solid #78838a;
}

.next-chapter .section-text {
  z-index: 1;
  align-self: end;
  width: 320px;
  padding-left: 5em;
  padding-bottom: 4em;
  font-size: 22px;
}

.next-chapter .section-text .icon-wrapper {
  height: 3rem;
  width: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
  padding-bottom: 1em;
  -webkit-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.next-chapter .section-text .icon-wrapper::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.6em;
  left: 0;
  height: 0.2rem;
  width: 100%;
  background-color: #fff;
}

.next-chapter:hover .section-text .icon-wrapper {
  width: 3.5rem;
}

.next-chapter .section-text .icon-wrapper .icon {
  height: 1em;
  width: 0.4em;
  color: #fff;
}

.next-chapter .section-text .icon-wrapper .icon svg {
  height: 100%;
  width: 100%;
  display: block;
  fill: currentColor;
}

@media (max-width: 991px) {
  .next-chapter .section-text {
    position: absolute;
    padding-left: 1em;
    padding-bottom: 1em;
  }
  .next-chapter::after {
    opacity: 0.45;
  }
  .next-chapter .image-next {
    background-size: auto 100%;
    height: 250px;
  }
  .next-chapter:hover .image-next {
    background-size: auto 120%;
  }
  .next-chapter .image-next .title-next {
    margin-left: 0;
    border-left: none;
  }
}

#mainVideo {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  height: 100%;
  object-fit: cover;
}

.video-section .video {
  position: relative;
  cursor: pointer;
}

.play-button {
  width: 14em;
  height: 14em;
  padding: 6em;
  border-radius: 50%;
  border: 2px solid #fff;
}

.video-section .video.player .play-button {
  display: none;
}

@media (max-width: 575px) {
  .play-button {
    width: 8em;
    height: 8em;
    padding: 3em;
  }
}

.video-section .video .video-button {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.video iframe,
.video object,
.video embed {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.main-banner .play-button {
  cursor: pointer;
}

.main-banner .play-button:hover svg path {
  fill: #fff;
}

.gradient-color-b {
  stop-color: #0f1011;
}

.gradient-color-a {
  stop-color: #72df14;
}
.gradient-color-c {
  stop-color:#BE192D;
}
.gradient-color-d {
    stop-color: #e95914;
}


.swoosh-icon {
  display: inline-block;
  height: 1.25rem;
  width: auto;
  margin-right: 1rem;
}

.swoosh-icon.blue .gradient-color-b {
  stop-color: #6ca0e6;
}

.swoosh-icon.blue .gradient-color-a {
  stop-color: #496d9e;
}

.video-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.video-item {
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  position: relative;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.carousel-video .carousel-content {
  position: absolute;
  bottom: 0;
  padding: 0 0 2em 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-video .carousel-content .play-button {
  width: 7em;
  height: 7em;
  padding: 45px;
}

.carousel-video .video-item:hover .carousel-content .play-button svg path {
  fill: #fff;
}

.carousel-video .carousel-content .fnt_title {
  font-size: 20px;
  max-width: 8em;
  margin-bottom: 0;
  margin-left: 1em;
}

.section-bg-video {
  width: 100%;
  padding-bottom: 45%; /* 16:9 */
  position: relative;
  background-size: cover;
  background-position: center;
}

.section-bg-video .content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section-bg-video.video-on-click {
  padding-bottom: 60%;
  background-position: bottom;
}

@media (max-width: 767px) {
  .section-bg-video {
    padding-bottom: 100%;
  }
}

@media (max-width: 575px) {
  .section-bg-video {
    padding-bottom: 120%;
  }
  .section-bg-video.video-on-click {
    padding-bottom: 270%;
  }
}

.arrow {
  height: auto;
  width: 3.2em;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
  padding: 0 1rem;
}

.arrow:hover svg path {
  fill: #72df14;
}

.arrow.arrow-custom-left {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  -ms-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
  left: 2em;
}

.arrow.js-next {
  right: -1em;
  left: auto;
}

.disabled .arrow.js-next,
.disabled .arrow.arrow-custom-left {
  display: none;
}

.carousel-1 img {
  padding: 0 5em;
}

@media (max-width: 575px) {
  .carousel-1 img {
    padding: 0;
  }
}

.bl-dark {
  border-left: 1px solid #363f44;
}

.bl-grey {
  border-left: 1px solid #c8d0d5;
}

.section-border {
  border-top: 1px solid rgba(157, 168, 174, 0.2);
  border-bottom: 1px solid rgba(157, 168, 174, 0.2);
}

.close.close-black {
  background-color: #000;
  border-radius: 50%;
  height: 65px;
  width: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.scroll-section {
  overflow: auto;
  white-space: nowrap;
  user-select: none;
}

.scroll-section::-webkit-scrollbar-track {
  background-color: #f5f5f5;
  border-right: none;
  border-left: none;
  margin: 0 5em;
}

.scroll-section::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #9da8ae;
}

.scroll-section::-webkit-scrollbar {
  display: block;
  height: 10px;
}

.scroll-section img {
  cursor: move;
  display: none;
}

.scroll-section img.active {
  display: unset;
}

.button-config {
  border: 0;
  background: none;
  margin-right: 1.5em;
  padding: 0;
  position: relative;
}

.button-config.active::before {
  content: "";
  position: absolute;
  display: block;
  width: 150%;
  height: 150%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 0.1rem solid #9da8ae;
}

.card-specifications {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 440px;
  border: 1px solid #303337;
  padding: 1em;
}

.card-specifications .fnt_title_light.main-title {
  font-size: 5em;
}

.card-specifications .fnt_title_light.main-title .small-text {
  font-size: 25px;
}

.card-specifications .fnt_title_light.bottom-text {
  color: #9da8ae;
  font-size: 18px;
}

.card-specifications .header-card .fnt_title_light.bottom-text {
  display: block;
  margin-top: -20px;
}

.card-specifications .footer-card {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
}

.card-specifications .footer-card .icon {
  height: 80px;
  width: auto;
}

.card-downloads {
  border: 1px solid #303337;
  padding: 1em;
  transition: 0.2s all ease;
}

.card-downloads:hover {
  border-color: #fff;
}

.card-downloads .title-text {
  color: #fff;
  font-size: 15px;
}

.card-downloads .text-card-body {
  color: #fff;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 13px;
  position: relative;
}

.card-downloads .text-card-body .icon-wrapper {
  position: absolute;
  right: 1em;
  bottom: 0em;
  width: 15px;
  height: auto;
}

.card-downloads .text-card-body .icon-wrapper .download-icon {
  display: block;
  margin-bottom: 5px;
  transition: 0.2s all ease;
}

.card-downloads:hover .text-card-body .icon-wrapper .download-icon {
  margin-bottom: 10px;
}

.row-custom {
  border-bottom: 1px solid #c8d0d5;
  padding-bottom: 1.5em;
  margin-bottom: 1.5em;
}

.border-bottom-grey {
  border-bottom: 1px solid #c8d0d5;
}

.specifications-collapse {
  background-color: #fff;
  padding: 2em 0;
  border-bottom: 1px solid #c8d0d5;
  border-top: 1px solid #c8d0d5;
}

.specifications-collapse.collapsed {
  background-color: #000;
  padding: 2em 0;
  color: #fff !important;
  border: none;
}

.specifications-collapse .closed {
  display: none;
}

.specifications-collapse.collapsed .closed {
  display: unset;
}

.specifications-collapse.collapsed .opened {
  display: none;
}

.specifications-collapse .chevron.bottom {
  display: none;
}

.specifications-collapse.collapsed .chevron.top {
  display: none;
}

.specifications-collapse.collapsed .chevron.bottom {
  display: unset;
}

.card-custom {
  border: 1px solid rgba(157, 168, 174, 0.3);
  padding: 5em 2em;
}

.border-grey-transparent {
  border: 1px solid rgba(157, 168, 174, 0.3);
}

.button-video {
  position: relative;
  background: transparent;
  border: none;
}

.button-video .text-btn {
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 15px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.button-video .spacebar-marker {
  display: block;
  color: #fff;
  width: 28em;
  height: auto;
}

.button-video .spacebar-marker svg .spacebar-bottom {
  fill: none;
}

#videoSpeed {
  display: none;
}

.counter-container {
  width: 21em;
  margin: 0 auto;
  text-align: left;
  padding-bottom: 5em;
}

.counter-container .counter {
  font-size: 14em;
  line-height: 1em;
  display: flex;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
}

.counter-container .icon-cont {
  text-align: right;
}

.counter-container .icon-cont .icon {
  width: 40px;
  margin-left: auto;
}

@media (max-width: 991px) {
  .counter-container {
    width: 18em;
  }
  .counter-container .counter {
    font-size: 12em;
  }
  .button-video .spacebar-marker {
    width: 20em;
  }
}

.ml-lg-8 {
  margin-left: 8em;
}

@media (max-width: 991px) {
  .ml-lg-8 {
    margin-left: 5em;
  }
}

.form-control:focus {
  box-shadow: none;
  border-color: #101010;
}

.impl_menu_wrapper ul li:hover > ul.sub-menu {
  z-index: 4 !important;
}


.color_blanco {
  color: #ffffff;
}

.fondo_morado {
    background: #6D30A7;
}

.close:hover,
.close:focus {
  box-shadow: inset -3.5em 0 0 0 var(--hover), inset 3.5em 0 0 0 var(--hover);
}


button.close {
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
  -webkit-appearance: none;
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.button-blue {
  background-color: #496d9e;
  border: 1px solid #496d9e;
  color: #fff;
}

.form-control2 {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color:#fff;
  background-color: #1b0d2e;
  background-clip: padding-box;
  border: 1px solid rgb(103, 103, 118);
  /* border-radius: 0.25rem; */
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control2::placeholder {
    color: #fff;
    opacity: .6;
}