.tl-hero {
  position: relative;
  display: flex;
  padding: 0 1.5em;
  overflow: hidden;
}

.tl-hero .hs-video-widget {
	position: absolute;
  top: -5%;
  left: 0; 
  width: 100%;
  height: 105%;
  object-fit: cover;
  z-index: 3;
	overflow: hidden;
}
.tl-hero .hs-video-widget * {
	min-width: 100% !important;
  min-height: 100% !important;
	position: relative;
}
.tl-hero .hs-video-wrapper {
	position: absolute !important;
	top: 0;
	left: 0;0
	min-height: 100%;
	padding: 0 !important;
	aspect-ratio: 16/9;
}
.tl-hero .hs-video-wrapper iframe {
object-fit: cover;
}
.tl-hero .hs-video-container {
	aspect-ratio: 16/9;
	position: absolute !important;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	
}
.tl-hero__image {
  position: absolute;
  top: -5%;
  left: 0; 
  width: 100%;
  height: auto;
  min-height: 105%;
  object-fit: cover;
  z-index: 2;
}

.tl-hero:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 75%);
  z-index: 5;
}


.tl-hero__container {
  box-sizing: border-box;
  margin: 0 auto; 
  width: 100%;
  max-width: var(--max-width);
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.tl-hero__main {
  display: flex;
  align-items: center;
  row-gap: 1em;
  padding: calc(4vw + 3.5rem) 0;
  flex-basis: 100%;
}

.tl-hero__title {
  margin: 0;
  line-height: 1.1;
  color: white;
  font-size: 35px;
  max-width: 10em;
}

@media screen and (min-width: 375px) {
  .tl-hero__title {
    font-size: calc(35px + 22 * ((100vw - 375px) / 825));
  }
}

@media screen and (min-width: 1200px) {
  .tl-hero__title {
     font-size: 57px;
  }
}


.tl-hero__logos {
  display: flex;
  flex-direction: column;
  column-gap: 2em;
  row-gap: 1em;
  padding: 1em 0 2em 1em;
  border-left: 3px solid var(--thermo-red);
  border-top: 3px solid var(--thermo-red);
  position: relative;
  width: 100%;
}

.tl-hero__logos-badge {
  position: absolute;
  bottom: 100%;
  right: -1em;
  transform: translateY(50%);
  width: 100px;
}

.tl-hero__logos-group {
  display: flex;
  column-gap: 2em;
  row-gap: 1em;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.tl-hero__logos__item {
  
}

.tl-hero__logos__item--text {
  padding-right: 90px;
  color: white;
}

.tl-hero__logos-logo {
  display: block;
}

.tl-hero__logos__item-link {
  display: block;
}

.tl-hero__logos-logo {
  display: block;
  height: 24px !important;
  width: auto !important;
}


@media all and (min-width: 600px) {
  .tl-hero__logos-group {
    flex-direction: row;
  } 
}

@media all and (min-width: 1075px) {
  .tl-hero__logos-group {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }
  
  .tl-hero__logos {
    flex-direction: row;
    align-items: center;
    padding-right: 90px;
  }
  
  .tl-hero__logos__item--text {
    padding-right: 0;
  }
}


@media all and (min-width: 1075px) {
  .tl-hero__logos-badge {
    width: 150px;
    bottom: 3em;
    right: -12px;
    transform: translateY(0);
  }
    .tl-hero__logos {
      padding: 2.5em 2em;
      padding-right: 150px;
  }
  
}


