.container {
    width: 100%;
    height: 70vh;
    background-image: url(about-page.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    color: white;
    margin-top: -140px;
    z-index: -2222;
  }
  .container::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.429);
  }
  .info-nav {
    border-bottom: 1px solid white;
    z-index: 9999;
  }
  .navbar {
    backdrop-filter: blur(0px);
    border-bottom: 1px solid white;
  }
  .navbar ul li a {
    color: white !important;
  }
  .navbar ul li a:hover {
    color: orangered !important;
  }
  .about-main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin: auto;
    text-align: center;
    transform: translateY(120%);
  }

  .about-main-content p {
    font-weight: 300;
  }
  .nav-social ul li a {
    color: white !important;
  }
  .navbar ul li .active {
    color: orangered !important;
  }
  .archive {
    margin-bottom: 20px;
  }
  .about-main {
    width: 80%;
    border: 1px solid gray;
    border-radius: 4px;
    margin: 20px auto 20px auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .about-heading {
    display: inline-block;
    margin-bottom: 10px;
    color: white;
    padding: 3px 18px;
    background-color: orangered;
  }

  .about-content {
    width: 50%;
  }
  .about-image {
    background-image: url(about-img.jpg);
    background-position: center;
    background-size: cover;
    width: 45%;
    height: 400px;
    border-radius: 10px;
  }
  .about-image1 {
    background-image: url(qualification.jpg);
    background-position: center;
    background-size: cover;
    width: 45%;
    height: 550px;
    border-radius: 10px;
  }
  .loader {
    width: 100%;
    height: 100%;
    display: inline-block;
    position: relative;
  }
  .loader::after,
  .loader::before {
    content: "";
    box-sizing: border-box;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fc0303;
    position: absolute;
    left: 5%;
    top: 10%;
    animation: animloader 2s linear infinite;
  }
  .loader::after {
    animation-delay: 1s;
  }

  @keyframes animloader {
    0% {
      transform: scale(0);
      opacity: 1;
    }
    100% {
      transform: scale(1);
      opacity: 0;
    }
  }
  .loader1 {
    width: 100%;
    height: 100%;
    display: inline-block;
    position: relative;
  }
  .loader1::after,
  .loader1::before {
    content: "";
    box-sizing: border-box;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fc0303;
    position: absolute;
    left: 4%;
    top: 0%;
    animation: animloader 2s linear infinite;
  }
  .loader::after {
    animation-delay: 1s;
  }

  @keyframes animloader {
    0% {
      transform: scale(0);
      opacity: 1;
    }
    100% {
      transform: scale(1);
      opacity: 0;
    }
  }
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0; /* Initially hidden */
  }  
.qul{
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 12px 0px 0px 12px;
    border-radius: 50%;
    background-color: wheat;
    text-align: center;
    position: relative;
    left: -20px;
    color: #fc0303;
    font-weight: 600;
}
.qul::before{
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: -17%;
    left: -15%;
    z-index: -111;
    opacity: 0;
    background-color: orangered;
    animation: qualification 1.5s linear infinite;
}
@keyframes qualification {
    0%{
        opacity: 0;
        transform: scale(0);
    }
    25%{
        opacity: 0.4;
        transform: scale(0.7);
    }
    50%{
        opacity: 0.8;
        transform: scale(0.9);
    }
    75%{
        opacity: 0.5;
        transform: scale(1);
    }
    100%{
        opacity: 0;
        transform: scale(0);
    }

}
@media (max-width: 768px) {
  .about-main-content {
    width: 100%;
    padding: 20px;
    transform: translateY(65%);
  }
  .container {
    height: 70vh;
  }
  .about-main {
    width: 95%;
    padding: 10px;
    flex-direction: column-reverse;
  }
  .about-image {
    width: 100%;
    height: 200px;
    margin-top: 10px;
  }
  .about-image1 {
    width: 100%;
    height: 200px;
    margin-top: 10px;
  }
  .about-content {
    width: 100%;
      margin-top:20px;
  }
  #about-main1 {
    flex-direction: column !important;
  }
  .qul{
    left: -18px;
}
}
