@charset 'utf-8';

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}
.form-control::-webkit-input-placeholder { color: #fff; text-transform: uppercase; }
.form-control:-moz-placeholder { color: #fff; text-transform: uppercase; }
.form-control::-moz-placeholder { color: #fff; text-transform: uppercase; }
.form-control:-ms-input-placeholder { color: #fff; text-transform: uppercase; }

.angular-google-map-container {
    height: 500px;
}
#success-alert {
    display: none;
}
.noPadd {
    padding: 0;
}
nav, header, main, section, article, footer {
    float: left;
    position: relative;
    width: 100%;
}
main {
    flex: 1 0 auto;
    padding: 0;
}

div#topBar {
    float: left;
    width: 100%;
    height: 10px;
    background-color: #FA3139;
}

.caption {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    width: 100%;
}

.caption h2 {
    margin: 0;
    float: left;
    width: 100%;
    padding: 25px 30px;
    color: #fff;
    background-color: #2D9E32;
    border-radius: 4px;
    box-shadow: 5px 5px 40px 0px #333;
}

section#offerBoxes {
    padding: 15px 0 35px;
}

ul.boxes {
    list-style: none;
    padding: 0;
    float: left;
    width: 100%;
}
ul.boxes li {
    float: left;
    width: calc(100% / 5);
    background-color: #fff;
    padding: 10px;
}
ul.boxes li > a {
    float: left;
    width: 100%;
    background-color: #133E4E;
    position: relative;
}
ul.boxes li > a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background-color: rgba(250, 49, 57, 0.6);
    transition-duration: 0.5s;
}
ul.boxes li img {
    float: left;
}
ul.boxes li span {
    position: absolute;
    left: 0;
    bottom: -30px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background-color: #133E4E;
    padding: 5px;
    width: 100%;
    transition-duration: 0.5s;
}

ul.boxes li:hover a:before {
    height: 100%;
}
ul.boxes li:hover span {
    background-color: #FA3139;
}

section#first {
    padding: 30px 0;
    background-color: #FA3139;
    color: #fff;
    letter-spacing: 1px;
    line-height: 2;
}

.main {
    margin: 0;
    line-height: 1.3;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    float: left;
    width: 100%;
}
#first p {
    margin-bottom: 20px;
}

section#second {
    padding: 30px 0;
}


section#contactData {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    line-height: 2.3;
}
#contactData p {
    margin-bottom: 25px;
}

.bg-white {
    background-color: #fff;
    padding: 30px 15px;
}

footer {
    padding: 20px 0 10px;
    background-color: #133E4E;
    color: #fff;
}

@media (max-width: 1199px) {
    .navbar-nav li a {
        padding: 10px 15px;
    }
}
@media (max-width: 991px) {
    .boxes li {
        width: calc(100% / 3) !important;
        margin-bottom: 20px;
    }
    .boxes li img {
        max-width: none;
        width: 100%;
    }
    .navbar-nav {
        margin-top: 0;
        margin-bottom: 15px;
    }
}
@media (max-width: 767px) {
    #contactData {
        position: relative !important;
        transform: none !important;
        top: 0 !important;
    }
}

#theTitle {
    padding: 20px 0 0;
}
.main2 {
    float: left;
    margin: 0;
    padding: 15px 50px;
    background-color: #FA3139;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

img.doOuter {
    float: left;
    max-width: 200px;
    margin: 0px 10px 10px 0px;
    box-shadow: 2px 2px 10px 0px #111;
}

.gallery {
    float: left;
    width: 100%;
}
.gallery a {
    float: left;
    width: 25%;
    padding: 1px;
    position: relative;
}
.gallery a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(72, 180, 81, 0.5);
    transition-duration: 0.5s;
}
.gallery a:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(72, 180, 81, 0.5);
    transition-duration: 0.5s;
}
.gallery a:hover:before, .gallery a:hover:after {
    width: 0;
    background-color: rgba(72, 180, 81, 1);
}