@font-face {
    font-family: 'Salty Feathers DEMO';
    src: url('../assets/fonts/Salty Feathers Demo.otf') format('opentype');
}
*{
    margin: 0;
}
:root {
    --White: #fff;
    --Egg-white: #F5F5F5;
}

body {
    font-family: 'Josefin Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#WhatsappIcon {
    position: fixed;
    z-index: 5;
    bottom: 3%;
    right: 3%;
    cursor: pointer;
    border-radius: 50%; 
    transition: transform 0.3s ease, filter 0.3s ease; 
    -webkit-filter: drop-shadow(0 0 15px rgba(192, 136, 130, 0.3)) drop-shadow(0 0 15px rgba(192, 136, 130, 0.3));
    filter: drop-shadow(0 0 15px rgba(192, 136, 130, 0.3)) drop-shadow(0 0 15px rgba(192, 136, 130, 0.3));
}

#WhatsappIcon:hover {
    transform: scale(1.1); 
    -webkit-filter: drop-shadow(0 0 20px rgba(192, 136, 130, 0.5)) drop-shadow(0 0 20px rgba(192, 136, 130, 0.5));
    filter: drop-shadow(0 0 20px rgba(192, 136, 130, 0.5)) drop-shadow(0 0 20px rgba(192, 136, 130, 0.5));
}

#Background {
    background-color: black;
    height: auto;
    width: 100%;
    font-size: 1vw;
    position: relative;
}

.PrivacyPolicyMainHeading{
    color: white;
    background-color: black;
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    padding: 40px 0;
}

.PrivacyPolicyContainer{
    background-color: black;
    padding: 0 10%;
}
.PrivacyPolicyHeading{
    color: white;
    background-color: black;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.PrivacyPolicyText {
    color: white;
    font-size: 14px;
    line-height: 1.3;
    padding: 1% 0;
    text-align: justify;
    text-align-last: center;
}


.PrivacyPolicyTextSpan{
    font-weight: 700;
}


#TopContainer {
    display: flex;
    width: 50%;
    justify-content: space-between;
    align-items: center;
    margin-left: 43%;
}



#KaheenIcon {
    width: 198px;
    margin-right: -30px;
    cursor: pointer;
}

#MenuButton {
    cursor: pointer;
}



@media (max-width: 700px) {

    #KaheenIcon {
        transform: translate(-30%);
    }

    #MenuButton {
        margin-left: -10px;
    }

    
}

@media (max-width: 370px) {

    #MenuButton {
        margin-left: -30px;
    }
}







@media (max-width: 370px) {

    #MenuButton {
        margin-left: -30px;
    }
}




/* ----------------------------------------Footer Start----------------------------------------------  */

.OurFounderFooter a {
    /* height: 70dvh; */
    height: 40dvh;
    width: 100%;
    background: #0D0C0D;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit; 
    background: linear-gradient(to left, #0D0C0D 50%, #191718 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: background-position 0.8s ease-out;
}

.OurFounderFooter a:hover {
    background-position: left bottom;
    transition: background-position 0.8s ease-out;
}


a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    color: inherit;
}

.BackToHomeOurFounder {
    margin-left: 1%;
    font-family: Josefin Sans;
    font-size: 24px;
    font-weight: 300;
    line-height: 24px;
    color: #F5F5F5;
    text-decoration: none;
    position: relative;

}

