.why-us {
    padding: 5rem 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.why-us .why-us-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-us .why-us-content .title {
    color: var(--white-color);
    font-size: 30px;
    font-weight: bold;
}

.why-us .why-us-content .description {
    color: var(--white-color);
    font-size: 1rem;
    padding: 1rem 0;
    line-height: 2rem;
}

.why-us .why-us-img {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.why-us .why-us-img .boxes {
    width: 50%;
}

.why-us .why-us-img .stars-container {
    width: 60%;
    height: 100%;
    position: absolute;
    top: 0;
    pointer-events: none;
}

.why-us .why-us-img .stars-container.left {
    left: 0;
}

.why-us .why-us-img .stars-container.right {
    right: 0;
}

.why-us .why-us-img .stars-container .stars {
    position: absolute;
    width: 75px;
}

.why-us .why-us-img .stars-container.left .stars:nth-child(1) {
    top: -40px;
    left: -60px;
}

.why-us .why-us-img .stars-container.left .stars:nth-child(2) {
    top: -20px;
    right: -5px;
}

.why-us .why-us-img .stars-container.left .stars:nth-child(3) {
    bottom: 0;
    left: -60px;
}

.why-us .why-us-img .stars-container.left .stars:nth-child(4) {
    bottom: -10px;
    right: -5px;
}

.why-us .why-us-img .stars-container.right .stars:nth-child(1) {
    top: -20px;
    right: -60px;
}

.why-us .why-us-img .stars-container.right .stars:nth-child(2) {
    top: -40px;
    left: -5px;
}

.why-us .why-us-img .stars-container.right .stars:nth-child(3) {
    bottom: -10px;
    right: -60px;
}

.why-us .why-us-img .stars-container.right .stars:nth-child(4) {
    bottom: 0;
    left: -5px;
}

@media (max-width: 991.99px) {
    .why-us .why-us-img {
        justify-content: center;
    }

    .why-us .why-us-img .stars-container .stars {
        width: 50px;
    }
}

@media (max-width: 767.99px) {
    .why-us .why-us-img .boxes {
        width: 75%;
    }
}
