/* Colors #d7e6ff; #d8f5fa; */
:root {
    --primary-color: #008ed4;
    --secondary-color: #b9dbf6;
    --navlink-color: #ffffff;
    --shadow-color: #000000;

    --footer-size: 190px;
}

/* Utils */
html, body { font-family: 'Arvo', serif !important;}
p { margin-bottom:  0rem !important; }
#page-container {position: relative; min-height: 100vh; }
#content-wrap { padding-bottom: var(--footer-size); min-height: inherit; }
.center { justify-content: center !important; }
.width-75 { width: 75% !important; }
.height-75 { height: 75% !important; }
.width-35 { width: 35% !important; }
.height-auto { height: auto !important; }

/* Nav Bar */
.navbar { background-color: var(--primary-color) !important; font-weight: bold; }
.navbar .navbar-brand { font-size: 22px; text-shadow: 3px 3px 3px var(--shadow-color);}
.navbar .nav-link { font-size: 15px; color: var(--navlink-color) !important; text-shadow: 1px 1px 1px var(--shadow-color); }
.navbar .nav-link:hover { color: #000000 !important; text-shadow: unset; font-weight: bolder; }
.navbar .nav-link.active { color: #000000 !important; text-shadow: unset; font-weight: bolder; }
.navbar-dark .navbar-toggler{ color: rgba(255,255,255, 1) !important; border-color: rgba(255,255,255,1) !important; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important; }
.dropdown:hover .dropdown-menu { display: block; margin-top: 0; }
@media only screen and (max-width: 992px) {
    .dropdown-menu {
        display: block !important; margin-top: 0 !important;
    }
}
/* Footer */
footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: var(--footer-size);
}
.footer-container {
    background-color: var(--primary-color);
    box-shadow: 0px 5px 20px 10px black;
    display: flex;
    justify-content: space-evenly;
    padding: 10px 10% 10px 10%;
}
.footer-container h1 {
    color: white;
    font-weight: bold;
    text-shadow: 3px 3px 3px var(--shadow-color);
}
.footer-container p {
    font-size: larger;
    color: white;
}
.footer-container .footer-get-in-touch ul {
    list-style-type: none;
    color: white;
}
.footer-container .footer-follow-us a {
    padding-right: 10px;
}
.footer-container .footer-follow-us img {
    height: 40px;
    width: auto;
}

/* Home */
/* Banner */
.parallax {
    background-image: url('./images/homePage/unsplash.png');
    min-height: 83vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-content: center;
    justify-content: center;
}
.parallax-content {
    display: flex;
    justify-content: center;
    align-content: center;
    min-height: inherit;
    align-items: center;
    flex-direction: column;
    width: fit-content;
}
.parallax-content div {
    text-align: center;
    background-color: var(--primary-color);
    opacity: 0.9;
    padding: 20px;
}
.parallax-content img {
    height: 115px;
    width: auto;
}
.parallax-content p {
    color: #ffffff;
    font-weight: bold;
    font-size: xxx-large;
    text-decoration: underline;
}

/* Phone Banner */
.phone-banner {
    height: 100px;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0px 4px 20px 10px rgb(51, 51, 51);
    position: relative;
}
.phone-banner div {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 20px;
}
.phone-banner a {
    display: flex;
    align-items: center;
    text-decoration: unset;
}
.phone-banner a:hover {
    text-decoration: unset;
}
.phone-banner p {
    font-size: xx-large;
    font-weight: bold;
    text-shadow: 3px 3px 3px var(--shadow-color);
    transition: all .5s ease-in-out;
    color: #ffffff;
}
.phone-banner p:hover {
    transform: scale(1.1);
    text-decoration: unset;
    color: #ffffff;
}
.phone-banner img {
    padding-right: 25px;
    height: 30px;
    width: auto;
}
#phone-banner-section {
    box-shadow: 0 4px 2px -2px gray;
}

/* Home Page - Service Section */
/* Main Services */
.service-container {
    display: flex;
    flex-direction: column;
    padding-top: 50px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-size: 27px;
    font-weight: bold;
}
.service-container .service-main {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 0% 20% 0% 20%;
    text-align: center
}
.service-container .service-main div p {
    padding-bottom: 15px;
}
.service-container .service-main div img {
    width: 300px;
}

/* Additional Services */
.service-container .service-additional {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 0% 25% 0% 25%;
}
.service-container .service-additional div {
    width: 250px;
    text-align: center;
}
.service-container .service-additional img {
    width: 250px;
}
.service-container .service-additional p {
    padding-top: 15px;
    padding-bottom: 50px;
    font-size: large;
}

/* Services Page */
.services-container-bg {
    background-image: url('./images/services/backdrop.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.services-container {
    display: flex;
    padding: 5% 10% 5% 10%;
    /* min-height: calc(100vh - var(--footer-size)); */
    min-height: 94vh;
}
.services-container .services-flex {
    display: flex;
    align-content: space-around;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: row;
}
.services-container .services-flex a{
    display: contents;
}
.services-card {
    display: grid;
    text-align: center;
    width: 30%;
    background-color: rgba(0, 142, 212, 0.75);
    height: 40%;
    padding: 2%;
    cursor: pointer;
    transition: all .5s ease-in-out;
}
.services-card:hover {
    transform: scale(1.1);
}
.services-card h3 {
    font-weight: bold;
    color: white;
    text-shadow: 3px 3px 3px var(--shadow-color);
}
.services-card p {
    font-size: 18px;
    color: black;
}

/* Service */
.service-card {
    text-align: center;
    width: 30%;
    background-color: rgba(0, 142, 212, 0.75);
    height: -webkit-fill-available;
    padding: 2%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.service-card h3 {
    font-weight: bold;
    color: white;
    text-shadow: 3px 3px 3px var(--shadow-color);
}
.service-card h5 {
    color: white;
    text-shadow: 3px 3px 3px var(--shadow-color);
    padding-top: 10px;
}
.service-card p {
    font-size: 18px;
    color: black;
}
@media only screen and (max-width: 992px) {
    .service-card {
        width: 100% !important;
        height: unset !important;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .service-card h3 {
        font-size: 2.1rem;
    }
    .service-card h5 {
        font-size: 2.2rem;
    }
    .service-card p {
        font-size: 2rem;
    }
}

/* Gallery */
.gallery-container-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--secondary-color);
}
#darkbox { width:1280px; height:720px; position:absolute;
    top:0; left:0; background-color:#333; overflow: hidden; text-align:center;
}
.darkboximg { padding:5%; max-width: 1216px; max-height: 684px; }

#gallery {
    padding-left: 2rem;
    padding-right: 2rem;
    line-height:0;
    -webkit-column-count:5;
    -webkit-column-gap:5px;
    -moz-column-count:5;
    -moz-column-gap:5px;
    column-count:5;
    column-gap:5px;
    margin-top:2rem;
}

#gallery img {
    width: 100% !important;
    height: auto !important;
    margin-bottom:5px;
}

/* Contact Us */
.contactus-container-bg {
    background-image: url('./images/homePage/unsplash.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--secondary-color);
}
.contactus-container {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    padding: 75px 20px 75px 20px;
    min-height: inherit;
}
.contactus-container h3 {
    font-size: xx-large;
    font-weight: bold;
    text-shadow: 3px 3px 3px var(--navlink-color);
    color: var(--shadow-color);
}
.contactus-container p {
    font-size: large;
    color: var(--shadow-color);
}
.contactus-container .info-container {
    padding-top: 10px;
    text-align: center;
    font-weight: bold;

}
.contactus-container .info-container a{
    color: var(--shadow-color) !important;
    text-decoration: unset;
}

.contactus-container form {
    font-weight: bold;
    color: var(--navlink-color);
    text-shadow: 3px 3px 3px var(--shadow-color);
}
@media only screen and (max-width: 992px) {
    .contactus-container {
        font-size: 2rem !important;
    }
    .contactus-container .col-4 {
        max-width: unset !important;
    }
    .contactus-container h3 {
        font-size: 2.5rem !important;
    }
    .contactus-container p {
        font-size: 1.5rem !important;
    }
    .contactus-container .btn {
        padding: 20px;
    }
}