.section-wrap {
  padding: 150px 0;
}

.section-wrap .title {
  width: 95%;
  margin: 0 auto;
  text-align: center;
}

.section-wrap .title h1,
.section-wrap .title h1 a,
.section-wrap .title h2,
.section-wrap .title h2 a,
.section-wrap .title h3,
.section-wrap .title h3 a,
.section-wrap .title h4,
.section-wrap .title h4 a,
.section-wrap .title h5,
.section-wrap .title h5 a {
  font-size: 36px;
  letter-spacing: 2px;
  color: #000009;
}

.section-wrap .title b {
  display: block;
  margin-bottom: 8px;
  color: var(--color-primary);
  font-size: 17px;
  font-family: var(--font-family);
  letter-spacing: 0;
}

.section-wrap .title p {
  margin-top: 20px;
}

.section-wrap .videos {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  z-index: 999;
  overflow: hidden;
}

.section-wrap .videos #video {
  position: fixed;
  left: 10%;
  top: 10vh;
  width: 80%;
  height: 80vh;
  background: #000;
  z-index: 999;
}

.section-wrap .vclose {
  position: absolute;
  right: 3%;
  top: 5%;
  width: auto;
  cursor: pointer;
}

.roasted-video {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  
}
.roasted-video::after{
  content: "";
  position: absolute;
  background: rgba(0,0,0,0.2);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  pointer-events:none;
}

.roasted-video .title h3,
.roasted-video .title p {
  color: #000 !important;
}

.roasted-bofang {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-top: 40px;
  line-height: 50px;
  text-align: center;
  background: #ff0000;
  border-radius: 50%;
  cursor: pointer;
}
.roasted-bofang i{
  color: #fff;
}

.roasted-bofang img {
  margin-left: 3px;
}

.roasted-bofang span::after {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  animation: scale2 2s linear infinite;
}
@keyframes scale2 {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.roasted-video:hover .roasted-bofang span::after {
  display: block;
}

@media screen and (max-width: 1280px) {
  .section-wrap {
    padding: 60px 0;
  }
}

@media screen and (max-width: 960px) {
  .section-wrap {
    padding: 40px 0;
  }
  .roasted-video {
    background-image: url("../images/m-bg08.jpg");
    background-size: auto 100%;
  }
}
