@font-face {
    font-family: 'Consolas';
    src: url('../assets/font/CONSOLA.TTF');
    /* IE9 Compat Modes */
    src: url('../assets/font/CONSOLA.TTF') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../assets/font/CONSOLA.TTF') format('woff2'),
        /* Super Modern Browsers */
        url('../assets/font/CONSOLA.TTF') format('woff'),
        /* Pretty Modern Browsers */
        url('../assets/font/CONSOLA.TTF') format('truetype'),
        /* Safari, Android, iOS */
        url('../assets/font/CONSOLA.TTF') format('svg');
    /* Legacy iOS */
}

* {
    font-family: 'Consolas', sans-serif;
    padding: 0;
    margin: 0;
}


body {
    margin: 0;
    padding: 0;
    font-family: 'Consolas', sans-serif;
    overflow-x: hidden;
    background-image: radial-gradient(#4C4C4C, #000000);
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    min-height: 100vh;
    max-width: 1920px;
    margin-left: auto !important;
    margin-right: auto !important;
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: rgb(76, 76, 76);
}

body::-webkit-scrollbar-thumb {
    background-color: rgb(26, 26, 26);
    border-radius: 20px;
    border: 2px solid rgb(181, 181, 181);
    box-shadow: inset 2px 2px 5px 0 rgba(#fff, 0.5);
}

.active-menu {
    color: #00acee !important;
}

.about-video {
    width: 660px;
    height: auto;
    margin-bottom: -60px;
    margin-top: -30px;
}

#animation svg {
    max-height: 450px !important;
}

#navbarSupportedContent a {
    color: #C7C7C7 !important;
}

.logo {
    height: 50px;
    width: auto;
}

.hero-section {
    min-height: 100vh;
}

.hero-btn {
    padding: 4px 28px;
    font-style: italic;
    font-weight: bold;
    border: none;
    border-radius: 15px;
    outline: none;
    color: #2A2A2A !important;
    background-image: linear-gradient(to right, #868F96, #596164, #596164, #868F96);
    background-size: 300%;
    background-position: 0 0;
    transition: all .5s ease;
    cursor: pointer;
    text-decoration: none;
}

.disable-btn {
    padding: 4px 28px;
    font-style: italic;
    font-weight: bold;
    border: none;
    border-radius: 15px;
    outline: none;
    color: #6f6f6f !important;
    background-color: #1f1f1f;
    cursor: pointer;
    text-decoration: none;
}

.hero-btn:hover {
    background-position: 100% 0;
}

.pin-logo {
    width: 45px;
    height: auto;
}

/* services */

.services-heading {
    padding: 5px 80px;
}

.services-heading h1 {
    font-size: 46px;
    font-weight: 700;
    color: #C7C7C7;
}

.services-heading p {
    color: #C7C7C7;
    font-size: 12px;
    padding: 2px 50px;
}

.service-1 h2 {
    color: #C7C7C7;
    font-weight: 600;
}

.service-1 p {
    font-size: 12px;
    color: #C7C7C7;
}

.service-1 {
    padding: 0px 80px;
    margin-top: -40px !important;
}

.service-1 .section-1,
.service-1 .section-2 {
    padding: 10px 80px;
}

footer p {
    font-size: 12px;
    margin: 0;
}

.fa-facebook-f {
    color: #4267B2;
}

.fa-twitter {
    color: #00acee;
}

.fa-linkedin {
    color: #0077b5;
}

.fa-instagram {
    color: #833AB4;
}

.fancybox-skin {
    background-color: transparent !important;
    box-shadow: none !important;
}

/* mobile view */

@media only screen and (max-width: 768px) {
    body {
        font-family: Consolas, sans-serif;
    }

    .navbar-nav {
        background-image: radial-gradient(#4C4C4C, #000000);
        text-align: center;
        color: #C7C7C7;
        width: 100%;
    }

    .about-video {
        width: 340px;
        height: auto;
        padding-top: 40px;
        margin-bottom: -30px;
    }

    .hero {
        /* flex-direction: column-reverse; */
        padding-top: 100px !important;
    }

    .hero-img {
        max-width: 100% !important;
    }

    .hero-btn {
        padding: 7px 25px;
        font-size: 14px;
    }

    .home-form {
        margin-top: 20px !important;
    }

    .text {
        /* margin-top: 20px !important; */
    }

    .pin-logo {
        width: 35px;
        height: auto;
    }

    .services-heading {
        padding: 5px 10px;
    }

    .services-heading p {
        color: #C7C7C7;
        font-size: 12px;
        padding: 0px 0px;
    }

    .service-1 {
        padding: 0px 0px;
        margin-top: -10px !important;
    }

    .service-1 .section-1,
    .service-1 .section-2 {
        padding: 20px 30px;
    }

    .mobile-reverse {
        flex-direction: column-reverse;
    }

    .hero-negative-margin {
        margin-top: -65px;
    }

    footer p {
        font-size: 12px;
    }

    .flex {
        display: flex;
        float: right;
        text-align: center;
        justify-content: center;
    }

    .flex p {
        padding: 0px 10px;
    }

    .flex p a {
        text-decoration: none;
    }

}