﻿.visit-us-container {
    .actions {
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        gap: 6%;
        justify-content: space-between;
        width: 100%;

        .btn-primary {
            width: 47%;
        }
    }
}

.intro-text {
    margin-top: 20px;
    margin-bottom: 22px;
    font-size: 16px;
}

.card {
    border-radius: 10px;
    background-color: #F8F8F8;
}

.card-body {
    padding: 25px;
}

.card-header {
    background-color: #bca36c;
    color: white;
    text-align: center;
    padding: 5px;

    &:first-child {
        border-radius: 10px 10px 0 0;
    }
}

.card-header-text {
    font-size: 18px;
    font-weight: bold;
}

.card-img-top {
    max-height: 300px;
    overflow: hidden;
}

.card-img-crop {
    object-fit: cover;
}

.card-subtitle {
    font-weight: bold;
}

.card-footer {
    border-top: none;
    margin: 25px;
}

.btn-primary {
    color: #ffffff;
    background-color: #bca36c;
    display: block;
    border-radius: 5px;
    margin-top: 20px;

    &:hover {
        background-color: #6c757d;
        color: white;
    }
}

.tsh-card {
    margin-bottom: 40px;

    .card-title {
        font-size: 22px;
        font-weight: bold;
        color: #bca36c;
        margin-bottom: 2px;
    }
}

.card-horizontal {
    display: flex;
    flex-direction: row;
    width: 100%;

    img {
        border-radius: 10px 0 0 10px;
        max-width: 400px;
        overflow: hidden;
    }

    .card-body {
        flex: 1;
    }
}

.services {

    .card {
        text-align: center;
        background-color: transparent;
    }

    .card-title {
        text-align: center;
        margin-bottom: 0;
    }

    .img-responsive {
        max-height: 100px;
        align-items: center;
        display: inline-flex;
    }

    .card-body {
        padding: 1.5rem;
    }
}

.card-container {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .visit-us-container {
        .actions {
            flex-direction: column;
            gap: 24px;

            .btn-primary {
                margin: 0;
                width: 100%;
            }
        }
    }

    .card-horizontal {
        flex-direction: column;

        img {
            border-radius: 10px 10px 0 0;
            max-width: 100%;
            max-height: 300px;
            overflow: hidden;
        }
    }

}

