:root{
    --padding-top: 65px;
    --hero-height: calc(100vh - var(--padding-top));
    --grid-gap: 30px;
}

body{
    padding-top: var(--padding-top);
}

.navbar-logo img{
    width: 164px;
}
.menu a{
    text-transform: uppercase;
}
.hero .columns{
    height: var(--hero-height);
    place-items: center;
}
.hero {
    width: 100%;
    height: var(--hero-height);
    position: relative;
    color: #fff;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero .wrapper {
    position: relative;
    z-index: 1;
}
.hero-msg {
    max-width: 100vw;
}
.hero-msg h1{
    font-size: 2.2em;
}
.hero-msg p{
    font-size: 1.25em;
    line-height: 1.2;
    margin-top: 0.5em;
}
.wrapper,
.container{
    width: min(90%, 1280px);
    margin-inline: auto;
}
.width70{
    margin-left: auto;
    margin-right: auto;
    p{
        font-size: 1.25em;
    }
}

.heading-black {
    padding-bottom: 20px;
    opacity: .98;
    color: #000;
    text-align: center;
}
.heading-title {
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1;
    padding-bottom: 10px;
}
h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: .92;
    letter-spacing: -2px;
    margin: 0;
}
#services{
    padding-bottom: 100px;
}
#services h3{
    font-size: 3rem;
    font-weight: 600;
    color:#444;
}
.container75{
    width: 75%;
    margin: 0 auto;
}
.service-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: 220px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    background-color: #000;
}
.service-link{
    font-size: 2em;
    text-align: center;
    color: #fff;
    padding: 1em 0;
}
.service-body {
    text-align: center;
    width: 305px;
    max-width: 100%;
    position: relative;
    opacity: .999;
    z-index: 2;
    margin: 35px auto auto auto;
    padding: 30px 30px 0px 30px;
    background-color: #f7f7f7;
}
.bg-white{
    background-color: #fff;
}
.bg-gray {
    background-color: #f7f7f7;
}
.bg-1{
    background: url(../images/hero2.webp) center center no-repeat;
    background-size: cover;
}
.bg-2{
    background: url(../images/service-1.webp) center center no-repeat;
    background-size: cover;
}
.bg-3{
    background: url(../images/service-2.webp) center center no-repeat;
    background-size: cover;
}
.ui .button-red {
    background-color: #c41c1e;
    border-color: #c41c1e;
    color: #fff;
}
.ui .button-red:hover{
    background-color: #d76300;
    border-color: #d76300;
    color: #fff;    
}
footer{
    background-color: #333;
    color: #ccc;
    min-height: 5em;
    padding-top: 4em;
    font-size: 1.5rem;
}
.copyright{
    font-size: 1.2rem;
    text-align: center;
    padding: 2em 0 1em;
}
footer h4{
    font-size: .9em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.footer-menu{
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 1em;
}
.footer-menu li{
    margin-bottom: .2em;
}
footer a{
    text-decoration: none;
    color: var(--accent-color);
}
footer a:hover{
    color: #fff;
}
.social-links{
    font-size: 1.6em;
}
.social-links a:hover{
    color: #fff;
}
.jumbotron {
    padding: 4em 2em;
    margin-bottom: 2em;
    background-color: #e9ecef;
    border-radius: .3em;
}
.img-responsive{
    width: 100%;
}
.well{
    background: #ddd;
}
.well p, .well h4{
    padding-left: 20px;
    padding-right: 20px;
}
.well h4{
    margin-top: .3em;
}

@media (min-width: 768px) {
    :root{
        --button-height: auto;
        --button-padding: 0.8rem 2rem;
        --button-fontsize: 1rem;
        --button-border-radius: 1rem;
    }
    .hero-msg h1{
        font-size: 3.8em;
    }
    .hero-msg p{
        font-size: 1.59em;
    }
    .width70{
        max-width: 70%;
        margin-left: auto;
        margin-right: auto;
        p{
            font-size: 1.25em;
        }
    }
}