/************************************** 全局设置 **************************************/
  /* 全局字体 */
  body{
    font-family: "SourceHanSansSC-Normal";
    line-height: 1.8;
    color: #777;
    background: #fff;
  }

  /* 页面内容宽度 */
  @media (min-width: 1200px) {
    .container {
      width: 1350px;
    }
  }
  #page {
    position: relative;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }
  .offcanvas #page:after {
    -webkit-transition: 2s;
    -o-transition: 2s;
    transition: 2s;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 101;
    content: "";
  }

  /* 导航栏字体选中后的样式设置 */
  a:hover, a:active, a:focus {
    color: #c60008;
    outline: none;
    text-decoration: none;
  }

  /* 隐藏滚动条 */
  body::-webkit-scrollbar {
    display: none;  
    overflow: hidden;
  }
  #page::-webkit-scrollbar {
    display: none;  
    overflow: hidden;
  }
  .wit-cover::-webkit-scrollbar {
    display: none;  
    overflow: hidden;
  }
  .wit-nav::-webkit-scrollbar {
    display: none;  
    overflow: hidden;
  }
  #wit-about::-webkit-scrollbar {
    display: none;  
    overflow: hidden;
  }
  #wit-technical::-webkit-scrollbar {
    display: none;  
    overflow: hidden;
  }
  #wit-contact::-webkit-scrollbar {
    display: none;  
    overflow: hidden;
  }
  #wit-footer::-webkit-scrollbar {
    display: none;  
    overflow: hidden;
  }
  #wit-offcanvas::-webkit-scrollbar {
    display: none;  
    overflow: hidden;
  }



/************************************** 手机端效果 **************************************/
  /* 导航开关 */
  .wit-nav-toggle{
    position: fixed;
    right: 10px;
    top: 25px;
    z-index: 21;
    padding: 6px 0 0 0;
    display: block;
    margin: 0 auto;
    display: none;
    height: 44px;
    width: 44px;
    z-index: 2001;
    cursor: pointer;
    text-decoration: none;
    border-bottom: none !important;
  }
  .wit-nav-toggle i {
    position: relative;
    display: inline-block;
    width: 25px;
    height: 2px;
    color: #252525;
    font: bold 14px/.4 Helvetica;
    text-transform: uppercase;
    text-indent: -55px;
    background: #252525;
    transition: all .2s ease-out;
  }
  .wit-nav-toggle i::before, .wit-nav-toggle i::after {
    content: '';
    width: 25px;
    height: 2px;
    background: #252525;
    position: absolute;
    left: 0;
    transition: all .2s ease-out;
  }
  .wit-nav-toggle i::before {
    top: -7px;
  }
  .wit-nav-toggle i::after {
    bottom: -7px;
  }
  .wit-nav-toggle.active i {
    background: transparent;
  }
  .wit-nav-toggle.active i::before {
    top: 0;
    -webkit-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
    -o-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
  }
  .wit-nav-toggle.active i::after {
    bottom: 0;
    -webkit-transform: rotateZ(-45deg);
    -moz-transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
    -o-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
  }
  @media screen and (max-width: 768px) {
    .wit-nav-toggle {
      display: block;
    }
  }
  
  /* 导航栏 */
  #wit-offcanvas {
    line-height: 2.8;
    position: fixed;
    z-index: 1000;
    width: 85%;
    height: 260px;
    background: rgba(0, 0, 0, 0.9);
    left: 8%;
    right: 8%;
    top: 100px;
    border-radius: 20px;
    display: none;
    -moz-transform: translateY( -380px);
    -webkit-transform: translateY(-380px);
    -ms-transform: translateY( -380px);
    -o-transform: translateY( -380px);
    transform: translateY( -380px);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }
  .offcanvas #wit-offcanvas {
    -moz-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
  #wit-offcanvas a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 200;
  }
  #wit-offcanvas a:hover {  /* 点击后颜色变化 */
    color: rgba(255, 255, 255, 0.888);
  }
  #wit-offcanvas ul {
    padding: 18px 0px;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: center;
    flex-wrap: nowrap;
    align-items: center;
    list-style: none;
  }
  @media screen and (max-width: 768px) {
    #wit-offcanvas {
      display: block;
    }
  }
  /* 返回首页 */
  .go-home {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }
  .go-home.active {
    opacity: 1;
    visibility: visible;
  }
  .go-home a {
    width: 50px;
    height: 50px;
    display: table;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    height: 50px;
    display: table-cell;
    vertical-align: middle;
  }



/************************************** 导航栏 **************************************/
  .wit-nav {
  position: fixed;
  top: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  padding: 10px 0;
  z-index: 1001;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  }
  .row-align{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  }
  .wit-nav #wit-logo{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  }
  .wit-nav #wit-logo img {
  width: 50px;
  height: 50px;
  }
  .wit-nav #wit-logo {
  line-height: 1;
  margin: 0;
  padding: 0;
  padding: 0px 0px 0px 20px;
  }
  .wit-nav #wit-logo .wit-logo-cn{
  padding: 0 10px;
  font-size: 20px;
  color: #fff;
  font-weight: 320;
  margin-bottom: 0px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  white-space:nowrap;
  letter-spacing: 1.5px;
  }
  .wit-nav #wit-logo .wit-logo-en{
  padding: 0 10px;
  font-size: 10px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 0px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  white-space:nowrap;
  letter-spacing: 0.5px;
  }
  
  .wit-nav ul {
  padding: 0;
  margin: 1px 0 0 0;
  }
  .wit-nav ul li {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline;
  }
  .wit-nav ul li a {
  font-size: 15px;
  padding: 30px 10px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400 !important;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  outline: none;
  text-decoration: none;
  }
  .wit-nav ul li a:hover, .wit-nav ul li a:focus, .wit-nav ul li a:active {
  color: #fff;
  }

 
  .wit-nav ul li.btn-cta a {
  color: #fff;
  }
  .wit-nav ul li.btn-cta a span {
  border: none !important;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 20px;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  margin: 0px;
  }
  .wit-nav ul li.btn-cta a:hover span {
  background: #c60008;
  color: #fff;
  } 
 
  .wit-nav.scrolled {
  background: #fff;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
  }
  .wit-nav.scrolled ul {
  padding: 0;
  margin: 1px 0 0 0;
  }
  .wit-nav.scrolled ul li {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline;
  }
  .wit-nav.scrolled ul li a {
  color: rgba(0, 0, 0, 0.5);
  }
  .wit-nav.scrolled ul li a:hover {
  color: black;
  }
  .wit-nav.scrolled ul li.active > a {
  color: #c60008 !important;
  }
  .wit-nav.scrolled ul li.btn-cta a {
  color: #fff;
  }
  .wit-nav.scrolled ul li.btn-cta a span {
  border: none !important;
  background: #c60008;
  padding: 4px 20px;
  color: #fff;
  }
  .wit-nav.scrolled #wit-logo em, .wit-nav.scrolled #wit-logo a {
  color: #000;
  }

  @media screen and (max-width: 768px) {
    .wit-nav {
      padding: 20px 0;
    }
  }
  @media screen and (max-width: 768px) {
    .wit-nav .menu-1, .wit-nav .menu-2 {
      display: none;
    }
  }


/************************************** 首页 **************************************/
  #wit-hero{
    background-image: url(../images/back-img.jpg);
  }
  .wit-cover {
    height: 900px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    float: left;
    width: 100%;
  }
  .wit-cover a {
    color: #c60008;
  }
  .wit-cover a:hover {
    color: white;
  }
  .wit-cover .overlay {
    z-index: 1;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(35, 35, 35, 0.55);
  }
  .wit-cover > .container {
    position: relative;
    z-index: 10;
  }
  .wit-cover {
    height: 900px;
    display: table;
    width: 100%;
  }
  .wit-cover .wit-cover-text-box{
    position: absolute;
    top: 300px;
    left: 50%;
    transform: translate(-50%);
    width: 900px;
  }
  .wit-cover .wit-cover-text-box h1 {
    color: white;
    font-size: 60px;
    line-height: 1.5;
    font-weight: 400;
  }
  .wit-cover .wit-cover-text-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 40px;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 5px;
  }
  @media screen and (max-width: 480px) {
    .wit-cover {
      height: 790px;
      display: table;
      width: 100%;
    }
    .wit-nav #wit-logo {
      line-height: 1;
      margin: 0;
      padding: 0px 0px 0px 20px;
      width: 200px;
    }
    .wit-cover .wit-cover-text-box {
      position: absolute;
      top: 300px;
      left: 50%;
      transform: translate(-50%);
      width: 330px;
    }
    .wit-cover .wit-cover-text-box h1 {
      color: white;
      font-size: 40px;
      line-height: 1.5;
      font-weight: 400;
    }
    .wit-cover .wit-cover-text-box p {
      color: rgba(255, 255, 255, 0.85);
      font-size: 20px;
      line-height: 1;
      font-weight: 300;
      letter-spacing: 5px;
    }
  }

/************************************** 关于我们 **************************************/
  #wit-about {
    padding: 7em 0;
    clear: both;
  }
  #wit-about h3 {
    color: #fff;
    font-size: 30px;
  }
  #wit-about .heading .subtle-text {
    text-transform: uppercase;
    font-size: 150px;
    color: #F8F8F8;
    font-weight: 900;
    z-index: -1;
    line-height: 1; 
    margin: 0%;
    position: relative;
  }
  .wit-about-group{
    width: 100%;
    height: 350px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
    /* background-image: url(../images/about-001.png);
    background-position: right bottom;
    background-repeat: no-repeat; */
    /* background: #f7f7f7; */
    /* background: white;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    overflow:hidden; */
  }
  .wit-about-group .wit-logo-box img{
    width: 230px;
    height: 230px;
  }
  .wit-text-box{
    width: 65%;
    text-align: justify;
  }
  .wit-about-group .company-name{
    line-height: 1.3;
  }
  .company-name-cn{
    font-family: "SourceHanSansSC-Light", ExtraLight;
    font-size: 30px;
    /* font-weight: 500; */
    margin: 0px;
    letter-spacing: 1.5px;
    color: rgb(12, 12, 12);
  }
  .company-name-en{
    font-family: "SourceHanSansSC-Light", ExtraLight;
    font-size: 20px;
    font-weight: 200;
    margin: 0px;
  }
  .wit-about-group .descriptions{
    padding: 15px 0px 0px 0px;
  }
  .descriptions-line{
    width: 100px;
    height: 2px;
    background-color: #c60008;
  }
  .descriptions-cn{
    margin: 0px;
    padding: 15px 0px 0px 0px;
    font-size: 20px;
    /* font-weight: 600; */
  }
  @media screen and (max-width: 480px) {
    .wit-about-group {
      width: 100%;
      display: flex;
      flex-wrap: nowrap;
      align-content: center;
      align-items: center;
      flex-direction: column;
      justify-content: space-between;
      height: 580px;
    }
    
    .wit-about-group .wit-logo-box img {
      width: 180px;
      height: 180px;
      margin: 22px;
    }
    .wit-text-box {
      width: 85%;
      text-align: justify;
    }
    .company-name-cn {
      font-family: "SourceHanSansSC-Light", ExtraLight;
      font-size: 30px;
      margin: 0px;
      letter-spacing: 2px;
      color: rgb(12, 12, 12);
      text-align: center;
    }
    .company-name-en {
      font-family: "SourceHanSansSC-Light", ExtraLight;
      font-size: 20px;
      font-weight: 200;
      margin: 0px;
      text-align: center;
  }
    .descriptions-line {
      height: 1px;
      background-color: #e8e8e8;
      width: 100%;
    }

  }
  
/************************************** 技术服务 **************************************/
  #wit-technical {
    padding: 7em 0;
    clear: both;
  }
  #wit-technical h3 {
    color: #fff;
    font-size: 30px;
  }
  #wit-technical .heading .subtle-text {
    text-transform: uppercase;
    font-size: 150px;
    color: #F8F8F8;
    font-weight: 900;
    z-index: -1;
    line-height: 1; 
    margin: 0%;
    position: relative;
  }
  .wit-technical-group{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    height: 1500px;
  }
  .wit-technical-right-box{
    width: 100%;
    height: 350px;
    /* border-radius: 10px;
    background-color: white;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 10%);
    overflow: hidden; */
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
  }
  .wit-technical-left-box{
    width: 100%;
    /* border-radius: 10px;
    background-color: white;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 10%);
    overflow: hidden; */
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
  }
  #wit-technical .imgbox{
    width: 60%;
  }
  #wit-technical .imgbox>img{
    height: 350px;
    width: 100%;
    object-fit: cover;

  }
  #wit-technical .textbox{
    text-align: justify;
    background: #fafafa;
    padding: 20px;
    height: 100%;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: nowrap;
    align-content: center;
  }
  #wit-technical .textbox p{
    margin: 0;
    font-family: "SourceHanSansSC-Light", Light;
    font-size: 18px;
  }
  #wit-technical .textbox-en{
    font-family: "SourceHanSansSC-Light", Light;
    font-size: 45px;
    font-weight: 200;
    color: #9999995c;
    line-height: normal;
  }
  #wit-technical .textbox-cn{
    font-size: 40px;
    font-family: "SourceHanSansSC-Light", Light;
    font-weight: 500;
    color: #bc0a0c;
    line-height: 2;
  }
  #wit-technical .text-line{
    width: 200px;
    height: 2px;
    background: #bc0a0c;
    margin: 15px 0px;
  }
  @media screen and (max-width: 480px) {
    #wit-technical .imgbox {
      width: 100%;
    }
    #wit-technical .imgbox>img {
      height: 200px;
      width: 100%;
      object-fit: cover;
    }
    .wit-technical-left-box {
      width: 85%;
      display: flex;
      flex-direction: column;
      flex-wrap: nowrap;
      align-content: center;
      justify-content: space-between;
      align-items: center;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1) ;
    }
    #wit-technical .textbox {
      text-align: justify;
      background: #fafafa;
      padding: 20px;
      height: 100%;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-end;
      flex-wrap: nowrap;
      align-content: center;
    }#wit-technical .textbox-en {
      font-family: "SourceHanSansSC-Light", Light;
      font-size: 28px;
      font-weight: 200;
      color: #9999995c;
      line-height: normal;
    }
    #wit-technical .textbox-en {
      font-family: "SourceHanSansSC-Light", Light;
      font-size: 28px;
      font-weight: 200;
      color: #9999995c;
      line-height: normal;
    }
    #wit-technical .textbox-cn {
      font-size: 30px;
      font-family: "SourceHanSansSC-Light", Light;
      font-weight: 500;
      color: #bc0a0c;
      line-height: 1.5;
    }
    #wit-technical .text-line {
      width: 200px;
      height: 1px;
      background: #e8e8e8;
      margin: 10px 0px;
    }
    .wit-technical-group {
      display: flex;
      flex-direction: column;
      flex-wrap: nowrap;
      align-content: center;
      justify-content: space-between;
      align-items: center;
      height: 2300px;
      margin: 10px 0px;
    }
  }

/************************************** 联系我们 **************************************/
  #wit-contact {
    padding: 10em 0;
    clear: both;
    font-family: "SourceHanSansSC-Light", Light;
  }
  #wit-contact h3 {
    color: #fff;
    font-size: 30px;
  }
  #wit-contact .heading .subtle-text {
    text-transform: uppercase;
    font-size: 150px;
    color: #F8F8F8;
    font-weight: 900;
    z-index: -1;
    line-height: 1; 
    margin: 0%;
    position: relative;
  }

  .wit-contact-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: space-evenly;
  }
  .wit-contact-info img{
    width: 30px;
    margin-right: 15px;
  }
  .wit-contact-info p{
    text-align: left;
    margin: 0px 0px 0px 48px;
    font-size: 18px;
    line-height: 28px;
  }
  .contact-text-group{
    width:300px;
    height: 150px;    
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
  }
  .contact-text-back{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    height: 101px;
  }
  .contact-text-line{
    width: 1px;
    height: 120px;
    background:#777;
  }
  .contact-text-head{
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    font-family: "SourceHanSansSC-Light", Light;
    font-weight: 400;
    font-size: 25px;
    letter-spacing: 10px;
  }
  .wit-contact-info .contact-text-big{
    font-weight: 200;
    font-size: 30px;
    margin: 14px 0px 0px 48px;
  }
  @media screen and (max-width: 768px) 
  {
    #wit-contact {
      padding: 7em 0;
      clear: both;
    }
    #wit-contact .contact-text-group {
      /* width: 300px; */
      height: 88px;
      display: flex;
      align-content: center;
      align-items: center;
      justify-content: flex-start;
  }
    #wit-contact .contact-text-line{
      display:none;
    }
    #wit-contact .heading .subtle-text{
      font-size: 65px;
      bottom: 100px;
    }
    #wit-contact .heading .wit-contact-info{
      position: relative;
      bottom: 25px;
      transform: translate(-50%);
      width: 350px;
      font-size: 19px;
      font-style: oblique;
      letter-spacing: 1px;
      text-align:left;
    }
    .wit-contact-info .contact-text-big {
      font-size: 23px;
      font-weight: 300;
      margin: 22px 0px 0px 5px;
    }
    .wit-contact-info img {
    width: 20px;
    margin-right: 15px;
    }
    .contact-text-head {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  font-family: "SourceHanSansSC-Light", Light;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 5px;
    }

    .wit-contact-info p {
      text-align: left;
      margin: 0px 0px 0px 5px;
      font-size: 17.5px;
      line-height: 28px;
      width: 235px;
    }
    .contact-text-back {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  height: 101px;
    }
    .wit-contact-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: space-evenly;
  margin: 10px 0px;
    }

  }
 
/************************************** 备案编号 **************************************/
  #wit-footer {
    padding: 5px 0px;
    background: #fafafa;
  }
  #wit-footer img{
    width: 13px;
    vertical-align: text-top;
  }
  #wit-footer a{
    color: #777;
    font-size: 12px;
    font-weight: 100;
    padding:0px 9px;
    font-weight: 300;
  }
  .copyright{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
    text-align: center;
  }
  .records{
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    flex-direction: row;
  }
  
/************************************** 页面标题统一 **************************************/
  .row-line{
    background-color: #bc0a0c;
    width: 100px;
    height: 5px;
    margin: 20px 0px 50px 0px;
    /* margin: 50px 0px 20px 0px; */
  }
  .heading {
    text-align: center;
    /* margin-bottom: 70px; */
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
  }
  .heading p {
    margin-bottom: 0px;
    /* margin-bottom: 70px; */
  }
  .heading-en{
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    font-size: 150px;
    color: rgba(119, 119, 119, 0.05);
    line-height: 75px;
    font-weight: 500;
  }
  @media screen and (max-width: 768px) {
    .heading h1 {
      font-size: 26px;
    }
    .heading-en {
      position: relative;
      font-size: 66px;
      color: rgba(119, 119, 119, 0.05);
      font-weight: 500;
      text-align: center;
      bottom: 190px;
      height: 0px;
  }
  
  .row-line {
    background-color: #bc0a0c;
    width: 100px;
    height: 2px;
    margin: 20px 0px 20px 0px;
  }
  }
  .heading .sub {
    position: relative;
    font-size: 18px;
    color: #707070;
    letter-spacing:1px;
  }
  .heading-colored {
    color: #c60008;
  }
