/*globals*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat&family=Titillium+Web:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  z-index: 1;
  background-color: #dfdbe5;;
}
.header a {
  text-decoration: none;
  color: #111;
  font-size: 2rem;
  font-weight: bolder;
}
.menu-items {
  list-style: none;
  display: flex;
  align-items: center;
}
.menu-items li a {
  font-size: 1.2rem;
  padding: 0.5em 1em;
  transition: background-color 0.3s ease-in-out;
}
.menu-items li a:hover {
  background-color: #ccc7d3;
}
/*nav hamburger menu*/
.menu-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 1;
}
.menu-btn_lines,
.menu-btn_lines::before,
.menu-btn_lines::after {
  width: 1.5rem;
  height: 0.1rem;
  background-color: #111;
  transition: all 0.5s ease-in-out;
}
.menu-btn_lines::before,
.menu-btn_lines::after {
  content: " ";
  position: absolute;
}
.menu-btn_lines::before {
  transform: translateY(-0.5rem)
}
.menu-btn_lines::after {
  transform: translateY(0.5rem)
}
/*animation*/
.menu-btn.open .menu-btn_lines {
  transform: translateX(2rem);
  background-color: transparent;
}
.menu-btn.open .menu-btn_lines::before {
  transform: rotate(45deg) translate(-1.5rem, 1.5rem);
  background-color: #ffffff;
}
.menu-btn.open .menu-btn_lines::after {
  transform: rotate(-45deg) translate(-1.5rem, -1.5rem);
  background-color: #ffffff;
}
/*sections*/
.section {
  max-width: 100%;
  position: relative;
  width: 100vw;
  height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #dfdbe5;
}
/*hero section*/
.hero-section {
  background-color: #dfdbe5;
}
.hero-col {
  max-width: 100%;
  padding: clamp(0.5rem, 8vw, 5rem);
  text-align: center;
}
.section h1 {
  font-family: "Titillium Web", sans-serif;
  font-size: clamp(40px, 4vw, 80px);
  font-weight: 700;
  line-height: 6vh;
  Color:#795f95;
  text-transform: uppercase;
  padding-top: 150px;
}
.section h2 {
  font-size: clamp(13px, 2.5vw, 30px);
  color: #5a4d70;
  padding:2em;
  padding-left: 3rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section h4{
  color:  #5a4d70;
  margin-top: 2em;
  font-size: 1.5em;
  display: none;
}
.hero-section i{
  display: inline-block;
  color: #573c84;
  padding: 0.75rem;
  border-radius: 50%;
  font-weight: 900;
  font-size: 2em;
  transition: opacity 0.4s ease-in-out;
}
.hero-section i:hover {
  background-color: #ccc7d3;
}
.fas.fa-shopping-cart:hover{
  background-color: #ccc7d3;
  &::after {
    content: "Coming Soon";
    position: absolute;
    bottom: 5%; 
    left:70%;
    transform: translateX(-45%);
    transform: translateY(30%);
    font-size: 12px; 
    color: black;
    font-weight: 800;
  }
}
.hero-section h4{
  padding-top:2em;
  font-size: 1.5em;
  color:rgb(88, 28, 119);
}
.hero-section img {
  width: clamp(400px, 60vw, 850px)
}
/**********about me section***********/
.about-me {
  background-color: #573c84;
  padding: 6em;
  color: rgb(238, 237, 237);
}
.about_group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.about-me h1{
 font-size: 3em; 
 font-weight: 700;
 padding-bottom:1em;
}
.about-me h2{
  padding: 10px;
  padding-left: 2em;
  align-self: center;
}
.about-me img{
  width: 400px;
  border-radius: 10px;
}
footer p{
  font-size: 1em;
}
@media (100px <= width <= 300px) {
  .header{
    padding:0.5rem 1rem;
  }
  .header a{
    font-size: 1.2rem;
  }
  .hero-section{
    padding-top: 42vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }
  .hero-col {
    max-width: 100%;
    padding-top: 0;
    padding-left: 0.4rem;
    text-align: center;
  }
  .section h1 {
    font-size: clamp(20px, 4vw, 50px);
    font-weight: 700;
    line-height: 4vh;
    padding-top:18vh;
  } 
  .hero-col h2{
   padding-top:1rem;
   padding-bottom: 0;
  }
  .hero-col h4 {
    display: none;
  }
  .hero-section img {
    position:absolute;
    left: 4vw;
    top: 12%;
    bottom: 0;
    width: 85%;
  }
  .hero-section i{
    padding: 0.75rem;
    font-weight: 900;
    font-size: 1.5em;
  }
  .about-me {
    background-color: #573c84;
    padding-top: 3rem;
    color: rgb(238, 237, 237);
    font-size: 0.6rem;
    line-height: 1.4;
  }
  .about_group {
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
  }
  .about-me h1{
    font-size: 3em; 
    font-weight: 700;
    padding-bottom:1em;
    align-items: center;
  }    
  .about-me h2{
    width: 90vw;
    align-self: center;
    padding: 1em;
    font-size: 1.8em;
  }
  .about-me img{
    width: 100%;
  }
  .menu-btn {
    margin-right: 20px;
    display: flex;
  }
  .menu-items {
    flex-direction: column;
    justify-content: space-around;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 45vh;
    transform: translateX(100vw);
    background-color: #5a4d70;
    transition: transform 0.3s ease-in-out;
  }
  .menu-items.open {
    transform: translateX(0);
  }
  .menu-items li {
    width: 100vw;
    height: 100%;
  }
  .menu-items li a {
    color: #ffffff;
    font-size: 3vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .menu-items li a:hover {
    color: #111111;
  }
}
@media (300px <= width <= 500px) {
  .header a{
    font-size: 1.3rem;
  }
  .hero-section{
    padding-top: 40vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }
  .section h1 {
    font-size: clamp(20px, 4vw, 50px);
    font-weight: 700;
    line-height: 4vh;
    padding-top:19vh;
  } 
  .hero-col h2{
    padding-top:1rem;
    padding-bottom: 0;
   }
  .hero-col h4 {
    display: none;
  }
  .hero-section img {
    position:absolute;
    left: 6vw;
    right: 0;
    top: 12%;
    bottom: 0;
    width: 85%;
  }
  .hero-section i{
    padding: 0.75rem;
    font-weight: 900;
    font-size: 1.5em;
  }
  .fas.fa-shopping-cart:hover{
    background-color: #ccc7d3; 
    &::after {
      content: "Coming Soon";
      position: absolute;
      bottom: 5%; 
      left:60%;
      transform: translateX(-45%);
      transform: translateY(30%);
      font-size: 13px; 
      color: black;
      font-weight: 800;
    }
  }
  .about-me {
    background-color: #573c84;
    padding: 6em;
    color: rgb(238, 237, 237);
    font-size: 0.65em;
    line-height: 1.3;
  }
  .about_group {
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
  }
  .about-me h1{
    font-size: 3em; 
    font-weight: 700;
    padding-bottom:1em;
    align-items: center;
  }    
  .about-me h2{
    width: 90vw;
    align-self: center;
    padding: 1em;
    font-size: 1.8em;
  }
  .about-me img{
    width: 100%;
  }
  .menu-btn {
    margin-right: 20px;
    display: flex;
  }
  .menu-items {
    flex-direction: column;
    justify-content: space-around;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 45vh;
    transform: translateX(100vw);
    background-color: #5a4d70;
    transition: transform 0.3s ease-in-out;
  }
  .menu-items.open {
    transform: translateX(0);
  }
  .menu-items li {
    width: 100vw;
    height: 100%;
  }
  .menu-items li a {
    color: #ffffff;
    font-size: 3vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .menu-items li a:hover {
    color: #111111;
  }
}
@media (501px <= width <= 600px){
  .header a{
    font-size: 1.3rem;
  }
  .section {
    position: relative;
    width: 100vw;
    height: 92vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
    max-width: 100%;
  }
  .hero-section{
    padding-top: 40vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }
  .section h1 {
    font-family: "Titillium Web", sans-serif;
    font-size: clamp(20px, 4vw, 50px);
    font-weight: 700;
    line-height: 4vh;
    color: #ccc7d3;
    Color:#795f95;
    text-transform: uppercase;
    padding-top:25vh;
  } 
  .hero-col h2{
    display: none;
  }
  .hero-col h4 {
    display: none;
  }
  .hero-section img {
    position: absolute;
    left: 12vw;
    right: 0;
    top: 10%;
    bottom: 0;
    width: 75%;
  }
  .hero-section i{
    color: #573c84;
    padding: 0.75rem;
    font-weight: 900;
    font-size: 1.5em;
    transition: opacity 0.4s ease-in-out
  }
  .about-me {
    background-color: #573c84;
    padding: 6em;
    color: rgb(238, 237, 237);
    font-size: 0.65em;
    line-height: 1.3;
  }
  .about_group {
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
  }   
  .about-me h1{
    font-size: 3em; 
    font-weight: 700;
    padding-bottom:1em;
    align-items: center;
  }     
  .about-me h2{
    width: 90vw;
    align-self: center;
    padding: 1em;
    font-size: 1.8em;
  }   
  .about-me img{
    width: 100%;
  }
  .menu-btn {
    margin-right: 20px;
    display: flex;
  }
  .menu-items {
    flex-direction: column;
    justify-content: space-around;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 45vh;
    transform: translateX(100vw);
    background-color: #5a4d70;
    transition: transform 0.3s ease-in-out;
  }
  .menu-items.open {
    transform: translateX(0);
  }
  .menu-items li {
    width: 100vw;
    height: 100%;
  }
  .menu-items li a {
    color: #ffffff;
    font-size: 3vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .menu-items li a:hover {
    color: #111111;
  }
}
@media (601px <= width <= 770px){
  .header a{
    font-size: 1.6rem;
  }
  .menu-btn {
    display: flex;
  }
  .menu-items {
    flex-direction: column;
    justify-content: space-around;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 45vh;
    transform: translateX(100vw);
    background-color: #5a4d70;
    transition: transform 0.3s ease-in-out;
  }
  .menu-items.open {
    transform: translateX(0);
  }
  .menu-items li {
    width: 100vw;
    height: 100%;
  }
  .menu-items li a {
    color: #ffffff;
    font-size: 3vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .menu-items li a:hover {
    color:#5a4d70;
  }
  .hero-section img {
    position: absolute;
    left: 20vw;
    top: 10%;
    width: 60%;
  }
  .section h1{
    padding-top:600px;
    font-size: 2rem;
    line-height: 1.3;
    padding-left: 5rem;
  }
  .fas.fa-shopping-cart:hover{
    &::after {
      position: absolute;
      bottom: 4%;
      left:50%;
      transform: translateX(-45%);
      transform: translateY(30%);
      font-size: 15px;
    }
  }
  .about_group {
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
  }  
  .about-me h1{
    font-size: 2.5rem; 
    font-weight: 700;
    padding-bottom:1em;
  }    
  .about-me h2{
    width: 90vw;
    padding: 1em;
    font-size: 1.5rem;
    line-height: 1.5;
  } 
  .about-me img{
    width: 70%;
  }
}
@media (771px <= width <= 999px){
  .header a{
    font-size: 1.7rem;
  }
  .hero-section{
    display: flex;
    flex-direction:column-reverse;
    justify-content: center;
    align-items: center;
  }
  .hero-col{
    padding-top: 0;
  }
  .hero-section img{
    width:80%;
    padding-top:15vh;
  }
  .section h1 {
    font-size: clamp(20px, 4vw, 50px);
    font-weight: 700;
    line-height: 2.5vh;
    padding-top:0;
  }
  .section h2{
    font-size: 1.5rem;
  }
  .fas.fa-shopping-cart:hover{
    &::after {
      position: absolute;
      bottom: 2%;
      left:65%;
      transform: translateX(-45%);
      transform: translateY(30%);
      font-size: 15px;
    }
  }
  .about-me {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #573c84;
    padding: 6em;
    color: rgb(238, 237, 237);
  } 
  .about_group {
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
  }  
  .about-me h1{
     font-size: 3em; 
     font-weight: 700;
     padding-bottom:1em;
    align-self: center;
  } 
  .about-me h2{
    padding: 10px;
    padding-left: 2em;
    padding-top: 2em;
    align-self: center;
    font-size: 1.6rem;
    line-height: 2rem;
  }  
  .about-me img{
    width: 65vw;
    border-radius: 10px;
    Padding: 3px;
  }
}
@media (1000px <= width <= 1100px) {
  .header a{
    font-size: 1.7rem;
  }
  .section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height:95vh;
  }
  .section h1 {
    padding-top: 75vh;
    line-height: 3vh;
  }
  .section h2{
    font-size: 1.5rem;
  }
  .hero-section img {
    position: absolute;
    left: 15vw;
    top: 10vh;
    width: 70%;
  }
  .fas.fa-shopping-cart:hover{
    &::after {
      position: absolute;
      bottom: 8%;
      left:65%;
      transform: translateX(-45%);
      transform: translateY(30%);
      font-size: 15px;
    }
  }
  .about-me{
    background-color: #573c84;
    width: 100%;
    padding-left: 2em;
    padding-right: 2em;
  }
  .about_group {
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
  }
  .about-me h1{
    text-align: center;
  }
  .about-me img{
    width: 60%;
  }
  .about-me h2{
    padding: 10px;
    padding-left: 2em;
    padding-top: 2em;
    font-size: 1.6rem;
    line-height: 2rem;
  }
}
@media (1101px <= width <= 1200px) {
  .header a{
    font-size: 1.7rem;
  }
  .hero-col{
    width: 45vw;
  }
  .section h1 {
    padding-top: 4rem;
  }
  .section h2{
    font-size: 1.5rem;
  }
  .hero-section img {
    position: absolute;
    left: 44vw;
    top: 15%;
    bottom: 0;
    width: 54%;
    padding-bottom: 50px;
  }
  .about-me{
    background-color: #573c84;
    width: 100%;
    padding-left: 2em;
    padding-right: 2em;
  }
}
@media (1201px <= width <= 1300px){
  .header a{
    font-size: 1.7rem;
  }
}
/**************Landscape Mode**********/
@media screen and (min-width: 500px) and (max-width: 659px) and (orientation: landscape){
  .header a{
    font-size: 1.3rem;
  }
  .section {
    position: relative;
    width: 100vw;
    height: 145vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 17rem;
    max-width: 100%;
  }
  .hero-section{
    padding-top: 95vh;
  }
  .hero-col{
    padding-left: 2.2rem;
  }
  .section h1 {
    font-size: clamp(25px, 3vw, 50px);
    padding-top:160vh;
    padding-left: 0;
  } 
  .section h2{
    display:none;
  }
  .hero-col h4 {
    display: none;
  }
  .hero-section img {
    position: absolute;
    left: 23vw;
    top: 6vh;
    width: 50%;
  }
  .hero-section i{
    color: #573c84;
    padding: 0.75rem;
    font-weight: 900;
    font-size: 1.5em;
    transition: opacity 0.4s ease-in-out;
  }
  .about-me {
    background-color: #573c84;
    padding: 6em;
    color: rgb(238, 237, 237);
    font-size: 0.65em;
    line-height: 1.3;
  }  
  .about_group {
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
  } 
  .about-me h1{
    font-size: 3em; 
    font-weight: 700;
    padding-bottom:1em;
    text-align: center;
  } 
  .about-me h2{
    width: 90vw;
    align-self: center;
    padding: 1em;
    font-size: 1.8em;
  }  
  .about-me img{
    width: 50vw;
  }
  .menu-btn {
    margin-right: 20px;
    display: flex;
  }
  .menu-items {
    flex-direction: column;
    justify-content: space-around;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 45vh;
    transform: translateX(100vw);
    background-color: #5a4d70;
    transition: transform 0.3s ease-in-out;
  }
  .menu-items.open {
    transform: translateX(0);
  }
  .menu-items li {
    width: 100vw;
    height: 100%;
  }
  .menu-items li a {
    color: #ffffff;
    font-size: 3vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .menu-items li a:hover {
    color: #111111;
  }
}
@media screen and (min-width: 660px) and (max-width: 719px) and (orientation: landscape){
  .header a{
    font-size: 1.35rem;
  }
  .section {
    position: relative;
    width: 100vw;
    height: 120vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 20rem;
    max-width: 100%;
  }
  .hero-col {
    max-width: 100%;
    padding: 0;
    text-align: center;
  }
  .hero-section{
    padding-top: 95vh;
  }
  .section h1 {
    font-family: "Titillium Web", sans-serif;
    font-size: clamp(20px, 3vw, 50px);
    font-weight: 700;
    line-height: 7vh;
    Color:#795f95;
    text-transform: uppercase;
    padding-top:80vh;
    text-align: center;
    padding-left: 0;
  } 
  .hero-col h4 {
    display: none;
  }
  .hero-section img {
    position: absolute;
    left: 23vw;
    top: 6vh;
    bottom: 0;
    width: 50%;
  }
  .hero-section i{
    color: #573c84;
    padding: 0.75rem;
    font-weight: 900;
    font-size: 1.5em;
    transition: opacity 0.4s ease-in-out;
  }
  .about-me {
    background-color: #573c84;
    padding: 6em;
    color: rgb(238, 237, 237);
    font-size: 0.65em;
    line-height: 1.3;
  }  
  .about_group {
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
  } 
  .about-me h1{
    font-size: 3em; 
    font-weight: 700;
    padding-bottom:1em;
    text-align: center;
  } 
  .about-me h2{
    width: 90vw;
    align-self: center;
    padding: 1em;
    font-size: 1.8em;
  }  
  .about-me img{
    width: 50vw;
  }
  .menu-btn {
    margin-right: 20px;
    display: flex;
  }
  .menu-items {
    flex-direction: column;
    justify-content: space-around;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 45vh;
    transform: translateX(100vw);
    background-color: #5a4d70;
    transition: transform 0.3s ease-in-out;
  }
  .menu-items.open {
    transform: translateX(0);
  }
  .menu-items li {
    width: 100vw;
    height: 100%;
  }
  .menu-items li a {
    color: #ffffff;
    font-size: 3vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .menu-items li a:hover {
    color: #111111;
  }
}
@media screen and (min-width: 719px) and (max-width: 722px) and (orientation: landscape){
  .header a{
    font-size: 1.35rem;
  }  
  .section {
    height: 160vh;
  }
  .hero-section h1{
    padding-top:100vh;
  }
  .hero-section i{
    color: #573c84;
    padding: 0.75rem;
    font-weight: 900;
    font-size: 1.5em;
    transition: opacity 0.4s ease-in-out
  }
  .about-me {
    background-color: #573c84;
    padding: 6em;
    color: rgb(238, 237, 237);
    font-size: 0.65em;
    line-height: 1.3;
  }
  .about_group {
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
  }  
  .about-me h1{
    font-size: 3em; 
    font-weight: 700;
    padding-bottom:1em;
    align-items: center;
  } 
  .about-me h2{
    width: 90vw;
    align-self: center;
    padding: 1em;
    font-size: 1.8em;
  } 
  .about-me img{
    width: 100%;
  }
  .menu-btn {
    margin-right: 20px;
    display: flex;
  }
  .menu-items {
    flex-direction: column;
    justify-content: space-around;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 45vh;
    transform: translateX(100vw);
    background-color: #5a4d70;
    transition: transform 0.3s ease-in-out;
  }
  .menu-items.open {
    transform: translateX(0);
  }
  .menu-items li {
    width: 100vw;
    height: 100%;
  }
  .menu-items li a {
    color: #ffffff;
    font-size: 3vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .menu-items li a:hover {
    color: #111111;
  }
}
@media screen and (min-width: 722px) and (max-width: 767px) and (orientation: landscape){
  .header a{
    font-size: 1.35rem;
  }
  .section {
    height: 250vh;
  }
  .hero-section h1{
    padding-top:180vh;
    text-align: center;
  }
  .hero-section h2{
    text-align: center;
    padding-left: 5rem;
  }
  .hero-section i{
    color: #573c84;
    padding: 0.75rem;
    font-weight: 900;
    font-size: 1.5em;
    transition: opacity 0.4s ease-in-out;
    align-self: center;
  }
  .about-me {
    padding: 6em;
    color: rgb(238, 237, 237);
    font-size: 0.65em;
    line-height: 1.3;
  }
  .about_group {
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
  }
  .about-me h1{
    font-size: 3em; 
    font-weight: 700;
    padding-bottom:1em;
    text-align: center;
  }
  .about-me h2{
    width: 90vw;
    align-self: center;
    padding: 1em;
    font-size: 1.8em;
  }
  .about-me img{
    width: 50%;
  }
  .menu-btn {
    margin-right: 20px;
    display: flex;
  }
  .menu-items {
    flex-direction: column;
    justify-content: space-around;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 45vh;
    transform: translateX(100vw);
    background-color: #5a4d70;
    transition: transform 0.3s ease-in-out;
  } 
  .menu-items.open {
    transform: translateX(0);
    }
  .menu-items li {
    width: 100vw;
    height: 100%;
  } 
  .menu-items li a {
    color: #ffffff;
    font-size: 3vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .menu-items li a:hover {
    color: #111111;
  }
}
@media screen and (min-width: 768px) and (max-width: 910px) and (orientation: landscape) {
  .header a{
    font-size: 1.35rem;
  }
  .section {
    position: relative;
    width: 100vw;
    height: 92vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 400px;
    max-width: 100%;
  }
  .hero-section{
    padding-top: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .section h1 {
    font-family: "Titillium Web", sans-serif;
    font-size: clamp(13px, 3vw, 50px);
    font-weight: 700;
    line-height: 7vh;
    Color:#795f95;
    text-transform: uppercase;
    padding-top:200vh;
    justify-content: center;
    align-items: center;
  } 
  .hero-col h2{
    display: none;
  }
  .hero-col h4 {
    display: none;
  }
  .hero-section img {
    position: absolute;
    left: 30vw;
    top: 0;
    width: 40vw;
  }
  .hero-section i{
    color: #573c84;
    padding: 0.75rem;
    font-weight: 900;
    font-size: 1.5em;
    transition: opacity 0.4s ease-in-out
  }
  .about-me {
    background-color: #573c84;
    padding: 6em;
    color: rgb(238, 237, 237);
    font-size: 0.65em;
    line-height: 1.3;
  } 
  .about_group {
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
  }
  .about-me h1{
    font-size: 3em; 
    font-weight: 700;
    padding-bottom:1em;
    align-items: center;
  }
  .about-me h2{
    width: 90vw;
    align-self: center;
    padding: 1em;
    font-size: 1.8em;
  }
  .about-me img{
    width: 40vw;
  }
  .menu-btn {
    margin-right: 20px;
    display: flex;
  }
  .menu-items {
    flex-direction: column;
    justify-content: space-around;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 45vh;
    transform: translateX(100vw);
    background-color: #5a4d70;
    transition: transform 0.3s ease-in-out;
  }
  .menu-items.open {
    transform: translateX(0);
  }
  .menu-items li {
    width: 100vw;
    height: 100%;
  }
  .menu-items li a {
    color: #ffffff;
    font-size: 3vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .menu-items li a:hover {
    color: #111111;
  }
}
@media only screen and (min-width: 911px) and (max-width: 1000px) and (orientation: landscape){
  .header a{
    font-size: 1.32rem;
  }
  .menu-btn {
    display: flex;
  }
  .menu-items {
    flex-direction: column;
    justify-content: space-around;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 45vh;
    transform: translateX(100vw);
    background-color: #5a4d70;
    transition: transform 0.3s ease-in-out;
  }
  .menu-items.open {
    transform: translateX(0);
  }
  .menu-items li {
    width: 100vw;
    height: 100%;
  }
  .menu-items li a {
    color: #ffffff;
    font-size: 3vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .menu-items li a:hover {
    color:#5a4d70;
  }
  .section {
    position: relative;
    width: 100vw;
    height: 92vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 400px;
    max-width: 100%;
  }
  .hero-section{
    padding-top: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .section h1 {
    font-family: "Titillium Web", sans-serif;
    font-size: clamp(13px, 3vw, 50px);
    font-weight: 700;
    line-height: 7vh;
    Color:#795f95;
    text-transform: uppercase;
    padding-top:200vh;
    justify-content: center;
    align-items: center;
  }
  .hero-col h2{
    display: none;
  }
  .hero-col h4 {
    display: none;
  }
  .hero-section img {
    position: absolute;
    left: 30vw;
    top: 0;
    width: 40vw;
  }
  .hero-section i{
    color: #573c84;
    padding: 0.75rem;
    font-weight: 900;
    font-size: 1.5em;
    transition: opacity 0.4s ease-in-out
  }
  .fas.fa-shopping-cart:hover{
    &::after {
      position: absolute;
      bottom: 7%;
      left:62%;
      transform: translateX(-45%);
      transform: translateY(30%);
      font-size: 15px;
    }
  }
  .about-me {
    background-color: #573c84;
    padding: 6em;
    color: rgb(238, 237, 237);
    font-size: 0.65em;
    line-height: 1.3;
  } 
  .about_group {
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
  }
  .about-me h1{
    font-size: 3em; 
    font-weight: 700;
    padding-bottom:1em;
    align-items: center;
  }
  .about-me h2{
    width: 90vw;
    align-self: center;
    padding: 1em;
    font-size: 1.8em;
  }
  .about-me img{
    width: 40vw;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1100px) and (orientation: landscape){
  .header a{
    font-size: 1.7rem;
  }  
  .section{
    height: 170vh;
  }
  .section h1{
    padding-top: 125vh;
    line-height: 1;
  }
  .hero-section img{
    top:7vh;
    left: 25vw;
    width:55vw;
  }
  .about-me {
    background-color: #573c84;
    padding: 4rem;
    color: rgb(238, 237, 237);
    font-size: 1rem;
    line-height: 1.5;
  }
  .about-me img{
    width:50%;
  }
  .about-me h2{
    font-size: 1.3rem;
  }
}
/* Specific styles for Ipad Mini */
@media only screen 
  and (min-device-width: 1024px) 
  and (max-device-width: 1024px) 
  and (min-device-height: 768px) 
  and (max-device-height: 768px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 1) {
  .header a{
    font-size: 2rem;
  }
  .menu-btn {
    display: flex;
  }
  .menu-items {
    flex-direction: column;
    justify-content: space-around;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 45vh;
    transform: translateX(100vw);
    background-color: #5a4d70;
    transition: transform 0.3s ease-in-out;
  }
  .menu-items.open {
    transform: translateX(0);
  }
  .menu-items li {
    width: 100vw;
    height: 100%;
  }
  .menu-items li a {
    color: #ffffff;
    font-size: 3vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .menu-items li a:hover {
    color:#5a4d70;
  }
  .section{
    height: 150vh;
  }
  .section h1{
    padding-top: 120vh;
    line-height: 1;
  }
  .hero-section img{
    top:10vh;
    left: 20vw;
    width:60vw;
  }
}
@media screen and (min-width: 1101px) and (max-width: 1181px) and (orientation: landscape){
  .header a{
    font-size: 1.7rem;
  }
  .section h1{
      line-height: 1;
  }
  .section{
      padding-bottom: 5rem;
  }
  .hero-section img{
      top:11vh;
      right:20vw;
      width:50%;
  }
  .fas.fa-shopping-cart:hover{
    &::after {
      position: absolute;
      bottom: 12%;
      left:25%;
      transform: translateX(-45%);
      transform: translateY(30%);
      font-size: 18px;
    }
  }
  .about-me h2{
      line-height: 1.5;
  }
}
@media screen and (min-width: 1182px) and (max-width: 1400px) and (orientation: landscape){
  .header a{
    font-size: 1.7rem;
  }
  .section h1{
    line-height: 1;
  }
  .section{
    padding-bottom: 5rem;
  }
  .hero-section img{
    top:11vh;
    right:20vw;
    width:95%;
  }
 .fas.fa-shopping-cart:hover{
    &::after {
      position: absolute;
      bottom: 10%;
      left:29%;
      transform: translateX(-45%);
      transform: translateY(30%);
      font-size: 20px;
    }
  }
  .about -me h2{
    line-height: 1.5;
  }
}
@media only screen and (min-width: 1301px) and (max-width: 1368px) and (orientation: landscape){
  .header a{
    font-size: 2rem;
  }
  .fas.fa-shopping-cart:hover{
    &::after {
      position: absolute;
      bottom: 10%;
      left:25%;
      transform: translateX(-45%);
      transform: translateY(30%);
      font-size: 20px;
    }
  }
}