@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&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&family=Special+Elite&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&family=Tiro+Devanagari+Marathi:ital@0;1&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,body{
    height: 100%;
    width: 100%;
    /* overflow: auto; */
    scroll-behavior: smooth;
}

#main{
    position: relative;
    z-index: 10;
    overflow: visible;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0px;
}

#page1{
    width: 100%;
    min-height: 10vh;
    position: relative;
    background-color: #ffffff;
    padding:  0vw 1vw;
    /* margin-bottom: 1vw; */
    
}

#page2{
   width: 100%;
   min-height: 200vh;
   display: flex;
   flex-direction: row;   
}


.privacy-policy-left{
    width: 75vw;
    position: relative;
    background-color: rgb(205, 245, 254 );
    display: flex;
    flex-direction: column;
    align-items: start;

}
.privacy-policy-right {
    position: -webkit-sticky;
    position: sticky !important;
    top: 0;
    background-color: #ffffff;
    width: 100%;
    padding: 2vw 2vw 2vw 0;
    align-self: start;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2vw;
    border-left: 1px solid rgb(172, 172, 172);
}
.privacy-policy-right> h5{
    font-size: 1.5vw;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* background-color: antiquewhite; */
    width: 100%;
    height: 3.5vw;
    padding-right: 1vw;
    border-right: solid thin rgb(172, 172, 172);
    text-decoration: underline 1px gray;
    text-underline-offset: 1.5vw;
    /* background-color: aqua; */
    font-family: 'poppins';
    font-weight: 400;
}
/* .privacy-policy-right> h5::after{
content: " .";

} */
.privacy-policy-right> h5 >a{
    text-decoration: none;
    color: #333;
    
}





.privacy-policy-hero-section{
    position: relative;
    display: flex;
  
    height: 80vh;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1vw;
    padding: 2vw;
    border-bottom: 1px solid #b3b3b3;
}
.privacy-policy-hero-section h1{
    font-family: 'Poppins', sans-serif;

    display: flex;
    font-size: 10vw;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    width: 50vw;
    line-height: 10vw;
    font-weight: 800;
}

.privacy-policy-hero-section p{
    
    display: flex;
    justify-content: flex-end;
    font-family: 'Poppins', sans-serif;
    font-size: 1vw;
    color: #333;
    width: 50vw;
    line-height:1.2vw;
    font-weight: 700;
    text-transform: uppercase;
    text-align: justify;
}

.privacy-policy-discription{
   padding-top: 6vw;
   padding-bottom: 6vw;
   padding-left: 4vw;
   display: flex;
    flex-direction: column;
    gap: 4vw;
    background-color: white;
}
.privacy-description-main{
    position: relative;
    font-family: 'poppins';
    font-size: 2.3vw;
    width: 65vw;
    /* text-align: justify; */
    line-height: 3.1vw;
}

.privacy-description-sub{
    position: relative;
    font-family: 'poppins';
    font-size: 1.3vw;
    width: 45vw;
    line-height: 1.8vw;
    font-weight: 500;
    color: #2A2A2A;
}

.privacy-description-headings{
    position: relative;
    font-family: 'poppins';
    font-size: 5.3vw;
    width: 65vw;
    font-weight:800;
    line-height: 5vw;
    margin-top: 1.5vw;
}
.privacy-description-bullets{
    position: relative;
    font-size: 1.3;
    display: flex;
    flex-direction: column;
    gap: 1.8vw;
}
.heighlight-text{
    /* background-color: black;  */
    color: white;
    display: flex;
}
.heighlight-text a{
    background-color: black;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    padding: 0.3vw 1vw;
    display: flex;
    font-size: 1vw;
    width: 18vw;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;

}
.heighlight-text #arrow{
    background-color: black;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    padding:  0.5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5vw;    
    transition: all 0.3s ease-in-out;

}
.heighlight-text a:hover,
.heighlight-text #arrow:hover,
.heighlight-text:hover a,
.heighlight-text:hover #arrow {
    background-color: rgb(147, 207, 147);
}

.privacy-policy-subheadings-counter{
    color: gray ;
    font-family: 'poppins';
}
.privacy-description-inner-headings{
    position: relative;
    font-family: 'poppins';
    font-size: 3vw;
    width: 45vw;
    font-weight:650;
    line-height: 3.1vw;
    margin-top: -1vw;
}


@media (max-width: 768px) {
#page1{
   padding: 2vw;
}
#page2{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column-reverse;   
 }
 
 
 .privacy-policy-left{
     width: 75vw;
     position: relative;
     background-color: rgb(205, 245, 254 );
     display: flex;
     flex-direction: column;
     align-items: start;
 
 }
 .privacy-policy-right {
     position: -webkit-sticky;
     position: sticky !important;
     top: 0;
     background-color: #ffffff;
     width: 100vw;
     padding: 2vw 2vw 2vw 0;
     min-height: 10vh;
     display: flex;
     flex-direction: row;
     justify-content: center;
     flex-wrap: wrap;
     align-items: center;
     gap: 1vw;
     border: solid thin rgb(172, 172, 172); 
     border-top: none;
     border-left: none;
     border-right: none;
 }
.privacy-policy-right> h5{
    border-radius: 25px;
    text-decoration: none;
    border: solid thin rgb(172, 172, 172);
    width: 35vw;
    gap: 2vw;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* background-color: aqua; */
    cursor: pointer;
}
.privacy-policy-hero-section{
    flex-direction: column;
    height: 40vh;
}
    .privacy-policy-hero-section h1{
        font-size: 20vw;
        line-height: 28vw;
        width: 100%;
        height: 30vh;
        /* background-color: #333; */
    }
    .privacy-policy-hero-section p{
        font-size: 3.5vw;
        line-height: 4vw;
        width: 100%;
    }
    .privacy-description-main{
        font-size: 3.5vw;
        line-height: 4.5vw;
        width: 100%;
    }
    .privacy-description-sub{
        font-size: 2.5vw;
        line-height: 3.5vw;
        width: 100%;
    }
    .privacy-description-headings{
        font-size: 7vw;
        line-height: 7.5vw;
        width: 100%;
        margin-top: 10vw;
        background-color: aquamarine;
    }
    .privacy-description-bullets{
        font-size: 2.5vw;
        line-height: 3.5vw;
    }
    .privacy-description-inner-headings{
        font-size: 4.5vw;
        line-height: 5.5vw;
        width: 100%;
    }
    .privacy-policy-subheadings-counter{
        
        font-size: 3.6vw;
    }
    .heighlight-text a{
        font-size: 2.5vw;
        width: 30vw;
    }
    .heighlight-text #arrow{
        font-size: 3vw;
        width: 4vw;
    }
}