body, html {
font-family: 'Proxima Nova Condensed', sans-serif !important;
}

.TakingToHeightDiv {
    /* display: flex;
    flex-direction: row;
    gap: 1%; */
    display: grid ;
    grid-template-columns: repeat(2, 1fr);
    gap: 2%;
    height: 100vh;
    padding: 0 8vw 1vw 8vw;
    background: linear-gradient(180deg, #0077be 0%, #003366 100%);
    background-size: 200% 200%;
    animation: ripple 20s linear infinite;
    position: relative; /* Ensure content stays on top */
    overflow: hidden; /* Hide any overflow */
}

.LeftTextDiv {
    /* flex: 2.3; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2; /* Ensure text is above the animation */
}

.RightArrowDiv {
    /* flex: 1; */
    display: flex;
    justify-content: end;
    align-items: center;
    z-index: 2; /* Ensure the image is above the animation */
}

.RightArrowDiv img {
    /* max-width: 80%;
    height: auto; */
    display: flex;
    align-items: center;
    width: 45%;
    /* height: 50%; */

}

.TopHeading {
    font-size: 48px;
    line-height: 1.2;
    color: #fff;
    font-family: 'Proxima Nova Condensed', sans-serif;
}

.TopHeading .lineone {
    font-weight: 400;
    font-size: 46px;
}

.TopHeading .lineone .yellow {
    color: #ffd457;
}

.TopHeading .linetwo {
    font-weight: 700;

    font-size: 52px;
}

.TopHeading .linetwo .purple {
    color: #8b3cfb;
;
}

.TakingToHeightDiv .description-below-heading {
    font-size: 18px;
    color: #fff;
    z-index: 2; /* Ensure the description is above the animation */
}

/* Background animation and bubbles */
#bubble-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.bubble {
    position: absolute;
    bottom: -50px;
    width: 20%;
    height: 20%;
    background-color: rgba(0, 123, 255, 0.3);
    border-radius: 50%;
    animation: rise 15s infinite;
    opacity: 0.8;
}

@keyframes rise {
    0% {
        transform: translateX(0) translateY(0) scale(0.5);
    }
    25% {
        transform: translateX(-10px) translateY(-300px) scale(0.6);
    }
    50% {
        transform: translateX(10px) translateY(-600px) scale(0.7);
    }
    75% {
        transform: translateX(-15px) translateY(-900px) scale(0.8);
    }
    100% {
        transform: translateX(15px) translateY(-1200px) scale(1);
    }
}

@keyframes ripple {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Sunlight rays */
.caustics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 30%, transparent 70%);
    opacity: 0.2;
    animation: sunlight 6s linear infinite alternate;
    z-index: 0;
    pointer-events: none;
}

@keyframes sunlight {
    0% {
        transform: translateX(-50%) translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateX(-50%) translateY(20px) rotate(5deg);
        opacity: 0.5;
    }
    100% {
        transform: translateX(-50%) translateY(0) rotate(0deg);
        opacity: 0.3;
    }
}

/* Simulated caustic light effect using CSS */
.caustics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0) 90%);
    opacity: 0.15;
    animation: windyEffect 4s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes windyEffect {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(20px);
    }
    100% {
        transform: translateX(0);
    }
}
@media only screen and (min-width:2304px){
    .TopHeading .lineone{
        font-size: 4.9rem;
    }
    .TopHeading .linetwo{
        font-size: 5rem;

    }
    .TakingToHeightDiv .description-below-heading {
        font-size: 2rem;
        color: #fff;
        z-index: 2; /* Ensure the description is above the animation */
    }

    .TakingToHeightDiv {
        height: 100vh;
        padding: 0 8vw 1vw 8vw;
    }

}



@media only screen and (max-width:2303px){
    .TopHeading .lineone, .linetwo{
        font-size: 4rem;
    }

    .TakingToHeightDiv .description-below-heading {
        font-size: 1.8rem;
        color: #fff;
        z-index: 2; /* Ensure the description is above the animation */
    }
    .TakingToHeightDiv {
        height: 100vh;
        padding: 0 8vw 1vw 8vw;
    }
}

@media only screen and (max-width:2000px){

    .TakingToHeightDiv .description-below-heading {
        font-size: 1.6rem;
        color: #fff;
        z-index: 2;
    }

    .TopHeading {
        font-size: 45px;
        line-height: 1.1;
        color: #fff;
        font-family: 'Proxima Nova Condensed', sans-serif;
    }
}
@media only screen and (max-width:1700px){

    .TopHeading .lineone, .linetwo{
        font-size: 3rem;
    }

    .TakingToHeightDiv .description-below-heading {
        font-size: 1.5rem;
        color: #fff;
        z-index: 2;
    }

    .TakingToHeightDiv {
        height: 100vh;
        padding: 0 8vw 1vw 8vw;
    }


}

@media only screen and (max-width:1440px){
    .TopHeading .lineone, .linetwo{
        font-size: 2.9rem;
    }


    .TakingToHeightDiv .description-below-heading {
        font-size: 1.1rem;
        color: #fff;
        z-index: 2;
    }

    .TakingToHeightDiv {
        height: 100vh;
        padding: 0 7vw 0vw 7vw;
    }

}

@media only screen and (max-width:1243px){
    .TopHeading .lineone {
        font-size: 2.3rem;
    }

    .TopHeading .linetwo {
        font-size: 2.7rem;
    }

    .TakingToHeightDiv .description-below-heading {
        font-size: 1rem;
        color: #fff;
        z-index: 2;
    }
}

@media only screen and (max-width:1024px){
    .TopHeading .lineone{
        font-size: 2rem;
    }
    .TopHeading .linetwo{
        font-size: 2.4rem;

    }

    .TakingToHeightDiv .description-below-heading {
        font-size: 0.9rem;
        color: #fff;
        z-index: 2;
    }

    .TakingToHeightDiv {
        height: 80vh;
        padding: 0 8vw 1vw 8vw;
    }
    .RightArrowDiv img {
        /* max-width: 80%;
        height: auto; */
        display: flex;
        align-items: center;
        width: 40%;
        /* height: 50%; */
    
    }
    
    
}
@media only screen and (max-width:768px){
    .TopHeading .lineone{
        font-size: 2rem;
    }
    .TopHeading .linetwo{
        font-size: 2.2rem;

    }
    .TakingToHeightDiv .description-below-heading {
        font-size: 1rem;
        color: #fff;
        z-index: 2;
        text-align: justify;
    }
    .RightArrowDiv img {
        width: 40%;
        /* height: 70%; */
    }



    .TopHeading{
        line-height: 1;
    }
    .TakingToHeightDiv{
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }
    .TakingToHeightDiv {
        height: 100vh;
        padding: 5vw 20vw 5vw 20vw;
    }
    
}
@media only screen and (max-width:580px){
    .TopHeading .lineone{
        font-size: 1.9rem;
    }
    .TopHeading .linetwo{
        font-size: 1.9rem;

    }
    .TakingToHeightDiv .description-below-heading {
        font-size: 1rem;
        color: #fff;
        z-index: 2;
    }
    .RightArrowDiv img {
        width: 45%;
        /* height: 70%; */
    }
    .RightArrowDiv{
        
        align-items: start;
    }
    .TopHeading{
        line-height: 1;
    }
    .TakingToHeightDiv{
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }
    .TakingToHeightDiv {
        height: 100vh;
        padding: 5vw 15vw 5vw 15vw;
    }
    
}
@media only screen and (max-width:480px){
    .TopHeading .lineone{
        font-size: 1.8rem;
    }
    .TopHeading .linetwo{
        font-size: 1.8rem;

    }
    .TakingToHeightDiv .description-below-heading {
        font-size: 0.8rem;
        color: #fff;
        z-index: 2;
    }
    .RightArrowDiv img {
        width: 45%;
        /* height: 70%; */
    }
    .RightArrowDiv{
        
        align-items: start;
    }
    .TopHeading{
        line-height: 1;
    }
    .TakingToHeightDiv{
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }

    .TakingToHeightDiv {
        height: 100vh;
        padding: 5vw 9vw 5vw 10vw;
    }

    
}

@media only screen and (max-width:360px){
    .TopHeading .lineone{
        font-size: 1.4rem;
    }
    .TopHeading .linetwo{
        font-size: 1.4rem;

    }

    .TopHeading {
        line-height: 0.7;
    }

    .TakingToHeightDiv .description-below-heading {
        font-size: 0.7rem;
        color: #fff;
        z-index: 2;
    }
    .RightArrowDiv img {
        width: 45%;
        /* height: 70%; */
    }

    .TakingToHeightDiv {
        height: 100vh;
        padding: 5vw 9vw 5vw 5vw;
    }


    
}

@media only screen and (max-width:320px){
    .TopHeading .lineone{
        font-size: 1.2rem;
    }
    .TopHeading .linetwo{
        font-size: 1.2rem;

    }
    .TakingToHeightDiv .description-below-heading {
        font-size: 0.7rem;
        color: #fff;
        z-index: 2;
        padding: 0% 13%;
    }
    .RightArrowDiv img {
        width: 45%;
        /* height: 70%; */
    }
    .TakingToHeightDiv {
        height: 100vh;
        padding:0vw;
    }

    .TopHeading {
        line-height: 0.7;
        padding: 0% 12%;
    }
    
}

