ul{
    list-style-type: none;
}

section{
    overflow: hidden;
}
.flex {
    display: flex;
    align-items: center;
}

.start {
    display: flex;
    justify-content: start;
}

.center {
    display: flex;
    justify-content: center;
}

.end {
    display: flex;
    justify-content: end;
}

.between {
    display: flex;
    justify-content: space-between;
}

.around {
    display: flex;
    justify-content: space-around;
}

.text-justify {
    text-align: justify;
}

.pointer {
    cursor: pointer;
}

.text-shadow {
    color: #fff;
    filter: drop-shadow(1px 1px 10px #fff);
}


.p-sticky {
    position: sticky;
    top: 0;
}

.h-100vh{
    height: 100vh;
}


.ff-bold {
    font-family: "YekanBakhSemiBold";
}

.ff-extra-bold {
    font-family: "YekanBakhExtraBold";
}

.btn-pink{
    background-color: #ef9db3;
    color: #fff;
}
.btn-pink:hover{
    background-color: #fff;
    color: #ef9db3;
    border: 1px solid #ef9db3;
}
.bg-pink{
    background-color: #fb5789;

}
.text-pink{
    color: #fb5789;

}
.text-blue{
    color: #06377b;

}
.border-pink{
    border: 1px solid #fb5789;
}


.text-blue{
    color: #23346b;
}

