.display-none {
    display: none !important;
}

.translateX0 {
    transform: translateX(-0%);
}

.translateX100 {
    transform: translateX(-100%);
}

.translateX200 {
    transform: translateX(-200%);
}

#target-audience {
    background-color: rgb(226 232 240);
    padding: 3rem 0 4rem 0;
}

#target-audience-list {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 0 2rem;
}

.target-audience-list-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.target-audience-list-element:not(:last-child) {
    margin-right: 2rem;
}

.target-audience {
    width: 100%;
    color:transparent;
    border-radius: 1rem;
    border: 2px solid white;
    margin-bottom: 1rem;
}

.target-audience-enum {
    margin: 0 auto;
    width: 3rem;
    margin-bottom: 1rem;
}

.target-audience-subtitle {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.target-audience-content {
    max-width: 100%;
    text-align: center;
}

#pricing-description {
    text-align: center;
    width: 70%;
    margin: 0 auto;
    margin-top: 1rem;
}

#annually-standard-subscription-price-without-discount-value,
#annually-custom-subscription-price-without-discount-value {
    margin-right: 1rem;
    text-decoration: line-through;
}

#modal-windows {
    position: relative;
    z-index: 10000;
}

#video-instruction {
    width: 100%;
    border-radius: 1rem;
}

#video-instruction-container {
    width: 80vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#official-info {
    width: 33%;
}

#about-us-block {
    font-weight: 500;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 4rem;
}

#send-request-to-integration-error-message {
    color: red;
    margin-top: 2rem;
    text-align: center;
}


@media (max-width: 640px) {
    #target-audience-list {
        flex-direction: column;
    }

    .target-audience-list-element {
        margin-bottom: 2rem;
    }

    .target-audience-list-element:not(:last-child) {
        margin-right: 0rem;
    }

    #pricing-description {
        text-align: left;
        width: 100%;
        margin: 0 auto;
        margin-top: 1rem;
    }

    #video-instruction-container {
        width: 95vw;
    }

    #official-info {
        width: 100%;
    }

    #about-us-block {
        width: 95%;
    }
}

@media (min-width: 640px) and (max-width: 1024px) {
    .target-audience-subtitle {
        font-size: 1rem;
    }

    .target-audience-content {
        font-size: 0.8rem;
    }

    #official-info {
        width: 50%;
    }

    #about-us-block {
        width: 90%;
    }

    #contacts {
        margin-right: 2rem;
    }
}