:root{
    --prim-txt: #000;
    --sncd-back: #D5E7F2;
    --accent-back: #5982A7;
    --scnd-txt: #fff;
    --link-txt: #2b598a;
    --cream-wht: #f8f8f8;
}
body {
    background-color: var(--cream-wht);
    /* background-image: linear-gradient(#6b8199b7,#54759b9d); */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: var(--prim-txt);
}
label.required::after {
    content: ' *';
    color: red;
}
.back-snd{
    background-color: var(--sncd-back);
}
.back-act{
    background-color: var(--accent-back);
}
.benefits li {
    margin-bottom: 10px;
    font-size: 1.3em;
}
.img-enlarge{
    transition: transform .2s ease-in-out;
}
.img-enlarge:hover{
    transform: scale(1.05);
}
p{
    font-size: 1.2em;
}
li{
    font-size: 1.03em;
}
a{
    color: var(--link-txt);
    cursor: pointer;
}
a i{  
    color: var(--link-txt);
}
a:hover{
    color: rgb(66, 66, 66);
}
small{
    font-size: 75%;
}
i:hover{
    color: #467bb4;
    transition-duration: 0.2s;
}
h3{
    font-family: 'Poppins', sans-serif;
    padding-bottom: 0.3rem;
}
.padding{
    margin-top: 2.2rem;
}
/* Bootsrap Mods */
.navbar{
    border-bottom: 5px solid var(--accent-back);
}
.nav-link{
    color: var(--cream-wht) !important;
    font-weight: 600;
}
.nav-link:hover{
    color: #cac5c5 !important;
}
.btn-primary{
    background-color: #526880;
}
.card{
    background-color: transparent;
    border: 0;
}
/* Login, reset and register form */
.login{
    margin-top: 3rem;
}
.login input{
    width: 20rem;
}
.login label{
    display: block;
}
.password_reset{
    margin-top: 3rem;
}
.password_reset p{
    margin-top: 2rem;
}
.password_reset label{
    display: block;
}
.signup{
    margin-top: 2rem;
}
.signup label{
    display: block;
}
.signup input{
    width: 20rem;
}
.errorlist{
    color: rgb(207, 42, 13);
    font-size: 1.08em;
    font-weight: 800;
}
input[type=email] {
    width: 350px;
}
/* Contact-Form */
.contact-form {
    list-style-type: none;
    padding-left: 0;
}
.contact-form li {
    margin-bottom: 1.5rem;
}
.contact-form label {
    display: block;
    font-weight: bold;
}
.contact-form .helptext {
    display: block;
    font-size: 80%;
}
.list-group-item{
    background-color: inherit;
    font-size: 20px;
}
/* Main-page */
.carousel-caption {
    position: static;
    text-align: left;
}
.carousel-item img {
    /* make so image has max dimensions but resizes nicely */
    width: auto !important;
    height: 100%;
    max-height: 500px;
    margin: 0 auto;
}
/* Footer */
.footer_look {
    background: #375A7F;
    padding: 30px;
    margin-top: auto;
    /* top border with accent back */
    border-top: 5px solid var(--accent-back);
}
.row-border-bottom {
    border-bottom: 1px solid #d7d8d9;
}
/* 备案信息 */
.row-filing {
    padding-top: 5px;
}
.row-filing a {
    color: #FFF;
    margin-right: 10px;
}
.row-filing img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.segment-two h3{
    color: var(--scnd-txt);
    font-size: 22px;
    text-transform: uppercase;   
    margin: 10px 0;
    white-space: nowrap;
}
.segment-two h3:before{
    content: '|';
    color: rgb(16, 71, 129);
    padding-right: 10px;
}
.segment-two ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.segment-two ul li{
    border-bottom: 2px solid rgb(16, 71, 129);
    line-height: 25px;
    padding-bottom: 3px;
}
.segment-two ul li a{
    color: white;
}
.segment-three h3{
    color: var(--scnd-txt);
    font-size: 22px;
    text-transform: uppercase;   
    margin: 10px 0;
}
.segment-three h3:before{
    content: '|';
    color: rgb(16, 71, 129);
    padding-right: 10px;
}
.segment-three a{
    margin-top: 20px;
    margin-left: 30px;
    color: white;
    width: 40px;
    height: 40px;
    display: inline-block;
    border-radius: 30%;
}
.segment-four{
    color: var(--scnd-txt);
}
.segment-four h5{
    margin-top: 10px;
}
/* .segment-four h5:before{
    content: '|';
    color: rgb(16, 71, 129);
    padding-right: 10px;
} */
.segment-four div {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}
.segment-four div div {
    width: 77px;
    height: 77px;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
}

.nav-link.active{
    color: rgb(159, 158, 158) !important;
}