@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700');

/*---Media Queries --*/

@media (max-width: 992px) {}

@media (max-width: 768px) {}

@media (max-width: 576px) {}

body,
html {
    width: 100%;
    height: 100%;
    margin: 0!important;
    padding: 0px;
    scroll-behavior: smooth;
}

#logo {
    max-height: 50px;
    max-width: 50px;
}

.navbar-nav li {
    padding-right: 20px;
}

.nav-link {
    font-size: 1.1em !important;
}

.services hr {
    border-top: 2px solid #b4b4b4;
    width: 60%;
}

.landing {
    /*background-image: url(../img/background.png);*/
    background: rgb(2, 0, 36);
    background: -webkit-linear-gradient(bottom, rgba(2, 0, 36, 1) 0%, rgba(0, 255, 248, 1) 0%, rgba(39, 107, 142, 1) 100%);
    background: -moz-linear-gradient(bottom, rgba(2, 0, 36, 1) 0%, rgba(0, 255, 248, 1) 0%, rgba(39, 107, 142, 1) 100%);
    background: -o-linear-gradient(bottom, rgba(2, 0, 36, 1) 0%, rgba(0, 255, 248, 1) 0%, rgba(39, 107, 142, 1) 100%);
    background: linear-gradient(to top, rgba(2, 0, 36, 1) 0%, rgba(0, 255, 248, 1) 0%, rgba(39, 107, 142, 1) 100%);
    min-height: 100%;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.landing-text {
    position: absolute;
    padding: 20px;
    width: 100%;
    margin-top: 30vh;
    text-align: center;
    letter-spacing: 3px;
    color: white;
}

h4 {
    margin-bottom: 2%;
}

.navbar-brand {
    font-weight: bold;
}


/*---------------- About us---------------- */

.about {
    background-color: #EDE6FF;
}

.about-row {
    min-height: 50vh;
    position: relative;
}

.about-left {
    background-color: #a6a6a6;
}

#aboutUs {
    margin-top: 17%;
    margin-bottom: 16%;
    letter-spacing: 3px;
}

.about-right {
    background-color: white;
}

#aboutUs-text {
    margin-top: 16%;
    margin-bottom: 16%;
    font-size: 20px;
}


/*---------------------Services------------------*/

.lead {
    font-weight: 380;
}

#ourServices {
    margin-top: 5%;
}

.icon {
    max-width: 100px;
    height: 80px;
    padding: 10px;
    margin-bottom: 2%;
}

.services {
    background-color: #EDE6FF;
}

.services-row {
    min-height: 60vh;
}


/*-------------------------------Mission------------------*/

.jumbotron {
    background-color: #a6a6a6;
    margin-bottom: 0;
}


/*------------------------------Contact-------------------*/

.contact {
    background-color: white;
}

.contact-row {
    min-height: 50vh;
    position: relative;
}

.contact-left {
    background-color: #EDE6FF;
}

#contactUs {
    margin-top: 17%;
    margin-bottom: 16%;
    letter-spacing: 3px;
}

.contact-right {
    background-color: white;
}

#contactUs-text {
    margin-top: 17%;
    margin-bottom: 16%;
    font-size: 20px;
}


/*------------------Footer-------------------*/

.footer {
    background-color: #a6a6a6;
}


/*---Firefox Bug Fix --*/

.carousel-item {
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
}


/*--- Fixed Background Image --*/

figure {
    position: relative;
    width: 100%;
    height: 60%;
    margin: 0!important;
}

.fixed-wrap {
    clip: rect(0, auto, auto, 0);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#fixed {
    background-image: url('img/mac.png');
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}


/*--- Bootstrap Padding Fix --*/

[class*="col-"] {
    padding: 1rem;
}


/*
Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
*/