.joinOur-apply {
    justify-self: end;
    display: inline-flex;
    align-self: flex-end;
    align-items: normal;
    gap: .55rem;
    padding: 12px 22px;
    border-radius: 28px;
    background: var(--joinOur-green);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: .02em;
    transition: transform var(--joinOur-speed), background var(--joinOur-speed);
    border: 2px solid #333333 !important;
    background-color: white;
    color: #333333;
    cursor: pointer;
    width: fit-content;
}

.joinOur-apply:hover {
    background-color: #f2f2ff;
    transform: inherit;
}

.arrowToDisapere {
    display: flex;
    align-items: center;
    transform: translateX(-10px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.arrowToAppere {
    display: flex;
    align-items: center;
    transform: translateX(-10px);
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.joinOur-apply:hover .arrowToDisapere {
    transform: translateX(0px);
    opacity: 0;
}

.joinOur-apply:hover .arrowToAppere {
    transform: translateX(0px);
    opacity: 1;
}

.joinOur-row:hover .arrowToDisapere {
    transform: translateX(0px);
    opacity: 0;
}

.joinOur-row:hover .arrowToAppere {
    transform: translateX(0px);
    opacity: 1;
}

.arrowToAppere svg,
.arrowToDisapere svg {
    height: 15px;
    width: 15px;
    fill: #333333;
    transform: translateY(-1px);
}

@media (max-width: 700px) {
    .joinOur-apply {
        justify-self: flex-start;
    }
}