.about-section {
    overflow: hidden;
    padding-bottom: 4rem;
    background: linear-gradient(0deg, #ffffff 40%, #e6e6e6 40%);
    position: relative;
    z-index: 1;
}

.about-container {
    position: relative;
}

.about-container::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border: 8px solid #20BEC3;
    width: 35%;
    height: 100%;
}

/* .about-box::after{
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50px;
    top: -35px;
    left: -35px;
    z-index: -1;
    border: 2px dashed #20BEC3;
    background-color: #a4f1f4;
}
.about-box::before{
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 100px;
    bottom: -50px;
    right: -50px;
    z-index: -1;
    border: 2px dashed #20BEC3;
    background-color: #a4f1f4;
} */

.about-heading {
    background-color: #20BEC3;
    padding: 10px 0px 10px;
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border-radius: 10px 10px 0px 0px; */
}

.about-box {
    margin-top: 4rem;
    padding: 2rem 2.5rem;
}

.about-row {
  background: white;
    border-radius: 0px;
    padding: 2rem 0.5rem;
    box-shadow: 0px 0px 5px #000000bc;
    position: relative;
    border: 4px double #20BEC3;
    /* border-radius: 10px; */
}
/* .about-row:after{
    content: "";
    position: absolute;
    background-image: url(../img/careers-main-heaidng-bg.jpg);
    background-position: center;
    background-size: cover;
    left: 0;
    top: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    opacity: 0.3;
} */
.about-row::before {
    content: "";
    position: absolute;
    right: -20px;
    bottom: -20px;
    /* border: 4px double #20BEC3; */
    background-color: #20bec354;
    width: 130px;
    height: 130px;
    z-index: -1;
}




.about-cube-img img {
    margin-left: -7rem;
  width: 90px;
  /* transform: translate(100px, 102px) rotate(-45deg); */
  /* transform-origin: 60% 40%; */
  transform-origin: center;
  transform-box: fill-box;
  opacity: 0.9;
  

  /* animation: move-up 8s infinite cubic-bezier(1, 0.99, 1, 1); */
  animation: move-up 10s linear infinite;
}

@keyframes move-up {
  0% {
    transform:rotate(0deg);
  }

  100% {
    transform:rotate(360deg);
  }
}

.about-cube-img-right {
  position: absolute;
  bottom: 200px;
  right: 100px;
}

.about-cube-img-right img {
  width: 140px;
  transform-origin: center;
  transform-box: fill-box;
  opacity: 0.5;
  animation: move-up1 10s linear infinite;
}

@keyframes move-up1 {
  0% {
    transform: translate(178px, 174px)  rotate(0deg);
  }

  100% {
    transform: translate(178px, 174px)  rotate(360deg);
  }
}



.about-heading h1 {
    position: relative;
    z-index: 6;
    color: white;
    text-align: start;
    font-weight: 700;
    font-size: 4.5rem;
    padding-left: 1.5rem;
}

.about-heading h1 span {
    font-size: 7.5rem;
    color: #fff;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    line-height: 0.9;
    letter-spacing: 1.2;
}

.about-heading h1:after {
    border-top: 4px solid white;
    border-radius: 50px;
    display: block;
    width: 80px;
    content: "";
    margin: 10px auto 0 2px;
}

.about-part {
    display: flex;
    gap: 0.2rem;
}

.about-part img {
    width: 16px;
    height: 30px;
}

.about-text p {
    position: relative;
    z-index: 6;
    font-size: 1.2rem;
    font-weight: 600;
}

.about-img {
    background-color: #20bec333;
    border-radius: 20px;
    padding: 1rem;
    transform: scale(0.9);
}

.about-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.about-text-background {
    border: 2px dashed #20BEC3;
    background-color: #20bec313;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    box-shadow: 0px 0px 5px #20bec318;
}

.about-text .bold-text {
    font-weight: 700;
}
@media only screen and (max-width:992px){
    .about-heading h1 {
        position: relative;
        z-index: 6;
        color: white;
        text-align: start;
        font-weight: 700;
        font-size: 3.5rem;
        padding-left: 1.5rem;
    }
}

@media only screen and (max-width:768px) {
    .about-heading {
        background-color: #20BEC3;
        padding: 5px 0px 0px;
    }
    .about-heading h1 {
        font-size: 1.7rem;
    }
    .about-heading h1 span {
        -webkit-text-fill-color: white;
        -webkit-text-stroke-width: 0px;
        font-size: 3rem;
    }
    .about-heading h1:after {
        width: 40px;
        margin: 6px auto 0 -3px;
    }
    .about-cube-img img {
        margin-left: -4rem;
        width: 40px;
    }
    .about-container::before {
       display: none;
    }
    .about-box {
        margin-top: 4rem;
        padding: 1rem 1rem;
    }
    .about-box {
        margin-top: 2rem;
        padding: 2rem 1rem;
    }
    .about-text p {
        font-size: 1.1rem;
    }
}