@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;700&display=swap');

@import url(grid.css);
@import url(animate.css);

body {
    padding: 0;
    margin: 0;
    font-family: 'Work Sans', sans-serif;
    /*border-top: 5px solid #C63520;
    border-bottom: 5px solid #C63520;*/
    border-top: 5px solid black;
    border-bottom: 5px solid black;
    font-weight: 300;
    background-color: white;
    color: #444;
}

a {
    color: #C63520;
}

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

.slide-content {
    padding-top: 15%;
    padding-bottom: 15%;
}

.at-adler {
    max-height: 180px;
    /*border-left: 5px solid #C63520;*/
    padding-left: 5px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 30px;
    /*float: right;*/
    /*margin-left: 15px;*/
}

@media(max-width: 768px) {
    .at-adler {
        max-height: 120px;
    }
}

.grey-bg {
    background-color: #fafafa;
}

.hero {
    padding-top: 25px;
    padding-bottom: 25px;
}

#brand-name {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 2.5rem;
    margin: auto;
    margin-bottom: 0;
    /*text-align: right;*/
    border-top: 2px solid black;
    padding-top: 30px;
    max-width: 450px;
}

@media(max-width: 768px) {
    #brand-name {
        font-size: 1.5rem;
    }
}

#brand-subtitle {
    font-weight: 300;
    margin-top: 10px;
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    /*text-align: right;*/
}

@media(max-width: 768px) {
    #brand-subtitle {
        font-size: 0.8rem;
    }
}

.google-map {
    filter: grayscale(1);
    transition: filter 0.5s;
}

.google-map:hover {
    filter: grayscale(0);
    transition: filter 0.5s;
}

.address {
    font-size: 1rem;
    margin-bottom: 15px;
}

@media(min-width: 768px) {
    .address {
        margin-left: 3rem;
    }
}

.btn {
    font-size: 1rem;
    border-radius: 50px;
    display: inline-block;
    text-decoration: none;
    padding: 15px 25px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary {
    background-color: #C63520;
    color: white;
}

.btn-primary:hover, .cta-phone-btn:hover {
    background-color: #b02813;
}

.btn-secondary {
    background-color: #efefef;
    color: black;
}

.btn-secondary:hover {
    background-color: #ddd;
}

.cta-phone-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background-color: #C63520;
    height: 60px;
    text-align: center;
    border-radius: 50px;
    padding-right: 5px;
    padding-left: 5px;
}

.cta-phone-btn span {
    color: white;
    text-decoration: none;
    position: relative;
    top: -20px;
    padding-left: 15px;
    display: none;
}

.cta-phone-btn:hover span {
    display: inline-block;
}

.cta-phone-btn img {
    margin-top: 5px;
    max-height: 50px;
    border: 2px solid white;
    padding: 10px;
    border-radius: 30px;
}

#cta-phone-modal {
    display: none;
}

.modal-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal {
    position: relative;
    background-color: white;
    width: 80%;
    max-width: 600px;
    margin: 10% auto auto auto;
    padding: 0.8rem;
    border-radius: 10px;
}

.modal h1 {
    margin-top: 10px;
}

.modal-close-btn {
    position: absolute;
    right: 25px;
    top: 30px;
    color: #999;
    font-weight: bold;
    text-decoration: none;
    font-size: 25px;
}

.modal-close-btn:hover {
    color: black;
}

hr {
    border-color: #C63520;
}

.form-group {
    margin-bottom: 1rem;
    display: block;
}

.form-group label {
    display: block;
    font-weight: bold;
}

.form-control {
    width: 100%;
    min-height: 45px;
    border: 1px solid #dfdfdf;
    font-size: 1.1em;
    transition: all 0.2s;
    padding: 10px;
    color: #666;
}

.form-control:focus {
    outline: none;
    border: 1px solid #C63520;
    transition: all 0.2s;
}

textarea {
    height: 150px;
}

@media(max-width: 768px) {
    .hidden-xs {
        display: none;
    }
}
.hidden-xs