.center-block {
    display: inline-block;
    text-align: center;
}

body {
    color: #212529;
}

.justify-text {
    text-align: justify;
}

.partners_profile_section {
    margin: auto;
    padding-left: 40px;
        padding-right: 40px;
    display: flex;
    flex-direction: column;
}

.partners_profile_section_first {
    padding-top: 40px;
}
.partners_profile_section .partner_profile {
    padding: 24px;
    display: flex;
    flex-direction: row;
    gap: 32px;
    border-radius: 16px;
    border: 1px solid #CCCBD7;
}

.partners_profile_section:last-of-type {
    padding-bottom: 40px;
}

.partners_profile_section .partner_profile .partner_image_container {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
}

.partners_profile_section .partner_profile .partner_image_container>img {
    height: 215px;
    object-fit: contain;
    width: 300px;
}

.partners_profile_section .partner_profile .visit-button {
    justify-content: center;
    align-items: center;
    width: max-content;
    color: #27aae1;
    border: 2px solid #27aae1;
    text-transform: uppercase;
    width: 208px;
    height: 60px;
    border-radius: 50px;
    align-self: center;
    transition: all 0.2s ease;
}

.partners_profile_section .partner_profile .visit-button.hide-mobile {
    display: flex;
}

.partners_profile_section .partner_profile .visit-button.show-mobile {
    display: none;
}

.partners_profile_section .partner_profile .visit-button:hover {
    background-color: #27aae1;
    color: #ffffff;
}

.partners_profile_section .partner_profile .partner_description {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 2;
    margin: auto;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.partners_profile_section .partner_profile .partner_description>.visit-button {
    margin: auto;
}

.partners_profile_section a,
.partners_profile_section a:hover {
    text-decoration: none;
    color: #61C3EF;
}

@media (max-width: 991px) {
    .partners_profile_section {
        padding: 40px 0px;
    }

    .partners_profile_section .partner_profile {
        flex-direction: column;
    }

    .partners_profile_section .partner_profile .partner_image_container {
        text-align: center;
    }

    .partners_profile_section .partner_profile .visit-button.show-mobile {
        display: flex !important;
    }

    .partners_profile_section .partner_profile .visit-button.hide-mobile {
        display: none !important;
    }
}