/** about-section **/

.about-section{
    position: relative;
  }
  
  #video_block_1 .video-inner{
    position: relative;
    width: 100%;
    padding: 225px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
  }
  
  #video_block_1 .video-inner a{
    position: relative;
    display: inline-block;
    font-size: 30px;
    width: 100px;
    height: 100px;
    line-height: 100px;
    background: rgba(255,255,255,0.95);
    text-align: center;
    border-radius: 50%;
  }
  
  #video_block_1 .video-inner a:after, 
  #video_block_1 .video-inner a:before {
    width: 100px;
    height: 100px;
    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.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
  }
  
  #video_block_1 .video-inner a:after {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
  }
  
  @-webkit-keyframes ripple {
    70% {
      -webkit-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
              box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    }
    100% {
      -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
              box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
  }
  @keyframes ripple {
    70% {
      -webkit-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
              box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    }
    100% {
      -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
              box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
  }
  
  .about-section .inner-container{
    position: relative;
    background: #fff;
    margin-top: -70px;
    box-shadow: 0 0 30px rgba(0,0,0,.08);
    z-index: 1;
  }
  
  #content_block_1 .content-box{
    position: relative;
    padding: 62px 110px 70px 50px;
  }
  
  #content_block_1 .content-box .sec-title{
    margin-bottom: 21px;
  }
  
  #content_block_1 .content-box .text{
    margin-bottom: 25px;
  }
  
  #content_block_1 .content-box .list li{
    position: relative;
    display: block;
    font-size: 16px;
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    color: #282932;
    margin-bottom: 10px;
    padding-left: 30px;
  }
  
  #content_block_1 .content-box .list li:last-child{
    margin-bottom: 0px;
  }
  
  #content_block_1 .content-box .list li:before{
    position: absolute;
    content: '\f058';
    font-size: 18px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
    left: 0px;
    top: 0px;
  }
  
  #content_block_1 .content-box .list{
    position: relative;
    margin-bottom: 29px;
  }
  
  #content_block_1 .content-box .theme-btn{
    padding: 17px 24px;
  }