:root{
  --red: rgb(177, 15, 15);
  --redhover: rgb(149, 12, 12);
  --redactive: rgb(122, 10, 10);
  --lightgreybg: rgb(245, 245, 245);
  --greyblack: rgb(30, 30, 30);
  --salmon: rgb(255, 165, 165);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body{
  margin: 0;
  padding:0 ;
  font-family:'Helvetica';
  background-color: rgb(27, 27, 27);
  /* overflow-x: hidden; */
  /* -webkit-transform: translateZ(0); */
  position:relative
}

p{
  margin-top: 0;
}


/* FRONT AREA */
.front-image-area{
  margin-top:0px;
  height: 100vh;
  top:0;
  width: 100%;
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),url(../photos/front_photo.jpeg);
  background-attachment:fixed;
  background-size:cover;
  background-position: left center;
  background-repeat: no-repeat;
  /* transform:   translateZ(0); */
  /* -webkit-transform: translateZ(0);
  will-change: transform; */
  display: flex;
  align-items: center;
  z-index: 11;
  position: relative;
}


.title-title-area{
  display: flex;
  height:40%;
  width: auto;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  padding-left: 7%;
  /* position: relative; */
}
.title-text{
  color: rgb(228, 228, 228);
  display: flex;
  width: auto;
  height: 80%;
  flex-direction:column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  position:relative;
}
.kanji-area{
  height: 90%;
  width: auto;
  display: flex;
  padding-top: 20px;
}
.title-kanji{
  height: 100%;
  width: auto;
}
.title-sushi{
  font-size:7rem;
  font-weight: 700;
  font-weight: lighter;
  white-space: nowrap;
  font-family: 'Cormorant Garamond';
}
.title-desc{
  font-size: 28px;
  font-weight: lighter;
  white-space: nowrap;
}
.title-menu-button{
  margin-top: 19px;
  padding: 14px 16px;
  /* border-radius: 30px; */
  color: white;
  display: inline-block;
  text-decoration: none;
  font-family: 'Cormorant Garamond';
  background-color: var(--red);
  font-size: 18px;
  /* box-shadow: 0 3px 5px rgba(0,0,0, 0.3); */
  transition: background-color 0.15s;
}

.title-menu-button:hover{
  background-color: var(--redhover);
}
.title-menu-button:active{
  background-color: var(--redactive);
}
.front-svg{
  position:absolute;
  bottom:30px;
  right:20px;
  height: 40%;
  aspect-ratio: 1/1;

}
.front-svg svg{
  height: 100%;
  width: auto;
  opacity: 0.3;
}


/* DUO SECTION */
.duo-area{
  padding-top:80px;
  height: 770px;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 80px;
  position:relative;
  background-color: var(--lightgreybg);
}
.duo-picture{
  position:absolute;
  bottom:-10px;
  left:-35px;
  height: 33%;
  width: 20%;
}
.duo-box{
  display: flex;
  width: 85%;
  height: 90%;
  /* min-width: 800px; */
  flex: 1fr 1fr;
  justify-content: space-between;
}
.duo-item{
  background-color: white;
  height: 100%;
  width: 48%;
  display: flex;
  flex-direction: column; 
  flex: 2fr 1fr;
  box-shadow: 0 2px 4px rgba(0,0,0, 0.1);
}
.duo-pic1 {
  width: 100%;
  margin: 0;
  height: 440px;
  background: 
    linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), 
    url("../photos/sushi-cone.jpg") center/cover no-repeat;
}
.duo-pic2 {
  width: 100%;
  margin: 0;
  height: 440px;
  background: 
    linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), 
    url("../photos/sushi-taco.jpg") center/cover no-repeat;
}
.duo-desc{
  margin: 50px 50px;
  height: 260px;
}
.duo-title{
  color: var(--red);/*rgb(113, 134, 94)*/
  font-weight: 600;
  font-size: 45px;
  font-family: 'Cormorant Garamond';
}
.duo-text{
  padding-top:35px;
  padding-bottom: 10px;
  font-size: 17px;
  font-family: helvetica;
  font-weight: lighter;
  line-height: 1.6;
  letter-spacing: 0.3px;
}
.duo-menu-button{
  margin-top: 19px;
  padding: 15px 16px;
  /* border-radius: 30px; */
  color: white;
  display: inline-block;
  text-decoration: none;
  background-color: var(--red);/*rgb(97, 111, 85);*/
  font-size: 15px;
  /* box-shadow: 0 3px 5px rgba(0,0,0, 0.3); */
  transition: background-color 0.15s;
}

.duo-menu-button:hover{
  background-color: var(--redhover);
}
.duo-menu-button:active{
  background-color: var(--redactive);
}


/* POPULAR SECITON*/
.popular-area{
  padding-top: 70px;
  padding-bottom: 70px;
  height: auto;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  background-color: white;
  position: relative;
}
.popular-box{
  display: flex;
  flex-direction: column;
  width: 85%;
  height: 90%;
  background-color: white;
  /* min-width: 950px; */
  box-sizing: border-box; 
  border-radius: 2px;
  padding-right:30px;
  padding-left:20px;
}
.popular-title{
  padding-left: 50px;
  padding-bottom: 15px;
  color: var(--red);
  font-weight: 600;
  font-size: 45px;
  font-family: 'Cormorant Garamond';
}
.popular-subtitle{
  padding-left: 55px;
  padding-bottom: 70px;
  color: rgb(40, 40, 40);
  font-weight: 100;
  font-size: 17px;
  font-family:helvetica;
}
.popular-desc{
  display: flex;
  align-items: center;
  gap: 70px;
  height: 100%;
  padding-bottom: 70px;
}
.popular-foods{
  display: flex;
  overflow:hidden;
  scroll-behavior: smooth;
  flex:1;
  gap:20px;
  display: flex;
  overflow-x: auto;   /* allow horizontal scroll */
  overflow-y: hidden; /* hide vertical scroll */
  scroll-behavior: smooth;
  flex: 1;
  padding-bottom:20px;

  --left-fade: 50px;
  --right-fade: 50px;

  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0px,
    rgba(0, 0, 0, 1) var(--left-fade),
    rgba(0, 0, 0, 1) calc(100% - var(--right-fade)),
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;

  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0px,
    rgba(0, 0, 0, 1) var(--left-fade),
    rgba(0, 0, 0, 1) calc(100% - var(--right-fade)),
    rgba(0, 0, 0, 0) 100%
  );
  mask-repeat: no-repeat;
  mask-size: 100% 100%;

  transition: --left-fade 0.4s ease, --right-fade 0.4s ease;
}

.popular-foods.no-left-fade {
  --left-fade: 0px;
}

.popular-foods.no-right-fade {
  --right-fade: 0px;
}

.popular-foods::-webkit-scrollbar {
  height: 7px;
}

.popular-foods::-webkit-scrollbar-track {
  background: #f3f3f3; 
  border-radius: 5px;
}

.popular-foods::-webkit-scrollbar-thumb {
  background: #d7d7d7;
  border-radius: 5px;
}

.popular-foods::-webkit-scrollbar-thumb:hover {
  background: #c2c2c2;
}


.popular-item{
  flex: 0 0 calc(25% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s, color 0.15s;
  border-radius: 2px;
  text-decoration: none;
  color:rgb(40, 40, 40);
}
.popular-item:hover{
  background-color: rgb(241, 241, 241);
  color: var(--red);
  cursor: pointer;
}
.popular-item:active{
  background-color: rgb(228, 228, 228);
}
.popular-seemore{
  display: initial;
  padding:10px 16px;
  font-size: 1rem;
  font-weight: 100;
  border: 1px solid var(--red);
  color: var(--red);
  text-decoration: none;
  transition:background-color 0.2s, color 0.2s;
}
.popular-seemore:hover{
  background-color: var(--red);
  color: white;
}
.popular-seemore:active{
  background-color: var(--redhover);
  color: white;
}
.popular-item.no-hover {
  pointer-events: none;
  background: none !important;
  color: inherit !important;
}
.popular-item.no-hover a {
  pointer-events: auto;
}
.popular-pic{
  object-fit:contain;
  width: 75%;
  aspect-ratio: 1/1;
  justify-self: center;
  align-self: center;
}
.popular-name{
  justify-self: center; 
  align-self: center;
  font-size:16px;
  font-weight: 100;
  padding-top: 5px;
  text-shadow: 0 2px 2px gba(0,0,0,0.3);;
}
.popular-arrow{
  background: var(--red);
  color: white;
  border:none;
  font-size:1.5rem;
  cursor: pointer;
  border-radius: 50%;
  padding: 9px 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: background-color 0.2s, opacity 0.3s ease;
}
.popular-arrow:hover {
  background: var(--redhover);
}
.popular-more {
  display: flex;
  justify-content:center; 
  margin-top: 10px;
}

.popular-more-text {
  font-size: 17px;
  font-weight: 100;
  font-family: Helvetica;
  color: rgb(23, 23, 23);
  text-align: left;
}
.popular-menu{
  font-family: 'Cormorant Garamond';
  font-size: 22px;
  font-weight: 100;
  padding:15px 20px;
  background-color: var(--red);
  color: white;
  text-decoration: none;
}
.popular-menu:hover{
  background-color: var(--redhover);
}
/* .popular-more-link {
  color: rgb(177, 15, 15);
  text-decoration: underline;
  font-weight: 600;
}

.popular-more-link:hover {
  color: rgb(118, 37, 37);
  cursor: pointer;
} */



/* OPTIONS SECTION */
.option-area{
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;

  background-color: rgb(245, 245, 245);
}
.option-header {
  width: 80%;
  margin-bottom: 60px;
}
.option-title{
  font-size:45px;
  font-weight: 700;
  font-family: 'Cormorant Garamond';
  text-align: left;
  width: 600px;
}
.option-box{
  width: 80%;
  height: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex: 1fr 1fr 1fr;
  min-width: 950px;
}
.option-item{
  background-color: white;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 30%;
  display: flex;
  flex-direction: column;
  min-width: 300px;
  border-radius: 2px;
  transition: background-color 0.2s, color 0.2s;
}
.option-name{
  font-size: 20px;
  font-weight: 600;
  padding-top: 40px;
  font-family: 'Cormorant Garamond';
}
.option-desc{
  font-size: 15px;
  font-weight: 100;
  padding-top: 0;
  width: 80%;
  text-align: center;
}
.option-item:hover{
  background-color: rgb(177, 15, 15);
  color: white;
}
.option-pic{
  width: auto;
  height: 40%;
  aspect-ratio: 1/1;
  justify-self: center;
  align-self: center;
}
.option-svg{
  width: auto;
  height: 100%;
}
.option-item .option-svg path{
  fill:rgb(177, 15, 15);
  transition: fill 0.2s, stroke 0.2s;
}
.option-item:hover .option-svg path{
  fill: var(--salmon);
  stroke: var(--salmon);
}
.moto {
  transform: scale(0.92); /* Makes everything smaller */
  transform-origin: center;
}



/* ABOUT US SECTION */
.about-area{
  height: 700px;
  width: 100%;
  display:flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 30px;
  background-color: rgb(245, 245, 245);
  margin-top: -1px;
}
.about-box{
  position:relative;
  height: 75%;
  width: 85%;
  background-color: white;
  display: flex;
  min-width: 950px;
  /* box-shadow: 0 2px 4px rgba(0,0,0, 0.3); */
}
.about-pic{
  position:absolute;
  top:-90px;
  left:-5%;
  width: 40%;
  height: 130%;
  background: 
    linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), 
    url("../photos/sushi-hand.webp") center/cover no-repeat;
  border-top-left-radius: 255px;
  border-top-right-radius: 255px;
  z-index: 1;
  /* box-shadow: 0 2px 4px rgba(0,0,0, 0.3); */
}
.about-desc {
  width: 57.5%;
  height: 100%;
  position: relative;
  left: 37%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  box-sizing: border-box; 
  gap: 20px;
  z-index: 2
}
.about-title{
  color: rgb(177, 15, 15);
  font-weight: 600;
  font-size: 40px;
  font-family: 'Cormorant Garamond';
}
.about-text{
  padding-top: 20px;
  font-size: 17px;
  font-family: helvetica;
  font-weight: lighter;
  width: 500px;
  line-height: 1.6;
}


/* REVIEW SECTIONS */
.review-area{
  height: 700px;
  display:flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 130px;
  padding-top:50px;
  background-color: rgb(245, 245, 245);
  margin-top: -1px;
}
.review-box{
  position:relative;
  height: 75%;
  width: 85%;
  background-color: white;
  display: flex;
  min-width: 950px;
  justify-content: flex-end;
  /* box-shadow: 0 2px 4px rgba(0,0,0, 0.3); */
}
.review-pic{
  position:absolute;
  top:-90px;
  right:-6%;
  width: 40%;
  height: 130%;
  background: 
    linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), 
    url("../photos/sushi-dip.jpg") center/cover no-repeat;
  border-top-left-radius: 255px;
  border-top-right-radius: 255px;
  z-index: 1;
  /* box-shadow: -1px 2px 4px rgba(0,0,0, 0.3); */
}
.review-desc {
  width: 57.5%;
  height: 100%;
  position:absolute;
  right:35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px;
  box-sizing: border-box; 
  z-index: 10;
}
.review-title{
  color: rgb(177, 15, 15);
  font-weight: 600;
  font-size: 40px;
  white-space: nowrap;
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond';
}
.review-quotes{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 50%;
  gap: 18px;

}
.review-marks{
  object-fit: contain;
  height: 15%;
  width: auto;
  opacity: 0.6;
}
.review-marks:hover{
  opacity: 0.75;
}
.review-marks:active{
  opacity: 0.85;
}
.review-text{
  padding-top: 20px;
  font-size: 17px;
  font-family: helvetica;
  font-weight: lighter;
  max-width: 400px;
  line-height: 1.6;
  text-align: center;
}
.review-name{
  text-align: left;
  width: 50%;
  font-weight: lighter;
}
.review-text,
.review-name {
  transition: opacity 0.6s ease, filter 0.6s ease;
}

.fade-out {
  opacity: 0;
  filter: blur(4px);
}




/* CONTACT SECITON */
.contact{
  /* background-color: rgb(27, 27, 27); */
  background-color: rgb(30, 30, 30);
  color: rgb(231, 231, 231);
  height: 79vh;
  font-family: helvetica;
  padding-top:50px;
  position:relative;
}
.contact-title{
  padding-top: 30px;
  padding-bottom: 10px;
  padding-left:9vw;
  /* background-color: #c2c2c2; */
  text-align: left;
  font-size: 50px;
  font-weight: 600;
  white-space: nowrap;
  font-family: 'Cormorant Garamond';
}
.contact-subtitle{
  padding-left: 9vw;
  font-weight: 100;
  font-family: 'Cormorant Garamond';
  text-align: left;
  font-size: 1.2rem;
  padding-bottom: 30px;
}
.contact-row{
  display: flex;
  /* align-items: left; */
  justify-content: space-between;
  padding-left:9vw;
  padding-right:15vw;
  /* height: 100%; */
  /* background-color: lightcyan; */
  margin-top: 70px;
}
.contact-boxes{
  display: flex;
  flex-direction: column;
  justify-content: left;
  /* align-items: center; */
  line-height: 15px;
  text-decoration: none;
  /* background-color: lightblue; */
}
.open-text{
  font-weight: bold;
  font-size: 38px;
  font-family: 'Cormorant Garamond';
  white-space: nowrap;
}
.contact-info{
  margin-top: 25px;
  font-size: 15px;
  font-weight: lighter;
  text-decoration: none;
}
.social{
  padding-top: 25px;
  height: 35px;
  width: auto;
  display: block;
}
.contact-info a {
  display: inline-block;
  text-decoration: none;
  border: none;
}
.contact-logo{
  height: 100%;
  /* background-color: lightcoral; */
  width: auto;
  color:var(--greyblack)
}
/* .contact-logo img{
  width: auto;
  height: 130%;
  opacity: 0.6;
} */
.contact-svg{
  position:absolute;
  height: 50%;
  width: 30%;
  /* background-color: lightcyan  ; */
  right:-20px;
  bottom:100px;
}
.contact-svg img{
  height: 100%;
  width: auto;
  opacity: 0.4;
}


/* UP ARROW */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: rgb(177, 15, 15);
  color: white;
  font-size: 28px;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease, 
              opacity 0.4s ease, 
              transform 0.4s ease, 
              bottom 0.4s ease;
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px); /* slide up effect */
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  bottom: 25px; /* final resting position */
}
.back-to-top:hover {
  background-color: rgb(153, 13, 13);
  cursor: pointer;
}


/* COPYRIGHT SECTION */
.copyright-area{
  height: 9vh;
  background-color: rgb(24, 24, 24);
  display: flex;
  justify-content: center;
  align-items: center;
}
.copyright-area p{
  color: rgb(171, 171, 171);
  font-size: 0.8rem;
  padding-top:10px;
}


/* IPAD VERSION */
@media (max-width: 1600px) {
  .front-image-area {
    background-attachment: scroll;
  }
}



/* PHONE VERSION*/

@media (max-width: 600px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }
  

  /* FRONT */
  @media (max-width: 768px) {
  .front-image-area {
    height: 95vh;
    background-attachment: scroll; /* smoother for mobile Safari */
    background-position: left center;
    background-size: cover;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding-top:0;
  }

  /* SVG goes to the top, centered */
  .front-svg {
    position: static;
    height: 35vh;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
  }

  .front-svg svg {
    height: 100%;
    width: auto;
  }

  /* Keep kanji + text side by side */
  .title-title-area {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 0 5vw;
    gap: 10px;
    text-align: left;
  }

  .kanji-area {
    height: 170px;
    width: auto;
    padding-top: 15px;
  }

  .title-kanji {
    height: 100%;
    width: auto;
  }

  .title-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: rgb(228, 228, 228);
  }

  .title-sushi {
    font-size: 4rem;
    font-family: 'Cormorant Garamond';
    font-weight: 400;
    white-space: normal;
  }

  .title-desc {
    font-size: 1.1rem;
    font-weight: lighter;
    margin-top: 6px;
    white-space: normal;
  }

  .title-menu-button {
    font-size: 0.9rem;
    padding: 11px 12px;
    margin-top: 15px;
  }


  /* DUO */
  .duo-area{
    padding: 60px 0; 
    height: auto;
  }
  .duo-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 95%;
    min-width: unset;
    gap: 40px;  
  }
  .duo-item{
    width: 90%;
    height: auto;
  }
  .duo-desc{
    height: auto;
    margin: 30px 30px;
  }
  .duo-title{
    font-size:32px;
  }
  .duo-pic1{
    /* height: 30vh; */
    display: none;
  }
  .duo-text{
    font-size: 15px;
    padding-top: 20px;
  }
  .duo-pic2{
    height: 30vh;
  }
  .duo-menu-button{
    padding:14px 16px;
    font-size: 14px;
  }


  /* POPULAR */
  .popular-area{
    width: 100%;
    height: auto;
    min-width: unset;
    padding:80px 10px 40px 10px;
  }
  .popular-box{
    width: 100%;
  }
  .popular-title{
    font-size:2.1rem;
    padding-left: 0;
  }
  .popular-subtitle{
    font-size: 1rem;
    padding-left: 0;
    padding-bottom:0
  }
  .popular-desc{
    padding-top:40px;
    /* gap:8px; */
    height: auto;
  }
  .popular-pic{
    width: 90%;
  }
  .popular-name{
    font-size: 0.8rem;
    white-space: nowrap;
  }
  .popular-foods {
    gap: 20px;
    --left-fade: 5px;
    --right-fade: 5px;
    padding-bottom: 0;
    margin-bottom:0;
  }
  .popular-item {
    flex: 0 0 130px;
    /* border: 1px solid rgba(0,0,0,0.5); */
  }
  .popular-seemore{
    display: initial;
    padding:8px 10px;
    font-size: 0.8rem;
    font-weight: 100;
    border: 1px solid var(--red);
    color: var(--red);
  }
  .popular-arrow {
    display:none
  }
  .popular-more{
    padding-top:0px;
    margin-top: 0;
    padding-bottom: 15px;
    /* margin-left:10px; */
  }
  .popular-menu{
    font-size: 1.2rem;
    padding:10px 13px;
  }



  /* OPTIONS */
  .option-area{
    height: auto;
    padding:12vh 5vw 10vh 5vw;
  }
  .option-header {
    width: 100%;
    margin-bottom: 7vh;
    /* padding-left:30px; */
  }
  .option-title {
    font-size: 2.1rem;
    width: 100%;
    text-align: center;
  }
  .option-box {
    flex-direction: column;   /* stack items vertically */
    align-items: center;
    justify-content: center;
    gap: 4vh;
    width: 100%;
    height: auto;
  }
  .option-item {
    height: auto;
    min-width: unset;
    padding: 20px 10px;
  }
  .option-name{
    padding-top: 30px;
  }
  .option-desc{
    font-size: 13px;
  }
  .option-pic {
    padding-top: 10px;
    height: 100px;
  }
  .option-item:active,
  .option-item:focus {
    background-color: rgb(177, 15, 15);
    color: white;
  }

  .option-item:active .option-svg path,
  .option-item:focus .option-svg path {
    fill: var(--salmon);
    stroke: var(--salmon);
  }


  /* ABOUT */
  .about-area{
    height: auto;
    width: 100%;
    justify-content: center;
    background-color: white;
    padding-top:13vh;
    padding-bottom:10vh
  }
  .about-box{
    flex-direction: column;
    width: 100%;
    min-width: unset;
    height: auto;
    padding:0;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    
  }
  .about-pic{
    position:static;
    height: 60vh;
    width: 80%;
    margin-bottom: 20px;
    box-shadow: none;
  }
  .about-desc {
    position: static;    
    left: 0;
    width: 80%;
    padding: 30px 0 0 0;
    gap: 15px;
    height: auto;
    box-shadow: none;
  }

  .about-title {
    font-size: 2rem;
    text-align: left;
  }

  .about-text {
    font-size: 1rem;
    width: 100%;
    text-align: left;
    padding:10px 0 0 0;
  }

  
  /* REVIEWS */
  .review-area{
    height: auto;
    width: 100%;
    justify-content: center;
    padding-top:13vh;
    padding-bottom:10vh
  }
  .review-box{
    flex-direction: column;
    width: 100%;
    min-width: auto;
    height: auto;
    padding:0;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    background-color: var(--lightgreybg);
  }
  .review-pic{
    position:static;
    height: 60vh;
    width: 80%;
    margin-bottom: 20px;
    box-shadow: none;;
  }
  .review-desc {  
    position: static;   
    width: 100%;
    padding: 30px 0 0 0 ;
    gap: 15px;
    height: 400px;
    box-shadow: none;
    justify-content: flex-start;
  }
  .review-quotes {
    flex-direction: row;
    justify-content: center;
    width:90%;
    gap: 10px;
    margin-bottom: 5px;

  }

  .review-title {
    width: 80%;
    font-size: 2rem;
    text-align: left;
    white-space: normal;
    margin-bottom: 10px;
  }

  .review-text {
    font-size: 1rem;
    width: auto;
    height: auto;
    text-align: center;
    padding:10px 0 0 0;
  }
  .review-name{
    font-size: 1rem
  }
  .review-marks{
    height: 2vh;
  }


  /* CONTACT */
  .contact{
    height: auto;
    padding-bottom: 0px;
    padding-top:60px;
    position: static;
  }
  .contact-title{
    font-size: 2.2rem;
    padding-left:10vw;
    padding-right:10vw;
    text-align: left;
  }
  .contact-subtitle {
    font-size: 1.1rem;
    padding-left: 10vw;
    padding-right: 10vw;
    text-align: left;
    line-height: 1.4;
    padding-bottom: 50px;
  }

  .contact-row {
    flex-direction: column;
    align-items: left;
    justify-content: center;
    padding: 0;
    gap: 60px;
    margin-top: 0;
    padding-left:10vw;
    position:relative;
    /* background-color: lightpink; */
  }
  .contact-boxes {
    align-items: left;
    text-align: left;
    gap:0
  }

  .open-text {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .contact-info {
    font-size: 0.9rem;
    line-height: 1.3;
    padding-bottom: 0;
    margin-top:0;
  }

  .social {
    height: 30px;
    padding-top:5px;
    /* margin: 10px; */
  }

  .contact-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    /* margin-top: 30px; */
  }

  .contact-svg {
    position: absolute;
    top:-50px;
    right: 0px;
    width: 55%;
    height: auto;
    margin: 50px auto 0 auto;
    display: flex;
    justify-content: center;
  }
  .contact-logo{
    display: none;
  }

  .contact-svg img {
    width: 100%;
    height: auto;
    opacity: 0.4;
  }


  /* UP ARROW */
  .back-to-top{
    font-size: 1.5rem;
    padding:5px 12px;
  }

}