/* Copyright gapservices. All rights reserved. */

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    font-size: 18px;
}

.text-center.hero-text1 {
    width: 50%;
    margin: 0 auto;
}

/* Media query for smaller devices */
@media (max-width: 768px) {
    .text-center.hero-text1 {
        width: 90%;
    }
}

.first-column {
    max-width: 225px;
    text-overflow: ellipsis;
}

.responsive-table {
    width: 70%; 
    margin-left: auto; 
    margin-right: auto;
}

@media (max-width: 767.98px) {
    .responsive-table {
        width: 100%;
    }
}

.table th, .table td {
    word-wrap: break-word;
    white-space: normal;
}

@media (max-width: 768px) {
    .table th, .table td {
        font-size: smaller;
    }
}

.form-group, .form-group-half {
    margin-bottom: 15px;
}

.form-group label, .form-group-half label {
    display: block;
    margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group-half input[type="text"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-group-row {
    display: flex;
    justify-content: space-between;
}

.form-group-half {
    flex-basis: 48%;
}

.form-group textarea {
    height: 100px;
}

.custom-form-width {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 600px) {
    .custom-form-width {
        width: 100%;
    }
}

button {
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.align-right {
    text-align: right;
}   

.third-column {
    width: 15%;
} 

.button-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-custom {
    background-color: #525252;
    border: 2px solid #000000;
    color: white;
    margin: 5px;
    padding: 5px 10px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-custom:hover {
    background-color: #FFCA2C;
    border-color: #5a5a5a;
}

.btn-active {
    background-color: #FFCA2C;
    border-color: #5a5a5a;
    color: black;
}

.custom-card {
  background-color: #D8ECF7;
  border: 2px solid #AFCDE3;
  border-radius: 0.25rem;
}

.custom-padding {
    padding: 50px;
}

@media (max-width: 767px) {
    .custom-padding {
        padding: 20px;
    }
}

/* Style for larger devices */
.max-img {
    max-width: 200px;
    height: auto;
}

/* Style for small devices */
@media (max-width: 767px) {
    .max-img {
        max-width: 100px;
        height: auto;
        float: left;
        margin: 0 10px 10px 0;
    }
}

.btn-outline-secondary {
    border: 1px solid #c4c4c4;
}
.compact-btn {
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
}
.button-spacing {
    margin-right: 10px;
}

@media only screen and (max-width: 1100px) {
    .button-spacing {
        margin-top: 5px;
        margin-bottom: 5px;
    }
}

.responsive-3rem-text {
    font-size: 3rem;
}

@media (max-width: 768px) {
    .responsive-3rem-text {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .responsive-3rem-text {
        font-size: 1.5rem;
    }
}

.custom-width {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.width-70 {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .width-70 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    }
}

.custom-font-class {
    font-family: 'Red Hat Display', sans-serif;
    color: #46915a;
    font-size: 2rem;
}

/* Adjust font size for medium screens */
@media (min-width: 480px) {
    .custom-font-class {
        font-size: 2rem;
    }
}

/* Adjust font size for larger screens */
@media (min-width: 768px) {
    .custom-font-class {
        font-size: 2rem;
    }
}

/* Adjust font size for very large screens */
@media (min-width: 1200px) {
    .custom-font-class {
        font-size: 3rem;
    }
}