

.iframe-shadow{
  box-shadow: -10px 10px 10px #0c0c0c33 !important;
}

.vision {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  font-size: 24px;
  hyphens: auto;
}
.visions .vision,
.vision .title,
.score-area .score-content {
  color: var(--gray-primary);
}
.visions {
  margin-top: 40px;
}
.visions .vision {
  /* margin-bottom: 30px; */
  border-radius: 5px;
}
.visions .vision .title {
  position: relative;
  align-self: center;
  margin-bottom: 10px;
  font-size: 24px;
}
.visions .vision .title::after {
  position: absolute;
  content: ' ';
  background: var(--bg-gradient-right);
  bottom: 10px;
  height: 6px;
  width: 100%;
}

.score-content {
    width: unset !important;
}
.score-content {
    width: 250px;
    text-align: center;
    font-weight: 800;
    letter-spacing: 2.28px;
    font-size: 17.5px;
    color: var(--main-color);
}
.score-content strong#score-1 {
    font-size: 60px;
}
.score-content strong#score-2 {
    font-size: 60px;
}
.score-content strong#score-3 {
    font-size: 60px;
}


.card {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  background-color: #333;
}
.card .card-body {
  color: var(--gray-primary);
  text-align: justify;
  background-color: #e9e9e9;
}
.card .card-body p {
  color: var(--gray-primary);
}
.card .image {
  position: relative;
  display: contents;
  max-height: 140px;
}
.card .year {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 20px 20px 0 0;
  
  --bg-color: var(--five-color);
  --bg-inclination: 200deg;
  --bg-grad-start: -5%;
  --bg-grad-end: 30%;

  background: var(--bg-color);
  background: -moz-linear-gradient(var(--bg-inclination), var(--bg-color) var(--bg-grad-start), #ffffff00 var(--bg-grad-end));
  background: -webkit-linear-gradient(var(--bg-inclination),  var(--bg-color) var(--bg-grad-start), #ffffff00 var(--bg-grad-end));
  background: linear-gradient(var(--bg-inclination),  var(--bg-color) var(--bg-grad-start), #ffffff00 var(--bg-grad-end));

  color: #FFF;
}
.card.not-image {
  overflow: visible;
}
.card.not-image .year {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: -55px;
  right: 0;
  left: 0;
  padding: 20px 20px 0 0;
  background: none;
  color: var(--gray-primary);
}
.left-2:nth-child(even) .card.not-image .year {
  display: flex;
  justify-content: flex-start;
}
.card .image img {
  object-fit: cover;
  max-height: 300px;
  width: 100%;
}

.main-timeline-2 {
  position: relative;
}
.main-timeline-2::after {
  display: flex;
  align-items: center;
  justify-content: center;
  
  content: ' ';
  position: absolute;
  width: 3px;
  background-color: var(--gray-primary);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}
.timeline-2 {
  position: relative;
  background-color: inherit;
  width: 50%;
}
.timeline-2 .card {
  box-shadow: var(--shadow);
}
.timeline-2::after {
  display: flex;
  align-items: center;
  justify-content: center;
  content: attr(data-year);
  
  font-family: var(--main-font);
  font-size: 18px;
  font-weight: bold;
  color: var(--white-primary);

  --width: 50px;
  position: absolute;
  top: 0;
  right: calc(-1 * var(--width) / 2);
  
  width: var(--width);
  height: var(--width);
  background-image: var(--bg-gradient-circle);
  border-radius: 50%;
  z-index: 1;
}
.left-2 {
  padding: 0px 40px 50px 0px;
  left: 0;
}
.left-2::before {
  content: " ";
  position: absolute;
  top: 18px;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}
.left-2:nth-child(even) {
  padding: 0px 0px 20px 40px;
  left: 50%;
}
.left-2:nth-child(even)::after {
  left: calc(-1 * var(--width) / 2);
}
.left-2:nth-child(even)::before {
  content: " ";
  position: absolute;
  z-index: 1;
  left: 30px;
  right: inherit;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

.vision:first-child {
  padding-right: 30px;
}
.vision:last-child {
  padding-left: 30px;
}
.vision:nth-child(even) {
  padding: 0 30px;
}

@media screen and (max-width: 600px) {
  .main-timeline-2::after {
    display: none;
  }
  .timeline-2,
  .left-2,
  .left-2:nth-child(even) {
    width: 100%;
    padding: 30px 0;
  }
  .left-2 .card .year,
  .left-2 .card.not-image .year
  .left-2:nth-child(even) .card.not-image .year {
    justify-content: flex-end !important;
  }
  .timeline-2::before {
    display: none;

    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }
  .left-2::after,
  .left-2:nth-child(even)::after {
    display: none;
    left: 18px;
  }
  .left-2:nth-child(even)::before {
    left: 60px;
  }
  .left-2::before {
    right: auto;
  }
  .left-2:nth-child(even) {
    left: 0%;
  }
  .vision {
    height: auto;
  }
  .about-video {
    height: 200px;
    width: 100%;
  }
  .vision:first-child,
  .vision:last-child,
  .vision:nth-child(even) {
    padding: 12px;
  }
}
@media (max-width: 992px) {
  .visions .body {
    font-size: 16px !important;
  }
}
@media (min-width: 600px) {
  .about-video {
    height: 600px;
    width: 100%;
  }
}