.about-hero-bg {
    /* height: 55vh; */
    /* background-image: linear-gradient(120deg, #89f7fe 0%, #66a6ff 100%); */
    background-color: rgb(1, 1, 42);
}

.about-grid-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 10%;
    /* height: 55vh; */
}

.about-grid-home p {
    width: 100%;
}

.ab-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.ab-text h1 {
    width: 100%;
}

.ab-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes bounceAnimation {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);

    }

    100% {
        transform: translateY(0);
    }
}


.ab-image img {
    animation-name: bounceAnimation;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;

}


.profile-c {
    padding: 0 10%;
    margin-top: 70px;
}

.profile-c h1 {
    text-align: center;
}

.vally {
    padding: 0 10%;
    margin-top: 70px;
}

.vally p {
    text-align: center;
    font-weight: 900;
    font-size: 20px;
    color: #FFD700;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 70px;
}

.me h1 {
    width: 100%;
}

/* Define the @keyframes rule for the rotation */
@keyframes rotate360 {
    0% {
        transform: rotate(0deg);
    }

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

/* Apply the animation to the image */
.rotating-image-container img {
    animation: rotate360 5s linear infinite;
}

.corporate {
    padding: 0 10%;
    margin-top: 70px;
}

.corporate h1 {
    text-align: center;
}

.corporate-box {
    width: 80%;
    margin: 0 10%;
    margin-top: 70px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 0 2%;
    padding-block: 50px;
    background-color: rgb(1, 1, 42);
    color: #fff;
}

.corporate h1 {
    color: rgb(1, 1, 42);
}

.corporate-box h2 {
    color: #FFD700;
}
.bbb{
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 70px;
    padding: 0 10%;
}
.bb{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 0 5%;
    padding-block: 30px;
    width: 95%;
}
.bb h1{
  
    color: #FFD700;
    font-size: 68px;
}

.bb h4{
    color: rgb(1, 1, 42);
}

@media only screen and (max-width: 1296px) {
    .about-grid-home {
        display: block;
        height: 100%;
        padding-block: 50px;
    }

    .ab-image {
        padding: 0 10%;
        padding-block: 50px;
    }

    .ab-image img {
        width: 80%;
    }
    .bbb{
        display: grid;
        grid-template-columns: 1fr;
    }
    .bb{
        margin-bottom: 50px;
    }

    .grid {
        display: grid;
        grid-template-columns: 1fr;
        margin: 0;
        margin-top: 50px !important;
    }

    .grid img {
        margin-top: 50px;
    }

    .me {
        display: flex;
        flex-direction: column-reverse !important;
       
        margin: 0 10% !important;
        margin-left: 0px !important;
        padding-left: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        align-self: center !important;
        width: 90% !important;
        margin: 0 auto !important;
        margin-left: 10% !important;
        margin-right: 10% !important;
    }

    .m-text p {
        width: 100% !important;
        border: 2px solid salmon;
    }

    .vv {
        display: flex;
        flex-direction: column-reverse;
    }
}