@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}
img{
    max-width: 100%;
}
a{
    color:#121212;
}
mark{
    background-color: transparent;
    color: inherit;
}
.header{height: 100px;display: flex;justify-content: center;align-items: center;position: absolute;top: 0;left: 0;width: 100%;z-index: 1000;display: none;}
.content-section{padding:0 1rem;}
.header-fixed{
    background: linear-gradient(179deg, #FFDEE6 0%, #ffeef2f7 20%, #FFDEE6 100%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
}

h1,h2,h3,h4,h5,h6{
    color:#FF3C6A;
}
h1{
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 0.5em;
    font-weight: 700;
}
h2{
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 0.5em;
    font-weight: 600;
}
h3{
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 0.5em;
    font-weight: 600;
}
.text-primary{
    color: #FF3C6A !important;
}
.badge-primary-outline{
    color: #000000;
    border: 1px solid #FF3C6A;
}
.main{
    display: inline-block;
    width: 100%;
}

.footer{
    background: linear-gradient(179deg, #ffffff70 0%,#ffffff70 20%, #FFDEE6 100%);
    position: relative;
    padding: 4rem 0 1rem 0;
}
.footer .site_info{
    font-weight: 700;
    font-size:1.5rem;
    margin-bottom: .5rem;
    display: inline-block;
}
.footer-menu{
    margin-top: 2rem;
}
.footer-menu ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 15px;

}

@media(max-width: 768px){
    .footer-menu ul{
        flex-direction: column;
        padding: 0;
        margin: 0;
    }
}
.footer-menu ul li{
    list-style: none;
    position: relative;
    padding-left: 20px;
}
.footer-menu ul li a{
    font-weight: 500;
    font-size:1rem;
}


.footer-menu ul li::before {
    content: '•';
    color: #FF3C6A;
    position: absolute;
    left: 0;
    font-size: 1em;
}

.footer-menu ul li:first-child::before {
    display: none;
}

.main_head{

}