
/** video-section **/

.video-section{
  position: relative;
}

.video-section .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.video-section .bg-layer:before{
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.25;
}

.video-section .content-box{
  position: relative;
  display: block;
}

.video-section .content-box h2{
  position: relative;
  display: block;
  font-size: 55px;
  line-height: 65px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 30px;
}

.video-section .content-box p{
  font-size: 28px;
  line-height: 34px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 40px;
}

.video-section .content-box .inner-box{
  position: relative;
  display: flex;
  align-items: center;
}

.video-section .content-box .inner-box .btn-box a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-family: var(--roboto);
  color: #242424;
  font-weight: 700;
  text-transform: uppercase;
  background: #fff;
  border-radius: 5px;
  text-align: center;
  padding: 15.5px 41px;
}

.video-section .content-box .inner-box .btn-box a:hover{
  color: #fff;
  background: #000;
}

.video-section .content-box .inner-box .video-btn a{
  position: relative;
  display: inline-block;
  width: 62px;
  height: 62px;
  line-height: 60px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
}

.video-section .content-box .inner-box .video-btn .border-animation{
  border-color: #fff;
}

.video-section.home-13 .content-box .inner-box .video-btn a:before,
.video-section.home-13 .content-box .inner-box .video-btn a:after {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  position: absolute;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.video-section.home-13 .content-box .inner-box .video-btn a:after{
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}


































