.choose-header-img {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.choose-header-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 0px;
}

.choose-header {
    position: relative;
    width: 100%;
    height: 600px;
}



.choose-header-text {
    z-index: 1;
    color: white;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    position: absolute;
    background-color: rgb(0 0 0 / 30%);
    width: 100%;
    height: 100%;
    padding: 0 1rem;
}

.choose-header-main-text {
    font-weight: 900;
    font-size: clamp(40px, 7vw, 50px);
    text-shadow: 0 0 36px #000, 0 7px 26px rgba(0, 0, 0, .7);
}

.choose-header-top-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    align-items: center;
    text-align: center;

}

.choose-header-sub-text {
    font-size: 20px;
    color: white;
    text-transform: uppercase;
}

.choose-content-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.choose-content-section {
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

@keyframes bob {

    0%,
    100% {
        transform: translateY(0px) rotate(30deg);
    }

    50% {
        transform: translateY(-8px) rotate(30deg);
    }
}

@keyframes bob-3 {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-4px);
    }
}

.choose-section-square {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: rgba(30, 181, 58, 0.15);
    transition: transform 0.2s ease;
    animation: bob 2s ease-in-out infinite;
}

.choose-section-triangle {
    transition: transform 0.2s ease;
    animation: bob 2s ease-in-out infinite;
    position: absolute;
}

.choose-section-square.dsfs {
    left: 10%;
}

.choose-section-circle.fsdf {
    right: 15%;
    top: 10px;
}

.choose-section-triangle.fsdf {
    right: 5%;
    bottom: 10px;
}

.choose-section-square.fgsdfg {
    left: 20%;
    top: 30px;
}

.choose-section-circle.fdgs {
    top: 20px;
    right: 30%;
}

.choose-section-triangle.dsf {
    right: 15%;
    bottom: 50px;
}

.choose-section-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    transition: transform 0.2s ease;
    background-color: rgba(30, 181, 58, 0.15);
    animation: bob-3 4s ease-in-out infinite;
}

.has-bg {
    background-image: radial-gradient(circle, rgba(30, 181, 58, 0.3) 1px, transparent 1px);
    background-size: 24px 24px;
}

.choose-content-section-content {
    max-width: 1200px;
}

.choose-contetn-section-header h2 {
    color: #1E3050;
    font-size: 35px;
    font-size: clamp(25px, 5vw, 35px);
    font-weight: 900;
    text-align: center;
}

.choose-content-section-text {
    padding: 1rem 0;
    text-align: center;
    position: relative;
    margin-top: 2rem;
}

.choose-content-section-text::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-left: 2px solid #34d058;
    border-top: 2px solid #34d058;
    top: 0;
    left: -10px;
}

.choose-content-section-text::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-right: 2px solid #34d058;
    border-bottom: 2px solid #34d058;
    bottom: 15px;
    right: -10px;
}

.choose-content-section-text p {
    margin-bottom: 10px;
    font-size: 18px;
}

.choose-content-section-text li {
    list-style: inside;
    font-weight: 500;
}

.choose-content-section-text ul {
    margin: 15px 0;
}


@media (max-width: 500px) {

    .sg-main-top-button,
    .choose-header-cta-wrapper {
        width: 100%;
    }

    .choose-content-section-text::before, .choose-content-section-text::after {
        position: absolute;
        display: block;
        border: none;
        left: 50%;
        transform: translateX(-50%);
        width: 50%;
        height: 2px;
        border-radius: 2px;
        background-color: #34d058;
        margin: 0 auto;
    }

    .choose-content-section-text::after {
        bottom: 10px;
    }

}