:root{
    --primary: #4a496a;
    --light: #fff0f0;
    --gray: #799496;
    --pink: #896985;
}

h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5{font-family: "Outfit";}

.primary{color: var(--primary);}
.bg-nsps{background-color: var(--primary);}
.bg-nsps-gradient{background: linear-gradient(to bottom, var(--primary) 0%, #373652 70%);}

.nav-item{position: relative; padding: 2px 15px; transition: background-color 0.15s linear; width: 160px; text-align: center;}
.nav-link{ color:  var(--primary); font-family: "Nunito Sans"; }

.nav-link::before{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 2px;
    width: 75%;
    background: var(--primary);
    transform: translateX(-50%);
    transition: all 0.15s linear;
}
/* .nav-item:hover{background-color: rgba(74, 73, 106, 0.15);} */
.nav-item:hover{background-color: rgba(214, 178, 100, 0.3);}
.nav-link:hover::before{ width: 100%; }

.btn-nsps{ background-color: var(--primary); color: white; border: 2px solid var(--primary); }
.btn-nsps:hover{ background-color: #373652; color: white; }

.btn-nsps-light{
    font-weight: 600;
    border: 2px solid white;
    color: var(--primary); background-color: white;
    transition: all 0.15s linear;
}
.btn-nsps-light:hover{
    border: 2px solid white;
    background-color: #896985;
    color: white;
}
:not(.btn-check)+.btn:active{
    border: 2px solid white;
    background-color: #6a5775;
    color: white;
}
.btn:first-child:active{background-color: #795e80; color: white;border: 2px solid white;}

.card-block{
    padding: 30px 20px;
    background-color: white;
    border-radius: 0;
    box-shadow: 0 6px 10px 3px rgba(137, 105, 133, 0.25);
    font-family:"Nunito Sans";
    width: 480px;
    height: 200px;
    transition: box-shadow 0.15s linear;
}
.card-block:hover{ box-shadow: 0 6px 10px 3px rgba(214, 178, 100, 0.25); }
.card-block p{ margin: 0;}
.card-block h3{ font-size: 1.5rem; user-select: none; }

.star-color{ color: #d6b264; }

.why-choose{ width: 70%; }

.accordion-button:not(.collapse){
    color: var(--primary);
    background-color:#4a496a11;
}
.accordion-button:focus{
    z-index: 3;
    box-shadow: 0 0 0 0.25rem rgba(55, 54, 82, 0.5);
}
.accordion-button{ font-size:  1.2rem;border-radius: 0 !important; }
.accordion-item, .accordion-header{border-radius: 0 !important;}
.accordion-body{ font-family: "Nunito Sans"; }

.people-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 90%;
    gap: 20px;
}
.person-card{
    padding: 30px 20px;
    background-color: white;
    border-radius: 0;
    box-shadow: 0 6px 10px 3px rgba(137, 105, 133, 0.25);
    font-family:"Nunito Sans";
    width: 290px;
    align-items: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.person-card img{
    border-radius: 50%;
    width: 140px;
    height: 140px;
}
.person-card a{ margin-top: auto; border: 2px solid white;}
.person-card h2{ font-size: 1.9rem;}

.offcanvas .btn{ font-size: 1.3rem; }

footer ul li a, footer address a{
    text-decoration: none;
    color: white;
}
footer ul li a:hover, footer address a:hover{
    color: var(--pink);
    text-decoration: underline;
}

.about-banner{
    display: flex;
    flex-direction: row;
    gap: 40px;
}

@media screen and (max-width: 992px) {
    
    .why-choose{
        width: 90%;
    }
    .card-block{
        width: 90%;
        height: max-content;
    }
    .people-container{
        flex-direction: column;
    }
    .person-card{
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        text-align: end;
    }
    .person-card h3{
        font-size: 1.2rem;
    }
    .person-card{
        font-size: 0.9rem;
    }
    .person-card img{
        height: 100px;
        width: 100px;
    }
    .about-banner{
        flex-direction: column;
    }
}

@media screen and (max-width: 1200px) {
    .nav-item{ font-size: 0.9rem; width: 134px; padding: 2px 5px;}
}
