.apps .wrapper>a:nth-child(n) {
    display: flex !important;
}

.apps {
    background: #fff;
    text-align: center;
}

.apps h2 {
    color: #17307A;
}

@media screen and (max-width: 768px) {
    .apps h2 br {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .apps h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }
}

.apps p {
    color: #17307A;
    margin-bottom: 60px;
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    .apps p {
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 576px) {
    .apps p {
        margin-bottom: 30px;
    }
}

.apps .wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
}

@media screen and (max-width: 768px) {
    .apps .wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .apps .wrapper {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
}

.apps .wrapper>a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #17307A;
    padding: 13px;
    border-radius: 10px;
}

.apps .wrapper>a:nth-child(n+9) {
    display: none;
}

@media screen and (max-width: 576px) {
    .apps .wrapper>a:nth-child(n+7) {
        display: none;
    }
}

.apps .wrapper>a img {
    max-width: 135px;
    -o-object-fit: contain;
    object-fit: contain;
    height: auto;
}

.apps .blue_btn {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    cursor: pointer;
    position: relative;
}

.apps .blue_btn.disabled {
    opacity: 0.6;
    pointer-events: none;
}

.apps .blue_btn svg {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) scale(0.3) translateY(-100%);
}

.rtl .apps .blue_btn svg {
    left: unset;
    right: 50%;
    transform: translateX(50%) scale(0.3) translateY(-100%);
}