/*================================================
Choose Area CSS
=================================================*/
.single-choose {
    text-align: center;
    margin-bottom: 30px;
}

.single-choose .icon {
    margin-bottom: 20px;
}

.single-choose .icon i {
    display: inline-block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    background-color: var(--primaryColor);
    color: var(--white);
    font-size: 35px;
    border-radius: 50px;
    transition: 0.5s;
}

.single-choose .content h3 {
    font-size: 25px;
    margin-bottom: 12px;
}

.single-choose .content p {
    margin-bottom: 0;
}

.single-choose:hover .icon i {
    background-color: var(--secondaryColor);
}

.choose-image {
    position: relative;
}

.choose-image > img {
    border-radius: var(--siteBorderRadius);
}

.choose-image .choose-image-shape .shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    animation: moveLeftBounce 3s linear infinite;
}

.choose-image .choose-image-shape .shape-2 {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    animation: moveLeftBounce 3s linear infinite;
    z-index: -1;
}

.choose-image.reverse-yes .shape-2 {
    left: -10% !important;
}


.choose-image .choose-image-shape .shape-3 {
    position: absolute;
    bottom: 10%;
    left: 12%;
    z-index: -1;
    animation: moveLeftBounce 3s linear infinite;
}

.single-choose-item span {
    font-size: 20px;
    color: var(--primaryColor);
    font-weight: 600;
    font-family: "Sacramento", cursive;
}

.single-choose-item h3 {
    font-size: 45px;
    margin-top: 12px;
    margin-bottom: 15px;
}

.single-choose-item .choose-btn {
    margin-top: 30px;
}

@media screen and (min-width: 768px) {
    .who-we-are .who-we-are-content {
        padding-right: 2rem;
        padding-left: 0;
    }

    .who-we-are.reverse-yes .who-we-are-content {
        padding-left: 2rem;
        padding-right: 0;
    }

}