/* About Us Page Css */

  #scroll-text,#scroll-img,#scroll-span{
    cursor: pointer;
  }

  .text-black-50{
    color: black;
  }

  .slider-text {
    position: absolute;
    top: 336px;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
  }

  .white-slider-text{
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    color: #fff;
  }
  
  .no-gutters {
    margin-right: 0;
    margin-left: 0;
    padding-left: 120px;
    padding-right: 120px;
  }
  
  .background {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: lightblue url("../images/aboutus/banner/Group\ Photo.jpg");
    background-position: initial;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent!important;
    /* height: 100%; */
    height: 1000px;
  }

  .white-bg{
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    /* height: 668px; */
    height: 100%;
    z-index: 200;
  }

  body, html{
    height: 100%;
  }
  
  .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;  
  }

  .white-overlay{
    background-color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .text-deco{
    font-weight: bold;
    text-align: center;
    background: url("../images/aboutus/banner/Group\ Photo.jpg");
    background-size: cover;
    background-attachment: fixed;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .rotate-img{
    width: 200px;
    bottom: 90px;
    right: -50px;
    opacity: 1;
    position: absolute;
    z-index: 5;
  }

  .rotate-img-below{
    width: 30%;
    bottom: 36px;
    right: -177px;
    opacity: 1;
    position: absolute;
  }

  .rotate-img-left{
    width: 40%;
    bottom: -240px;
    left: -225px;
    opacity: 1;
    position: absolute;
  }

  .corevalue-card{
    background-color: #444444;
    color: #ffffff;
    border-radius: 12px;
  }

  .corevalue-card:hover{
    background: linear-gradient(45deg, #dc01f7d1 0%, #f551c4 100%);
    color: #ffffff;
    border-radius: 12px;
  }

  .text-upside{
    /* writing-mode: vertical-rl;
    text-orientation: sideways-right; */
  }

  .verticaltext {
    position: relative; 
    padding-left:110px;
    margin:1em 0;
    min-height:250px;
    color: #000000;
}

.verticaltext_content_vision {
    transform: rotate(-90deg);
    left: -80px;
    top: 35px;
    position: absolute;
    font-size:40px;
    font-weight:bold; 
}

.verticaltext_content_mission {
  padding-bottom: 25px;
  transform: rotate(-90deg);
  left: -80px;
  top: 68px;
  position: absolute;
  font-size:40px;
  font-weight:bold;
}

.vision-text{
  font-size: 28px;
  font-weight: 500;
}

.rotate {
  animation: rotation 2s infinite;
  animation-direction: alternate;  
}

@keyframes rotation {
  from {
    transform: rotate(-7deg);
  }
  to {
    transform: rotate(3deg);
  }
}

.scroll-img::before{
  -webkit-animation: 2.5s blow 0s linear infinite;
  animation: 2.5s blow 0s linear infinite;
  position: absolute;
  content: '';
  width: 50px;
  height: 50px;
  /* top: 35px; */
  margin: 0 auto;
  border-radius: 50%;
  z-index: 0;
}

@keyframes rotation {
  from {
    transform: rotate(-7deg);
  }
  to {
    transform: rotate(3deg);
  }
}

@keyframes blow {
  0% {
    width: 50px;
    height: 50px;
    /* top: -178px; */
    opacity: 0.5;
 }
 90% {
    width: 60px;
    height: 60px;
    /* top: -550px; */
    opacity: 0.0;
    border: 10px solid rgba(47, 44, 43, 0.9)
 }
 99% {
    width: 60px;
    height: 60px;
    /* top: -550px; */
    opacity: 0.0;
    border: 10px solid rgba(47, 44, 43, 0.9)
 }
 100% {
    width: 60px;
    height: 0px;
    /* top: -550px; */
    opacity: 0.0;
    border: 10px solid rgba(47, 44, 43, 0.9)
 }
}

.scrolldown{
  position: absolute;
  bottom: -100px;
  left: 50%;
  width: 10px;
  height: 10px;
  /* background: #fff; */
  transform: translateY(-80px) translateX(-50%) rotate(45deg);
}

.scrolldown span{
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-bottom: 2px solid #000000;
  border-right: 2px solid #000000;
  animation: animate 1.5s linear infinite;
  opacity: 0;
}

.scrolldown span:nth-child(1){
  transform: translate(-11px,-11px);
  animation-delay: -0.4s;
  width: 12px;
  height: 12px;
}

.scrolldown span:nth-child(2){
  transform: translate(0,0);
  animation-delay: -0.2s;
  width: 13px;
  height: 13px;
}

.scrolldown span:nth-child(3){
  transform: translate(11px,11px);
  animation-delay: 0s;
  width: 14px;
  height: 14px;
}

@keyframes animate{
  0%{
    /* top: -5px;
    left: -5px; */
    opacity: 1;
  }
  25%{
    /* top: 0px;
    left: 0px; */
    opacity: 0.8;
  }
  50%{
    /* top: 0px;
    left: 0px; */
    opacity: 0.6;
  }
  100%{
    /* top: 5px;
    left: 5px; */
    opacity: 0.3;
  }
}

.scrolltext1{
  font-size: 25px;
  display: block;
  animation: animate 1.5s infinite;
  animation-direction: normal;  
  animation-delay: -0.4s;
}

.scrolltext2{
  margin-top: -12px;
  font-size: 21px;
  display: block;
  animation: animate 1.5s infinite;
  animation-direction: normal;  
  animation-delay: -0.2s;
}

.scrolltext3{
  margin-top: -9px;
  font-size: 17px;
  display: block;
  animation: animate 1.5s infinite;
  animation-direction: normal;  
  animation-delay: 0s;
}

/* .affix {
  top: 0;
  width: 100%;
  z-index: 9999 !important;
}

.affix + .beforeAflix {
  padding-top: 70px;
} */

#expandable {
  font-size: 3vw;
  line-height: 3vw;
}

.hidden {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 1s, opacity 1s linear;
}

.visible {
  visibility: visible;
  opacity: 1;
  transition: opacity 1s linear;
}

/* .parallax {
  background-image:  url("../../aboutus/images/banner/Group\ Photo.jpg");
  min-height: 500px; 
  position: fixed !important;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
} */