:root{
    --main_color:#5D5EB0;
    --sub_color:#D0E6F3;
    --red_color:#9D2225;
    --font_size_xl:22px;
    --font_size_lg:19px;
    --font_size_md:16px;
    --font_size_sm:13px;
    --font_size:10px;
    --font_main: "Montserrat", sans-serif;
    --font_title: "Abel", sans-serif;
}

body{
    font-family: var(--font_main);
}

.content h1,
.content h2,
.content h3,
.content h4{
    font-family: var(--font_title);
}

.top_nav ul li a{
    font-size: var(--font_size_xl);
    font-weight: bold;
    color: #000;
    font-family: var(--font_title);
}
.top_nav ul li a.active, .top_nav ul li a:hover{
    color: var(--red_color);
}

.i_title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.i_title span {
    display: block;
}
.i_title span.name{
    font-family: "Miss Fajardose", cursive;
    color: var(--main_color);
    padding-top: 35px;
    font-size: 100px;
    line-height: 35px;        
}
.i_title span:last-child{
    text-transform: uppercase;
    font-family: var(--font_title);
    font-weight: bold;
    font-size: 50px;
    color: var(--red_color);
    line-height: 50px;
}


.count{
    background-position: center center;
    background-size: cover;
    background-attachment:fixed;
}
.count .row div span:nth-child(1){
    font-size: 50px;
}

.ser_icon{
    background: var(--sub_color);
    display: flex;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}
.ser_icon svg{
    width: 50px;
    fill: var(--main_color);
}
.menu-list .item.border{
    border: solid 1px #000;
    padding: 10px;
    border-radius: 5px;
}
.menu-list .item img{
    width: 60px;
    height: 60px;
    border-radius: 5px;
}
.menu-list .item .info{
    position: relative;        
    width: 100%;
}
.menu-list .item .info:before{
    content: "";
    width: 100% ;
    height: 1px;
    top: 12px;
    position: absolute;
    border-bottom: dashed 1px #888;
    padding: 0px 5px 0px 5px;
}
.menu-list .item .info :first-child{
    font-size: var(--font_md);
    background: #fff;
    z-index: 1;
    padding-right: 5px;
    line-height: 15px;
}
.menu-list .item .info :last-child{
    font-size: var(--font_md);
    font-weight: bold;
    padding-left: 5px;
    background: #FFF;
    z-index: 1;
    line-height: 15px;
}
.content img{
    max-width: 100%;
    height: auto;
}

.social.fixed {
    position: fixed;
    top: 50%;
    left: 2px;
    z-index: 5;
    transform: translateY(-60%);
}
.social .social_item{
    display: block;
    width: var(--w);
    height: var(--h);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    margin-right: var(--mr);
}
.social.flex-column .social_item{
    margin-right: 0px;
    margin-bottom: var(--mr);
}
.social .social_item svg{
    max-width: 70%;
    max-height: 70%;
}