.cards_services {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
    justify-content: center;
}

.card_service {
    display: flex;
    flex: 1 1 calc(25% - 45px);
    max-width: calc(25% - 45px);
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card_service a {
    text-decoration: none;
}

.card_service h2 {
    font-size: 24px;
    line-height: 36px;
    margin-top: 15px;
    color: #ffffff;
}

.card_service a:hover h2 {
    color: #c08924;
}

.card_service .text_excerpt {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}


/* CARD SINGLE */

.card_single {
    margin-bottom: 25px;
}

.cardsingle {
    display: flex;
    flex-direction: column;
    gap: 0px;
    border: solid 1px #c08924;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.cardsingle img {
    border-radius: 0px;
}

.cardsingle .card_content {
    padding: 20px 30px;
    background: #c08924;
    background: linear-gradient(110deg, rgba(178, 116, 28, 1) 0%, rgba(198, 146, 52, 1) 11%, rgba(227, 190, 89, 1) 26%, rgba(212, 167, 71, 1) 42%, rgba(203, 154, 60, 1) 60%, rgba(255, 223, 135, 1) 76%, rgba(206, 155, 67, 1) 90%, rgba(178, 116, 28, 1) 100%);
}

.cardsingle .card_content h3 {
    font-size: 28px;
    font-weight: 800;
    color: #000;
    margin-top: 10px;
    margin-bottom: 20px;
}

.cardsingle .card_description {
    color: #000;
}

.list_columns2 .card_description ul {
    columns: 2;
    column-gap: 5px;
}

.cardsingle .card_image {
    position: relative;
    line-height: 0;
    text-align: center;
}

.cardsingle .card_image .card_opt {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #000;
    font-weight: 800;
    font-size: 24px;
    border-radius: 100px;
    background: #c08924;
    background: linear-gradient(110deg, rgba(178, 116, 28, 1) 0%, rgba(198, 146, 52, 1) 10%, rgba(227, 190, 89, 1) 22%, rgba(212, 167, 71, 1) 36%, rgba(203, 154, 60, 1) 56%, rgba(255, 223, 135, 1) 73%, rgba(206, 155, 67, 1) 88%, rgba(178, 116, 28, 1) 100%);
}

.cardsingle .card_image .bg_shap {
    display: none;
    opacity: 0.5;
    background-color: #000000;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.cardsingle:hover .card_image .bg_shap {
    display: block;
}


/* CARD INFO SINGLE*/

.content_info {
    margin-bottom: 35px;
}

.info_single {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    border: solid 1px #c08924;
    border-radius: 15px;
    overflow: hidden;
}

.info_single .info_title {
    border-right: 1px solid #c08924;
    width: 35%;
    text-align: center;
}

.info_single .info_title h2 {
    margin: 0;
    padding: 20px 0px;
}

.info_single .info_description {
    width: 65%;
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 999px) {
    .cards_services {
        gap: 35px;
    }
    .card_service {
        flex: 1 1 calc(33.33% - 35px);
        max-width: calc(33.33% - 35px);
    }
}

@media (max-width: 778px) {
    .cards_services {
        gap: 45px;
    }
    .card_service {
        flex: 1 1 calc(50% - 45px);
        max-width: calc(50% - 45px);
    }
}

@media (max-width: 600px) {
    .card_service h2 {
        font-size: 20px;
        line-height: 30px;
    }
}

@media (max-width: 600px) {
    .card_service {
        flex: 1 1 calc(100% - 45px);
        max-width: calc(100% - 45px);
    }
}