body {
    font-family: Helvetica, sans-serif;
}
nav.navbar {
    background-color: rgb(67, 68, 98);
}



.nav-link{
    min-height: var(--height);
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    color: aliceblue;
    font-size: 20px;
    font-weight: 600;
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
}
.navbar-nav .nav-link.active, 
.navbar-nav .nav-link.show,
.nav-link:focus, .nav-link:hover{
    color: rgb(205, 183, 193);
}

.content .container{
    display: flex;
    min-height: 50vh;
    flex-direction: column;
    position: relative;
    transition: all .3s cubic-bezier(.79,.14,.15,.86);
}

footer{
    background-color: #1a1c35;
}
footer .container{
    padding-top: 30px;
    padding-bottom: 10px;
}
footer .container {
    color: aliceblue;
}
footer h5 {
    font-weight: bold;
}

.text-justify {
    text-align: justify;
}

.bg-light-purple {
    --bs-bg-opacity: 1;
    background: linear-gradient(135deg,rgb(230, 215, 223) 1%,rgb(235, 236, 255) 99%) !important;
}

/* .bg-light-purple h2, .bg-light-purple h4{
    color: aliceblue;
} */

.card-image {
    box-sizing: border-box;
    vertical-align: bottom;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 7.5px;
}

section.hero-section {
    background: url('/static/images/hero-bg.jpg') no-repeat center center/cover; 
    align-items: center;
    background-position: 50%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    min-height: 530px;
    overflow: hidden;
    padding: 1em;
    position: relative;
}

.btn-primary {
    background-color: rgb(144, 122, 141);
    --bs-btn-border-color:rgb(144, 122, 141);
    font-weight: bold;
    color: #1a1c35;
}

.btn-primary:hover {
    background-color: rgb(205,183,193);
    --bs-btn-hover-border-color:rgb(205,183,193);
    color: aliceblue;
}


.text-primary-purple {
    color: rgb(144, 122, 141);
}