.pos-section {
    padding: 80px 0;
}

#container22 {
    padding-top: 10vh;
}

.pos-header {
    margin-bottom: 40px;
}

.title-wrapper h2 {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
}

.underline {
    display: inline-block;
    /* border-bottom: 2px solid #000; */
    /* padding-bottom: 5px; */
    /* margin-bottom: 10px; */
}

.second-line {
    display: block;
}

.pos-subtitle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 20px;
}

.pos-subtitle p {
    color: #808285;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 600px;
    margin: 0;
}

.find-out-more {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    color: #00A0FA;
    text-decoration: none;
    border: 2px solid #00A0FA;
    border-radius: 50px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    margin-right: 20vw;
}

.find-out-more:hover {
    background-color: #00A0FA;
    color: white;
}

/* .pos-image-container {
    width: 100%;
    margin-top: 40px;
    border-radius: 24px;
    overflow: visible;
} */

.background-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    background: #000;
    border-radius: 24px;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    border-radius: 24px;
}

.pos-terminal {
    position: absolute;
    right: 5%;
    bottom: -100px;
    width: 400px;
    height: auto;
    transform: rotate(15deg);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: rotate(15deg) translateY(0);
    }

    50% {
        transform: rotate(15deg) translateY(-20px);
    }
}

@media (max-width: 992px) {
    .title-wrapper h2 {
        font-size: 2.8rem;
    }

    .pos-subtitle {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .background-wrapper {
        height: 400px;
    }

    .pos-terminal {
        width: 300px;
        right: 10%;
        transform: rotate(15deg) translateX(50%);
    }

}

@media (max-width: 768px) {
    .title-wrapper h2 {
        font-size: 2.2rem;
    }

    .background-wrapper {
        height: 350px;
    }

    .pos-terminal {
        width: 250px;
    }
}