/*==================================================
NEOGEN GLOBAL CSS
==================================================*/

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    color:#1B1B1B;

    background:#FFFFFF;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;

    text-rendering:optimizeLegibility;

}

::selection{

    background:#7F3F73;

    color:#fff;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

button{

    border:none;

    outline:none;

    cursor:pointer;

    font-family:inherit;

}

input,
textarea,
select{

    font-family:inherit;

    outline:none;

}

section{

    position:relative;

}

/*==================================
Container
==================================*/

.container{

    width:1400px;

    max-width:95%;

    margin:auto;

}

/*==================================
Typography
==================================*/

h1{

    font-family:'Playfair Display',serif;

}

h2{

    font-family:'Playfair Display',serif;

    font-size:54px;

    line-height:1.2;

    margin-bottom:20px;

}

h3{

    font-size:28px;

}

h4{

    font-size:20px;

}

p{

    color:#666;

    line-height:1.9;

}

/*==================================
Section Padding
==================================*/

.section{

    padding:120px 0;

}

.section-sm{

    padding:80px 0;

}

/*==================================
Section Heading
==================================*/

.section-title{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.section-title span{

    display:inline-block;

    padding:10px 20px;

    border-radius:999px;

    background:#F7F3F7;

    color:#7F3F73;

    font-weight:600;

    margin-bottom:18px;

}

.section-title h2{

    margin-bottom:20px;

}

.section-title p{

    font-size:17px;

}

/*==================================
Buttons
==================================*/

.primary-btn{

    position:relative;

    overflow:hidden;

}

.secondary-btn{

    position:relative;

    overflow:hidden;

}

.ripple{

    position:absolute;

    width:15px;

    height:15px;

    border-radius:50%;

    background:rgba(255,255,255,.45);

    transform:translate(-50%,-50%);

    animation:ripple .7s linear;

}

@keyframes ripple{

    from{

        width:10px;
        height:10px;
        opacity:1;

    }

    to{

        width:500px;
        height:500px;
        opacity:0;

    }

}

/*==================================
Cards
==================================*/

.card{

    background:#fff;

    border-radius:28px;

    box-shadow:

    0 20px 60px rgba(0,0,0,.06);

    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);

}

/*==================================
Glass Card
==================================*/

.glass{

    background:rgba(255,255,255,.72);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.3);

    border-radius:24px;

}

/*==================================
Loader
==================================*/

#preloader{

    position:fixed;

    inset:0;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:999999;

    transition:.5s;

}

#preloader.hide{

    opacity:0;

    visibility:hidden;

}

.loader-circle{

    width:70px;

    height:70px;

    border-radius:50%;

    border:5px solid #EEE;

    border-top:5px solid #7F3F73;

    animation:loader .9s linear infinite;

}

@keyframes loader{

    to{

        transform:rotate(360deg);

    }

}

/*==================================
Progress
==================================*/

.progress-bar{

    position:fixed;

    left:0;

    top:0;

    height:3px;

    width:0;

    background:linear-gradient(
        90deg,
        #7F3F73,
        #B77C90
    );

    z-index:999999;

}

/*==================================
Floating Buttons
==================================*/

.floating-buttons{

    position:fixed;

    right:25px;

    bottom:25px;

    display:flex;

    flex-direction:column;

    gap:15px;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.4s;

    z-index:999;

}

.floating-buttons.show{

    opacity:1;

    visibility:visible;

    transform:none;

}

.floating-buttons a{

    width:62px;

    height:62px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    color:#fff;

    box-shadow:

    0 15px 35px rgba(0,0,0,.18);

    transition:.35s;

}

.floating-buttons a:hover{

    transform:translateY(-6px);

}

.call-btn{

    background:#7F3F73;

}

.whatsapp-btn{

    background:#25D366;

}

.appointment-btn{

    background:#B77C90;

}

/*==================================
Utilities
==================================*/

.text-center{

    text-align:center;

}

.mb-20{

    margin-bottom:20px;

}

.mb-30{

    margin-bottom:30px;

}

.mb-40{

    margin-bottom:40px;

}

.mb-60{

    margin-bottom:60px;

}

.mt-60{

    margin-top:60px;

}

.shadow{

    box-shadow:

    0 20px 60px rgba(0,0,0,.08);

}

.radius{

    border-radius:24px;
}