body {
    background: #222;
    color: #ddd;
    width: 100vw;
    overflow: hidden;
    overflow-y: auto;
}

i.text-primary.mb-3 {
    color: #eee !important;
    font-size: 32px;
}

#logo {
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    padding: 20px;
}

img.img {
    width: 100%;
}

#logo img {
    height: 60px;
    filter: invert(1);
    margin: -5px;
}

.card-body {
    background: #000;
    color: #aaa;
    padding: 40px 20px;
}

#hero {
    position: relative;
    margin: 20px auto 0px !important;
}

a.btn.btn-primary.btn-lg {
    background: #000;
    border: none;
    font-size: 14px;
    padding: 12px 20px;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    min-width: 100%;
    z-index: -1;
    filter: contrast(1) saturate(0) hue-rotate(-14deg);
}

#loading-screen {
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
}

#main-nav {
    transition: all 0.3s ease;
}

div#loading-screen {
    background: #a8a8a9;
    height: 100vh !important;
    display: flex !important;
    pointer-events: none;
    top: 0px !important;
    left: 0px !important;
    position: fixed !important;
}

img#landing {
    width: auto;
    max-width: 100%;
    animation: landing 5s linear 1;
}

div#loading-bar {
    height: 7px;
    background: #000;
}

.progress.w-50 {
    height: 7px;
    opacity: 0.9;
    position: absolute;
    bottom: 0px;
    border-radius: 0px;
}

.progress-stat {
    color: #000;
    position: absolute;
    top: calc(50vh + 50px);
    left: calc(50vw - 10px);
    font-size: 12px;
}

div#loader {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    display: flex;
    align-items: flex-end;
    background: #f2f2f4;
}

h1.display-4.mb-4 {
    color: #fff;
    font-weight: bold;
}

#hero h2 {
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}

h3 {
    color: #fff;
    font-weight: normal;
    font-size: 15px;
    margin: 0px 0px;
}

.container.text-center {
    margin: 0px 0px 0px 0px;
    width: 100% !important;
    max-width: none;
}

video#parallax-background {
    height: 100vh;
}


nav {
    position: fixed;
    bottom: 20px;
    left: 15px;
    background: #FFF;
    border-radius: 100px;
    width: calc(100vw - 30px);
    height: 50px;
    z-index: 1;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
}

nav>a {
    text-decoration: none;
    color: #000;
    padding: 12px 15px 12px 15px;
    font-size: 14px;
    display: flex;
    height: 100%;
    line-height: 26px;
    font-weight: bold;
}

nav img {
    width: 25px;
    height: 21px;
    margin: 6px;
}

img#whatsapp {
    width: 25px;
    height: 25px;
    margin: 8px 5px 0px 0px;
    filter: brightness(100);
}


img#whatsapp {
    width: 25px;
    height: 25px;
    margin: 8px 5px 0px 0px;
}

a#whatsapp-btn {
    border-radius: 30px;
    background: #1cad52;
    margin: 3px 0px 3px 0px;
    line-height: 42px;
    height: calc(100% - 6px);
    padding: 0px 30px 0px 30px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    animation: shake 3s cubic-bezier(.36, .07, .19, .97) infinite;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.services .card-body {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    padding: 20px 0px 5px 20px;
    border-radius: 5px;
    background: linear-gradient(129deg, #253648, #32496a);
}

.card-body {
    margin: 0px 0px 0px 0px;
    border-radius: 5px;
    background: linear-gradient(129deg, #253648, #32496a);
}

.card {
    background: transparent !important;
    border: none;
    margin: 0px 0px 15px 0px;
}

.card-body img.icon {
    filter: invert(1);
    height: 48px;
    margin: -8px 0px 10px 0px;
}

h3.card-title.h4 {
    font-size: 18px;
    line-height: 30px;
    color: #ddd;
}

p.card-text {
    text-align: center;
    margin: 15px;
    color: rgba(255,255,255, 0.5);
}

@keyframes shake {
    40% {
        transform: translate3d(-1px, 0, 0);
    }

    42% {
        transform: translate3d(2px, 0, 0);
    }

    44% {
        transform: translate3d(-4px, 0, 0);
    }

    46% {
        transform: translate3d(4px, 0, 0);
    }

    48% {
        transform: translate3d(-4px, 0, 0);
    }

    50% {
        transform: translate3d(4px, 0, 0);
    }

    52% {
        transform: translate3d(-4px, 0, 0);
    }

    54% {
        transform: translate3d(2px, 0, 0);
    }

    56% {
        transform: translate3d(-1px, 0, 0);
    }
}

@keyframes landing {
    0% {
        height: 100vh;
    }

    30% {
        height: auto;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.separator {
    margin: 30px 0px 32px 0px;
    background: linear-gradient(45deg, #636363, transparent);
    padding: 0px;
    max-height: 1px;
    line-height: 40px;
    font-size: 16px !important;
}

h2.card-title.h4 {
    font-weight: bold;
    margin: 35px 20px -10px 30px;
}

.quotoe div {
    font-size: 13px;
}

p {
    margin: 30px;
    text-align: justify;
}

h1.display-4.mb-4 {
    font-size: 32px;
}

img.center-fit {
    margin: 5px 20px 20px 20px;
    width: calc(100% - 40px);
    border-radius: 20px;
}

#why-choose-us .col-md-4 {
    margin: 0px;
}

@media (min-width: 1000px) {
    .parallax-bg {
        width: 100%;
        left: 0px;
        top: 0px !important;
    }

    .parallax-bg video {
        height: auto !important;
        width: 100%;
        margin: 0px;
    }

    nav {
        left: calc(50vw - 250px);
        width: 500px;
    }

    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-thumb {
        background: #111;
        border-radius: 25px;
    }

    section {
        max-width: 1000px !important;
        margin: auto !important;
        color: #fff;
    }

    .bg-light {
        color: #000;
    }

    .about-container {
        float: right;
    }

    img.center-fit {
        margin: 5px 40px 20px 50px;
        width: calc(100% - 40px);
        max-width: 400px;
        border-radius: 20px;
        z-index: 1;
        position: relative;
    }

    .separator {    
        max-width: 50%;
    }
}