.side-nav-cont {
  width: 50%;
  height: 100vh;
  background: #585877;
  padding: 0 1em;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.side-nav-show {
  display: flex;
  animation: side-nav-show .3s ease-out forwards 0s;
}
@keyframes side-nav-show {
  from {right: -50%;}
  to{right: 0;}
}

.side-nav-hide {
  animation: side-nav-hide .3s ease-out forwards 0s;
}
@keyframes side-nav-hide {
  from {right: 0;}
  to{right: -50%;}
}

.side-nav { width: 100%; }

.side-nav ul {list-style-type: none; line-height: 4em;}
.side-nav a {
  color: var(--plain);
  text-decoration: none;
}
.side-nav a:hover{
  color:  red;
}


.cancel-cont {
  width: 100%;
  position: absolute;
  top: 0;
  display: flex;
  justify-content: flex-end;
}

.cancel-cont .cancel {
  width: 10%;
  padding: .6em;
  color: var(--plain);
  font-size: 1.6em;
  cursor: pointer;
  display: flex;
  justify-content: center;
  animation: rot .4s ease-out forwards .2s;
}
@keyframes rot {
  from {transform: rotate(0deg);}
  to {transform: rotate(90deg);}
}


/*********extra styling for gallery grid***************/
.section6-grid-cont {
  position: relative;
}


.section6-item {
  overflow: hidden;
  border-radius: 1em;
  font-weight: bold;
  text-align: center; 
}

.section6-img-cont {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  display: none;
  justify-content: center;
  align-items: center;
  animation: img .3s ease-out forwards 0s;
}
@keyframes img {
  from {opacity: 0;}
  to {opacity: 1;}
}

.section6-image {
  width: 50%;
  position: absolute;
  border-radius: .7em;
  animation: img2 .3s ease-out forwards 0s;
}
@keyframes img2 {
  from {margin-left: -5em;}
  to {margin-left: 0;}
}

.img-overlay {
  width: 100%;
  height: 100vh;
  background: black;
  opacity: .45;
  position: absolute;
  top: 0;
}



.over-cont {
  width: 100%;
  height: 0%;
  background: black;
  opacity: 0;
  transition-duration: .4s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.over-cont:hover {
  height: 100%;
  opacity: .7;
}


.over-cont svg {
  position: absolute;
  margin-top: -1.1em;
  cursor: pointer;
}


.over {
  width: 100%;
  height: 9em;
  position: relative;
  top: 4.5em;
}

/* Add to existing CSS */
.privacy-content {
    line-height: 1.6;
}

.privacy-content .policy-section {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.privacy-content h3.title {
    color: var(--primary-color);
    font-size: 24px;
}

