#contactForm.card {
    border: none;
    background-color: rgba(201, 201, 201, 0.137);
}

#contactForm .form-control {
    border-color: #ffffff;
}

#contactForm .form-control::placeholder {
    color: #999999;
    /* PLACEHOLDER TEXT COLOUR */
}

.card-body.input {
    box-shadow: none;
}

#contact-form-section .bordered-card {
    padding-left: 3rem;
}

.bordered-card {
    border: 2px solid #88888893;
    /* Replace with your desired border color */
    border-radius: 14px;
    box-shadow: 4px 7px 12px rgba(90, 90, 90, 0.233);
    justify-content: center;
    padding-right: 3rem;
    padding-bottom: 2rem;
}

.bordered-card .card-title {
    padding-bottom: 16px;
    padding-top: 28px;
    color: black;
    font-size: 1rem;
    font-weight: bold;
}

h4 {
    color: #000;
    text-transform: uppercase;
}

.text-reset {
    color: #000000;
    text-decoration: none;
    position: relative;
}

form .btn {
    background-color: #505050;
    color: white;
}

form .btn:hover {
    background-color: #242424;
    color: white;
}

form .btn:focus {
    background-color: #424242 !important;
    color: rgb(255, 255, 255) !important;
    border-color: rgb(70, 70, 70) !important;
}

#contact-us-card-section .bordered-card,
#follow-us-card-section .bordered-card,
#locate-us-card-section .bordered-card {
    padding-top: 2rem;
    padding-left: 3rem;
    background-color: rgb(136, 12, 12);
    color: white;
    border: 3px solid #a80000a8;
    /* Replace with your desired border color */
    box-shadow: 3px 5px 11px rgba(161, 15, 15, 0.61);
}

#card-title {
    color: rgb(243, 243, 243);
}

.icon-container i {
    font-size: 3rem;
}

.icon-container .fa-location-dot {
    font-size: 4rem;
}

.card-body h4.card-text {
    margin-bottom: 0;
    color: white;
    text-transform: none;
}

/* Adjust text size for mobile devices */
@media (max-width: 767.98px) {
    .icon-container i {
        font-size: 1.7rem;
    }

    .icon-container .fa-location-dot {
        font-size: 2rem;
    }

    /* For devices with a screen width of 768px or less */
    .card-body h4.card-text {
        font-size: 80%;
        /* 70% of the original size, which is a 30% reduction */
    }
}

/* Mobile devices */
@media (max-width: 767px) {

    .bordered-card {
        width: 90%;
    }

}

/* Tablet devices */
@media (min-width: 768px) and (max-width: 1024px) {

    .bordered-card {
        width: 80%;
    }

}

/* Desktop devices */
@media (min-width: 1025px) {

    .bordered-card {
        width: 850px;
    }

}