.blockname-wrap {
    display: grid;
    gap: 30px;
}

/* style 1 */
.card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 2px;
    
}

.card.shade {
    box-shadow: 2px 2px 14px 2px #6868682e;
}

.style1-style .card {
    background: white;
    position: relative;
    padding-bottom: 50px;
    border-radius: 5px;
}

.style1-style.option .card-content {
    padding: 20px;
}

.style1-style.option .card-content h3 {
    margin: 0;
}

.btnalign-center {

    display: flex;
        justify-content: center;
        align-items: center;
}

.btnalign-left {
    display: flex;
        justify-content: left;
        align-items: left;
}

.btnalign-right {
    display: flex;
        justify-content: right;
        align-items: right;
}

.btnanchor {
    padding-left: 10px;
    font-weight: 500;
    transition: all .3s ease-in-out;
}

.style1-style .card-content a:hover {
    text-decoration: none;
}


.style1-style .card-content a:hover i {
    transform: translateX(5px);
}


/* style 2 */
/* style 2 */
/* style 2 */
/* style 2 */
/* style 2 */
/* style 2 */
/* style 2 */
.style2-style .blockname-wrap {
    gap: 100px 50px;
}

.style2-style .card {
    width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    margin: auto;
    position: relative;
}

.fawesome i {
    color: var(--secondary);
    font-size: 50px;
}

.style2-style h3 {
    font-weight: 700;
    color: var(--primary);
}

.style2-style .card a i {
    display: none;
}

.style2-style .card a {
    text-decoration: none;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    font-size: 14px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    transition: all .3s ease-in-out;
    width: calc(100% - 60px);
    margin: auto;
}

.style2-style .card a:hover {
    background: var(--secondary);
    color: white;
}

.style3-style .card {
    display: flex;
    justify-content: center;
}

.style3-style .card .card-content {
    width: 260px;
    max-width: 100%;
    position: relative;
}

.style3-style .card .copywrap h3 {
    margin: 0;
    color: var(--primary);
}

.style3-style .card .copywrap p {
    margin: 10px 0 10px;
    font-weight: 400;
}

.style3-style .card span {
    width: 40px;
    border: 1px solid var(--primary);
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-family: var(--font1);
    font-weight: 600;
    color: var(--primary);
}

.style3-style .card-content a {
    display: flex;
    justify-content: flex-end;
    color: var(--primary);
    font-weight: 700;
    align-items: center;
    transition: all .3s ease-in-out;
    text-decoration: none;
}

.btnanchor {
    padding-left: 10px;
    font-weight: 500;
    transition: all .3s ease-in-out;
}

.style3-style .card-content a:hover {
    text-decoration: none;
}

.style3-style .card-content a:hover i {
    transform: translateX(5px);
}

.style3-style .blockname-wrap {
    gap: 80px 30px;
}

.style3-style .card span {
    display: none;
}

span.shownumbers {
    display: flex !important;
}

@media (max-width:1199px) {
    .blockname-wrap {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width:991px) {
    .blockname-wrap {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .style3-style .blockname-wrap {
        gap: 50px;
    }

    .style3-style .card {
        justify-content: flex-start;
    }

    .style3-style .card .card-content {
        width: calc(100% - 65px);
        max-width: 100%;
        position: relative;
    }
}

@media (max-width:767px) {
    .blockname-wrap {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}