@font-face {
  font-family: "Vonnes";
  /* src: url("assets/fonts/Vonnes-Book.otf") format("opentype"); */
  src: url("../../fonts/Vonnes-Book.otf") format("opentype");
  font-weight: normal;
}

@font-face {
  font-family: "Vonnes";
  /* src: url("assets/fonts/Vonnes-Extended_Medium.otf") format("opentype"); */
  src: url("../../fonts/Vonnes-Extended_Medium.otf") format("opentype");
  font-weight: 600;
}
.transcend-boundaries div[data-section-name="section6"] {
  background-color: #fff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#tbm-launch {
  display: flex;
  align-items: center;
  height: 100vh;
  width: min(1440px, 100%);
  margin: auto;
  font-family: "Vonnes";
  font-size: 0.9rem;
}

/* Title */
#tbm-launch .title-wrapper {
  width: 10%;
  align-self: flex-start;
  margin-top: 100px;
  padding-right: 20px;
}
#tbm-launch .title-wrapper .title {
  display: flex;
  margin-left: auto;
  align-items: flex-end;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
#tbm-launch .title-wrapper .title span.text {
  line-height: 1;
  padding-bottom: 10px;
}
#tbm-launch .title-wrapper .title span.bar {
  width: 8px;
  background: #000;
  height: 200px;
}

/* Content */
#tbm-launch .content-wrapper {
  width: 40%;
}
#tbm-launch .content-wrapper .content-main {
  padding: 20px;
  width: min(100%, 400px);
  margin: 0 auto;
}
#tbm-launch .content-wrapper .content-main h3 {
  font-family: "Vonnes", Arial, sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
#tbm-launch .content-wrapper .content-main p {
  margin-bottom: 15px;
}
#tbm-launch .content-wrapper .content-main .tbm-btn {
  background-color: #d6001c;
  border: 1px solid #d6001c;
  transition: background-color 200ms;
  margin-top: 40px;
}
#tbm-launch .content-wrapper .content-main .tbm-btn:hover {
  background-color: rgba(214, 0, 28, 0.7);
}
#tbm-launch .content-wrapper .content-main .tbm-btn a {
  text-decoration: none;
  padding: 10px 30px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#tbm-launch .content-wrapper .content-main .tbm-btn span.btn-text {
  font-size: 0.8rem;
}
#tbm-launch .content-wrapper .content-main .tbm-btn span.btn-icon {
  height: 10px;
  width: 10px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  display: inline-block;
  transform: rotate(-45deg);
}

/* Slider */
#tbm-launch .slider-wrapper {
  width: 50%;
  padding-right: 20px;
}
#tbm-launch .slider-wrapper .slider-content {
}
#tbm-launch .slider-wrapper .slider-content #main-partner-img {
  padding-top: 70%;
  margin-bottom: 10px;
  position: relative;
}
#tbm-launch .slider-wrapper .slider-content #main-partner-img img,
#tbm-launch .slider-wrapper .slider-content #main-partner-img video {
  position: absolute;
  top: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 200ms;
}
#tbm-launch .slider-wrapper .slider-content #main-partner-img img.active,
#tbm-launch .slider-wrapper .slider-content #main-partner-img video.active {
  opacity: 1;
  pointer-events: all;
}
#tbm-launch .slider-wrapper .slider-content #partner-name {
  margin-bottom: 20px;
}
#tbm-launch #slider {
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
}
#tbm-launch #slider-row {
  transition: all 200ms;
}
#tbm-launch #slider .thumb {
  display: inline-block;
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-bottom: 2px solid #fff;
  float: left;
  transition: all 200ms;
}
#tbm-launch #slider .thumb img {
  display: block;
  height: 100%;
  margin: auto;
  max-width: unset;
}
#tbm-launch #slider .thumb:hover img {
  cursor: pointer;
}
#tbm-launch #slider .thumb:hover {
  border-bottom-color: #d6001c;
}

#tbm-launch #slider .slide-control {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.4);
  width: 40px;
  position: absolute;
  top: 0;
  transition: all 200ms;
}
#tbm-launch #slider .slide-control.full {
  width: 60px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.6);
}
#tbm-launch #slider .slide-control .slider-arrow {
  border-left: 2px solid #d6001c;
  border-bottom: 2px solid #d6001c;
  width: 20px;
  height: 20px;
}
#tbm-launch #slider #slide-left {
  left: 0;
}
#tbm-launch #slider #slide-right {
  right: 0;
}

#tbm-launch #slider #slide-left .slider-arrow {
  transform: rotate(45deg);
}
#tbm-launch #slider #slide-right .slider-arrow {
  transform: rotate(-135deg);
}

#tbm-launch #slider-bar {
  background-color: #808080;
  height: 5px;
  position: relative;
}
#tbm-launch #slider-bar span#current-location {
  width: calc(100% / 4);
  position: absolute;
  background-color: #d6001c;
  height: 5px;
  display: inline-block;
  margin-left: 0;
  transition: margin 200ms;
}

#tbm-launch #slider-number {
  text-align: right;
  font-size: 1.7rem;
  padding-right: 20px;
}
#tbm-launch #slider-number span {
  font-size: 0.7rem;
  vertical-align: top;
  padding-top: 8px;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  #tbm-launch {
    flex-direction: column;
  }
  #tbm-launch .title-wrapper {
    position: absolute;
  }
  #tbm-launch .content-wrapper {
    width: 90%;
  }
  #tbm-launch .slider-wrapper {
    width: 90%;
    margin-left: auto;
  }
  #tbm-launch #slider .slide-control {
    width: 30px;
  }
  #tbm-launch #slider .slide-control.full {
    width: 30px;
  }
  #tbm-launch #slider .slide-control .slider-arrow {
    width: 15px;
    height: 15px;
  }
}
