body {
    width: 100%;
    padding: 0;
    margin: 0;
    font-family: montserrat;
    line-height: 1.6em;
    font-size: 18px;
    color: #aaaaaa;
    background-color: #0B0E0F;
    overflow-x: hidden;
}

/*  */
/* Background */
/*  */
.background-pattern {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(35deg, transparent 49%, #fff 49% 51%, transparent 51%),
                linear-gradient(-35deg, transparent 49%, #fff 49% 51%, transparent 51%);
    background-size: 6em 4.2em;
    opacity: 0.08
}
.background-shadow {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(transparent, #0B0E0F 70%);
}

/*  */
/* Nav */
/*  */
.nav {
    padding-top: 20px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.nav ul {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
}
.nav ul li a {
    margin-left: 10px;
    margin-right: 10px;
    cursor: pointer;
    color: #fff;
}
.nav ul li a:hover {
    text-decoration: underline;
}
@media only screen and (max-width: 700px) {
    .nav {
        padding-top: 20px;
        padding-bottom: 30px;
    }
    .logo {
        max-width: 200px;
    }
}

/*  */
/* Landing */
/*  */
.landing-banner {
    min-height: 100vh;
}
.landing-abstract {
    max-width: 500px;
    object-fit:scale-down;
}
@media only screen and (max-height: 869px) {
    .landing-banner {
        min-height: 870px;
    }
}
@media only screen and (max-width: 700px) {
    .landing-banner {
        align-content: flex-start;
    }
    .landing-banner .col-12 {   
        max-height: 270px;
    }
    .landing-abstract {
        max-width: 300px;
    }
}

/*  */
/* Section */
/*  */
.section-row {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.section-header {
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
@media only screen and (max-width: 700px) {
    .section-header {
        margin-bottom: 40px;
    }
}
.section-header p {
    max-width: 800px;
}



/*  */
/* Services */
/*  */
.services {
    padding-bottom: 50px;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}
.services .card {
    max-width: 300px;
    min-height: 230px;
    margin-bottom: 25px;
}

/*  */
/* Benefits */
/*  */
.benefits-list li {
    color: #fff;
    margin-bottom: 10px;
}
.benefits-list p {
    margin: 0;
    color: #aaaaaa;
}

/*  */
/* Contact */
/*  */
.contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 500px;
}

/*  */
/* Footer */
/*  */
.footer {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 20px;
    background-color: #fff;
    color: #0B0E0F;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/*  */
/* Cards */
/*  */
.card {
    border-radius: 30px;
    display: flex;
    flex-direction: column;
}
.card .card-title {
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
    background-color: #1a1c1d;
    color: #fff;
    font-size: 20px;
    padding: 25px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card .card-content {
    flex-grow: 1;
    margin: 0;
    padding: 15px;
    border: 2px solid #1a1c1d;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}
@media only screen and (max-width: 700px) {
    .card .card-title {
        padding: 15px;
    }
}

/* */
/* Icons */
/*  */
.icon {
    width: 40px;
    height: 40px;
    filter: invert(99%) sepia(0%) saturate(9%) hue-rotate(85deg) brightness(108%) contrast(100%);
}
.avatar-pic {
    border-radius: 50%;
    max-width: 150px;
    max-height: 150px;
    border: 5px solid #1a1c1d;
}
@media only screen and (max-width: 580px) {
    .avatar-pic {
        max-width: 800px;
        max-height: 80px;
    }
}

/*  */
/* Type */
/*  */
h1 {
    font-size: 55px;
    line-height: 1.2em;
    font-weight: 500;
    color: #fff;
}
@media only screen and (max-width: 700px) {
    h1 {
        font-size: 45px;
    }
}
@media only screen and (max-width: 450px) {
    h1 {
        font-size: 40px;
    }
}
h2 {
    font-size: 38px;
    line-height: 1em;
    font-weight: 500;
    color: #fff;
    margin: 0;
}
h3 {
    font-size: 26px;
    line-height: 1em;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

/*  */
/* Inputs */
/*  */
input, textarea {
    color: #fff;
    background-color: #0B0E0F;
    border: 2px solid #1a1c1d;
    border-radius: 30px;
    padding: 10px;
}
textarea {
    min-height: 200px;
}

/*  */
/* Buttons */
/*  */
.primary-btn {
    font-family: montserrat;
    font-size: 18px;
    color: #fff;
    background: linear-gradient(-35deg, #6930c3, #4886d1);
    border: none;
    border-radius: 30px;
    padding: 15px;
    cursor: pointer;
}


@media only screen and (max-width: 580px) {
    .container {
        padding: 0 !important;
    }
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}