.section-breadcrumb{
  background-color: var(--main-color);
}

.section-breadcrumb_title{
  padding-top: 20px;
  padding-bottom: 63px;
}

.section-breadcrumb_title h1{
  color: #00A2F0;
  font-weight: 700;
  line-height: 1.2;
}

.section-breadcrumb_video{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -63px;
}

.section-breadcrumb_video-text{
  width: 42%;
}

.section-breadcrumb_video-text h2{
  color: #000;
  line-height: 55px;
  font-weight: 400;
}

.section-breadcrumb_video-video{
  position: relative;
  width: 58%;
  display: flex;
}

.section-breadcrumb_video-video video{
  border-radius: 0 40px 0 0;
  cursor: pointer;
}

.icon-video{
  position: absolute;
  top: 50%;
  left: 50%;
  height: 50%;
  transform: translate(-50%, -50%);
  width: 127px;
  height: auto;
  cursor: pointer;
}

@media only screen and (max-width: 991px) {
  .section-breadcrumb_video {
    flex-direction: column;
  }

  .section-breadcrumb_video-text{
    width: 100%;
  }

  .section-breadcrumb_video-video{
    width: 100%;
  }
}