 .about-us-main {
     padding: 0 3rem;
 }

 .logo-about-us {
     width: 100%;
     padding: 1rem 0;
 }

 .page-cover {
     width: 100%;
     position: fixed;
     height: 120%;
     height: 100vh;
     top: 0;
     left: 0;
     z-index: -1;
     overflow: hidden;
 }

 .page-cover .cover-bg {
     background-image: url('../images/bg.jpg');
     background-repeat: no-repeat;
     background-position: center center;
     background-size: cover;
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-attachment: fixed;
     z-index: -1;
 }

 .logo {
     max-height: 50px;
 }

 .about-us-details {
     width: 100%;
     display: flex;
 }

 .section-title {
     font-family: 'Urbanist', sans-serif;
     font-weight: 600;
     font-size: 80px;
     margin-bottom: 30px;
     color: #E3E3E3;
 }

 .about-us-details p {
     font-family: 'Montserrat', sans-serif;
     font-weight: 500;
     font-size: 1rem;
     line-height: 28px;
     color: #E3E3E3;
 }

 .about-us-details p span {
     font-weight: 700;
     font-style: Italic;
 }

 /* 
 .highlight {
     font-style: italic;
     font-weight: 600;
 } */


 .mission-container {
     width: 100%;
     display: flex;
     background: #202B3A;
     padding: 2rem 2rem;
     position: relative;
     padding-bottom: 3rem;
 }

 .mission-container .img-fluid.rounded {
     /* padding: 1rem 2rem; */
     height: 100%;
     border-radius: 0 !important;
 }

 /* .mission-container::after{
    content: "";
    position: absolute;
    top: 50px;
    right: -40px;
    width: 375px;
    height: 375px;    
    z-index: 1;    
    background: radial-gradient(104.05% 104.05% at 50% 50%, rgba(147, 214, 255, 0.44) 0%, rgba(24, 25, 27, 0) 100%);      
 } */

 .mission-box {
     width: 100%;
     padding: 2rem;
     position: relative;
 }

 .mission-box::after {
     content: "";
     position: absolute;
     bottom: 0;
     right: 0;
     width: 280px;
     height: 280px;
     background: radial-gradient(104.05% 104.05% at 50% 50%, rgba(147, 214, 255, 0.396) 0%, rgba(24, 25, 27, 0) 100%);
     border-radius: 50%;
     filter: blur(150px);
 }

 .mission-title {
     font-family: 'Montserrat', sans-serif;
     font-size: 28px;
     font-weight: 700;
     color: #E3E3E3;
 }

 @media (max-width:1200px) {
    .about-us-details p {
        font-size: 13px;
        line-height: 25px;
    }

    .mission-container {
        padding: 1rem;
    }

    .mission-box {
        padding: 1rem;
    }

    .mission-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
 }


 @media (max-width:991px) {
     .about-us-main {
         padding: 1rem .5rem;
     }

     .about-us-main .section-title {
         font-size: 1.5rem;
     }

     .about-us-details p {
         font-size: 12px;
     }

     .mission-container .img-fluid.rounded {
         padding: 0;
     }
     
    .about-us-details .row.align-items-center.mt-5.g-4 {
        margin-top: 0 !important;
    }

 }

 @media (max-width:767px) {
     .mission-container {
         flex-flow: column;
         padding: 1rem;
         background: transparent;
     }

     .mission-container .img-fluid.rounded {
         width: 100%;
     }

     .mission-box {
         padding: 1rem 0;
         padding-top: 30px;
     }
     .about-us-main .section-title{
        font-size: 36px;
     }



 }

 @media (max-width:440px) {
    .about-us-main .section-title{
        font-size: 24px;
        margin-bottom: 10px;
    }
 }