html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: "Monument Extended", Arial, Helvetica, sans-serif;
}

 body {
    color: white;
    margin: 0;
    padding: 0;
    perspective: 1px;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    height: 100%;
    width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
} 

.under_header {
    box-sizing: border-box;
    min-height: 100vh;
    position: relative;
    transform-style: inherit;
    -webkit-transform-style: inherit;
    width: 100vw;
    text-align: center;
    text-transform: uppercase;
    display: flex;
 justify-content: flex-start; 

    align-items: center;
    flex-direction: column;
    z-index:99;
}

.under_header h1 {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.under_header,
.under_header:before {
    background: 50% 50% / cover;
}

.under_header::before {
    content: "";
    position: absolute;
    /* top: 91px; */
    top:47px;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background: url(../../assets/images/blue-globe-glowing-atmosphere-wallpaper-min.jpg);
    /* background: url(../images/blue-globe-glowing-atmosphere-wallpaper.jpg); */
    background-size:100% 100%; 
    transform-origin: center center 0;
    -webkit-transform-origin: center center 0;
    transform: translateZ(-1px) scale(2);
    -webkit-transform: translateZ(-1px) scale(2);
    /* z-index: -1; */
    /* min-height: 100vh; */
}

 .container-service {
    z-index: 2;
    /* position: absolute;
    top: 100vh; */
    /* background: black; */
    background-color: black !important;
    /* line-height: 30px; */
    font-weight: lighter;
    padding: 40px;
    color: grey;
}
.language-section{
    z-index: 2;
    /* position: absolute;
    top: 100vh; */
    background-color: black !important;
    line-height: 30px;
    font-weight: lighter;
    padding: 40px;
    color: grey;
}
@keyframes apper{
    from{
        opacity: 0;
        scale:0.5;
    }
    to{
        opacity: 1;
        scale:1
    }
}


.line {
    font-size: 2em;
    margin: 10px;
    animation-duration: 10s;
    animation-iteration-count: infinite;
  }
  .line:nth-child(even) {
    animation: scroll-top-bottom 10s linear infinite;
  }
  .line:nth-child(odd) {
    animation: scroll-bottom-top 10s linear infinite;
  }

  @keyframes scroll-top-bottom {
    0% { 
      transform: translateY(-100%); 
      -webkit-transform:translateY(-100%); 
    }
    100% {
      transform: translateY(100%);
      -webkit-transform: translateY(100%);
     }
  }

  @keyframes scroll-bottom-top {
    0% { 
      transform: translateY(100%); 
      -webkit-transform: translateY(100%); 
    }
    100% {
       transform: translateY(-100%);
       -webkit-transform: translateY(-100%);
       }
  }


  /* trying new animation */
  section{
    display:flex;
  justify-content: center;
    align-items:center;
    flex-direction:column;
    min-height:100vh;
    /* margin-top: 84px; */
  } 
  .section-team-main{
    display:flex;
  justify-content: center;
    align-items:center;
    flex-direction:column;
    min-height:100vh;
    /* margin-top: 84px; */
  }
  .sec-1 .animation{
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
  }   
  .sec-1 .show-animate .animation{
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
  }  

  .bg-overlay {
    position: relative;
    z-index: 1;
  }
  .bg-overlay::after {
    position: absolute;
    content: "";
    background-color: #0c0c0c;
    opacity: 0.7;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
  }
  .bg-fixed {
    background-attachment: fixed;
  }
  .bg-img {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  @keyframes img-animation {
    from{
        opacity: 0;
        scale:0.5;
    }
    to{
        opacity: 1;
        scale:1
    }
    /* from {
      transform: translateY(0);
    }
    to {
      transform: translateY(-70%);
    } */
  } 
  .slide-in-left {
    /* opacity: 0; */
    animation: slideFromLeft;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
  }
  .slide-in-right {
    /* opacity: 0; */
    animation: slideFromRight ;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
  }
  @keyframes slideFromLeft {
    0% {
      transform: translateX(-100%);
      -webkit-transform: translateX(-100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      -webkit-transform: translateX(0);
      opacity: 1;
    }
  }

  /* Keyframes for right-to-left animation */
  @keyframes slideFromRight {
    0% {
      transform: translateX(100%);
      -webkit-transform: translateX(100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      -webkit-transform: translateX(0);
      opacity: 1;
    }
  }


  /* new css */
  .cta-area .cta-text h2 {
    font-size: 1.5rem;
    color: #ffffff;
  }
  @media only screen and (min-width:768px) {
    .cta-area .cta-text h2 {
      font-size: 2rem;
    }
  }
  @media only screen and (min-width:1200px) {
    .cta-area .cta-text h2 {
      font-size: 2.5rem;
    }
  }
  .cta-area.cta4 .cta-text h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  @media only screen and (min-width:768px) {
    .cta-area.cta4 .cta-text h2 {
      font-size: 1.75rem;
    }
  }
  @media only screen and (min-width:992px) {
    .cta-area.cta4 .cta-text h2 {
      font-size: 2.125rem;
    }
  }
  @media only screen and (min-width:1200px) {
    .cta-area.cta4 .cta-text h2 {
      font-size: 2.5rem;
    }
  }
  .cta-area.cta4 .cta-thumb-group img {
    border-radius: 12rem;
  }
  .cta-area.cta4 .cta-thumb-group .col-4:nth-child(1) img {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  @media only screen and (min-width:992px) {
    .cta-area.cta4 .cta-thumb-group .col-4:nth-child(1) img {
      -webkit-transform: translateY(-50px);
              transform: translateY(-50px);
    }
  }
  .cta-area.cta4 .cta-thumb-group .col-4:nth-child(2) img {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  @media only screen and (min-width:992px) {
    .cta-area.cta4 .cta-thumb-group .col-4:nth-child(2) img {
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
    }
  }
  .cta-area.cta4 .cta-thumb-group .col-4:nth-child(3) img {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  @media only screen and (min-width:992px) {
    .cta-area.cta4 .cta-thumb-group .col-4:nth-child(3) img {
      -webkit-transform: translateY(-50px);
              transform: translateY(-50px);
    }
  }

  @media only screen and (max-width:800px) {
.under_header::before {
  content: "";
  position: absolute;
  top: 110px;
}
  }