:root{
    --play: running;
    --direction: normal;
    --duration: 30.08s;
    --delay: 0s;
    --iteration-count: infinite;
}

.text-1 {
  font-size: 2.5em;
  color: #fff;
}

.text-2 {
  font-size: 2em;
}

.text-3 {
  font-size: 1.5em;
}

.section-masthead {
  color: #fff;
  background: linear-gradient(to bottom, rgba(92, 77, 66, 0.6) 0%, rgba(92, 77, 66, 0.5) 100%), url("/images/enterprise-banner.jpeg") no-repeat center center;
  background-size: cover;
}

.section-masthead .pane {
  display: block;
  margin-left: 50%;
  padding-top: 25vh;
  padding-bottom: 30vh;
  text-align: left;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .section-masthead .pane {
    margin-left: 0px;
    text-align: center;
  }
}

.btn-plan {
  padding: 10px 30px;
}

.section-partners {
  text-align: center;
  padding: 60px 0px;
  background-color: #F7F8F8;
}

.section-partners .pane-partner {
  display: inline-block;
  filter: gray;
  filter: grayscale(1) opacity(50%);
  padding: 0px 55px;
}

.section-partners .pane-partner:hover {
  filter: grayscale(0);
}

.section-partners .pane-partner .recommend-company {
  display: block;
  max-width: 160px;
  max-height: 100px;
}

.section-solution {
  text-align: center;
  padding: 60px 40px;
}

.section-solution .pane-tabs .tabs {
  position: relative;
  display: inline-flex;
  list-style-type: none;
  padding: 0;
  flex-flow: wrap;
  justify-content: center;
}

.section-solution .pane-tabs .tabs .slider {
  display: inline-block;
  width: 130px;
  height: 4px;
  border-radius: 3px;
  background-color: #39bcd3;
  position: absolute;
  z-index: 1200;
  bottom: 0;
  left: 0;
  transition: all 0.4s linear;
}

.section-solution .pane-tabs .tabs .tab {
  padding: 20px 0px;
  width: 130px;
  cursor: pointer;
}

.section-solution .pane-tabs .tabs .tab.actived {
  color: #39bcd3;
}

@media only screen and (max-width: 992px) {
  .section-solution .pane-tabs .tabs .tab.actived {
    border-radius: 3px;
    border-bottom: 3px solid;
  }

  .section-solution .pane-tabs .tabs .slider {
    display: none;
  }
}

.section-solution .pane-description .content {
  margin: 0 auto;
}

.section-solution .pane-description .content-text {
  margin-bottom: 20px;
}

.section-lst {
  text-align: center;
  background-image: url(/images/background-landscape.jpg?a5f6cb95062f459da728d9e34584dadc);
  padding: 80px 10px;
}

.section-feature {
  background-color: #f7f8f8;
  padding: 90px 0px;
}

.section-feature .panes .description {
  padding-top: 20px;
  padding-right: 20px;
}

.section-feature .panes .green-hr {
  display: inline-block;
  width: 130px;
  height: 4px;
  border-radius: 3px;
  background-color: #39bcd3;
}

@media only screen and (max-width: 992px) {
  .section-feature .panes .description {
    padding-right: 0px;
  }

  .section-feature .panes .pane-txt1 {
    padding-bottom: 55px;
  }
}


.marquee{
    flex: 0 0 auto;
    min-width: 100%;
    z-index: 1;
    display: flex;
    justify-content:center;
    flex-direction: row;
    align-items: center;
    animation: scroll var(--duration)linear var(--delay) var(--iteration-count);
    animation-play-state: var(--play);
    animation-delay: var(--delay);
    animation-direction: var(--direction);
}
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
  }

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scroll var(--duration)linear var(--delay) var(--iteration-count);
    animation-play-state: var(--play);
    animation-delay: var(--delay);
    animation-direction: var(--direction);
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}
