/*  Main  */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}


/*  Sections & Containers  */
.fullscreen-intro-section {
    height: calc(100vh - 80px);
}

.intro-container {
    height: 100%;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.fullscreen-section {
    height: 100vh;
}

.services-containers {
    height: 100%;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.services-top-container {
    height: 15%;
}

.services-bottom-container {
    height: 85%;
}

.content-container {
    max-width: 80%;
    align-content: center;
}

.grey-container {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
    background-color: #f1f1f1 !important;
    padding: 4rem 2rem;
}

.sm-container {
    max-width: 700px;
}


/* Dividers */
.line-divider {
    align-content: center;
    border-top: 1px solid rgb(0, 0, 0, 0.5);
    max-width: 60vw;
    height: 5vh;
}

.background-divider {
    height: 3rem;
    background-color: rgba(0, 0, 0, .1);
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.img-divider {
    background-image: url('../img/technology.jpg');
    background-position: center;
    height: 15vh;
    background-size: 100% auto;
    background-repeat: no-repeat;
    opacity: 0.85;
}


/* Backgrounds */
.bg-intro {
    background-image: url('../img/pattern-intro.png');
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 180px;
}

.bg-services {
    background-image: url('../img/pattern-services.png');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 150px;
}

.bg-contact {
    background-image: url('../img/pattern-contact.png');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 280px;
}

@media (max-width: 1000px) {
    .bg-intro {
        background-image: none;
    }

    .bg-services {
        background-image: none;
    }
    
    .bg-contact {
        background-image: none;
    }
}

@media (max-height: 700px){
    /* For really small phones to hide the intro logo */
    .logo-remover {
        display: none;
        visibility: hidden;
    }
}

.bg-offensive {
    background-image: url('../img/ctf-metroinc.png');
}

.bg-offensive-blur {
    background: rgba(255, 89, 89, 0.2);
    backdrop-filter: blur(2px);
}

.bg-defensive {
    background-image: url('../img/ctf-yetibank-sec.png');
    background-position: -160px -320px;
}

.bg-defensive-plus {
    background-image: url('../img/ctf-yetibank.png');
    background-position: -100px -500px;
}

.bg-defensive-blur {
  background: rgba(89, 142, 255, 0.2);
  backdrop-filter: blur(2px);
}

.clip-img {
    clip: rect(0, 100px, 300px, 10px) !important;
}


/*  Other  */
.navbar-shadow {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}