.cover-slider {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media only screen and (max-width: 600px) {
  .cover-slider {
    display: block;
  }
}

.cover-slider .slider-text {
  position: absolute;
  z-index: 9;
  top: -webkit-calc(50% - 100px);
  top: -moz-calc(50% - 100px);
  top: calc(50% - 100px);
  font-weight: bold;
  font-size: 48px;
  line-height: 60px;
  color: white;
  left: 78px;
}

@media only screen and (max-width: 1024px) {
  .cover-slider .slider-text {
    font-size: 32px;
    line-height: 36px;
  }
}

@media only screen and (max-width: 600px) {
  .cover-slider .slider-text {
    left: 20px;
    padding-right: 30px;
    font-size: 27px;
    line-height: 30px;
  }
}

.cover-slider .cover-story-main {
  height: 100%;
  width: -webkit-calc(100vw - 290px);
  width: -moz-calc(100vw - 290px);
  width: calc(100vw - 290px);
  padding: 10px;
  padding-right: 0;
  position: relative;
}

.cover-slider .cover-story-main .video-bg-main {
  height: 400px;
}

@media only screen and (max-width: 600px) {
  .cover-slider .cover-story-main {
    width: 100vw;
    height: 290px;
    padding: 0;
  }

  .cover-slider .cover-story-main .video-bg-main {
    height: 300px;
  }
}

.cover-slider .cover-sidebar {
  width: 290px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.cover-slider .cover-sidebar .cover-sidebar__element {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 50%;
     -moz-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  min-width: 50%;
  padding: 10px;
  position: relative;
}

.cover-slider .cover-sidebar .cover-sidebar__element a {
  display: block;
}

.cover-slider .cover-sidebar .cover-sidebar__element:first-child {
  padding-bottom: 0;
}

.cover-slider .cover-sidebar .cover-sidebar__element .cover-sidebar__element_title {
  color: white;
  font-size: 17px;
  padding: 15px;
}

.cover-slider .cover-sidebar .cover-sidebar__element .cover-sidebar__element_title:hover {
  text-decoration: none;
}

.cover-slider .cover-sidebar .cover-sidebar__element .cover-sidebar__element__container {
  background-position: center;
  -webkit-background-size: cover;
     -moz-background-size: cover;
          background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
}

.cover-slider .cover-sidebar .cover-sidebar__element .cover-sidebar__element__container img {
  display: none;
}

@media only screen and (max-width: 600px) {
  .cover-slider .cover-sidebar .cover-sidebar__element .cover-sidebar__element__container {
    -webkit-background-size: cover;
       -moz-background-size: cover;
            background-size: cover;
    display: block;
  }
}

@media only screen and (max-width: 600px) {
  .cover-slider .cover-sidebar {
    width: 100vw;
    height: auto;
    -webkit-box-orient: inherit;
    -webkit-box-direction: inherit;
    -webkit-flex-direction: inherit;
       -moz-box-orient: inherit;
       -moz-box-direction: inherit;
        -ms-flex-direction: inherit;
            flex-direction: inherit;
    margin-top: -18px;
    margin-bottom: 12px;
  }

  .cover-slider .cover-sidebar .cover-sidebar__element {
    height: 112px;
    padding-bottom: 0;
    padding-top: 0;
  }

  .cover-slider .cover-sidebar .cover-sidebar__element img {
    display: block;
  }
}

.jquery-background-video-wrapper {
  position: relative;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}

.jquery-background-video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/**
 * Fade in videos
 * Note the .js class - so non js users still
 * see the video
 */

.js .jquery-background-video {
  opacity: 0;
  -webkit-transition: opacity 300ms linear;
  -o-transition: opacity 300ms linear;
  -moz-transition: opacity 300ms linear;
  transition: opacity 300ms linear;
}

.js .jquery-background-video.is-visible {
  opacity: 1;
}

.element-with-video-bg {
  height: 400px;
}

@media only screen and (max-width: 600px) {
  .element-with-video-bg {
    height: 300px;
  }
}

/**
 * Pause/play button
 */

.jquery-background-video-pauseplay {
  position: absolute;
  background: transparent !important;
  border: none !important;
  -webkit-box-shadow: none !important;
     -moz-box-shadow: none !important;
          box-shadow: none !important;
  width: 20px;
  height: 20px;
  top: 15px;
  right: 15px;
  padding: 0 !important;
  cursor: pointer;
  outline: none !important;
}

.jquery-background-video-pauseplay span {
  display: none;
}

.jquery-background-video-pauseplay:after,
.jquery-background-video-pauseplay:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
}

.jquery-background-video-pauseplay.play:before {
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #FFF;
}

.jquery-background-video-pauseplay.pause:before,
.jquery-background-video-pauseplay.pause:after {
  border-top: 10px solid #FFF;
  border-bottom: 10px solid #FFF;
  border-left: 5px solid #FFF;
}

.jquery-background-video-pauseplay.pause:after {
  left: 10px;
}

.action-button {
  background-color: white;
  padding: 4px 25px !important;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  height: 28px;
  position: absolute;
  left: 25px;
  bottom: 25px;
}

@media only screen and (max-width: 600px) {
  .testimonial-text .paragraph-text {
    height: 66px !important;
  }

  .doing .free-try-feature {
    margin-top: -300px;
    margin-right: 0;
  }

  .cover-slider .cover-sidebar .cover-sidebar__element {
    height: 104px !important;
  }

  .owl-theme .owl-nav {
    margin-bottom: 20px !important;
  }

  .news {
    margin-top: 20px !important;
  }
}

.ol {
  list-style: none;
}

