
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap');

/* Variables */
:root {
    --navbar-height: 65px;
}

* {
    font-family: 'Noto Sans', sans-serif;
}

/* Colors */

.text-red {
    color: #dc0000!important;
}

/* Utilities */
.spacer {
    display: block;
    height: 2rem;
}

.b-shadow {
    box-shadow: 0 0.125rem 1.5rem rgb(0 0 0 / 50%); 
}

.mt-md-6 {
    margin-top: 4rem!important;
}

/* Spinner */
.loading {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100000;
}

/* Navbar */
#navbar {
    height: var(--navbar-height)!important;
    position: fixed;
    top: 0;
    padding: 5px 0;
    background-color: #ffffff;
    border-top: 2px solid white;
    box-shadow: none;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    transition: 0.6s;
    z-index: 10000;
}

#navbar.sticky {
    padding: 5px 0;
    background-color: #ffffff;
    border-top: 2px solid #dc0000;
    box-shadow: 0 0 10px 5px rgb(0 0 15 / 15%);
    transition: 0.6s;
    z-index: 10000;
}

#navbar .navbar-collapse.show,
#navbar .navbar-collapse.collapsing {
    background-color: #ffffff;
    border-bottom: 2px solid #dc0000;
}

.navbar-nav .nav-link.active {
    border-bottom: 1px solid #dc0000;
}

/* Logo Home */
.logo-home {
    margin-top: 20px;
}

/* Services Home */
#services h3 > i {
    margin-right: 10px;
}

/* Links */

a.learn-more {
    text-decoration: none;
    color: #dc0000;
}

a.learn-more > i {
    vertical-align: middle;
}

/* CTA */

a.cta {
    text-decoration: none;
}

a.cta:hover,
a.cta:visited,
.navbar-light .navbar-nav a.nav-link:hover {
    color: #dc0000;
}

#technology-logos img {
    max-height: 40px;
    margin: 1rem 0.5rem 0 0.5rem;
}

/* Pages */

/* Portfolio */
/* Portfolio Cards */

.p-card {
    margin-bottom: 1rem;
}

.p-header h4 {
    font-weight: 700;
    color: #dc0000;
    line-height: 1;
}

.p-client {
    font-weight: 14px;
    line-height: 1;
}

.p-cta a {
    font-size: 14px;
    color: #dc0000;
    text-decoration: none;
}

.p-cta.empty {
    height: 24px;
}

#portfolio-grid .card h5.card-title {
    color: #dc0000;
    font-weight: 600;
    line-height: 1;
}

#portfolio-grid .card p {
    font-size: 12px;
}

.p-content,
.p-thumbnail {
    width: 100%;
}

/* Swiper */
.swiper {
    width: 100%;
    height: auto;
  }

.swipe-for-more {
    text-align: center;
    font-size: 70%;
    margin-top: 10px;
    color: #888;
}

.swiper-button-next,
.swiper-button-prev {
    color: #dc0000;
}

.swiper-pagination-bullet-active {
    background: #dc0000;
}

/* Contact */
.contact-info .contact-item a {
    text-decoration: none;
    color: rgba(0,0,0,.55);
}

.contact-info .contact-item a:hover,
.contact-info .contact-item i {
    color: #dc0000;
}


.contact-info .contact-item i {
    font-size: 20px;
}

.is-required {
    color: #dc0000;
}

button#submit-contact {
    background-color: #dc0000;
    border: 0;  
}

/* Footer */

.ebit-footer ul.list-group > li.list-group-item {
    border: 0;
    padding: 0.25rem 0;
    font-size: 0.75rem;
    line-height: 1;
}

.ebit-footer ul.list-group > li.list-group-item a {
    color: rgba(0,0,0,.55);
    text-decoration: none;
}


.ebit-footer ul.list-group > li.list-group-item a:hover {
    color: #dc0000;
}

.ebit-footer .footer-logo {
    text-align: center;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

 }

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    #navbar {
        padding: 60px 0;
        background-color: transparent;
    }

    .logo-home {
        height: calc(100vh - var(--navbar-height));
        margin-top: 60px;
    }

    
    .p-card {
        margin-bottom: 5rem;
    }

    .p-content,
    .p-thumbnail {
        width: 50%;
    }

    .ebit-footer .footer-logo {
        text-align: right;
    }
 }

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

 }

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

 }

/* // XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {

 }