.gtm-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 80px;
}
.gtm-wrapper .gtm-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.gtm-wrapper .gtm-slide-link {
  text-decoration: none;
  display: block;
  color: inherit;
}
.gtm-wrapper .gtm-slide-link:hover .gtm-text-button::before, .gtm-wrapper .gtm-slide-link:focus .gtm-text-button::before {
  transform: translateY(-50%) rotate(180deg);
}
.gtm-wrapper .gtm-slide {
  display: flex;
  flex: 0 0 88%;
  height: 400px;
}
.gtm-wrapper .gtm-slide .gtm-col-img {
  flex: 1;
  position: relative;
}
.gtm-wrapper .gtm-slide .gtm-col-img .gtm-image-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.gtm-wrapper .gtm-slide .gtm-col-content {
  flex: 1;
  padding: 30px 90px 30px 50px;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gtm-wrapper .gtm-slide .gtm-col-content .gtm-date {
  display: block;
  margin-bottom: 10px;
  color: #ccf535;
  font-size: 1rem;
}
.gtm-wrapper .gtm-slide .gtm-col-content .gtm-title {
  font-size: 1.77rem;
  font-weight: 300;
}
.gtm-wrapper .gtm-slide .gtm-col-content .gtm-excerpt {
  margin-bottom: 40px;
  padding-bottom: 0;
}
.gtm-wrapper .gtm-slide .gtm-col-content .gtm-link {
  color: #fff;
  font-weight: 300;
  font-size: 1.125rem;
  padding-left: 25px;
  position: relative;
  display: inline-block;
}
.gtm-wrapper .gtm-slide .gtm-col-content .gtm-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  height: 15px;
  width: 15px;
  background-image: url("../../assets/img/btn-arrow-left.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1000px) {
  .gtm-wrapper .gtm-slide .gtm-col-content .gtm-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 1000px) {
  .gtm-wrapper .gtm-slide {
    flex-direction: column;
    height: auto;
    min-height: 400px;
    flex: 0 0 90%;
    margin-right: 20px;
  }
  .gtm-wrapper .gtm-slide .gtm-col-img {
    min-height: 250px;
    max-height: 250px;
    height: auto;
  }
  .gtm-wrapper .gtm-slide .gtm-col-content {
    padding: 24px 0;
  }
}
.gtm-wrapper .gtm-controls {
  bottom: 0;
  left: 0;
  width: 100%;
  padding-top: 40px;
}
.gtm-wrapper .gtm-controls .gtm-progress {
  width: 100%;
  height: 2px;
  background: #fff;
  margin-bottom: 15px;
}
.gtm-wrapper .gtm-controls .gtm-progress .gtm-bar {
  width: 0%;
  height: 100%;
  background: #fff;
  transition: width 0.4s ease;
}
.gtm-wrapper .gtm-controls .gtm-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.gtm-wrapper .gtm-controls .gtm-nav button {
  background: none;
  border: 0px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.gtm-wrapper .gtm-controls .gtm-nav button:hover {
  color: #fff;
}
.gtm-wrapper .gtm-controls .gtm-nav button.gtm-prev {
  background-image: url("../../assets/img/btn-arrow-left-white.svg");
}
.gtm-wrapper .gtm-controls .gtm-nav button.gtm-next {
  background-image: url("../../assets/img/btn-arrow-left-white.svg");
  transform: rotate(180deg);
}
.gtm-wrapper .gtm-controls .gtm-nav button.gtm-prev, .gtm-wrapper .gtm-controls .gtm-nav button.gtm-next {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 30px;
}