/*Constants*/ 
@font-face {
  font-family: Foxbot;
  src: url(Fonts/Foxbot.ttf);
}
@font-face {
  font-family: Marcellus;
  src: url(Fonts/Marcellus-Regular.ttf);
}
@font-face {
  font-family: Familijen-reg;
  src: url(Fonts/FamiljenGroteskGF-Regular.ttf);
}

@font-face {
  font-family: Familijen-bold;
  src: url(Fonts/FamiljenGroteskGF-Bold.ttf);
}

@font-face{
  font-family: Familijen-med-i;
src: url(Fonts/FamiljenGroteskGF-MediumItalic.ttf);
} 

*{

  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

input,textarea,button,select,a{
  -webkit-tap-highlight-color: transparent;
}

html ::-webkit-scrollbar{
  display: none;
  cursor: pointer;
}

html{
  min-height: 100%;
  overflow-x: hidden;
  width: 100vw;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  width: 100vw;
}


p {
  margin: 0;
}

input::-webkit-input-placeholder {
  position:absolute;
  font-size: 15px;
  font-family: Familijen-reg;
}

textarea::-webkit-input-placeholder {
  position:absolute;
  font-size: 15px;
  font-family: Familijen-reg;
}

a {
  text-decoration:  none;
}


/* Footer*/
footer { 
  position: relative;
  bottom: 0; 
  left: 0; 
  width: 100vw;
  background-color: #f2c292;
}

.footerSection {
  height: fit-content;
  padding: 2% 0 5% 0;
  display: grid;
  grid-template-columns: 4fr 2fr 1fr;
}

.copyright p {
  font-size: 12px;
  font-family: Familijen-reg;
}

.icon-copyright img{
  width: 30%;
  padding-top: 5%;
}

.img-link {
  display: flex;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
}

.img-link img {
  width: 7%;
}

.img-link p {
  font-family: familijen-reg;
  font-size: 15px;
  padding-left: 10px;
  color: #111111;
}

.img-link img:hover .img-link p, .img-link p:hover{
  color: #e54987;
}

.pageLinks {
  padding-top: 10%;
}
.pageLinks p{
  font-family: familijen-reg;
  color: #111111;
  font-size: 15px;
  padding-top: 20px;
}

.pageLinks p:hover{
  color: #e54987;
}

.footerMobile {
  display: none;
}
/* Others*/
.flex-column-reverse{
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
}

.flex-column{
  display: flex;
  align-items: center;
  flex-direction: column;
}

.flex-row{
  display: flex;
  align-items: center;
  height: 100%;
}

.textRight {
  text-align: right;
}

.textLeft {
  text-align: left;
}

.textCenter {
  text-align: center;
}
.marginAuto {
  margin: auto;
}

.marginLeft {
  margin-left: auto;
}
.marginTop {
  margin-top: 10% !important;
}

.marginCenterLeft {
  margin-left: 50%;
  transform: translateX(-50%);
}

.marginLeft20 {
  margin-left: 10%;
}

.marginRight20 {
  margin-right: 10%;
}

.width60 {
  width: 60%;
}
.width90 {
  width: 90%;
}

.width70 {
  width: 70%;
}

.container {
  max-width: 1536px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  overflow-x: hidden ;
  }

.verticalAlign {
  display: flex;
  align-items: center;
}

.overlayPink {
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 100%;
  background-color: #e54987;
  display: flex;
  align-items: center;
  flex-direction: column;
  transition: transform;
  transition-timing-function: ease-in-out;
  transition-duration: 500ms;
}

.overlayPink img {
  position: relative;
  vertical-align: middle;
  width: 100px;
  animation: rotation 5s infinite linear;
  margin-top: auto;
  margin-bottom: auto;
}

.embedPost {
  margin-top: 5%;
}

/* Back to Top*/
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 98;
  font-size: 18px;
  outline: none;
  background-color: transparent;
  color: #e54987;
  cursor: pointer;
  height: calc(30px + 1.5vw);
  width: calc(30px + 1.5vw);
  border-radius: calc(5px + 0.5vw);
  border: #e54987 4px solid;
  transition: border, background-color,color,opacity,transform,bottom;
  transition-timing-function: ease-in-out;
  transition-duration: 150ms;
  opacity: 0;
}

#myBtn:hover {
  border: #e54987 4px solid;
  background-color: #e54987;
  color: #ffffff;
}

#myBtn p {
  font-size: calc(8px + .5vw);
}

/* Navbar Constant*/
.navMenu{
  display: grid;
  grid-template-columns: 1fr 6fr;
  height: fit-content;
  overflow: visible;
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 88px;
  left: 50%;
  border-radius: 0 0 2rem 2rem;
  transform: translateX(-50%);
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0);
  padding: 15px 2%;
  animation: none;
  justify-content: space-between;
  align-items: center;
}

.navMenuLogo {
  width: fit-content;
  height: 100%;
  transition: transform;
  transition-timing-function: ease-in-out;
  transition-duration: 200ms;
  transform-origin: center;
  display: flex;
  align-items: center;
}

.navMenuLogo img {
  height: 50px;
  padding-left: 20px;
}

.navMenuLogo:hover {
  transform: scale(1.09);
}

.navMenuLogo:active {
  transform: scale(0.91);
}

ul {
  font-family: Familijen-reg;
  list-style: none;
  background-color: transparent;
  margin-left: auto;
}

.navMenu ul li {
  display: inline-block;
  position: relative;
}

.navMenu ul li a {
  display: block;
  padding: 20px 25px;
  text-decoration: none;
  text-align: center;
  font-size: 15px;
  color: #111111;
  transition: background-color ,color, transform;
  transition-timing-function: ease;
  transition-duration: 200ms;
  border-radius: .5rem;
}

.navMenu ul li ul.dropdown li {
  display: block;
}

.navMenu ul li ul.dropdown {
  width: 175%;
  background-color: #fce4e3;
  position: absolute;
  z-index: 14;
  display: none;
  border-radius: .5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.20);
}

.navMenu ul li a:hover {
  background-color: #e54987;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.navMenu ul li a:active {
  transform: scale(0.95);
}

.navMenu ul.dropdown {
  border-radius: 0 0 1rem 1rem;
}

.navMenu ul li:hover ul.dropdown {
  display: block;
}

.menu-btn {
  display: none;
}

.sideBar {
  display: none;
}
/* Font Constant*/
.paragraph {
  margin-top: 5%;
}
.paragraph p {
  font-family: Familijen-reg;
  font-size: 22px;
}

.paragraph i {
  font-family: Familijen-med-i;
}

.paragraph span{
  font-family: Familijen-bold;
  color: #e54987;
}

.paragraph-title p {
  width: 100%;
  margin-top: 5%;
  font-family: Familijen-bold;
  font-size: 45px;
  color: #111111;
}

.paragraph-title-2 p {
  width: 80%;
  font-family: Familijen-bold;
  font-size: 45px;
  color: #111111;
  margin: auto;
}

.paragraph-title span {
  color: #e54987;
}

.paragraph-title-2 span {
  color: #e54987;
}

.paragraph-bold p {
  margin-top: 5%;
  font-family: Familijen-bold;
  font-size: 45px;
  color: #e54987;
}

.paragraph-bold span {
  margin-top: 5%;
  font-family: Familijen-reg;
  font-size: 20px;
  color: #8e8e8e;
}

.paragraph-bold-big p {
  margin-top: 5%;
  font-family: Familijen-bold;
  font-size: 80px;
  color: #e54987;
}

.paragraph-bold-harmony p {
  margin-top: 5%;
  font-family: Familijen-bold;
  font-size: 25px;
  color: #e54987;
}

.paragraph-i p {
  width: 85%;
  margin-top: 5%;
  font-family: Familijen-med-i;
  font-size: 25px;
  margin-left: 50%;
  transform: translateX(-50%);
}
.paragraph-i-big p {
  width: 85%;
  margin-top: 5%;
  font-family: Familijen-med-i;
  font-size: 40 px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.paragraph-list {
  margin-top: 5%;
}

.paragraph-list p {
  font-family: Familijen-reg;
  font-size: 25px;
}

.image {
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 5%;
}

.image img {
  width: 100%;
  border-radius: 1rem;
}

.containText {
  width: 80%;
  margin-left: 5%;
}

.imgParagraphGroup{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 5%;
}

.paragraphGroup {
  width: 100%;
}

.pinkBorderLeft {
  border-left: #e54987 15px solid;
}

.span-2{
  grid-column: span 2;
}

.storyBody {
  width: 100%;
  margin-bottom: 5%;
  overflow: hidden;
}

.StoryGrid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  text-align: justify;
}

.StoryGrid4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 25px;
}

/* Button Constant*/
.sectionButton {
  width: fit-content;
  color: #e54987;
  font-size: 22px;
  font-family: Familijen-reg;
  border: 2px solid #e54987;
  background-color: transparent;
  text-decoration: none;
  border-radius: 2rem;
  margin-top: 20px;
  padding: 10px 10% 10px 10%;
  transition: color, background-color,transform;
  transition-timing-function: ease;
  transition-duration: 200ms;
}

.button a {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.sectionButton:hover {
  background-color: #e54987;
  color: #ffffff;
  cursor: pointer;
  transform: scale(1.05);
}

.sectionButton:active {
  transform: scale(0.95);
}

.sectionButton-2 {
  width: fit-content;
  color: #ffffff;
  font-size: 22px;
  font-family: Familijen-reg;
  border: 2px solid #ffffff;
  background-color: transparent;
  text-decoration: none;
  border-radius: 2rem;
  margin-top: 20px;
  padding: 10px 10% 10px 10%;
  transition: color, background-color,transform;
  transition-timing-function: ease;
  transition-duration: 200ms;
}

.sectionButton-2:hover {
  background-color: #ffffff;
  color: #e54987;
  cursor: pointer;
  transform: scale(1.05);
}

.sectionButton-2:active {
  transform: scale(0.95);
}
/*Footer Constant*/
.footer {
  position: fixed;
  width: 100vw;
  height: 500px;
  background-color: #f2c292;
}

/* Landing Page */
.landingPage {
  width: 100%;
}

.heroBanner {
  width: 100%;
  height: 800px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.heroText {
  height: fit-content;
  margin-left: 10%;
  animation: none;
  opacity: 0;
}

.heroTextMain{
  font-family: Foxbot;
  color: #e54987;
  font-size: 70px;
  width: 100%;
}

.heroTextSub {
  font-family: Familijen-reg;
  color: #111;
  font-size: 25px;
  width: 70%;
  margin-top: 15px;
}
.heroImg {
  width: 100%;
}

.landingHeroImg {
  opacity: 0;
  transform: translateY(20%);
}

.heroImg img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
}

.pinkBg {
  width: 100%;
  background-color: #fce4e3;
  padding-top: 30px;
  padding-bottom: 30px;
}

.pinkBgNeon {
  width: 100%;
  background-color: #e54987;
  padding-top: 30px;
  padding-bottom: 30px;
}

.videoSection {
  width: 100%;
  height: fit-content;
  margin-top: 5%;
}

.videoLanding {
  width: 100%;
  height: fit-content;
  padding-bottom: 5%;
}

.videoMargin {
  height: fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.videoLanding iframe {
  width: 1280px;
  height: 720px;
  border-radius: .5rem;
}

.videoSection iframe {
  width: 1280px;
  height: 720px;
  border-radius: .5rem;
}

.infoPCOS {
  height: fit-content;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: none;
  padding-top: 5%;
  padding-bottom: 5%;
}

.infoPCOSGraphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: none;
}
.infoPCOSGraphic p {
  font-family: familijen-reg;
  font-size: 120px;
  width: 80%;
  line-height: 110px;
}

.infoPCOSGraphic span {
  font-family: familijen-bold;
  font-size: 120px;
  width: 80%;
  color: #e54987;
}

.infoPcosText {
  transform: translateY(50%);
  transition:  transform, opacity;
  transition-duration: 1.5s;
  opacity: 0;
}

.ladySymbol {
  margin-top: 35px;
}

.ladySymbol img {
  width: 60px;
}

.ladySymbolPink {
  transform: translateX(-950%);
  transition:  transform, opacity;
  transition-duration: 1.5s;
  opacity: 0;
}

.landingImgTextGroup {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 10%;
}

.whatIsPCOS {
  height: fit-content;
  width: 50%;
  background-color: #e54987;
  padding: 30px 25px 30px 25px;
  border-radius: 1rem;
  margin-left: 50%;
  transform: translateX(-50%);
}

.whatIsPCOSMain {
  font-family: familijen-bold;
  font-size: 35px;
  color: #ffffff;
}

.whatIsPCOSSub {
  font-family: familijen-reg;
  font-size: 20px;
  color: #ffffff;
  margin-top: 10px;
}

.iceBerg {
  margin-top: 5%;
  overflow: hidden;
}

.iceBergImg {
  transform: translateY(20%);
  transition:  transform, opacity;
  transition-duration: 1.5s;
  opacity: 0;
  padding-bottom: 5%;
  padding-top: 5%;
}

.iceBerg a {
  width: 100%;
  height: fit-content;
}

.shareStoryPadding {
  padding-top: 5%;
  padding-bottom: 5%;
}

.redirectButton {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.shareYourStory {
  height: fit-content;
  transform: translateY(20%);
  transition: transform, opacity;
  transition-duration: 1s;
  opacity: 0;
}

.shareStorySpurText {
  width: 60%;
  margin: auto;
}

.shareYourStory img{
  width: 100%;
  margin-bottom: 5%;
  margin-top: 5%;
}

.map{
  width: 100%;
  height: 100%;
  position: relative;
}

.buttoncontainer {
  width: 20%;
  position: absolute;
  top: 83%;
  left: 44%;
}

.getInTouchButton {
  width: 100%;
  transition-timing-function: ease;
  transition: transform;
  transition-duration: 300ms;
  pointer-events: none;
}

.getInTouchButton img{
  width: 100%;
  transition-timing-function: ease;
  transition: transform;
  transition-duration: 300ms;
  pointer-events: all;
  object-fit: cover;
}

.getInTouchButton img:hover{
  transform: scale(1.07);
  transition-timing-function: ease;
  transition: transform;
  transition-duration: 300ms;
}

.getInTouchButton img:active{
  transform: scale(0.93);
  transition-timing-function: ease;
  transition: transform;
  transition-duration: 300ms;
}

.whoWeAre {
  width: 100%;
  padding-bottom: 10%;
}

.whoWeAre img {
  width: 40%;
  margin-left: auto;
  margin-right: auto;
}

.textGroup {
  width: 60%;
  margin-left: 50%;
  transform: translateX(-50%);
  font-family: familijen-reg;
}

.textGroup span {
  font-size: 25px;
}

.testimonials {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 5%;
}

.testimonials img {
  width: 80%;
}


/* Ezine Page */
.eZinePage {
  width: 100%;  
  padding: 0 0 5% 0;
}

.eZineText {
  width: 100%;
}

.eZineImageTextGroup {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.eZineContainer {
  padding-left: 10%;
  text-align: justify;
}

.volume1 {
  width: fit-content;
  padding: 10% 0 10% 0;
}

/* Explore PCOS  and Share Your Story Pages */
/* Constants */

.paragraph img {
  width: 40px;
}
.seperation {
  width: 100%;
  border-bottom: #e54987 1px solid;
  margin-top: 5%;
}

.explorePcosPage {
  width: 100%;
}

.exploreList {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  margin-top: 6%;
  padding: 1.5%;
  margin-bottom: 2%;
}

.exploreList a {
  text-decoration: none;
}

.listItem {
  width: 100%;
  background-color: #ededed;
  padding: 20px;
  border-radius: 1rem;
  transition:  transform, background-color;
  transition-duration: 400ms;
}

.listItem img {
  width: 100%;
  border-radius: 1rem;
  background-color: #ffffff;
}

.tag {
  margin-top: 3%;
  width: fit-content;
  background-color: #e54987;
  border-radius: 3rem;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  padding: 1% 5% 1% 5%;
  transition: color, background-color;
  transition-duration: 200ms;
}

.tag p {
  font-size: 15px;
  font-family: Familijen-reg;
}

.itemName p{
  font-family: Familijen-bold;
  font-size: 25px;
  color: #e54987;
  transition: color;
  transition-duration: 200ms;
}

.itemNameSub p {
  font-family: Familijen-reg;
  font-size: 15px;
  color: #e54987;
  margin-bottom: 5%;
  transition: color;
  transition-duration: 200ms;
}

.listItem:hover {
  background-color: #e54987;
  transform: scale(1.05);
  
}

.listItem:hover > .tag {
  background-color: #ffffff;
  color: #e54987;
}

.listItem:hover > .itemName p, .listItem:hover > .itemNameSub p {
  color: #ffffff;
}

.storyMargin {
  width: 80%;
  margin-left: 50%;
  transform: translateX(-50%);
}


.heroThumbnail {
  width: 100%;
  text-align: center;
}

.heroThumbnail img {
  width: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  animation: none;
  transform: translateY(-5%);
  opacity: 0;
  margin-top: 10%;
}

.shareIcons {
  width: 100%;
  padding-top: 3%;
  padding-bottom: 10px;  
}

.shareButtons {
  width: fit-content;
}

.shareButtons .fab{
  transition-timing-function: ease;
  transition: transform;
  transition-duration: 300ms;
  color: #e54987;
  text-align: center;
  width: fit-content;
  padding: 0 20px 0 20px;
}



.shareButtons .fab:hover {
  transform: scale(1.09);
}

.shareButtons .fab:active {
  transform: scale(0.93);
}

.shareButtons i {
  font-size: 35px;
  text-align: center;
}

.magazineRedirect {
  padding-bottom: 4%;
}

.magazineRedirect .paragraph p a {
  text-decoration: underline;
  text-decoration-color: #e54987;

}

.videoTextGroup {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 5%;
}

.videoSection-2 {
  padding-bottom: 5%;
}

.videoSection-2 iframe {
  height: 447px;
  width: 794px;
  margin-left: 50%;
  transform: translateX(-50%);
  border-radius: 0.5rem;
}

/* Explore PCOS */
.readMore {
  margin-top: 10%;
  margin-bottom: 10%;
}

.readMoreText p{
  font-family: Familijen-bold;
  font-size: 35px;
  color: #e54987;
}

.smallImg img{
  width: 70%;
  margin: auto;
}

.smallerImg img{
  width: 60%;
  margin: auto;
}

.readMoreList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  margin: 10px;
  gap: 15px;
  height: fit-content;
}

.readMoreList img {
  width: 100%;
  object-fit: cover;
  border-radius: .5rem;
  z-index: 1;
}

.readMoreList img:hover a {
  color: #e54987;
}

.readMoreList a {
  text-decoration: none;
  color: #111111;
  font-family: familijen-reg;
  font-size: 22px;
  transition: color;
  transition-duration: 200ms;
}

.readMoreList a:hover {
  color: #e54987;
}

.embedPost {
  margin-left: 50%;
  transform: translateX(-50%);
}

/* Share Your Story */
.shareStoryList {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  margin-top: 6%;
  padding: 1.5%;
  margin-bottom: 5%;
  z-index: 8;
}

.petition {
  padding-bottom: 5%;
  transition-timing-function: ease;
  transition: transform;
  transition-duration: 300ms;
}

.petition:hover{
  transform: scale(1.05);
}

.petition:active{
  transform: scale(0.95);
}

/* Comment Section */
.post {
  margin-bottom: 80px;
}

.post-likes {
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  width: fit-content;
}

.post-likes i {
  color: #e54987;
  width: fit-content;
  margin-left: 15px;
}

.post-likes h2 {
  font-family: familijen-reg;
  width: fit-content;
  font-size: 22px;
  color: #e54987;
  margin-left: 5px;
}

.post-likes h1 {
  font-family: familijen-reg;
  width: fit-content;
  font-size: 22px;
  color: #111111;
  margin-left: 5px;
}

.post-likes b {
  font-family: familijen-bold;
}


.heartCount {
  display: flex;
  align-items: center;
}

.comments {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 100%;
  margin-bottom: 40px;
  max-height: 400px;
}

.comment {
  display: flex;
  align-items: center;
  padding: 10px 50px 10px 20px;
  gap: 20px;
  position: relative;
}

.commentName {
  font-size: 18px;
}

.commentMessage{
  font-size: 15px;
}

.comment h3, .comment p {
  font-family: Familijen-reg;
}

.noComments {
  font-family: Familijen-reg;
}

.comment:nth-child(2n) {
  background-color: #efefef;
}

.comment-liked {
  color: #e54987;
}

.date {
  margin-top: 4px;
  font-size: calc(5px + 0.3vw);
  font-style: italic;
  color: #999;
}

.delete {
  margin-left: auto;
  position: absolute;
  right: 20px;
}

.comment .delete-button {
  border: none;
  background-color: #999;
  color: #fcfcfc;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}

.comment:hover .delete-button {
  display: block;

}

.comment:hover .delete-button:hover {
  background-color: #e54987;
  transform: scale(1.09);
}

.commentsForm {
  padding-bottom: 10px;
}

.commentsList {
  margin-top: 10px;
  height: 450px;
  overflow-y: visible;
}
.commentsList::-webkit-scrollbar {
  display: block;
}

.commentsList::-webkit-scrollbar-thumb {
  background: #e54987; 
  border-radius: 1rem;
}

.commentsList::-webkit-scrollbar-track {
  background: #fce4e3; 
  border-radius: 1rem;
}

.like-postButton {
  display: flex;
  align-items: center;
  gap: 20px;
}

/********/
/* FORM */
/********/

.comment-form {
  max-width: 100%;
  display: grid;
  grid-template-columns: 7fr 2fr;
  gap: 20px;
}

.form-textfield {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form-textfield input[type="text"] {
  height: 40px;
}

.form-textfield textarea {
  margin-top: 2%;
}

.form-textfield input[type="text"],
.form-textfield textarea {
  font-family: 'Familjen Grotesk', sans-serif;
  padding: 10px 14px;
  border: transparent 2px solid;
  border-radius: 1rem;
  background-color: #fce4e3;
  border-radius: 1rem;
}

.form-textfield input[type="text"]:focus,
.form-textfield textarea:focus {
  outline: none!important;
  border: #e54987 2px solid;
}

.commentsForm p{
  color: #e54987;
  font-size: 35px;
  font-family: Familijen-bold;
  padding-bottom: 1%;
  padding-top: 1%;
}

#id-liked {
  display: none;
}

#icon {
  color: #e54987;
  transition: transform;
  transition-timing-function: ease;
  transition-duration: 200ms;
  cursor: pointer;
}

#icon:hover {
  transform: scale(1.09);
}

#icon:active {
  transform: scale(0.91);
}

.form-check p {
  font-size: 20px !important;
}

.form-button {
  width: fit-content;
  color: #e54987;
  font-size: 22px;
  font-family: Familijen-reg;
  border: 5px solid #e54987;
  background-color: transparent;
  text-decoration: none;
  border-radius: 2rem;
  padding: 10px 15px 10px 15px;
  transition: color, background-color,transform;
  transition-timing-function: ease;
  transition-duration: 200ms;
  outline: none !important;
}

.form-button:hover {
  background-color: #e54987;
  color: #ffffff;
  cursor: pointer;
  transform: scale(1.05);
}

.form-button:active {
  transform: scale(0.95);
}

.deleteconfirm {
  margin-top: auto;
  margin-bottom: auto;
  height: 100%;
  display: flex;
  align-items: center;
}

.deleteInput {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.deleteInput input {
  width: 100%;
  height: 40px;
  background-color: #fce4e3;
  border-radius: 1rem;
  border: none;
  margin-top: 2%;
  text-indent: 15px;
  border: transparent 2px solid;
}

.deleteInput input:focus {
  outline: none !important;
  border: #e54987 2px solid;
}

.boxContainer {
  background-color: #fce4e3;
  width: 60%;
  padding: 3% 10px;
  border-radius: 1rem;
}

.boxContainer h4{
  font-family: Familijen-reg;
  color: #8e8e8e;
}

.deletebg {
  width: 100vw;
  height: 100vh;
  background-color: #e54987;
}

.arrowBack {
  margin-bottom: 50px;
  margin-left: 10px;
  color: #e54987;
  transition: transform;
  transition-timing-function: ease;
  transition-duration: 200ms;
}

.arrowBack:hover {
  transform: scale(1.20);
}

.arrowBack:active {
  transform: scale(0.80);
}

/* Contact Page */
.contactPage {
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contactPageGroup {
  height: fit-content;
  padding-top: 10%;
}

.contactPageImg {
  width: fit-content;
  margin-left: auto;
}

.contactPageImg img {
  width: 200px;
}

.socialMediaLinks {
  width: fit-content;
  padding-top: 5%;
}

.socialImg img {
  width: 35px;
}

.petition {
  width: 80%;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 5%;
}

.directMail {
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 5%;
}

.form-email {
  width: 60%;
  height: 100%;
}

.form-email input {
  width: 100%;
  height: 40px;
  background-color: #fce4e3;
  border-radius: 1rem;
  border: none;
  margin-top: 2%;
  text-indent: 15px;
  border: transparent 2px solid;
}

.form-email textarea {
  width: 100%;
  background-color: #fce4e3;
  border-radius: 1rem;
  border: none;
  margin-top: 2%;
  text-indent: 15px;
  padding-top: 10px;
  height: 400px;
  border: transparent 2px solid;
}

.form-email textarea:focus, .form-email input:focus {
  outline: none !important;
  border: #e54987 2px solid;
}
/* Who We Are */

.aboutPage {
  width: 100vw;
}

.whoWeAreBody {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 5%;
}

.whoWeAreBody img {
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
}

.whoWeAreText-2 {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(20%);
}

.whoWeAreText-2 {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(20%);
}

.whoWeAreTextMain {
  font-family: Familijen-bold;
  color: #e54987;
  font-size: 70px;
}

.whoWeAreTextSub {
  font-family: Familijen-reg;
  color: #111111;
  font-size: 25px;
  margin-top: 5%;
}

.valuesMain {
  margin-top: 10%;
}

.valuesList {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  margin-bottom: 10%;
}

.valuesListGroup {
  margin-top: 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.valuesListGroup img {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.valuesListText {
  font-family: Familijen-reg;
  color: #111111;
  font-size: 25px;
  width: 80%;
}

.shareStoryRedirect {
  width: 100%;
}

.redirectText {
  width: 40%;
}

/* Collaborators */
.collaboratorsPage {
  padding-bottom: 5%;
}

.collaboratorContainer {
  padding-left: 10%;
}

.collaboratorsPage img{
  border-radius: 1rem;
}

.sectionButtonCollab {
  width: 100%;
  color: #e54987;
  font-size: 22px;
  font-family: Familijen-reg;
  border: 2px solid #e54987;
  background-color: transparent;
  text-decoration: none;
  border-radius: 2rem;
  padding: 10px 10% 10px 10%;
  transition: color, background-color,transform;
  transition-timing-function: ease;
  transition-duration: 200ms;
}

.sectionButtonCollab:hover {
  background-color: #e54987;
  color: #ffffff;
  cursor: pointer;
  transform: scale(1.05);
}

.sectionButtonCollab:active {
  transform: scale(0.95);
}

.collabGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
}

.collabraorsSocials {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 10%;
}

.collabraorsSocials p {
  font-size: calc(10px + 0.5vw);
}

.collabraorsSocials .fab{
  color: #e54987;
  transition-timing-function: ease;
  transition: transform;
  transition-duration: 300ms;
  padding: 0 10px 0 10px;
}

.collabraorsSocials .fab:hover {
  transform: scale(1.09);
}

.collabraorsSocials .fab:active {
  transform: scale(0.93);
}



  /* 2xl */
  @media (max-width: 1536px) {
    .container {
      max-width: 1280px;
    }

    /*NavBar*/
    .navMenu{
      padding: 10px 2%;
      height: 75px;
    }

    .navMenuLogo img {
      height: 40px;
    }
    
    .navMenu ul li a {
      display: block;
      padding: 20px 25px;
      font-size: 12px;
    }
    
    .navMenu ul li ul.dropdown {
      width: 175%;
      background-color: #fce4e3;
      position: absolute;
      z-index: 14;
      display: none;
      border-radius: .5rem;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.20);
    }

    /* Button Constant*/
    .sectionButton {
      font-size: 15px;
      border: 2px solid #e54987;
      margin-top: 20px;
      padding: 10px 10% 10px 10%;
    }

    .sectionButtonCollab {
      font-size: 15px;
      border: 2px solid #e54987;
    }

    .sectionButton-2 {
      font-size: 15px;
      border: 2px solid #ffffff;
      margin-top: 20px;
      padding: 10px 10% 10px 10%;
    }

    /* Footer */
    
    .img-link {
      padding-top: 5px;
      padding-bottom: 5px;
    }
    
    .img-link p {
      font-size: 12px;
      padding-left: 10px;
    }

    .pageLinks p{
      font-size: 12px;
      padding-top: 15px;
    }

    /* Font Constant*/
    .paragraph p {
      font-family: Familijen-reg;
      font-size: 18px;
    }

    .paragraph-title p {
      font-size: 35px;
    }

    .paragraph-title-2 p {
      font-size: 35px;
    }

    .paragraph-bold p {
      font-size: 35px;
    }

    .paragraph-bold-big p {
      font-size: 80px;
    }

    .paragraph-i p {
      font-size: 22px;
    }
    .paragraph-i-big p {
      font-size: 40px;
    }

    .paragraph-list p {
      font-size: 18px;
    }

     /* Landing Page */
    .heroBanner {
      height: 700px;
    }

    .heroTextMain{
      font-size: 60px;
    }

    .heroTextSub {
      font-size: 22px;
      margin-top: 15px;
    }

    .videoLanding iframe {
      width: 1080px;
      height: 608px;
    }

    .videoSection iframe {
      width: 1080px;
      height: 608px;
    }

    .videoSection-2 iframe {
      width: 673px;
      height: 379px;
    }
    

    .infoPCOSGraphic p {
      font-family: familijen-reg;
      font-size: 90px;
      width: 75%;
      line-height: 80px;
    }

    .infoPCOSGraphic span {
      font-family: familijen-bold;
      font-size: 90px;
      width: 80%;
      color: #e54987;
    }

    .ladySymbol {
      margin-top: 35px;
    }

    .ladySymbol img {
      width: 45px;
    }

    .whatIsPCOS {
      height: fit-content;
      width: 50%;
      background-color: #e54987;
      padding: 30px 25px 30px 25px;
      border-radius: 1rem;
      margin-left: 50%;
      transform: translateX(-50%);
    }

    .whatIsPCOSMain {
      font-family: familijen-bold;
      font-size: 25px;
      color: #ffffff;
    }

    .whatIsPCOSSub {
      font-family: familijen-reg;
      font-size: 15px;
      color: #ffffff;
      margin-top: 10px;
    }

    .iceBerg {
      margin-top: 5%;
      overflow: hidden;
    }

    .iceBergImg {
      transform: translateY(20%);
      transition:  transform, opacity;
      transition-duration: 1.5s;
      opacity: 0;
      padding-bottom: 5%;
      padding-top: 5%;
    }

    .iceBerg a {
      width: 100%;
      height: fit-content;
    }

    .redirectButton {
      display: flex;
      align-items: center;
      flex-direction: column;
    }

    .shareYourStory {
      overflow-y: hidden;
    }

    .shareStorySpurText {
      width: 60%;
      margin: auto;
    }

    .shareYourStory img{
      width: 100%;
    }

    .whoWeAre img {
      width: 40%;
    }

    .textGroup {
      width: 60%;
    }

    .textGroup span {
      font-size: 25px;
    }

    .testimonials img {
      width: 80%;
    }

    /* Explore PCOS  and Share Your Story Pages */
    /* Constants */ 
    .exploreList {
      gap: 20px;
    }
    
    .listItem {
      padding: 15px;
    }
    
    .tag p {
      font-size: 12px;
    }
    
    .itemName p{
      font-size: 20px;
    }
    
    .itemNameSub p {
      font-size: 12px;
    }
  
    .heroThumbnail {
      width: 100%;
      text-align: center;
    }
    
    .heroThumbnail img {
      margin-top: 8%;
    }
    
    .shareIcons {
      width: 100%;
      padding-top: 3%;
      padding-bottom: 10px;  
    }
    
    /* Explore PCOS */
    .readMore {
      margin-top: 10%;
      margin-bottom: 10%;
    }
    
    .readMoreText p{
      font-size: 35px;
    }
    
    .readMoreList {
      margin: 10px;
      gap: 10px;
    }
    
    .readMoreList a {
      font-size: 18px;
    }
  
    
    /* Share Your Story */
    .shareStoryList {
      gap: 20px;
    }
    
    /* Comment Section */
    .post {
      margin-bottom: 80px;
    }
    
    .post-likes i {
      margin-left: 15px;
    }
    
    .post-likes h2 {
      font-size: 18px;
    }
    
    .post-likes h1 {
      font-size: 18px;
    }
    
    .comments {
      gap: 10px;
      max-height: 400px;
    }
    
    .comment {
      padding: 10px 50px 10px 20px;
    }

    .commentName {
      font-size: 15px;
    }
    
    .commentMessage{
      font-size: 12px;
    }
    
    .comment .delete-button {
      width: 30px;
      height: 30px;
    }
    
    .commentsList {
      height: 350px;
    }
    
    .like-postButton {
      gap: 20px;
    }
    
    /********/
    /* FORM */
    /********/
    
    .comment-form {
      gap: 20px;
    }

    .form-textfield input[type="text"] {
      height: 40px;
    }
    
    .form-textfield input[type="text"],
    .form-textfield textarea {
      padding: 10px 14px;
    }
    
    .commentsForm p{
      font-size: 25px;
    }

    .form-check p {
      font-size: 18px !important;
    }
    
    .form-button {
      font-size: 15px;
      border: 5px solid #e54987;
      padding: 10px 15px 10px 15px;
    }
    
    .deleteInput input {
      height: 40px;
    }
    
    .boxContainer {
      background-color: #fce4e3;
      width: 60%;
      padding: 3% 10px;
      border-radius: 1rem;
    }
    
    .arrowBack {
      margin-bottom: 50px;
      margin-left: 10px;
    }

    /* Contact Page */

    input::-webkit-input-placeholder {
      font-size: 12px;
    }
    
    textarea::-webkit-input-placeholder {
      font-size: 12px;
    }

    .contactPageImg img {
      width: 150px;
    }

    .socialImg img {
      width: 35px;
    }

    .petition {
      width: 80%;
      margin-left: 5%;
    }

    .form-email input {
      height: 35px;
      margin-top: 2%;
      text-indent: 15px;
      border: transparent 2px solid;
    }

    .form-email textarea {
      width: 100%;
      text-indent: 15px;
      height: 300px;
    }

    .form-email textarea:focus, .form input:focus {
      outline: none !important;
      border: #e54987 2px solid;
    }

    /* Who We Are */
    .whoWeAreTextMain {
      font-size: 60px;
    }

    .whoWeAreTextSub {
      font-size: 25px;
      margin-top: 5%;
    }

    .valuesMain {
      margin-top: 10%;
    }

    .valuesListText {
      font-size: 25px;
      width: 80%;
    }

    /* Collaborators */
    .collaboratorsPage img{
      border-radius: 1rem;
    }
    .collabraorsSocials {
      height: 40px;
    }
  }



  /* xl */
  @media (max-width: 1280px) {
    .container {
      max-width: 1024px;
    }

    /*NavBar*/
    .navMenu{
      padding: 10px 2%;
      height: 62px;
    }

    .navMenuLogo img {
      height: 35px;
    }
    
    .navMenu ul li a {
      display: block;
      padding: 15px 20px;
      font-size: 10px;
    }
    
    .navMenu ul li ul.dropdown {
      width: 175%;
      background-color: #fce4e3;
      position: absolute;
      z-index: 14;
      display: none;
      border-radius: .5rem;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.20);
    }

    /* Button Constant*/
    .sectionButton {
      font-size: 15px;
      border: 2px solid #e54987;
      margin-top: 20px;
      padding: 10px 10% 10px 10%;
    }
    .sectionButton-2 {
      font-size: 15px;
      border: 2px solid #ffffff;
      margin-top: 20px;
      padding: 10px 10% 10px 10%;
    }

    /* Footer */
    .icon-copyright img{
      width: 30%;
      padding-top: 5%;
    }
    
    .img-link {
      padding-top: 5px;
    }
    
    .img-link p {
      font-size: 12px;
      padding-left: 10px;
    }

    .pageLinks {
      margin-left: 10%;
    }

    .pageLinks p{
      font-size: 12px;
      padding-top: 15px;
    }

    /* Font Constant*/
    .paragraph p {
      font-family: Familijen-reg;
      font-size: 15px;
    }

    .paragraph-title p {
      font-size: 25px;
    }

    .paragraph-bold p {
      font-size: 25px;
    }

    .paragraph-title-2 p {
      font-size: 25px;
    }

    .paragraph-bold-big p {
      font-size: 70px;
    }

    .paragraph-i p {
      font-size: 22px;
    }
    .paragraph-i-big p {
      font-size: 30px;
    }

    .paragraph-list p {
      font-size: 15px;
    }

      /* Landing Page */
    .heroBanner {
      height: 550px;
    }

    .heroTextMain{
      font-size: 45px;
    }

    .heroTextSub {
      font-size: 18px;
      margin-top: 15px;
    }


    .videoLanding iframe {
      width: 824px;
      height: 464px;
    }

    .videoSection iframe {
      width: 824px;
      height: 464px;
    }

    .videoSection-2 iframe {
      width: 536px;
      height: 302px;
    }

    .infoPCOSGraphic p {
      font-family: familijen-reg;
      font-size: 70px;
      width: 75%;
      line-height: 80px;
    }

    .infoPCOSGraphic span {
      font-family: familijen-bold;
      font-size: 70px;
      width: 80%;
      color: #e54987;
    }

    .ladySymbol {
      margin-top: 35px;
    }

    .ladySymbol img {
      width: 35px;
    }

    .whatIsPCOS {
      height: fit-content;
      width: 50%;
      background-color: #e54987;
      padding: 30px 25px 30px 25px;
      border-radius: 1rem;
      margin-left: 50%;
      transform: translateX(-50%);
    }

    .whatIsPCOSMain {
      font-size: 20px;
    }

    .whatIsPCOSSub {
      font-size: 12px;
      margin-top: 10px;
    }

    /* Explore PCOS  and Share Your Story Pages */
    /* Constants */ 
    .exploreList {
      gap: 20px;
    }
    
    .listItem {
      padding: 12px;
    }
    
    .tag p {
      font-size: 10px;
    }
    
    .itemName p{
      font-size: 18px;
    }
    
    .itemNameSub p {
      font-size: 12px;
    }
  
    .heroThumbnail {
      width: 100%;
      text-align: center;
    }
    
    .heroThumbnail img {
      margin-top: 10%;
    }
    
    /* Explore PCOS */
    .readMore {
      margin-top: 10%;
      margin-bottom: 10%;
    }
    
    .readMoreText p{
      font-size: 35px;
    }
    
    .readMoreList {
      margin: 10px;
      gap: 10px;
    }
    
    .readMoreList a {
      font-size: 18px;
    }
  
    
    /* Share Your Story */
    .shareStoryList {
      gap: 20px;
    }
    
    /* Comment Section */
    .post {
      margin-bottom: 80px;
    }
    
    .post-likes i {
      margin-left: 15px;
    }
    
    .post-likes h2 {
      font-size: 15px;
    }
    
    .post-likes h1 {
      font-size: 15px;
    }
    
    .comments {
      gap: 10px;
      max-height: 400px;
    }
    
    .comment {
      padding: 10px 50px 10px 20px;
    }
    
    .comment .delete-button {
      width: 30px;
      height: 30px;
    }
    
    .commentsList {
      height: 350px;
    }
    
    .like-postButton {
      gap: 20px;
    }
    
    /********/
    /* FORM */
    /********/
    
    .comment-form {
      gap: 20px;
    }

    .form-textfield input[type="text"] {
      height: 40px;
    }
    
    .form-textfield input[type="text"],
    .form-textfield textarea {
      padding: 10px 14px;
    }
    
    .commentsForm p{
      font-size: 25px;
    }

    .form-check p {
      font-size: 18px !important;
    }
    
    .form-button {
      font-size: 15px;
      border: 5px solid #e54987;
      padding: 10px 15px 10px 15px;
    }
    
    .deleteInput input {
      height: 40px;
    }
    
    .boxContainer {
      background-color: #fce4e3;
      width: 60%;
      padding: 3% 10px;
      border-radius: 1rem;
    }
    
    .arrowBack {
      margin-bottom: 50px;
      margin-left: 10px;
    }

    /* Contact Page */

    input::-webkit-input-placeholder {
      font-size: 12px;
    }
    
    textarea::-webkit-input-placeholder {
      font-size: 12px;
    }

    .contactPageImg img {
      width: 125px;
    }

    .socialImg img {
      width: 25px;
    }

    .petition {
      width: 80%;
      margin-left: 5%;
    }

    .form-email input {
      height: 35px;
      margin-top: 2%;
      text-indent: 15px;
      border: transparent 2px solid;
    }

    .form-email textarea {
      width: 100%;
      text-indent: 15px;
      height: 200px;
    }

    .form-email textarea:focus, .form input:focus {
      outline: none !important;
      border: #e54987 2px solid;
    }

    /* Who We Are */
    .whoWeAreTextMain {
      font-size: 50px;
    }

    .whoWeAreTextSub {
      font-size: 25px;
      margin-top: 5%;
    }

    .valuesMain {
      margin-top: 10%;
    }

    .valuesListText {
      font-size: 25px;
      width: 80%;
    }

    /* Collaborators */
    .collaboratorsPage img{
      border-radius: 1rem;
    }
    .collabraorsSocials {
      height: 40px;
    }
  }
  





  /* lg */
  @media (max-width: 1024px) {
    .container {
      max-width: 768px;
    }

    #myBtn {
      background-color: #e54987;
      color: #ffffff;
      border: #e54987 4px solid;
    }
    
    /* Navbar Constant*/
    .navMenu{
      display: grid;
      grid-template-columns: 1fr 6fr;
      height: fit-content;
      overflow: visible;
      position: fixed;
      z-index: 10;
      width: 100%;
      height: 70px;
      left: 50%;
      border-radius: 0 0 2rem 2rem;
      transform: translateX(-50%);
      background-color: #ffffff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0);
      padding: 15px 2%;
      animation: none;
      justify-content: space-between;
      align-items: center;
    }
    
    .navMenuLogo {
      width: fit-content;
      height: 100%;
      transition: transform;
      transition-timing-function: ease-in-out;
      transition-duration: 200ms;
      transform-origin: center;
      display: flex;
      align-items: center;
    }
    
    .navMenuLogo img {
      height: 40px;
    }
    
    .navMenu ul {
      display: none;
    }
    
    .menu-btn {
      display: block;
      width: fit-content;
      margin-left: auto;
      margin-right: 20px;
      transition: transform;
      transition-timing-function: ease-in-out;
      transition-duration: 200ms;
      cursor: pointer;
    }
    
    .menu-btn:hover {
      transform: scale(1.05);
    }
    
    .menu-btn:active {
      transform: scale(0.80);
    }
    
    .menu-btn img{
      width: 40px;
    }
    
    .sideBar {
      display: block;
      width: 50%;
      height: 100vh;
      position: fixed;
      background-color: #ffffff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.20);
      z-index: 20;
      right: 0;
      transform: translateX(100%);
      transition: transform 450ms cubic-bezier(.13,.53,.38,.97);
    }

    body[data-nav="true"] .sideBar {
      transform: translateX(0);
    }

    .sideBar ul {
      margin-top: 2%;
    }
    
    .sideBar i {
      color: #e54987;
      cursor: pointer;
      padding-left: 20px;
      padding-bottom: 25px;
      transition: transform 200ms ease-in-out;
    }

    .sideBar i:hover {
      transform: scale(1.05);
    }

    .sideBar i:active {
      transform: scale(0.90);
    }

    .sideBar ul li {
      height: fit-content;
    }

    .sideBar ul li a {
      width: 100%;
      font-size: 20px;
      color: #e54987;
      transition: color 150ms ease-in-out , background-color 150ms ease-in-out;
      display: block;
      padding: 20px 25px;
      font-size: 15px;
    }

    .sideBar ul li a:hover {
      background-color: #e54987;
      color: #ffffff;
    }

    .sideBar p {
      font-size: 40px !important;
    }

    .sideBarLogo {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 15px;
    }

    .sideBarLogo img {
      width: 40%;
    }
    /* Font Constant*/
    .paragraph {
      margin-top: 5%;
    }
    .paragraph p {
      font-family: Familijen-reg;
      font-size: 15px;
    }
    
    .paragraph i {
      font-family: Familijen-med-i;
    }
    
    .paragraph span{
      font-family: Familijen-bold;
      color: #e54987;
    }
    
    .paragraph-title p {
      margin-top: 5%;
      font-family: Familijen-bold;
      font-size: 45px;
      color: #111111;
    }
    
    .paragraph-title-2 p {
      font-family: Familijen-bold;
      font-size: 45px;
      color: #111111;
    }
    
    .paragraph-bold p {
      margin-top: 5%;
      font-family: Familijen-bold;
      font-size: 45px;
      color: #e54987;
    }
    
    .paragraph-bold-big p {
      margin-top: 5%;
      font-family: Familijen-bold;
      font-size: 70px;
      color: #e54987;
    }
    
    .paragraph-bold-harmony p {
      margin-top: 5%;
      font-family: Familijen-bold;
      font-size: 22px;
      color: #e54987;
    }
    
    .paragraph-i p {
      width: 85%;
      margin-top: 5%;
      font-family: Familijen-med-i;
      font-size: 25px;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    .paragraph-i-big p {
      width: 85%;
      margin-top: 5%;
      font-family: Familijen-med-i;
      font-size: 45px;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    
    .paragraph-list {
      margin-top: 5%;
    }
    
    .paragraph-list p {
      font-family: Familijen-reg;
      font-size: 25px;
    }
    
    .image {
      width: 100%;
      display: flex;
      align-items: center;
    }
    
    .image img {
      width: 100%;
      border-radius: 1rem;
    }
    
    .containText {
      width: 80%;
      margin-left: 5%;
    }
    
    .imgParagraphGroup{
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      margin-top: 5%;
    }
    
    .paragraphGroup {
      width: 100%;
    }
    
    .pinkBorderLeft {
      border-left: #e54987 15px solid;
    }
    
    .span-2{
      grid-column: span 2;
    }
    
    .storyBody {
      width: 100%;
      margin-bottom: 5%;
      overflow: hidden;
    }
    
    /* Button Constant*/
    .sectionButton {
      width: fit-content;
      color: #e54987;
      font-size: 15px;
      font-family: Familijen-reg;
      border: 2px solid #e54987;
      background-color: transparent;
      text-decoration: none;
      border-radius: 2rem;
      margin-top: 20px;
      padding: 10px 10% 10px 10%;
      transition: color, background-color,transform;
      transition-timing-function: ease;
      transition-duration: 200ms;
    }

    .sectionButtonCollab {
      font-size: 15px;
      border: 2px solid #e54987;
    }
    
    .button a {
      width: 100%;
      display: flex;
      align-items: center;
      flex-direction: column;
    }
    
    .sectionButton:hover {
      background-color: #e54987;
      color: #ffffff;
      cursor: pointer;
      transform: scale(1.05);
    }
    
    .sectionButton:active {
      transform: scale(0.95);
    }
    
    .sectionButton-2 {
      width: fit-content;
      color: #ffffff;
      font-size: 15px;
      font-family: Familijen-reg;
      border: 2px solid #ffffff;
      background-color: transparent;
      text-decoration: none;
      border-radius: 2rem;
      margin-top: 20px;
      padding: 10px 10% 10px 10%;
      transition: color, background-color,transform;
      transition-timing-function: ease;
      transition-duration: 200ms;
    }
    
    .sectionButton-2:hover {
      background-color: #ffffff;
      color: #e54987;
      cursor: pointer;
      transform: scale(1.05);
    }
    
    .sectionButton-2:active {
      transform: scale(0.95);
    }
    /*Footer Constant*/
    .footerSection {
      display: none;
    }

    .footerMobile {
      height: fit-content;
      width: 100%;
      display: block;
      padding: 5% 0 5% 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      overflow: visible;
    }

    .copyrightImg-mobile {
      width: 100%;
    }

    .copyrightImg-mobile img {
      width: 30%;
    }

    .copyrightText-mobile {
      width: fit-content;
      text-align: left;
      font-family: familijen-reg;
      font-size: 10px;
      padding-top: 10px;
    }

    .mobileFooterLinks {
      width: 100%;
      height: 100%;
    }

    .footerLinkItem {
      width: 90%;
      margin-bottom: 20px;
      position: relative;
    }

    .footerLinkButton {
      width: 100%;
      height: fit-content;
      padding: 5% 10px 5% 10px;
      color: #e54987;
      background-color: #fce4e3;
      display: grid;
      grid-template-columns: 10fr 1fr;
      text-align: left;
      border: none;
    }

    .dropup {
      display: none;
      width: 100%;
      height: fit-content;
      background-color: #e54987;
      position: absolute;
      bottom: calc(40px + 1.5vw );
      z-index: 99;
      opacity: 0;
      transition: opacity;
      transition-timing-function: ease-in-out;
      transition-duration: 1000ms;
    }

    .dropup a p{
      color: #fce4e3;
      font-family: familijen-reg;
      font-size: 15px;
      padding: 5% 10px 5% 10px;
    }

    .footerLinkItem:hover .dropup {
      display: block;
      opacity: 1;
    }

    .dropup a p:hover{
      color: #ffffff;
    }

    /* Landing Page */
    .landingPage {
      width: 100%;
    }
    
    .heroBanner {
      width: 100%;
      height: fit-content;
      padding-top: 15%;
      position: relative;
      display:flex;
      align-items: center;
      flex-direction: column;
      overflow: hidden;
    }

    
    .heroText {
      width: 100%;
      height: fit-content;
      margin-left: 0%;
    }
    
    .heroTextMain{
      font-family: Foxbot;
      color: #e54987;
      font-size: 65px;
      width: 100%;
      text-align: center;
    }
    
    .heroTextSub {
      font-family: Familijen-reg;
      color: #111;
      font-size: 15px;
      width: 60%;
      margin-top: 12px;
      text-align: center;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    .heroImg {
      width: 100%;
    }
    
    .heroImg img {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 85%;
    }
    
    .pinkBg {
      width: 100%;
      background-color: #fce4e3;
      padding-top: 30px;
      padding-bottom: 30px;
    }
    
    .pinkBgNeon {
      width: 100%;
      background-color: #e54987;
      padding-top: 30px;
      padding-bottom: 30px;
    }
    
    .videoSection {
      width: 100%;
      height: fit-content;
      margin-top: 5%;
      padding: 0;
    }
    
    .videoLanding {
      width: 100%;
      height: fit-content;
      padding-bottom: 5%;
      padding: 0;
    }
    
    .videoMargin {
      height: fit-content;
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
    }
    
    .videoLanding iframe {
      width: 640px;
      height: 360px;
    }
    
    .videoSection iframe {
      width: 640px;
      height: 360px;
    }
    
    .infoPCOS {
      width: 100%;
      height: fit-content;
      display: grid;
      grid-template-columns: 1fr;
    }
    
    .infoPCOSGraphic {
      width: 100%;
      display: block;
      flex-direction: column;
      align-items: center;
      animation: none;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    .infoPCOSGraphic p {
      font-family: familijen-reg;
      font-size: 85px;
      width: 80%;
      line-height:75px;
      text-align: left;
    }
    
    .infoPCOSGraphic span {
      font-family: familijen-bold;
      font-size: 85px;
      width: 80%;
      color: #e54987;
    }
    
    
    .ladySymbol {
      width: fit-content;
      margin-top: 10px;
      margin-bottom: 5%;
    }
    
    .ladySymbol img {
      width: 35px;
    }
    
    .landingImgTextGroup {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr;
      margin-top: 10%;
      grid-auto-flow: reverse;
      padding-bottom: 50px;
    }

      .landingImgTextGroup .image {
        order: -1;
    }

    .landingImgTextGroup .whoWeAreText {
      order: 1;
      text-align: center;
  }
    
    .whatIsPCOS {
      height: fit-content;
      width: 70%;
      padding: 30px 25px 30px 25px;
      border-radius: 1rem;
      margin-top: 50px;
      margin-left: 50%;
      transform: translateX(-50%);

    }
    
    .whatIsPCOSMain {
      font-family: familijen-bold;
      font-size: 45px;
      color: #ffffff;
    }
    
    .whatIsPCOSSub {
      font-family: familijen-reg;
      font-size: 15px;
      color: #ffffff;
      margin-top: 10px;
    }
    
    .iceBerg {
      margin-top: 5%;
      overflow: hidden;
    }
    
    .iceBergImg {
      transform: translateY(20%);
      transition:  transform, opacity;
      transition-duration: 1.5s;
      opacity: 0;
      padding-bottom: 5%;
      padding-top: 5%;
    }
    
    .shareStoryPadding {
      padding-top: 5%;
      padding-bottom: 5%;
    }
    
    .redirectButton {
      display: flex;
      align-items: center;
      flex-direction: column;
    }
    
    .shareYourStory {
      overflow-y: hidden;
      overflow-x: hidden;
    }
    
    .shareStorySpurText {
      width: 60%;
      margin: auto;
    }
    
    .shareYourStory img{
      width: 100%;
    }
    
    .whoWeAre {
      width: 100%;
      padding-bottom: 10%;
    }
    
    .whoWeAre img {
      width: 40%;
      margin-left: auto;
      margin-right: auto;
    }
    
    .textGroup {
      width: 60%;
      margin-left: 50%;
      transform: translateX(-50%);
      font-family: familijen-reg;
    }
    
    .textGroup span {
      font-size: 25px;
    }
    
    .testimonials {
      display: flex;
      align-items: center;
      flex-direction: column;
      padding-bottom: 5%;
    }
    
    .testimonials img {
      width: 80%;
    }

    /* Ezine Page */
    .eZinePage {
      width: 100%;
      padding: 0 0 5% 0;
    }

    .eZineText {
      width: 80%;
    }

    .eZineImageTextGroup {
      display: grid;
      grid-template-columns: 1fr;
      padding-top: 2%;
    }

    .eZineContainer {
      margin-top: 5%;
      transform: translateY(0);
      padding-left: 5%;
    }

    .volume1 {
      width: fit-content;
      padding: 10% 0 10% 0;
    }
    
    /* Explore PCOS  and Share Your Story Pages */
    /* Constants */
    
    .paragraph img {
      width: 40px;
    }
    .seperation {
      width: 100%;
      border-bottom: #e54987 1px solid;
      margin-top: 5%;
    }
    
    .explorePcosPage {
      width: 100%;
    }
    
    .exploreList {
      width: 100%;
      height: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 25px;
      margin-top: 15%;
      padding: 1.5%;
      margin-bottom: 2%;
    }
    
    .exploreList a {
      text-decoration: none;
    }
    
    .listItem {
      width: 100%;
      background-color: #ededed;
      padding: 20px;
      border-radius: 1rem;
      transition:  transform, background-color;
      transition-duration: 400ms;
    }
    
    .listItem img {
      width: 100%;
      border-radius: 1rem;
      background-color: #ffffff;
    }
    
    .tag {
      margin-top: 3%;
      width: fit-content;
      background-color: #e54987;
      border-radius: 3rem;
      text-align: center;
      text-decoration: none;
      color: #ffffff;
      padding: 1% 5% 1% 5%;
      transition: color, background-color;
      transition-duration: 200ms;
    }
    
    .tag p {
      font-size: 10px;
      font-family: Familijen-reg;
    }
    
    .itemName p{
      font-family: Familijen-bold;
      font-size: 18px;
      color: #e54987;
      transition: color;
      transition-duration: 200ms;
    }
    
    .itemNameSub p {
      font-family: Familijen-reg;
      font-size: 12px;
      color: #e54987;
      margin-bottom: 5%;
      transition: color;
      transition-duration: 200ms;
    }
    
    .listItem:hover {
      background-color: #e54987;
      transform: scale(1.05);
      
    }
    
    .listItem:hover > .tag {
      background-color: #ffffff;
      color: #e54987;
    }
    
    .listItem:hover > .itemName p, .listItem:hover > .itemNameSub p {
      color: #ffffff;
    }
    
    .storyMargin {
      width: 100%;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    
    
    .heroThumbnail {
      width: 100%;
      text-align: center;
    }
    
    .heroThumbnail img {
      width: 100%;
      object-fit: cover;
      margin-top: 20%;
      border-radius: 1.5rem;
    }
    
    .shareIcons {
      width: 100%;
      padding-top: 3%;
      padding-bottom: 10px;  
    }
    
    .shareButtons {
      width: fit-content;
      letter-spacing: 1.5rem;
    }

    .shareButtons i {
      font-size: 35px;
    }
    
    .magazineRedirect .paragraph p a {
      text-decoration: underline;
      text-decoration-color: #e54987;
    }
    
    .videoTextGroup {
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 20%;
      
    }
    
    .videoSection-2 {
      padding-bottom: 0%;
      order: -1;
    }
    
    .videoSection-2 iframe {
      height: 432px;
      width: 768px;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    
    .videoText {
      width: 70%;
      order: 1;
      grid-column: span 2;
      text-align: center;
      margin: auto;
    }

    .BTS{
      padding-top: 15%;
    }
    /* Explore PCOS */
    .readMore {
      margin-top: 0%;
      margin-bottom: 10%;
      overflow-x: scroll !important;
    }
    
    .readMoreText p{
      font-family: Familijen-bold;
      font-size: 35px;
      color: #e54987;
      padding-top: 100px;
    }
    
    .smallImg img{
      width: 70%;
      margin: auto;
    }
    
    .smallerImg img{
      width: 35%;
      margin: auto;
    }
    
    .readMoreList {
      width: 175%;
      display: flex;
      align-items: center;
      margin: 10px;
      gap: 15px;
      height: fit-content;
    }
    
    .readMoreList img {
      width: 300px;
      object-fit: cover;
      border-radius: .5rem;
      z-index: 1;
    }
    
    .readMoreList img:hover a {
      color: #e54987;
    }
    
    .readMoreList a {
      text-decoration: none;
      color: #111111;
      font-family: familijen-reg;
      font-size: 9;
      transition: color;
      transition-duration: 200ms;
    }
    
    .readMoreList a:hover {
      color: #e54987;
    }
    
    .embedPost {
      margin-left: 50%;
      transform: translateX(-50%);
    }
    
    /* Share Your Story */
    .shareStoryList {
      width: 100%;
      height: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 25px;
      margin-top: 6%;
      padding: 1.5%;
      margin-bottom: 5%;
    }
    
    .petition {
      padding-bottom: 5%;
      transition-timing-function: ease;
      transition: transform;
      transition-duration: 300ms;
    }
    
    .petition:hover{
      transform: scale(1.05);
    }
    
    .petition:active{
      transform: scale(0.95);
    }
    
    /* Comment Section */
    .post {
      margin-bottom: 80px;
    }
    
    .post-likes {
      margin-bottom: 0.5rem;
      margin-top: 0.5rem;
      display: flex;
      align-items: center;
      width: fit-content;
    }
    
    .post-likes i {
      color: #e54987;
      width: fit-content;
      margin-left: 15px;
    }
    
    .post-likes h2 {
      font-family: familijen-reg;
      width: fit-content;
      font-size: 22px;
      color: #e54987;
      margin-left: 5px;
    }
    
    .post-likes h1 {
      font-family: familijen-reg;
      width: fit-content;
      font-size: 22px;
      color: #111111;
      margin-left: 5px;
    }
    
    .post-likes b {
      font-family: familijen-bold;
    }
    
    
    .heartCount {
      display: flex;
      align-items: center;
    }
    
    .comments {
      display: flex;
      flex-direction: column;
      gap: 10px;
      max-width: 100%;
      margin-bottom: 40px;
      max-height: 400px;
    }
    
    .comment {
      display: flex;
      align-items: center;
      padding: 10px 50px 10px 20px;
      gap: 20px;
      position: relative;
    }
    
    .commentName {
      font-size: 15px;
    }
    
    .commentMessage{
      font-size: 12px;
    }
    
    .comment h3, .comment p {
      font-family: Familijen-reg;
    }
    
    .noComments {
      font-family: Familijen-reg;
    }
    
    .comment:nth-child(2n) {
      background-color: #efefef;
    }
    
    .comment-liked {
      color: #e54987;
    }
    
    .delete {
      margin-left: auto;
      position: absolute;
      right: 20px;
    }
    
    .comment .delete-button {
      border: none;
      background-color: #999;
      color: #fcfcfc;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      cursor: pointer;
      display: none;
    }
    
    .comment:hover .delete-button {
      display: block;
    
    }
    
    .comment:hover .delete-button:hover {
      background-color: #e54987;
      transform: scale(1.09);
    }
    
    .commentsForm {
      padding-bottom: 10px;
    }
    
    .commentsList {
      margin-top: 10px;
      height: 450px;
      overflow-y: visible;
    }
    .commentsList::-webkit-scrollbar {
      display: block;
    }
    
    .commentsList::-webkit-scrollbar-thumb {
      background: #e54987; 
      border-radius: 1rem;
    }
    
    .commentsList::-webkit-scrollbar-track {
      background: #fce4e3; 
      border-radius: 1rem;
    }
    
    .like-postButton {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    
    /********/
    /* FORM */
    /********/
    
    .comment-form {
      max-width: 100%;
      display: grid;
      grid-template-columns: 7fr;
      gap: 20px;
    }
    
    .form-textfield {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .form-textfield input[type="text"] {
      height: 40px;
    }
    
    .form-textfield textarea {
      margin-top: 2%;
    }
    
    .form-textfield input[type="text"],
    .form-textfield textarea {
      font-family: 'Familjen Grotesk', sans-serif;
      padding: 10px 14px;
      border: transparent 2px solid;
      border-radius: 1rem;
      background-color: #fce4e3;
      border-radius: 1rem;
    }
    
    .form-textfield input[type="text"]:focus,
    .form-textfield textarea:focus {
      outline: none!important;
      border: #e54987 2px solid;
    }
    
    .commentsForm p{
      color: #e54987;
      font-size: 35px;
      font-family: Familijen-bold;
      padding-bottom: 1%;
      padding-top: 1%;
      text-align: center;
    }
    
    #id-liked {
      display: none;
    }
    
    #icon {
      color: #e54987;
      transition: transform;
      transition-timing-function: ease;
      transition-duration: 200ms;
      cursor: pointer;
    }
    
    #icon:hover {
      transform: scale(1.09);
    }
    
    #icon:active {
      transform: scale(0.91);
    }

    .form-check p {
      font-size: 15px !important;
    }
    
    .form-button {
      width: fit-content;
      color: #e54987;
      font-size: 12px;
      font-family: Familijen-reg;
      border: 4px solid #e54987;
      background-color: transparent;
      text-decoration: none;
      border-radius: 2rem;
      padding: 10px 15px 10px 15px;
      transition: color, background-color,transform;
      transition-timing-function: ease;
      transition-duration: 200ms;
      outline: none !important;
    }
    
    .form-button:hover {
      background-color: #e54987;
      color: #ffffff;
      cursor: pointer;
      transform: scale(1.05);
    }
    
    .form-button:active {
      transform: scale(0.95);
    }
    
    .deleteconfirm {
      margin-top: auto;
      margin-bottom: auto;
      height: 100%;
      display: flex;
      align-items: center;
    }
    
    .deleteInput {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      flex-direction: column;
    }
    
    .deleteInput input {
      width: 100%;
      height: 40px;
      background-color: #fce4e3;
      border-radius: 1rem;
      border: none;
      margin-top: 2%;
      text-indent: 15px;
      border: transparent 2px solid;
    }
    
    .deleteInput input:focus {
      outline: none !important;
      border: #e54987 2px solid;
    }
    
    .boxContainer {
      background-color: #fce4e3;
      width: 60%;
      padding: 3% 10px;
      border-radius: 1rem;
    }
    
    .boxContainer h4{
      font-family: Familijen-reg;
      color: #8e8e8e;
    }
    
    .deletebg {
      width: 100vw;
      height: 100vh;
      background-color: #e54987;
    }
    
    .arrowBack {
      margin-bottom: 50px;
      margin-left: 10px;
      color: #e54987;
      transition: transform;
      transition-timing-function: ease;
      transition-duration: 200ms;
    }
    
    .arrowBack:hover {
      transform: scale(1.20);
    }
    
    .arrowBack:active {
      transform: scale(0.80);
    }
    
    /* Contact Page */
    .contactPage {
      width: 100%;
      height: fit-content;
      display: grid;
      grid-template-columns: 1fr;
      overflow: hidden;
    }
    
    .contactPageGroup {
      height: fit-content;
      padding-top: 20%;
    }

    .contactPageGroup div {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }
    
    .contactPageImg {
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
    }
    
    .contactPageImg img {
      width: 200px;
    }
    
    .socialMediaLinks {
      width: fit-content;
      padding-top: 5%;
    }
    
    .socialImg img {
      width: 35px;
    }
    
    .directMail {
      padding-top: 15%;
      padding-bottom: 15%;
      margin: auto;
    }
    
    .form-email {
      width: 100%;
      height: 100%;
    }
    
    .form-email input {
      width: 100%;
      height: 40px;
      background-color: #fce4e3;
      border-radius: 1rem;
      border: none;
      margin-top: 2%;
      text-indent: 15px;
      border: transparent 2px solid;
    }
    
    .form-email textarea {
      width: 100%;
      background-color: #fce4e3;
      border-radius: 1rem;
      border: none;
      margin-top: 2%;
      text-indent: 15px;
      padding-top: 10px;
      height: 400px;
      border: transparent 2px solid;
    }
    
    .form-email textarea:focus, .form-email input:focus {
      outline: none !important;
      border: #e54987 2px solid;
    }
    /* Who We Are */
    
    .aboutPage {
      width: 100vw;
    }
    
    .whoWeAreBody {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr;
      margin-top: 10%;
    }
    
    .whoWeAreBody img {
      width: 80%;
      margin: auto;
      order: 1;
    }

    .whoWeAreBody .Text{
      order: -1;
    }
    
    .whoWeAreText-2 {
      width: 85%;
      margin-left: auto;
      margin-right: auto;
      transform: translateY(20%);
      text-align: center;
    }
    
    .whoWeAreText-3 {
      width: 85%;
      margin-left: auto;
      margin-right: auto;
      transform: translateY(20%);
      text-align: center;
    }

    .whoWeAreText-3 div{
      text-align: center;
    }
    
    .whoWeAreTextMain {
      font-family: Familijen-bold;
      color: #e54987;
      font-size: 45px;
    }
    
    .whoWeAreTextSub {
      font-family: Familijen-reg;
      color: #111111;
      font-size: 18px;
      margin-top: 5%;
    }
    
    .valuesMain {
      margin-top: 10%;
    }
    
    .valuesList {
      display: grid;
      grid-template-rows: 1fr 1fr 1fr;
      margin-bottom: 10%;
    }
    
    .valuesListGroup {
      margin-top: 5%;
      display: grid;
      grid-template-columns: 1fr;
      text-align: justify;
      padding-bottom: 10%;
    }
    
    .valuesListGroup img {
      width: 80%;
      margin-left: auto;
      margin-right: auto;
    }

    .valuesListGroup .paragraph {
      grid-column: span 2;
    }
    
    .valuesListText {
      font-family: Familijen-reg;
      color: #111111;
      font-size: 25px;
      width: 80%;
    }
    
    .shareStoryRedirect {
      width: 100%;
      padding-top: 5%;
      padding-bottom: 5%;
    }
    
    .redirectText {
      width: 70%;
    }
    
    /* Collaborators */
    .collaboratorsPage {
      padding-bottom: 5%;
    }

    .collaboratorContainer {
      padding-left: 0%;
      text-align: justify;
    }
    
    .collaboratorsPage img{
      border-radius: 1rem;
    }
    .collabraorsSocials {
      height: 40px;
      padding-top: 5%;
      padding-bottom: 5%;
      letter-spacing: 1rem;
    }
    
    .collabraorsSocials .fab{
      color: #e54987;
      transition-timing-function: ease;
      transition: transform;
      transition-duration: 300ms;
    }
    
    .collabraorsSocials .fab:hover {
      transform: scale(1.09);
    }
    
    .collabraorsSocials .fab:active {
      transform: scale(0.93);
    }
  }
  
  /* md */
  @media (max-width: 768px) {
    .container {
      max-width: 640px;
    }
    
    /* Navbar Constant*/
    
    .navMenuLogo img {
      height: 40px;
    }
    
    .navMenu ul {
      display: none;
    }
    
    .menu-btn {
      display: block;
      width: fit-content;
      margin-left: auto;
      margin-right: 20px;
      transition: transform;
      transition-timing-function: ease-in-out;
      transition-duration: 200ms;
      cursor: pointer;
    }

    .menu-btn:hover {
      transform: scale(1.05);
    }
    
    .menu-btn:active {
      transform: scale(0.95);
    }
    
    .sideBar {
      display: block;
      width: 50%;
      height: 100vh;
      position: fixed;
      background-color: #ffffff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.20);
      z-index: 20;
      right: 0;
      transform: translateX(100%);
      transition: transform 450ms cubic-bezier(.13,.53,.38,.97);
    }

    body[data-nav="true"] .sideBar {
      transform: translateX(0);
    }

    .sideBar ul {
      margin-top: 10%;
    }
    
    .sideBar i {
      color: #e54987;
      cursor: pointer;
      padding-left: 20px;
      padding-bottom: 25px;
      transition: transform 200ms ease-in-out;
    }

    .sideBar ul li {
      height: fit-content;
    }

    .sideBar ul li a {
      width: 100%;
      font-size: 20px;
      color: #e54987;
      transition: color 150ms ease-in-out , background-color 150ms ease-in-out;
    }

    .sideBar ul li a:hover {
      background-color: #e54987;
      color: #ffffff;
    }

    .sideBarLogo {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 15px;
    }

    .sideBarLogo img {
      width: 40%;
    }
    /* Font Constant*/
    .paragraph {
      margin-top: 5%;
    }
    .paragraph p {
      font-family: Familijen-reg;
      font-size: 12px;
    }
    
    .paragraph i {
      font-family: Familijen-med-i;
    }
    
    .paragraph span{
      font-family: Familijen-bold;
      color: #e54987;
    }
    
    .paragraph-title p {
      margin-top: 5%;
      font-family: Familijen-bold;
      font-size: 35px;
      color: #111111;
    }
    
    .paragraph-title-2 p {
      font-family: Familijen-bold;
      font-size: 35px;
      color: #111111;
    }
    
    .paragraph-bold p {
      margin-top: 5%;
      font-family: Familijen-bold;
      font-size: 35px;
      color: #e54987;
    }
    
    .paragraph-bold-big p {
      margin-top: 5%;
      font-family: Familijen-bold;
      font-size: 65px;
      color: #e54987;
    }
    
    .paragraph-bold-harmony p {
      margin-top: 5%;
      font-family: Familijen-bold;
      font-size: 35px;
      color: #e54987;
    }
    
    .paragraph-i p {
      width: 85%;
      margin-top: 5%;
      font-family: Familijen-med-i;
      font-size: 15px;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    .paragraph-i-big p {
      width: 85%;
      margin-top: 5%;
      font-family: Familijen-med-i;
      font-size: 35px;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    
    .paragraph-list {
      margin-top: 5%;
    }
    
    .paragraph-list p {
      font-family: Familijen-reg;
      font-size: 12px;
    }
    
    .image {
      width: 100%;
      display: flex;
      align-items: center;
    }
    
    .image img {
      width: 100%;
      border-radius: 1rem;
    }
    
    .containText {
      width: 80%;
      margin-left: 5%;
    }
    
    .imgParagraphGroup{
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      margin-top: 5%;
    }
    
    .paragraphGroup {
      width: 100%;
    }
    
    .pinkBorderLeft {
      border-left: #e54987 15px solid;
    }
    
    .span-2{
      grid-column: span 2;
    }
    
    .storyBody {
      width: 100%;
      margin-bottom: 5%;
      overflow: hidden;
    }
    
    /* Button Constant*/
    .sectionButton {
      width: fit-content;
      color: #e54987;
      font-size: 12px;
      font-family: Familijen-reg;
      border: 2px solid #e54987;
      background-color: transparent;
      text-decoration: none;
      border-radius: 2rem;
      margin-top: 20px;
      padding: 10px 10% 10px 10%;
      transition: color, background-color,transform;
      transition-timing-function: ease;
      transition-duration: 200ms;
    }
    
    .sectionButtonCollab {
      font-size: 12px;
      border: 2px solid #e54987;
    }

    .sectionButton-2 {
      width: fit-content;
      color: #ffffff;
      font-size: 12px;
      font-family: Familijen-reg;
      border: 2px solid #ffffff;
      background-color: transparent;
      text-decoration: none;
      border-radius: 2rem;
      margin-top: 20px;
      padding: 10px 10% 10px 10%;
      transition: color, background-color,transform;
      transition-timing-function: ease;
      transition-duration: 200ms;
    }

    /* Landing Page */
    .landingPage {
      width: 100%;
    }
    
    .heroBanner {
      width: 100%;
      height: fit-content;
      padding-top: 15%;
      position: relative;
      display:flex;
      align-items: center;
      flex-direction: column;
      overflow: hidden;
    }

    
    .heroText {
      width: 100%;
      height: fit-content;
      margin-left: 0%;
    }
    
    .heroTextMain{
      font-family: Foxbot;
      color: #e54987;
      font-size: 65px;
      width: 100%;
      text-align: center;
    }
    
    .heroTextSub {
      font-family: Familijen-reg;
      color: #111;
      font-size: 18px;
      width: 60%;
      margin-top: 12px;
      text-align: center;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    .heroImg {
      width: 100%;
    }
    
    .heroImg img {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 85%;
    }
    
    .pinkBg {
      width: 100%;
      background-color: #fce4e3;
      padding-top: 30px;
      padding-bottom: 30px;
    }
    
    .pinkBgNeon {
      width: 100%;
      background-color: #e54987;
      padding-top: 30px;
      padding-bottom: 30px;
    }
    
    .videoSection {
      width: 100%;
      height: fit-content;
      margin-top: 5%;
      padding: 0;
    }
    
    .videoLanding {
      width: 100%;
      height: fit-content;
      padding-bottom: 5%;
      padding: 0;
    }
    
    .videoMargin {
      height: fit-content;
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
    }
    
    .videoLanding iframe {
      width: 640px;
      height: 360px;
    }
    
    .videoSection iframe {
      width: 640px;
      height: 360px;
    }
    
    .infoPCOS {
      width: 100%;
      height: fit-content;
      display: grid;
      grid-template-columns: 1fr;
    }
    
    .infoPCOSGraphic {
      width: 100%;
      display: block;
      flex-direction: column;
      align-items: center;
      animation: none;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    .infoPCOSGraphic p {
      font-family: familijen-reg;
      font-size: 75px;
      width: 80%;
      line-height:55px;
      padding-bottom:20px;
    }
    
    .infoPCOSGraphic span {
      font-family: familijen-bold;
      font-size: 65px;
      color: #e54987;
    }
    
    
    .ladySymbol {
      width: fit-content;
      margin-top: 10px;
      margin-bottom: 5%;
    }
    
    .ladySymbol img {
      width: 35px;
    }
    
    .landingImgTextGroup {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr;
      margin-top: 10%;
      grid-auto-flow: reverse;
      padding-bottom: 50px;
    }

    .landingImgTextGroup .image {
      order: -1;
    }

    .landingImgTextGroup .whoWeAreText {
      order: 1;
      text-align: center;
    }

    .whatIsPCOS {
      height: fit-content;
      width: 70%;
      padding: 30px 25px 30px 25px;
      border-radius: 1rem;
      margin-top: 50px;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    
    .whatIsPCOSMain {
      font-family: familijen-bold;
      font-size: 35px;
      color: #ffffff;
    }
    
    .whatIsPCOSSub {
      font-family: familijen-reg;
      font-size: 12px;
      color: #ffffff;
      margin-top: 10px;
    }
    
    .iceBerg {
      margin-top: 5%;
      overflow: hidden;
    }
    
    .iceBergImg {
      transform: translateY(20%);
      transition:  transform, opacity;
      transition-duration: 1.5s;
      opacity: 0;
      padding-bottom: 5%;
      padding-top: 5%;
    }
    
    .shareStoryPadding {
      padding-top: 5%;
      padding-bottom: 5%;
    }
    
    .redirectButton {
      display: flex;
      align-items: center;
      flex-direction: column;
    }
    
    .shareStorySpurText {
      width: 60%;
      margin: auto;
    }
    
    .shareYourStory img{
      width: 100%;
      margin-bottom: 5%;
      margin-top: 5%;
    }
    
    .whoWeAre {
      width: 100%;
      padding-bottom: 10%;
    }
    
    .whoWeAre img {
      width: 40%;
      margin-left: auto;
      margin-right: auto;
    }
    
    .textGroup {
      width: 60%;
      margin-left: 50%;
      transform: translateX(-50%);
      font-family: familijen-reg;
    }
    
    .textGroup span {
      font-size: 25px;
    }
    
    .testimonials {
      display: flex;
      align-items: center;
      flex-direction: column;
      padding-bottom: 5%;
    }
    
    .testimonials img {
      width: 100%;
    }
    
    /* Explore PCOS  and Share Your Story Pages */
    /* Constants */
    
    .paragraph img {
      width: 40px;
    }
    .seperation {
      width: 100%;
      border-bottom: #e54987 1px solid;
      margin-top: 5%;
    }
    
    .explorePcosPage {
      width: 100%;
    }
    
    .exploreList {
      width: 100%;
      height: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 25px;
      margin-top: 15%;
      padding: 1.5%;
      margin-bottom: 2%;
    }
    
    .exploreList a {
      text-decoration: none;
    }
    
    .listItem {
      width: 100%;
      background-color: #ededed;
      padding: 20px;
      border-radius: 1rem;
      transition:  transform, background-color;
      transition-duration: 400ms;
    }
    
    .listItem img {
      width: 100%;
      border-radius: 1rem;
      background-color: #ffffff;
    }
    
    .tag {
      margin-top: 3%;
      width: fit-content;
      background-color: #e54987;
      border-radius: 3rem;
      text-align: center;
      text-decoration: none;
      color: #ffffff;
      padding: 1% 5% 1% 5%;
      transition: color, background-color;
      transition-duration: 200ms;
    }
    
    .tag p {
      font-size: 8px;
      font-family: Familijen-reg;
    }
    
    .itemName p{
      font-family: Familijen-bold;
      font-size: 15px;
      color: #e54987;
      transition: color;
      transition-duration: 200ms;
    }
    
    .itemNameSub p {
      font-family: Familijen-reg;
      font-size: 10px;
      color: #e54987;
      margin-bottom: 5%;
      transition: color;
      transition-duration: 200ms;
    }
    
    .listItem:hover {
      background-color: #e54987;
      transform: scale(1.05);
      
    }
    
    .listItem:hover > .tag {
      background-color: #ffffff;
      color: #e54987;
    }
    
    .listItem:hover > .itemName p, .listItem:hover > .itemNameSub p {
      color: #ffffff;
    }
    
    .storyMargin {
      width: 90%;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    
    
    .heroThumbnail {
      width: 100%;
      text-align: center;
    }
    
    .heroThumbnail img {
      width: 100%;
      object-fit: cover;
      margin-top: 20%;
      border-radius: 1.5rem;
    }
    
    .shareIcons {
      width: 100%;
      padding-top: 3%;
      padding-bottom: 10px;  
    }
    
    .shareButtons {
      width: fit-content;
      letter-spacing: 1.5rem;
    }
    
    .shareButtons .fab:hover {
      transform: scale(1.09);
    }
    
    .shareButtons .fab:active {
      transform: scale(0.80);
    }
    
    .magazineRedirect .paragraph p a {
      text-decoration: underline;
      text-decoration-color: #e54987;
    }
    
    .videoTextGroup {
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 20%;
      
    }
    
    .videoSection-2 {
      padding-bottom: 0%;
      order: -1;
    }
    
    .videoSection-2 iframe {
      height: 432px;
      width: 768px;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    
    .videoText {
      width: 70%;
      order: 1;
      grid-column: span 2;
      text-align: center;
      margin: auto;
    }

    .BTS{
      padding-top: 15%;
    }
    /* Explore PCOS */
    .readMoreText p{
      font-family: Familijen-bold;
      font-size: 35px;
      color: #e54987;
    }
    
    .smallImg img{
      width: 70%;
      margin: auto;
    }
    
    .readMoreList img {
      width: 300px;
      object-fit: cover;
      border-radius: .5rem;
      z-index: 1;
    }
    
    .readMoreList img:hover a {
      color: #e54987;
    }
    
    .readMoreList a {
      text-decoration: none;
      color: #111111;
      font-family: familijen-reg;
      font-size: 9;
      transition: color;
      transition-duration: 200ms;
    }
    
    .readMoreList a:hover {
      color: #e54987;
    }
    
    .embedPost {
      margin-left: 50%;
      transform: translateX(-50%);
    }
    
    /* Share Your Story */
    .shareStoryList {
      width: 100%;
      height: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 25px;
      margin-top: 6%;
      padding: 1.5%;
      margin-bottom: 5%;
    }
    
    .petition {
      padding-bottom: 5%;
      transition-timing-function: ease;
      transition: transform;
      transition-duration: 300ms;
    }
    
    .petition:hover{
      transform: scale(1.05);
    }
    
    .petition:active{
      transform: scale(0.95);
    }
    
    /* Comment Section */
    .post {
      margin-bottom: 80px;
    }
    
    .post-likes h2 {
      font-family: familijen-reg;
      width: fit-content;
      font-size: 22px;
      color: #e54987;
      margin-left: 5px;
    }
    
    .post-likes h1 {
      font-family: familijen-reg;
      width: fit-content;
      font-size: 22px;
      color: #111111;
      margin-left: 5px;
    }
    
    .post-likes b {
      font-family: familijen-bold;
    }
    
    
    .heartCount {
      display: flex;
      align-items: center;
    }
    
    .comments {
      display: flex;
      flex-direction: column;
      gap: 10px;
      max-width: 100%;
      margin-bottom: 40px;
      max-height: 400px;
    }
    
    .comment {
      display: flex;
      align-items: center;
      padding: 10px 50px 10px 20px;
      gap: 20px;
      position: relative;
    }
    
    .commentName {
      font-size: 12px;
    }
    
    .commentMessage{
      font-size: 10px;
    }
    
    .comment h3, .comment p {
      font-family: Familijen-reg;
    }
    
    .noComments {
      font-family: Familijen-reg;
    }
    
    .comment:nth-child(2n) {
      background-color: #efefef;
    }
    
    .comment-liked {
      color: #e54987;
    }
    
    .delete {
      margin-left: auto;
      position: absolute;
      right: 20px;
    }
    
    .comment .delete-button {
      border: none;
      background-color: #999;
      color: #fcfcfc;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      cursor: pointer;
      display: none;
    }
    
    .comment:hover .delete-button {
      display: block;
    
    }
    
    .comment:hover .delete-button:hover {
      background-color: #e54987;
      transform: scale(1.09);
    }
    
    .commentsForm {
      padding-bottom: 10px;
    }
    
    .commentsList {
      margin-top: 10px;
      height: 450px;
      overflow-y: visible;
    }
    .commentsList::-webkit-scrollbar {
      display: block;
    }
    
    .commentsList::-webkit-scrollbar-thumb {
      background: #e54987; 
      border-radius: 1rem;
    }
    
    .commentsList::-webkit-scrollbar-track {
      background: #fce4e3; 
      border-radius: 1rem;
    }
    
    .like-postButton {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    
    /********/
    /* FORM */
    /********/
    
    .comment-form {
      max-width: 100%;
      display: grid;
      grid-template-columns: 7fr;
      gap: 20px;
    }
    
    .form-textfield {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .form-textfield input[type="text"] {
      height: 40px;
    }
    
    .form-textfield textarea {
      margin-top: 2%;
    }
    
    .form-textfield input[type="text"],
    .form-textfield textarea {
      font-family: 'Familjen Grotesk', sans-serif;
      padding: 10px 14px;
      border: transparent 2px solid;
      border-radius: 1rem;
      background-color: #fce4e3;
      border-radius: 1rem;
    }
    
    .form-textfield input[type="text"]:focus,
    .form-textfield textarea:focus {
      outline: none!important;
      border: #e54987 2px solid;
    }
    
    .commentsForm p{
      color: #e54987;
      font-size: 35px;
      font-family: Familijen-bold;
      padding-bottom: 1%;
      padding-top: 1%;
    }
    
    #id-liked {
      display: none;
    }
    
    #icon {
      color: #e54987;
      transition: transform;
      transition-timing-function: ease;
      transition-duration: 200ms;
      cursor: pointer;
    }
    
    #icon:hover {
      transform: scale(1.09);
    }
    
    #icon:active {
      transform: scale(0.91);
    }

    .form-check p {
      font-size: 15px !important;
    }
    
    .form-button {
      width: fit-content;
      color: #e54987;
      font-size: 12px;
      font-family: Familijen-reg;
      border: 4px solid #e54987;
      background-color: transparent;
      text-decoration: none;
      border-radius: 2rem;
      padding: 10px 15px 10px 15px;
      transition: color, background-color,transform;
      transition-timing-function: ease;
      transition-duration: 200ms;
      outline: none !important;
    }
    
    .form-button:hover {
      background-color: #e54987;
      color: #ffffff;
      cursor: pointer;
      transform: scale(1.05);
    }
    
    .form-button:active {
      transform: scale(0.95);
    }
    
    .deleteconfirm {
      margin-top: auto;
      margin-bottom: auto;
      height: 100%;
      display: flex;
      align-items: center;
    }
    
    .deleteInput {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      flex-direction: column;
    }
    
    .deleteInput input {
      width: 100%;
      height: 40px;
      background-color: #fce4e3;
      border-radius: 1rem;
      border: none;
      margin-top: 2%;
      text-indent: 15px;
      border: transparent 2px solid;
    }
    
    .deleteInput input:focus {
      outline: none !important;
      border: #e54987 2px solid;
    }
    
    .boxContainer {
      background-color: #fce4e3;
      width: 60%;
      padding: 3% 10px;
      border-radius: 1rem;
    }
    
    .boxContainer h4{
      font-family: Familijen-reg;
      color: #8e8e8e;
    }
    
    .deletebg {
      width: 100vw;
      height: 100vh;
      background-color: #e54987;
    }
    
    .arrowBack {
      margin-bottom: 50px;
      margin-left: 10px;
      color: #e54987;
      transition: transform;
      transition-timing-function: ease;
      transition-duration: 200ms;
    }
    
    .arrowBack:hover {
      transform: scale(1.20);
    }
    
    .arrowBack:active {
      transform: scale(0.80);
    }
    
    /* Contact Page */
    .contactPage {
      width: 100%;
      height: fit-content;
      display: grid;
      grid-template-columns: 1fr;
      overflow: hidden;
    }
    
    .contactPageGroup {
      height: fit-content;
      padding-top: 20%;
    }

    .contactPageGroup div {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }
    
    .contactPageImg {
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
    }
    
    .contactPageImg img {
      width: 200px;
    }
    
    .socialMediaLinks {
      width: fit-content;
      padding-top: 5%;
    }
    
    .socialImg img {
      width: 35px;
    }
    
    .directMail {
      padding-top: 15%;
      padding-bottom: 15%;
      margin: auto;
    }
    
    .form-email {
      width: 100%;
      height: 100%;
    }
    
    .form-email input {
      width: 100%;
      height: 40px;
      background-color: #fce4e3;
      border-radius: 1rem;
      border: none;
      margin-top: 2%;
      text-indent: 15px;
      border: transparent 2px solid;
    }
    
    .form-email textarea {
      width: 100%;
      background-color: #fce4e3;
      border-radius: 1rem;
      border: none;
      margin-top: 2%;
      text-indent: 15px;
      padding-top: 10px;
      height: 400px;
      border: transparent 2px solid;
    }
    
    .form-email textarea:focus, .form-email input:focus {
      outline: none !important;
      border: #e54987 2px solid;
    }
    /* Who We Are */
    
    .aboutPage {
      width: 100vw;
    }
    
    .whoWeAreBody {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr;
      margin-top: 5%;
    }
    
    .whoWeAreBody img {
      width: 80%;
      margin: auto;
      order: 1;
    }

    .whoWeAreBody .Text{
      order: -1;
    }
    
    .whoWeAreText-2 {
      width: 85%;
      margin-left: auto;
      margin-right: auto;
      transform: translateY(20%);
      text-align: center;
    }
    
    .whoWeAreText-3 {
      width: 85%;
      margin-left: auto;
      margin-right: auto;
      transform: translateY(20%);
      text-align: center;
    }

    .whoWeAreText-3 div{
      text-align: center;
    }
    
    .whoWeAreTextMain {
      font-family: Familijen-bold;
      color: #e54987;
      font-size: 45px;
    }
    
    .whoWeAreTextSub {
      font-family: Familijen-reg;
      color: #111111;
      font-size: 18px;
      margin-top: 5%;
    }
    
    .valuesMain {
      margin-top: 10%;
    }


    .valuesListGroup .paragraph {
      grid-column: span 2;
    }
    
    .valuesListText {
      font-family: Familijen-reg;
      color: #111111;
      font-size: 25px;
      width: 80%;
    }
    
    .shareStoryRedirect {
      width: 100%;
      padding-top: 5%;
      padding-bottom: 5%;
    }
    
    .redirectText {
      width: 70%;
    }
    
    /* Collaborators */
    .collaboratorsPage {
      padding-bottom: 5%;
    }
    
    .collaboratorsPage img{
      border-radius: 1rem;
    }
    .collabraorsSocials {
      height: 40px;
      padding-top: 5%;
      padding-bottom: 5%;
      letter-spacing: 1rem;
    }
    
    .collabraorsSocials .fab{
      color: #e54987;
      transition-timing-function: ease;
      transition: transform;
      transition-duration: 300ms;
    }
    
    .collabraorsSocials .fab:hover {
      transform: scale(1.09);
    }
    
    .collabraorsSocials .fab:active {
      transform: scale(0.93);
    }
  }
  
  /* sm */
  @media (max-width: 640px) {
    .container {
      max-width: 95vw;
    }

    
    /* Navbar Constant*/
    
    .navMenuLogo img {
      height: 40px;
    }
    
    .navMenu ul {
      display: none;
    }
    
    .menu-btn {
      display: block;
      width: fit-content;
      margin-left: auto;
      margin-right: 20px;
      transition: transform;
      transition-timing-function: ease-in-out;
      transition-duration: 200ms;
      cursor: pointer;
    }

    .menu-btn:hover {
      transform: scale(1.05);
    }
    
    .menu-btn:active {
      transform: scale(0.95);
    }
    
    .sideBar {
      display: block;
      width: 75%;
      height: 100vh;
      position: fixed;
      background-color: #ffffff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.20);
      z-index: 20;
      right: 0;
      transform: translateX(100%);
      transition: transform 450ms cubic-bezier(.13,.53,.38,.97);
    }

    body[data-nav="true"] .sideBar {
      transform: translateX(0);
    }

    .sideBar ul {
      margin-top: 10%;
    }
    
    .sideBar i {
      color: #e54987;
      cursor: pointer;
      padding-left: 20px;
      padding-bottom: 25px;
      transition: transform 200ms ease-in-out;
    }

    .sideBar ul li {
      height: fit-content;
    }

    .sideBar ul li a {
      width: 100%;
      font-size: 15px;
      color: #e54987;
      transition: color 150ms ease-in-out , background-color 150ms ease-in-out;
    }

    .sideBar ul li a:hover {
      background-color: #e54987;
      color: #ffffff;
    }

    .sideBarLogo {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 15px;
    }

    .sideBarLogo img {
      width: 40%;
    }
    /* Font Constant*/
    .paragraph {
      margin-top: 5%;
    }
    .paragraph p {
      font-family: Familijen-reg;
      font-size: 12px;
    }
    
    .paragraph i {
      font-family: Familijen-med-i;
    }
    
    .paragraph span{
      font-family: Familijen-bold;
      color: #e54987;
    }
    
    .paragraph-title p {
      margin-top: 5%;
      font-family: Familijen-bold;
      font-size: 35px;
      color: #111111;
    }
    
    .paragraph-title-2 p {
      font-family: Familijen-bold;
      font-size: 35px;
      color: #111111;
    }
    
    .paragraph-bold p {
      margin-top: 5%;
      font-family: Familijen-bold;
      font-size: 35px;
      color: #e54987;
    }
    
    .paragraph-bold-big p {
      margin-top: 5%;
      font-family: Familijen-bold;
      font-size: 60px;
      color: #e54987;
    }
    
    .paragraph-bold-harmony p {
      margin-top: 5%;
      font-family: Familijen-bold;
      font-size: 20px;
      color: #e54987;
    }
    
    .paragraph-i p {
      width: 85%;
      margin-top: 5%;
      font-family: Familijen-med-i;
      font-size: 12px;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    .paragraph-i-big p {
      width: 85%;
      margin-top: 5%;
      font-family: Familijen-med-i;
      font-size: 35px;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    
    .paragraph-list {
      margin-top: 5%;
    }
    
    .paragraph-list p {
      font-family: Familijen-reg;
      font-size: 12px;
    }
    
    .image {
      width: 100%;
      display: flex;
      align-items: center;
    }
    
    .image img {
      width: 100%;
      border-radius: 1rem;
    }
    
    .containText {
      width: 80%;
      margin-left: 5%;
    }
    
    .imgParagraphGroup{
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      margin-top: 5%;
    }
    
    .paragraphGroup {
      width: 100%;
    }
    
    .pinkBorderLeft {
      border-left: #e54987 15px solid;
    }
    
    .span-2{
      grid-column: span 2;
    }
    
    .storyBody {
      width: 100%;
      margin-bottom: 5%;
      overflow: hidden;
    }

    .StoryGrid2 {
      display: grid;
      grid-template-columns: 1fr;
      gap: 25px;
      text-align: justify;
    }
    
    .StoryGrid4 {
      display: grid;
      grid-template-columns: 1fr;
      gap: 25px;
      text-align: justify;
    }
    
    /* Button Constant*/
    .sectionButton {
      width: fit-content;
      color: #e54987;
      font-size: 12px;
      font-family: Familijen-reg;
      border: 2px solid #e54987;
      background-color: transparent;
      text-decoration: none;
      border-radius: 2rem;
      margin-top: 20px;
      padding: 10px 10% 10px 10%;
      transition: color, background-color,transform;
      transition-timing-function: ease;
      transition-duration: 200ms;
    }
    .sectionButton-2 {
      width: fit-content;
      color: #ffffff;
      font-size: 12px;
      font-family: Familijen-reg;
      border: 2px solid #ffffff;
      background-color: transparent;
      text-decoration: none;
      border-radius: 2rem;
      margin-top: 20px;
      padding: 10px 10% 10px 10%;
      transition: color, background-color,transform;
      transition-timing-function: ease;
      transition-duration: 200ms;
    }
    /*Footer Constant*/
    .footerMobile {
      grid-template-columns: 1fr;
      overflow: visible;
    }

    .copyrightText-mobile { 
      font-size: 8px;
      padding-top: 10px;
    }

    .footerLinkButton {
      width: 100%;
      height: fit-content;
      padding: 5% 10px 5% 10px;
      display: grid;
      text-align: left;
      border: none;
      margin-top: 20px;
    }

    .footerLinkItem {
      width: 100%;
      margin-bottom: 20px;
    }
    
    .dropup {
      bottom: calc(55px + 1.5vw );
    }
    /* Landing Page */
    .landingPage {
      width: 100%;
    }
    
    .heroBanner {
      width: 100%;
      height: fit-content;
      padding-top: 25%;
      position: relative;
      display:flex;
      align-items: center;
      flex-direction: column;
      overflow: hidden;
    }

    
    .heroText {
      width: 100%;
      height: fit-content;
      margin-left: 0%;
    }
    
    .heroTextMain{
      font-family: Foxbot;
      color: #e54987;
      font-size: 55px;
      width: 100%;
      text-align: center;
    }
    
    .heroTextSub {
      font-family: Familijen-reg;
      color: #111;
      font-size: 18px;
      width: 60%;
      margin-top: 12px;
      text-align: center;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    .heroImg {
      width: 100%;
    }
    
    .heroImg img {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 100%;
    }
    
    .pinkBg {
      width: 100%;
      background-color: #fce4e3;
      padding-top: 30px;
      padding-bottom: 30px;
    }
    
    .pinkBgNeon {
      width: 100%;
      background-color: #e54987;
      padding-top: 30px;
      padding-bottom: 30px;
    }
    
    .videoSection {
      width: 100%;
      height: fit-content;
      margin-top: 5%;
      padding: 0;
    }
    
    .videoLanding {
      width: 100%;
      height: fit-content;
      padding-bottom: 5%;
      padding: 0;
    }
    
    .videoMargin {
      height: fit-content;
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
    }
    
    .videoLanding iframe {
      width: 95vw;
      max-height: 53vw;
    }
    
    .videoSection iframe {
      width: 95vw;
      max-height: 53vw;
    }
    
    .infoPCOS {
      width: 100%;
      height: fit-content;
      display: grid;
      grid-template-columns: 1fr;
    }
    
    .infoPCOSGraphic {
      width: 100%;
      display: block;
      flex-direction: column;
      align-items: center;
      animation: none;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    .infoPCOSGraphic p {
      font-family: familijen-reg;
      font-size: 65px;
      width: 80%;
      line-height:55px;
    }
    
    .infoPCOSGraphic span {
      font-family: familijen-bold;
      font-size: 65px;
      color: #e54987;
    }
    
    
    .ladySymbol {
      width: fit-content;
      margin-top: 10px;
      margin-bottom: 5%;
    }
    
    .ladySymbol img {
      width: 35px;
    }
    
    .landingImgTextGroup {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr;
      margin-top: 10%;
      grid-auto-flow: reverse;
      padding-bottom: 50px;
    }

    .landingImgTextGroup .image {
      order: -1;
    }

    .landingImgTextGroup .whoWeAreText {
      order: 1;
      text-align: center;
    }

    .whatIsPCOS {
      height: fit-content;
      width: 80%;
      padding: 25px 20px 25px 20px;
      border-radius: 1rem;
      margin-top: 50px;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    
    .whatIsPCOSMain {
      font-family: familijen-bold;
      font-size: 25px;
      color: #ffffff;
    }
    
    .whatIsPCOSSub {
      font-family: familijen-reg;
      font-size: 12px;
      color: #ffffff;
      margin-top: 10px;
    }
    
    .iceBerg {
      margin-top: 5%;
      overflow: hidden;
    }
    
    .iceBergImg {
      transform: translateY(20%);
      transition:  transform, opacity;
      transition-duration: 1.5s;
      opacity: 0;
      padding-bottom: 5%;
      padding-top: 5%;
    }
    
    .shareStoryPadding {
      padding-top: 5%;
      padding-bottom: 5%;
    }
    
    .redirectButton {
      display: flex;
      align-items: center;
      flex-direction: column;
    }
    
    .shareYourStory {
      position: relative;
      width: 100%;
      height: fit-content;
      padding-top: 10%;
      z-index: 9;
    }
    
    .shareStorySpurText {
      width: 60%;
      margin: auto;
    }
    
    .shareYourStory img{
      overflow-y: hidden;
      width: 100%;
      left: 0;
    }

    .mapContainer {
      max-width: 475px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 0.5rem;
      padding-right: 0.5rem;
      overflow-x: hidden;
    }
    
    .whoWeAre {
      width: 100%;
      padding-bottom: 10%;
    }
    
    .whoWeAre img {
      width: 40%;
      margin-left: auto;
      margin-right: auto;
    }
    
    .textGroup {
      width: 60%;
      margin-left: 50%;
      transform: translateX(-50%);
      font-family: familijen-reg;
    }
    
    .textGroup span {
      font-size: 25px;
    }
    
    .testimonials {
      display: flex;
      align-items: center;
      flex-direction: column;
      padding-bottom: 5%;
    }
    
    .testimonials img {
      width: 100%;
    }

    .eZineImageTextGroup {
      display: grid;
      grid-template-columns: 1fr;
      padding-top: 12%;
    }
    
    /* Explore PCOS  and Share Your Story Pages */
    /* Constants */
    
    .paragraph img {
      width: 40px;
    }
    .seperation {
      width: 100%;
      border-bottom: #e54987 1px solid;
      margin-top: 5%;
    }
    
    .explorePcosPage {
      width: 100%;
    }
    
    .exploreList {
      width: 100%;
      height: 100%;
      display: grid;
      grid-template-columns: 1fr;
      gap: 25px;
      margin-top: 25%;
      padding: 1.5%;
      margin-bottom: 2%;
    }
    
    .exploreList a {
      text-decoration: none;
    }
    
    .listItem {
      width: 100%;
      background-color: #ededed;
      padding: 20px;
      border-radius: 1rem;
      transition:  transform, background-color;
      transition-duration: 400ms;
    }
    
    .listItem img {
      width: 100%;
      border-radius: 1rem;
      background-color: #ffffff;
    }
    
    .tag {
      margin-top: 3%;
      width: fit-content;
      background-color: #e54987;
      border-radius: 3rem;
      text-align: center;
      text-decoration: none;
      color: #ffffff;
      padding: 1% 5% 1% 5%;
      transition: color, background-color;
      transition-duration: 200ms;
    }
    
    .tag p {
      font-size: 12px;
      font-family: Familijen-reg;
    }
    
    .itemName p{
      font-family: Familijen-bold;
      font-size: 22px;
      color: #e54987;
      transition: color;
      transition-duration: 200ms;
    }
    
    .itemNameSub p {
      font-family: Familijen-reg;
      font-size: 15px;
      color: #e54987;
      margin-bottom: 5%;
      transition: color;
      transition-duration: 200ms;
    }
    
    .listItem:hover {
      background-color: #e54987;
      transform: scale(1.05);
      
    }
    
    .listItem:hover > .tag {
      background-color: #ffffff;
      color: #e54987;
    }
    
    .listItem:hover > .itemName p, .listItem:hover > .itemNameSub p {
      color: #ffffff;
    }
    
    .storyMargin {
      width: 100%;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    
    
    .heroThumbnail {
      width: 100%;
      text-align: center;
    }
    
    .heroThumbnail img {
      width: 100%;
      object-fit: cover;
      margin-top: 30%;
      border-radius: 1.5rem;
    }
    
    .shareIcons {
      width: 100%;
      padding-top: 3%;
      padding-bottom: 10px;  
    }
    
    .shareButtons {
      width: fit-content;
      letter-spacing: 1rem;
    }

    .shareButtons i {
      font-size: 25px;
    }
    
    .magazineRedirect .paragraph p a {
      text-decoration: underline;
      text-decoration-color: #e54987;
    }
    
    .videoTextGroup {
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 20%;
    }
    
    .videoSection-2 {
      padding-bottom: 0%;
      order: -1;
    }
    
    .videoSection-2 iframe {
      width: 95vw;
      max-height: 53vw;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    
    .videoText {
      width: 70%;
      order: 1;
      grid-column: span 2;
      text-align: center;
      margin: auto;
    }

    .BTS{
      padding-top: 15%;
    }
    /* Explore PCOS */
    
    .readMoreText p{
      font-family: Familijen-bold;
      font-size: 35px;
      color: #e54987;
    }
    
    .smallImg img{
      width: 70%;
      margin: auto;
    }
    
    .smallerImg img{
      width: 60%;
      margin: auto;
    }
    
    .readMoreList img {
      width: 300px;
      object-fit: cover;
      border-radius: .5rem;
      z-index: 1;
    }
    
    .readMoreList img:hover a {
      color: #e54987;
    }
    
    .readMoreList a {
      text-decoration: none;
      color: #111111;
      font-family: familijen-reg;
      font-size: 9;
      transition: color;
      transition-duration: 200ms;
    }
    
    .readMoreList a:hover {
      color: #e54987;
    }
    
    .embedPost {
      margin-left: 50%;
      transform: translateX(-50%);
    }
    
    /* Share Your Story */
    .shareStoryList {
      width: 100%;
      height: 100%;
      display: grid;
      grid-template-columns: 1fr;
      gap: 25px;
      margin-top: 6%;
      padding: 1.5%;
      margin-bottom: 5%;
    }
    
    .petition {
      padding-bottom: 5%;
      transition-timing-function: ease;
      transition: transform;
      transition-duration: 300ms;
    }
    
    .petition:hover{
      transform: scale(1.05);
    }
    
    .petition:active{
      transform: scale(0.95);
    }
    
    /* Comment Section */
    .post {
      margin-bottom: 80px;
    }
    
    .post-likes h2 {
      font-family: familijen-reg;
      width: fit-content;
      font-size: 22px;
      color: #e54987;
      margin-left: 5px;
    }
    
    .post-likes h1 {
      font-family: familijen-reg;
      width: fit-content;
      font-size: 15px;
      color: #111111;
      margin-left: 5px;
    }
    
    .post-likes b {
      font-family: familijen-bold;
    }
    
    
    .heartCount {
      display: flex;
      align-items: center;
    }
    
    .comments {
      display: flex;
      flex-direction: column;
      gap: 10px;
      max-width: 100%;
      margin-bottom: 40px;
      max-height: 400px;
    }
    
    .comment {
      display: flex;
      align-items: center;
      padding: 10px 50px 10px 20px;
      gap: 20px;
      position: relative;
    }
    
    .commentName {
      font-size: 10px;
    }
    
    .commentMessage{
      font-size: 8px;
    }
    
    .comment h3, .comment p {
      font-family: Familijen-reg;
    }
    
    .noComments {
      font-family: Familijen-reg;
    }
    
    .comment:nth-child(2n) {
      background-color: #efefef;
    }
    
    .comment-liked {
      color: #e54987;
    }

    
    .delete {
      margin-left: auto;
      position: absolute;
      right: 20px;
    }
    
    .comment .delete-button {
      border: none;
      background-color: #999;
      color: #fcfcfc;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      cursor: pointer;
      display: none;
    }
    
    .comment:hover .delete-button {
      display: block;
    
    }
    
    .comment:hover .delete-button:hover {
      background-color: #e54987;
      transform: scale(1.09);
    }
    
    .commentsForm {
      padding-bottom: 10px;
    }

    .comment-form
    
    .commentsList {
      margin-top: 10px;
      height: 450px;
      overflow-y: visible;
    }
    .commentsList::-webkit-scrollbar {
      display: block;
    }
    
    .commentsList::-webkit-scrollbar-thumb {
      background: #e54987; 
      border-radius: 1rem;
    }
    
    .commentsList::-webkit-scrollbar-track {
      background: #fce4e3; 
      border-radius: 1rem;
    }
    
    .like-postButton {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    
    /********/
    /* FORM */
    /********/
    
    .comment-form {
      max-width: 100%;
      display: grid;
      grid-template-columns: 7fr;
      gap: 20px;
    }
    
    .form-textfield {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .form-textfield input[type="text"] {
      height: 40px;
    }
    
    .form-textfield textarea {
      margin-top: 2%;
    }
    
    .form-textfield input[type="text"],
    .form-textfield textarea {
      font-family: 'Familjen Grotesk', sans-serif;
      padding: 10px 14px;
      border: transparent 2px solid;
      border-radius: 1rem;
      background-color: #fce4e3;
      border-radius: 1rem;
    }
    
    .form-textfield input[type="text"]:focus,
    .form-textfield textarea:focus {
      outline: none!important;
      border: #e54987 2px solid;
    }
    
    .commentsForm p{
      color: #e54987;
      font-size: 35px;
      font-family: Familijen-bold;
      padding-bottom: 1%;
      padding-top: 1%;
    }
    
    #id-liked {
      display: none;
    }
    
    #icon {
      color: #e54987;
      transition: transform;
      transition-timing-function: ease;
      transition-duration: 200ms;
      cursor: pointer;
    }
    
    #icon:hover {
      transform: scale(1.09);
    }
    
    #icon:active {
      transform: scale(0.91);
    }
    .form-check p {
      font-size: 12px !important;
    }
    
    .form-button {
      width: fit-content;
      color: #e54987;
      font-size: 10px;
      font-family: Familijen-reg;
      border: 3px solid #e54987;
      background-color: transparent;
      text-decoration: none;
      border-radius: 2rem;
      padding: 10px 15px 10px 15px;
      transition: color, background-color,transform;
      transition-timing-function: ease;
      transition-duration: 200ms;
      outline: none !important;
    }
    
    .form-button:hover {
      background-color: #e54987;
      color: #ffffff;
      cursor: pointer;
      transform: scale(1.05);
    }
    
    .form-button:active {
      transform: scale(0.95);
    }
    
    .deleteconfirm {
      margin-top: auto;
      margin-bottom: auto;
      height: 100%;
      display: flex;
      align-items: center;
    }
    
    .deleteInput {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      flex-direction: column;
    }
    
    .deleteInput input {
      width: 100%;
      height: 40px;
      background-color: #fce4e3;
      border-radius: 1rem;
      border: none;
      margin-top: 2%;
      text-indent: 15px;
      border: transparent 2px solid;
    }
    
    .deleteInput input:focus {
      outline: none !important;
      border: #e54987 2px solid;
    }
    
    .boxContainer {
      background-color: #fce4e3;
      width: 60%;
      padding: 3% 10px;
      border-radius: 1rem;
    }
    
    .boxContainer h4{
      font-family: Familijen-reg;
      color: #8e8e8e;
    }
    
    .deletebg {
      width: 100vw;
      height: 100vh;
      background-color: #e54987;
    }
    
    .arrowBack {
      margin-bottom: 50px;
      margin-left: 10px;
      color: #e54987;
      transition: transform;
      transition-timing-function: ease;
      transition-duration: 200ms;
    }
    
    .arrowBack:hover {
      transform: scale(1.20);
    }
    
    .arrowBack:active {
      transform: scale(0.80);
    }
    
    /* Contact Page */
    .contactPage {
      width: 100%;
      height: fit-content;
      display: grid;
      grid-template-columns: 1fr;
      overflow: hidden;
    }
    
    .contactPageGroup {
      height: fit-content;
      padding-top: 30%;
    }

    .contactPageGroup div {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }
    
    .contactPageImg {
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
    }
    
    .contactPageImg img {
      width: 200px;
    }
    
    .socialMediaLinks {
      width: fit-content;
      padding-top: 5%;
    }
    
    .socialImg img {
      width: 35px;
    }
    
    .directMail {
      padding-top: 15%;
      padding-bottom: 15%;
      margin: auto;
    }
    
    .form-email {
      width: 100%;
      height: 100%;
    }
    
    .form-email input {
      width: 100%;
      height: 40px;
      background-color: #fce4e3;
      border-radius: 1rem;
      border: none;
      margin-top: 2%;
      text-indent: 15px;
      border: transparent 2px solid;
    }
    
    .form-email textarea {
      width: 100%;
      background-color: #fce4e3;
      border-radius: 1rem;
      border: none;
      margin-top: 2%;
      text-indent: 15px;
      padding-top: 10px;
      height: 400px;
      border: transparent 2px solid;
    }
    
    .form-email textarea:focus, .form-email input:focus {
      outline: none !important;
      border: #e54987 2px solid;
    }
    /* Who We Are */
    
    .aboutPage {
      width: 100vw;
    }
    
    .whoWeAreBody {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr;
      margin-top: 5%;
    }
    
    .whoWeAreBody img {
      width: 80%;
      margin: auto;
      order: 1;
    }

    .whoWeAreBody .Text{
      order: -1;
    }
    
    .whoWeAreText-2 {
      width: 85%;
      margin-left: auto;
      margin-right: auto;
      transform: translateY(20%);
      text-align: center;
    }
    
    .whoWeAreText-3 {
      width: 85%;
      margin-left: auto;
      margin-right: auto;
      transform: translateY(20%);
      text-align: center;
    }

    .whoWeAreText-3 div{
      text-align: center;
    }
    
    .whoWeAreTextMain {
      font-family: Familijen-bold;
      color: #e54987;
      font-size: 45px;
    }
    
    .whoWeAreTextSub {
      font-family: Familijen-reg;
      color: #111111;
      font-size: 18px;
      margin-top: 5%;
    }
    
    .valuesMain {
      margin-top: 10%;
    }

    .valuesListGroup .paragraph {
      grid-column: span 2;
    }
    
    .valuesListText {
      font-family: Familijen-reg;
      color: #111111;
      font-size: 25px;
      width: 80%;
    }
    
    .shareStoryRedirect {
      width: 100%;
      padding-top: 5%;
      padding-bottom: 5%;
    }
    
    .redirectText {
      width: 70%;
    }
    
    /* Collaborators */
    .collaboratorsPage {
      padding-top: 10%;
      padding-bottom: 5%;
    }
    
    .collaboratorsPage img{
      border-radius: 1rem;
    }
    .collabraorsSocials {
      height: 40px;
      padding-top: 5%;
      padding-bottom: 5%;
      letter-spacing: 1rem;
    }
    
    .collabraorsSocials .fab{
      color: #e54987;
      transition-timing-function: ease;
      transition: transform;
      transition-duration: 300ms;
    }
    
    .collabraorsSocials .fab:hover {
      transform: scale(1.09);
    }
    
    .collabraorsSocials .fab:active {
      transform: scale(0.93);
    }
  }
  
  /* xs */
  @media (max-width: 475px) {
    .container {
      width: 100%;
    }
    
    /* Navbar Constant*/
    .navMenuLogo img {
      height: 40px;
    }
    
    .navMenu ul {
      display: none;
    }
    
    .menu-btn {
      display: block;
      width: fit-content;
      margin-left: auto;
      margin-right: 20px;
      transition: transform;
      transition-timing-function: ease-in-out;
      transition-duration: 200ms;
      cursor: pointer;
    }

    .menu-btn:hover {
      transform: scale(1.05);
    }
    
    .menu-btn:active {
      transform: scale(0.95);
    }
    
    .sideBar {
      display: block;
      width: 75%;
      height: 100vh;
      position: fixed;
      background-color: #ffffff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.20);
      z-index: 20;
      right: 0;
      transform: translateX(100%);
      transition: transform 450ms cubic-bezier(.13,.53,.38,.97);
    }

    body[data-nav="true"] .sideBar {
      transform: translateX(0);
    }

    .sideBar ul {
      margin-top: 10%;
    }
    
    .sideBar i {
      color: #e54987;
      cursor: pointer;
      padding-left: 20px;
      padding-bottom: 25px;
      transition: transform 200ms ease-in-out;
    }

    .sideBar ul li {
      height: fit-content;
    }

    .sideBar ul li a {
      width: 100%;
      font-size: 12px;
      color: #e54987;
      transition: color 150ms ease-in-out , background-color 150ms ease-in-out;
    }

    .sideBar ul li a:hover {
      background-color: #e54987;
      color: #ffffff;
    }

    .sideBarLogo {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 15px;
    }

    .sideBarLogo img {
      width: 40%;
    }
    /* Font Constant*/
    .paragraph {
      margin-top: 5%;
    }
    .paragraph p {
      font-family: Familijen-reg;
      font-size: 10px;
    }
    
    .paragraph i {
      font-family: Familijen-med-i;
    }
    
    .paragraph span{
      font-family: Familijen-bold;
      color: #e54987;
    }
    
    .paragraph-title p {
      margin-top: 5%;
      font-family: Familijen-bold;
      font-size: 25px;
      color: #111111;
    }
    
    .paragraph-title-2 p {
      font-family: Familijen-bold;
      font-size: 25px;
      color: #111111;
    }
    
    .paragraph-bold p {
      margin-top: 5%;
      font-family: Familijen-bold;
      font-size: 25px;
      color: #e54987;
    }
    
    .paragraph-bold-big p {
      margin-top: 5%;
      font-family: Familijen-bold;
      font-size: 35px;
      color: #e54987;
    }
    
    .paragraph-bold-harmony p {
      margin-top: 5%;
      font-family: Familijen-bold;
      font-size: 25px;
      color: #e54987;
    }
    
    .paragraph-i p {
      width: 85%;
      margin-top: 5%;
      font-family: Familijen-med-i;
      font-size: 10px;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    .paragraph-i-big p {
      width: 85%;
      margin-top: 5%;
      font-family: Familijen-med-i;
      font-size: 25px;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    
    .paragraph-list {
      margin-top: 5%;
    }
    
    .paragraph-list p {
      font-family: Familijen-reg;
      font-size: 10px;
    }
    
    .image {
      width: 100%;
      display: flex;
      align-items: center;
    }
    
    .image img {
      width: 100%;
      border-radius: 1rem;
    }
    
    .containText {
      width: 80%;
      margin-left: 5%;
    }
    
    .imgParagraphGroup{
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      margin-top: 5%;
    }
    
    .paragraphGroup {
      width: 100%;
    }
    
    .pinkBorderLeft {
      border-left: #e54987 15px solid;
    }
    
    .span-2{
      grid-column: span 2;
    }
    
    .storyBody {
      width: 100%;
      margin-bottom: 5%;
      overflow: hidden;
    }

    .StoryGrid2 {
      display: grid;
      grid-template-columns: 1fr;
      gap: 25px;
      text-align: justify;
    }
    
    .StoryGrid4 {
      display: grid;
      grid-template-columns: 1fr;
      gap: 25px;
      text-align: justify;
    }
    
    /* Button Constant*/
    .sectionButton {
      width: fit-content;
      color: #e54987;
      font-size: 10px;
      font-family: Familijen-reg;
      border: 2px solid #e54987;
      background-color: transparent;
      text-decoration: none;
      border-radius: 2rem;
      margin-top: 20px;
      padding: 10px 10% 10px 10%;
      transition: color, background-color,transform;
      transition-timing-function: ease;
      transition-duration: 200ms;
    }

    .sectionButtonCollab {
      font-size: 10px;
      border: 2px solid #e54987;
    }
    
    .sectionButton-2 {
      width: fit-content;
      color: #ffffff;
      font-size: 10px;
      font-family: Familijen-reg;
      border: 2px solid #ffffff;
      background-color: transparent;
      text-decoration: none;
      border-radius: 2rem;
      margin-top: 20px;
      padding: 10px 10% 10px 10%;
      transition: color, background-color,transform;
      transition-timing-function: ease;
      transition-duration: 200ms;
    }

    /* Landing Page */
    .landingPage {
      width: 100%;
    }
    
    .heroBanner {
      width: 100%;
      height: fit-content;
      padding-top: 25%;
      position: relative;
      display:flex;
      align-items: center;
      flex-direction: column;
      overflow: hidden;
    }

    
    .heroText {
      width: 100%;
      height: fit-content;
      margin-left: 0%;
    }
    
    .heroTextMain{
      font-family: Foxbot;
      color: #e54987;
      font-size: 45px;
      width: 100%;
      text-align: center;
    }
    
    .heroTextSub {
      font-family: Familijen-reg;
      color: #111;
      font-size: 10px;
      width: 60%;
      margin-top: 12px;
      text-align: center;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    .heroImg {
      width: 100%;
    }
    
    .heroImg img {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 100%;
    }
    
    .pinkBg {
      width: 100%;
      background-color: #fce4e3;
      padding-top: 30px;
      padding-bottom: 30px;
    }
    
    .pinkBgNeon {
      width: 100%;
      background-color: #e54987;
      padding-top: 30px;
      padding-bottom: 30px;
    }

    .infoPCOS {
      width: 100%;
      height: fit-content;
      display: grid;
      grid-template-columns: 1fr;
    }
    
    .infoPCOSGraphic {
      width: 100%;
      display: block;
      flex-direction: column;
      align-items: center;
      animation: none;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    .infoPCOSGraphic p {
      font-family: familijen-reg;
      font-size: 55px;
      width: 80%;
      line-height:45px;
      text-align: center;
    }
    
    .infoPCOSGraphic span {
      font-size: 55px;
      font-family: familijen-bold;
      color: #e54987;
    }
    
    .ladySymbol {
      width: fit-content;
      margin-top: 10px;
      margin-bottom: 5%;
    }
    
    .ladySymbol img {
      width: 25px;
    }
    
    .landingImgTextGroup {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr;
      margin-top: 10%;
      grid-auto-flow: reverse;
      padding-bottom: 50px;
    }

    .landingImgTextGroup .image {
      order: -1;
    }

    .landingImgTextGroup .whoWeAreText {
      order: 1;
      text-align: center;
    }

    .whatIsPCOS {
      height: fit-content;
      padding: 30px 25px 30px 25px;
      border-radius: 1rem;
      margin-top: 50px;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    
    .whatIsPCOSMain {
      font-family: familijen-bold;
      font-size: 15px;
      color: #ffffff;
    }
    
    .whatIsPCOSSub {
      font-family: familijen-reg;
      font-size: 10px;
      color: #ffffff;
      margin-top: 10px;
    }

    .mapContainer {
      max-width: 475px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 0.5rem;
      padding-right: 0.5rem;
      overflow: visible;
    }

    
    .whoWeAre {
      width: 100%;
      padding-bottom: 10%;
    }
    
    .whoWeAre img {
      width: 40%;
      margin-left: auto;
      margin-right: auto;
    }
    
    .textGroup {
      width: 60%;
      margin-left: 50%;
      transform: translateX(-50%);
      font-family: familijen-reg;
    }
    
    .textGroup span {
      font-size: 25px;
    }
    
    .testimonials {
      display: flex;
      align-items: center;
      flex-direction: column;
      padding-bottom: 5%;
    }
    
    .testimonials img {
      width: 100%;
    }
    
    /* Explore PCOS  and Share Your Story Pages */
    /* Constants */
    
    .paragraph img {
      width: 40px;
    }
    .seperation {
      width: 100%;
      border-bottom: #e54987 1px solid;
      margin-top: 5%;
    }
    
    .explorePcosPage {
      width: 100%;
    }
    
    .exploreList {
      width: 100%;
      height: 100%;
      display: grid;
      grid-template-columns: 1fr;
      gap: 25px;
      margin-top: 25%;
      padding: 1.5%;
      margin-bottom: 2%;
    }
    
    .exploreList a {
      text-decoration: none;
    }
    
    .listItem {
      width: 100%;
      background-color: #ededed;
      padding: 20px;
      border-radius: 1rem;
      transition:  transform, background-color;
      transition-duration: 400ms;
    }
    
    .listItem img {
      width: 100%;
      border-radius: 1rem;
      background-color: #ffffff;
    }
    
    .tag {
      margin-top: 3%;
      width: fit-content;
      background-color: #e54987;
      border-radius: 3rem;
      text-align: center;
      text-decoration: none;
      color: #ffffff;
      padding: 1% 5% 1% 5%;
      transition: color, background-color;
      transition-duration: 200ms;
    }
    
    .tag p {
      font-size: 8px;
      font-family: Familijen-reg;
    }
    
    .itemName p{
      font-family: Familijen-bold;
      font-size: 12px;
      color: #e54987;
      transition: color;
      transition-duration: 200ms;
    }
    
    .itemNameSub p {
      font-family: Familijen-reg;
      font-size: 10px;
      color: #e54987;
      margin-bottom: 5%;
      transition: color;
      transition-duration: 200ms;
    }
    
    .listItem:hover {
      background-color: #e54987;
      transform: scale(1.05);
      
    }
    
    .listItem:hover > .tag {
      background-color: #ffffff;
      color: #e54987;
    }
    
    .listItem:hover > .itemName p, .listItem:hover > .itemNameSub p {
      color: #ffffff;
    }
    
    .storyMargin {
      width: 100%;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    
    
    .heroThumbnail {
      width: 100%;
      text-align: center;
    }
    
    .heroThumbnail img {
      width: 100%;
      object-fit: cover;
      margin-top: 30%;
      border-radius: 1.5rem;
    }
    
    .shareIcons {
      width: 100%;
      padding-top: 3%;
      padding-bottom: 10px;  
    }
    
    .shareButtons {
      width: fit-content;
      letter-spacing: 1rem;
    }

    .shareButtons i {
      font-size: 25px;
    }
    
    .magazineRedirect .paragraph p a {
      text-decoration: underline;
      text-decoration-color: #e54987;
    }
    
    .videoTextGroup {
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 20%;
    }
    
    .videoSection-2 {
      padding-bottom: 0%;
      order: -1;
    }
    
    .videoSection-2 iframe {
      width: 95vw;
      max-height: 53vw;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    
    .videoText {
      width: 70%;
      order: 1;
      grid-column: span 2;
      text-align: center;
      margin: auto;
    }

    .BTS{
      padding-top: 15%;
    }
    /* Explore PCOS */
    
    .readMoreText p{
      font-family: Familijen-bold;
      font-size: 35px;
      color: #e54987;
    }
    
    .smallImg img{
      width: 70%;
      margin: auto;
    }
    
    .smallerImg img{
      width: 60%;
      margin: auto;
    }
    
    .readMoreList img {
      width: 300px;
      object-fit: cover;
      border-radius: .5rem;
      z-index: 1;
    }
    
    .readMoreList img:hover a {
      color: #e54987;
    }
    
    .readMoreList a {
      text-decoration: none;
      color: #111111;
      font-family: familijen-reg;
      font-size: 9;
      transition: color;
      transition-duration: 200ms;
    }
    
    .readMoreList a:hover {
      color: #e54987;
    }
    
    .embedPost {
      margin-left: 50%;
      transform: translateX(-50%);
    }
    
    /* Share Your Story */
    .shareStoryList {
      width: 100%;
      height: 100%;
      display: grid;
      grid-template-columns: 1fr;
      gap: 25px;
      margin-top: 6%;
      padding: 1.5%;
      margin-bottom: 5%;
    }
    
    .petition {
      padding-bottom: 5%;
      transition-timing-function: ease;
      transition: transform;
      transition-duration: 300ms;
    }
    
    .petition:hover{
      transform: scale(1.05);
    }
    
    .petition:active{
      transform: scale(0.95);
    }
    
    /* Comment Section */
    .post {
      margin-bottom: 80px;
    }
    
    .post-likes h2 {
      font-family: familijen-reg;
      width: fit-content;
      font-size: 22px;
      color: #e54987;
      margin-left: 5px;
    }
    
    .post-likes h1 {
      font-family: familijen-reg;
      width: fit-content;
      font-size: 15px;
      color: #111111;
      margin-left: 5px;
    }
    
    .post-likes b {
      font-family: familijen-bold;
    }
    
    
    .heartCount {
      display: flex;
      align-items: center;
    }
    
    .comments {
      display: flex;
      flex-direction: column;
      gap: 10px;
      max-width: 100%;
      margin-bottom: 40px;
      max-height: 400px;
    }
    
    .comment {
      display: flex;
      align-items: center;
      padding: 10px 50px 10px 20px;
      gap: 20px;
      position: relative;
    }
    
    .commentName {
      font-size: 10px;
    }
    
    .commentMessage{
      font-size: 8px;
    }
    
    .comment h3, .comment p {
      font-family: Familijen-reg;
    }
    
    .noComments {
      font-family: Familijen-reg;
    }
    
    .comment:nth-child(2n) {
      background-color: #efefef;
    }
    
    .comment-liked {
      color: #e54987;
    }

    
    .delete {
      margin-left: auto;
      position: absolute;
      right: 20px;
    }
    
    .comment .delete-button {
      border: none;
      background-color: #999;
      color: #fcfcfc;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      cursor: pointer;
      display: none;
    }
    
    .comment:hover .delete-button {
      display: block;
    
    }
    
    .comment:hover .delete-button:hover {
      background-color: #e54987;
      transform: scale(1.09);
    }
    
    .commentsForm {
      padding-bottom: 10px;
    }
    
    .commentsList {
      margin-top: 10px;
      height: 450px;
      overflow-y: visible;
    }
    .commentsList::-webkit-scrollbar {
      display: block;
    }
    
    .commentsList::-webkit-scrollbar-thumb {
      background: #e54987; 
      border-radius: 1rem;
    }
    
    .commentsList::-webkit-scrollbar-track {
      background: #fce4e3; 
      border-radius: 1rem;
    }
    
    .like-postButton {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    
    /********/
    /* FORM */
    /********/
    
    .comment-form {
      max-width: 100%;
      display: grid;
      grid-template-columns: 7fr;
      gap: 20px;
    }
    
    .form-textfield {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .form-textfield input[type="text"] {
      height: 40px;
    }
    
    .form-textfield textarea {
      margin-top: 2%;
    }
    
    .form-textfield input[type="text"],
    .form-textfield textarea {
      font-family: 'Familjen Grotesk', sans-serif;
      padding: 10px 14px;
      border: transparent 2px solid;
      border-radius: 1rem;
      background-color: #fce4e3;
      border-radius: 1rem;
    }
    
    .form-textfield input[type="text"]:focus,
    .form-textfield textarea:focus {
      outline: none!important;
      border: #e54987 2px solid;
    }
    
    .commentsForm p{
      color: #e54987;
      font-size: 35px;
      font-family: Familijen-bold;
      padding-bottom: 1%;
      padding-top: 1%;
    }
    
    #id-liked {
      display: none;
    }
    
    #icon {
      color: #e54987;
      transition: transform;
      transition-timing-function: ease;
      transition-duration: 200ms;
      cursor: pointer;
    }
    
    #icon:hover {
      transform: scale(1.09);
    }
    
    #icon:active {
      transform: scale(0.91);
    }

    .form-check p {
      font-size: calc(15px - 0.5vw) !important;
    }
    
    .form-button {
      width: fit-content;
      color: #e54987;
      font-size: 10px;
      font-family: Familijen-reg;
      border: 3px solid #e54987;
      background-color: transparent;
      text-decoration: none;
      border-radius: 2rem;
      padding: 10px 15px 10px 15px;
      transition: color, background-color,transform;
      transition-timing-function: ease;
      transition-duration: 200ms;
      outline: none !important;
    }
    
    .form-button:hover {
      background-color: #e54987;
      color: #ffffff;
      cursor: pointer;
      transform: scale(1.05);
    }
    
    .form-button:active {
      transform: scale(0.95);
    }
    
    .deleteconfirm {
      margin-top: auto;
      margin-bottom: auto;
      height: 100%;
      display: flex;
      align-items: center;
    }
    
    .deleteInput {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      flex-direction: column;
    }
    
    .deleteInput input {
      width: 100%;
      height: 40px;
      background-color: #fce4e3;
      border-radius: 1rem;
      border: none;
      margin-top: 2%;
      text-indent: 15px;
      border: transparent 2px solid;
    }
    
    .deleteInput input:focus {
      outline: none !important;
      border: #e54987 2px solid;
    }
    
    .boxContainer {
      background-color: #fce4e3;
      width: 60%;
      padding: 3% 10px;
      border-radius: 1rem;
    }
    
    .boxContainer h4{
      font-family: Familijen-reg;
      color: #8e8e8e;
    }
    
    .deletebg {
      width: 100vw;
      height: 100vh;
      background-color: #e54987;
    }
    
    .arrowBack {
      margin-bottom: 50px;
      margin-left: 10px;
      color: #e54987;
      transition: transform;
      transition-timing-function: ease;
      transition-duration: 200ms;
    }
    
    .arrowBack:hover {
      transform: scale(1.20);
    }
    
    .arrowBack:active {
      transform: scale(0.80);
    }
    
    /* Contact Page */
    .contactPage {
      width: 100%;
      height: fit-content;
      display: grid;
      grid-template-columns: 1fr;
      overflow: hidden;
    }
  
    .contactPageGroup div {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }
    
    .contactPageImg {
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
    }
    
    .contactPageImg img {
      width: 200px;
    }
    
    .socialMediaLinks {
      width: fit-content;
      padding-top: 5%;
    }
    
    .socialImg img {
      width: 35px;
    }
    
    .directMail {
      padding-top: 15%;
      padding-bottom: 15%;
      margin: auto;
    }
    
    .form-email {
      width: 100%;
      height: 100%;
    }
    
    .form-email input {
      width: 100%;
      height: 40px;
      background-color: #fce4e3;
      border-radius: 1rem;
      border: none;
      margin-top: 2%;
      text-indent: 15px;
      border: transparent 2px solid;
    }
    
    .form-email textarea {
      width: 100%;
      background-color: #fce4e3;
      border-radius: 1rem;
      border: none;
      margin-top: 2%;
      text-indent: 15px;
      padding-top: 10px;
      height: 400px;
      border: transparent 2px solid;
    }
    
    .form-email textarea:focus, .form-email input:focus {
      outline: none !important;
      border: #e54987 2px solid;
    }
    /* Who We Are */
    
    .aboutPage {
      width: 100vw;
      padding-top: 10%
    }
    
    .whoWeAreBody {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr;
      margin-top: 5%;
    }
    
    .whoWeAreBody img {
      width: 80%;
      margin: auto;
      order: 1;
    }

    .whoWeAreBody .Text{
      order: -1;
    }
    
    .whoWeAreText-2 {
      width: 85%;
      margin-left: auto;
      margin-right: auto;
      transform: translateY(20%);
      text-align: center;
    }
    
    .whoWeAreText-3 {
      width: 85%;
      margin-left: auto;
      margin-right: auto;
      transform: translateY(20%);
      text-align: center;
    }

    .whoWeAreText-3 div{
      text-align: center;
    }
    
    .whoWeAreTextMain {
      font-family: Familijen-bold;
      color: #e54987;
      font-size: 45px;
    }
    
    .whoWeAreTextSub {
      font-family: Familijen-reg;
      color: #111111;
      font-size: 18px;
      margin-top: 5%;
    }
    
    .valuesMain {
      margin-top: 10%;
    }
    
    .valuesList {
      display: grid;
      grid-template-rows: 1fr 1fr 1fr;
      margin-bottom: 10%;
    }
  
    
    .shareStoryRedirect {
      width: 100%;
      padding-top: 5%;
      padding-bottom: 5%;
    }
    
    .redirectText {
      width: 70%;
    }
    
    /* Collaborators */
    .collaboratorsPage {
      padding-bottom: 5%;
    }
    
    .collaboratorsPage img{
      border-radius: 1rem;
    }
    .collabraorsSocials {
      height: 40px;
      padding-top: 5%;
      padding-bottom: 5%;
      letter-spacing: 1rem;
    }
    
    .collabraorsSocials .fab{
      color: #e54987;
      transition-timing-function: ease;
      transition: transform;
      transition-duration: 300ms;
    }
    
    .collabraorsSocials .fab:hover {
      transform: scale(1.09);
    }
    
    .collabraorsSocials .fab:active {
      transform: scale(0.93);
    }
  }


  /* Keyframes */
  /* Nav Bar Keyframes*/
  @keyframes navFadeIn{
  from {
    background-color: transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0);
  }
  to {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
}

@keyframes navFadeOut{
  from {
    background-color: rgba(255, 255, 255,1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  to {
    background-color: rgba(255, 255, 255,0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0);
  }
}

@keyframes navLogoMark {
  from {
    transform: translateX(100%) scale(0.7);
    opacity: 0;
  }
  to {
    transform: translateX(0)scale(1);
    opacity: 100;
  }
}

@keyframes navLogoMain {
  from {
    transform: translateX(-10%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 100;
  }
}

  /*Overlay Keyframes*/

  @keyframes slideOutTop {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(-100%);
    }
  }

  @keyframes overlayLogo {
    from {
      opacity: 0;
    }
    to {
      opacity: 100;
    }
  }

  @keyframes rotation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(359deg);
    }
  }

  @keyframes FadeInBottom {
    from {
      transform: translateY(20%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes FadeOutBottom {
    from {
      transform: translateY(0);
      opacity: 1;
    }
    to {
      transform: translateY(20%);
      opacity: 0;
    }
  }

  @keyframes FadeInTop {
    from {
      transform: translateY(-5%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }