:root {
    --nda-green: #51B56D;
    --nda-purple: #3f3d56;
    --nda-gray: #f2f2f2;
    --nda-color: var(--nda-purple);
}

body {
    background-color: var(--nda-gray) !important;
}

.bg-green {
    background-color: var(--nda-color) !important;
}

.text-nda {
    color: var(--nda-color);
}

.font-weight-bold {
    text-decoration: none;
    font-weight: 600;
}

header.navigation {
    margin-bottom: 80px;
}

.nda-box-shadow {
    width: 100%;
    height: 80px;
    background: var(--nda-color);
    border-bottom: 1px solid transparent;
    box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, .2);
    position: fixed;
    top: 0;
    z-index: 100;
    transition: ease-in-out 0.5s;
}


.banner {
    padding: 50px 0;
    z-index: 5;
    min-height: 500px;
}

.banner .block h1, .banner .block .h1 {
    font-size: 52px;
}

.banner .has-shapes {
    z-index: -1;
}
.banner .has-shapes .shape {
    top: 0;
    height: 100%;
}
.banner .has-shapes .shape-left {
    left: 0;
    top: auto;
    bottom: -30px;
}
.banner .has-shapes .shape-right {
    right: 0;
}

@media (max-width: 991px) {
    .banner .block h1,
    .banner .block .h1 {
        font-size: 46px;
    }
}
@media (max-width: 767px) {
    .banner {
        padding: 0;
        margin-top: 50px;
    }

    .banner .block h1,
    .banner .block .h1 {
        font-size: 38px;
    }

    img.w-100 {
        height: 250px;
    }
}

.text-light {
    color: #EAEAEA !important;
}

.text-dark {
    color: #233242 !important;
}

.text-white {
    color: #fff !important;
}

.text-body {
    color: #fff !important;
}

/*   -------  Shapes -------  */
.has-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}
.has-shapes .shape {
    z-index: 9;
    position: absolute;
}

.btn-primary {
    background: var(--nda-color);
    color: #fff;
    border-color: var(--nda-color);
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.btn-primary:focus,
.btn-primary.focus {
    background: var(--nda-color) !important;
    color: #fff;
    border-color: var(--nda-color) !important;
}

.btn-primary.w-100:hover,
.btn-primary.d-block:hover,
.btn-primary.d-flex:hover,
.btn-primary.effect-none:hover {
    background-color: var(--nda-color) !important;
}
