
/* google font link  */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap');

/* font awesome cdn link  */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css');

:root{

  /* Primary colors */
  --black:#000000;
  --white:#ffffff;
  --Blue:#0d32ff;

  /* secondary colors */
  --button_hoverColor:#3d87ff;
  --body_bg:#202020;
  --primary-color:#000000;
  --secondary_color:#e6e6e6;
  --text_color:#1a1a1a;
  --white_text:#ffffff;
  --hover_color:#3d87ff;
  --background_black_opacity:#000000b7;
  --button_colors: #007bff;
  --color: rgba(0, 0, 0, 0.5);

  /* Heading Sizes for desktop and mobile */
  --h1_desktop: clamp(2rem, 5vw, 3.5rem);
  --h2_desktop: clamp(1.75rem, 4vw, 3rem);
  --h3_desktop: clamp(1.5rem, 3vw, 2.5rem);
  --h4_desktop: clamp(1.25rem, 2.5vw, 2rem);
  --h5_desktop: clamp(1.125rem, 2vw, 1.75rem);
  --h6_desktop: clamp(1rem, 1.5vw, 1.5rem);

  --h1_mobile: 2rem;
  --h2_mobile: 1.75rem;
  --h3_mobile: 1.6rem;
  --h4_mobile: 1.25rem;
  --h5_mobile: 1.125rem;
  --h6_mobile: 1rem;

  /* Text and paragraph sizes for desktop and mobile */
  --paragraph_text_desktop: 1.125rem;
  --paragraph_text_mobile: 1rem;
  --pText_line_height: 1.6;

  --scalable_body_texts: clamp(1rem, 3.5vw, 1.5rem);

  /* Images sizes in relative units */
  --image_size_1: 100vw;
  --image_size_2: 70vw;
  --image_size_3: 50vw;
  --image_size_4: 30vw;
  --image_size_5: 20vw;
  --image_size_6: 10vw;
  --image_size_7: 5vw;

  /* General Buttons design for desktop and mobile */
  --button_padding_D1: 16px 32px;
  --button_padding_D2: 12px 24px;
  --button_padding_D2: 8px 16px;
  --button_padding_M1: 18px 36px;
  --button_padding_M2: 14px 28x;
  --button_padding_M2: 10px 20x;
  --button_border-radius: 6px;
  --button_transition: all 0.3s ease-in-out;

  --scalable_button: clamp(1rem, 2vw, 1.25rem);
  --scalable_button2: clamp(1.3rem, 2vw, 1.5rem);

  /* Components */
  --pText_line_height: 1.6;
  --heading_line_height: 1;
  --border:.1rem solid rgba(119, 119, 119, 0.479);
  --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
  --borderRadius: 11px;
  --transition: all 0.3s ease-in-out;
  --inline-flex: inline-flex;
  --border:.1rem solid rgba(0,0,0,.2);
  --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);

}

h1, h2, h3, h4, h5, h6{
  line-height: var(--heading_line_height);
  font-weight: bolder;
}

h1{
  font-size: var(--h1_desktop);
}

h2{
  font-size: var(--h2_desktop);
}

h3{
  font-size: var(--h3_desktop);
}

h4{
  font-size: var(--h4_desktop);
}

h5{
  font-size: var(--h5_desktop);
}

h6{
  font-size: var(--h6_desktop);
}

p{
  font-size: var(--scalable_body_texts);
  line-height: var(--pText_line_height);
  color: var(--text_color);
  font-weight: 400;
}

.genbtn{
  width: 270px;
  height: 50px;
  padding: var(--button_padding_D2);
  font-size: var(--scalable_button);
  color: var(--);
  background: var(--button_colors);
  color: var(--white);
  /* text-transform: uppercase; */
  font-weight: bolder;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.genbtn:hover{
  background: var(--button_hoverColor);
  cursor: pointer;
  box-shadow: var(--box-shadow);
  transform: scale(0.98);
  transition: var(--transition);
}

.subbtn{
  width: 200px;
  height: 50px;
  padding: var(--button_padding_D2);
  font-size: var(--scalable_button2);
  color: var(--);
  background: transparent;
  color: var(--white);
  /* text-transform: uppercase; */
  font-weight: bolder;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  z-index: 5;
}

.subbtn:hover{
  background: var(--button_hoverColor);
  cursor: pointer;
  box-shadow: var(--box-shadow);
  transform: scale(0.98);
  transition: var(--transition);
}

#mobile_view{
   display: none;
}

#mobile_menu{
   display: none;
}

.menu_icon{
   display: none;
}

#logoOnScroll_mobile{
   display: none;
}

#mobile_info{
  display: none;
}

*{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, sans-serif;
  margin: 0; padding: 0;
  box-sizing: border-box;
  outline: none; border: none;
  text-decoration: none;
  scrollbar-color: var(--main-color) var(--black);
  scrollbar-width: thin;
  line-height: 20px;
  text-align: justify;
}

html{
  font-size: 90%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  transition: 0.5s;
}

body{
  height: 100vh;
  width: 100vw;
  background: var(--body_background);
  padding-bottom: 0rem;
}


/* Prevent parent elements from breaking sticky */
body, html {
  overflow-x: hidden;
}

main, section, div {
  overflow: visible !important;
}

.wrapper{
  width: 100%;
  height: 100dvh;
  background: var(--secondary_color);
}

.wrapper header{
  height: 100px;
  width: 100%;
  background: var(--black);
  position: sticky;
  z-index: 10;
  top: 0;
  left: 0;
}

.wrapper header nav{
  height: 100%;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrapper header nav ul{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  list-style: none;
}

.wrapper header nav ul li a{
  color: var(--white);
  font-size: 15px;
  font-weight: bolder;
  padding: 10px;
  transition: var(--transition);
}

.wrapper header nav .logo{
  height: 100%;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper header nav .logo img{
  width: 150px;
  height: auto;
  object-fit: cover;
}

.active, .wrapper header nav ul li a:hover{
  color: var(--hover_color);
  border-bottom: 2px solid var(--hover_color);
  transition: var(--transition);
}



.wrapper main section{
  min-height: calc(100dvh - 100px);
  width: 100%;
  padding: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;

}

.wrapper main section div:first-child{
  max-width: 600px;
}

.wrapper main section div{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}

.wrapper main section div:last-child{
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper main section > div:last-child > div{
  width: 1000px;
  height: 600px;
  border-radius: var(--borderRadius);
  background: url('ffdb55792153c6c653d88e138215e9c5.jpg') no-repeat center;
  background-size: cover;
}

.wrapper main section div h1{
  font-size: var(--h1_desktop);
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: var(--heading_line_height);
}

.wrapper main section div h1 span{
  font-size: clamp(2rem, 8vw, 20rem);
}

.wrapper main section div p{
  font-size: var(--scalable_body_texts);
  color: var(--text_color);
  line-height: var(--pText_line_height);
}

.wrapper main section div img{
  width: 70%;
  height: 100%;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.wrapper main section.displayart div{
  width: 1000px;
  height: 600px;
  background: var(--secondary_color);
  border-radius: var(--borderRadius);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  position: relative;
}

.wrapper main section.displayart div:before{
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  /* background: var(--background_black_opacity); */
  background: linear-gradient(to top, var(--background_black_opacity), transparent);
  border-radius: var(--borderRadius);
  z-index: 1;
}

.wrapper main section.displayart div:first-child{
  background: url('9ef086eecceced14b74cfe437938750c.jpg') no-repeat center;
  background-size: cover;
}

.wrapper main section.displayart div:nth-child(2){
  background: url('6e7cd5b4af1ee5fdd7e3ff51d165e8e9.jpg') no-repeat center;
  background-size: cover;
}

.wrapper main section.displayart div:nth-child(2){
  background: url('6e7cd5b4af1ee5fdd7e3ff51d165e8e9.jpg') no-repeat center;
  background-size: cover;
}

.wrapper main section.displayart div:nth-child(3){
  background: url('09ad038180f5f09596b0b68a60d8065b.jpg') no-repeat center;
  background-size: cover;
}

.wrapper main section.sizes{
  background: var(--secondary_color);
}

.wrapper main section.sizes div:first-child{
  width: 1000px;
  height: 600px;
  background: url('dc4d5d735f125bc98574826258a8ca5e.jpg') no-repeat center;
  background-size: cover;
  border-radius: var(--borderRadius);
  box-shadow: var(--box-shadow);
}

.wrapper main section.sizes div:last-child{
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.wrapper main section.sizes div:last-child > div{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-radius: 0;
  background: var(--black);
  padding: 5px;
}

.wrapper main section.sizes div:last-child > div > div{
  width: 45%;
  height: 90%;
  border-radius: var(--borderRadius);
  box-shadow: var(--box-shadow);
  object-fit: cover;
  

}

.wrapper main section.sizes div:last-child > div h3{
  color: var(--white);
}

.wrapper main section.sizes div:last-child > div h5{
  color: var(--white);
}

.wrapper main section.sizes div:last-child > div ul{
  list-style: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.wrapper main section.sizes div:last-child > div ul li{
  color: var(--white);
  padding: 15px;
  padding-left: 0;
  list-style-type: none;
  
}

.wrapper main section.sizes div:last-child > div ul li a{
  color: var(--white);
  padding: 20px;
  padding-left: 0;
  cursor: default;
}

.wrapper main section.customer_reviews div{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
  
}

.wrapper main section.customer_reviews div > div{
  width: 60%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0; padding: 0;
}

.wrapper main section.customer_reviews div > div p{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.wrapper main section.customer_reviews div > div ion-icon{
  font-size: 2.5rem;
  color: gold;
  margin-right: 5px;
  font-weight: bolder;
}

.wrapper main section.customer_reviews div.customer_review_img{
  width: 600px;
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: url('ffdb55792153c6c653d88e138215e9c5.jpg') no-repeat center;
  background-size: cover;
  border-radius: var(--borderRadius);
  box-shadow: var(--box-shadow);
  position: relative;
}

.wrapper main section.customer_reviews div.customer_review_img:before{
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, black, rgba(0, 0, 0, 0.492));
  border-radius: var(--borderRadius);
  z-index: 1;
}

.wrapper main section:last-child{
  background-size: cover;
  position: relative;
}

.wrapper main section:last-child div:last-child{
  width: 1000px;
  height: 600px;
  background: url("85f4d8265a5f65a757d22810fca6d2da.jpg");
  background-size: contain;
}

.wrapper main section:last-child div:first-child h2{
  font-size: 100px;
}

.wrapper main section:last-child:before{
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.263);
  opacity: 0.8;
  z-index: 1;
  /* display: none; */
}

/* Gradient animation */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

#orderform{
  position: relative;
  z-index: 2;
  padding: 0;
}

/* Glass container */

.glass-form {
  width: 25%;
  height: 600px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 30px;
  color: #fff;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  position: relative;
  z-index: 2;
}

.glass-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(31, 38, 135, 0.45);
}

.glass-form h2 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

/* Inputs */
.input-group {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  display: flex;
  gap: 0;
}

label {
  font-size: 14px;
  opacity: 0.9;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  resize: none;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.16); */
  transition: all 0.3s ease;
}


input:focus, textarea:focus {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

input::placeholder, textarea::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

/* Button */
button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

/* Preview Card */
.preview-card {
  width: 350px;
  height: 350px;
  margin: 15px 0;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}


.preview-card img {
  width: 50%;
  height: 50%;
  border-radius: 12px;
}

section.form-section{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  /* flex-wrap: wrap; */
  min-height: calc(100dvh - 100px);
  padding: 50px;
  position: relative;
  gap: 2rem;
  z-index: 2;
}

section.form-section form{
  align-items: center;
  /* justify-content: center; */
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(197, 197, 197, 0.321);
  background: var(--white);
  height: auto;
  padding: 20px;
  width: auto;
  gap: 1rem;
}

section.form-section  form:hover{
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(154, 154, 154, 0.473);
}

section.form-section .glass-form .preview-card img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
}

section.form-section form div label{
  color: var(--black);
  font-weight: bolder;
  text-transform: uppercase;
}

section.form-section form > div:not(:first-child){
  width: 85%;
}

section.form-section form div input{
  background: rgba(214, 214, 214, 0.35);
  border: 1px solid var(--dark);
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
  width: 100%;
  color: var(--black);
  transition: all 0.3s ease;
}

section.form-section form > div input:focus{
  background: rgba(164, 164, 164, 0.35);
  border: 1px solid var(--blue);
  outline: none;
}

section.form-section form > div input::placeholder{
  color: var(--black);
  opacity: 0.7;
}

.separate-inputs{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content:  center;
  gap: 1rem;
  padding: 0 ;
}

/* Abouut us */
.wrapper main section.about_landing{
  display: flex;
  flex-direction: row-reverse;
}

.wrapper main section.about_landing > div:last-child{
  max-width: 600px;
}

.wrapper main section.about_landing > div:last-child div{
  background: url("/d102985d72068e8c4606be25e502a3f7.jpg");
  background-size: cover;
  /* display: none; */
}

/* contact us */
.contact-info{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 0px;
  text-align: center;
  background: rgb(186, 186, 186);
}

.contact-info form{
  width: 30%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 60px;
  box-shadow: 0 4px 20px rgba(197, 197, 197, 0.321);
  background: var(--secondary_color);
  transition: all 0.3s ease;
}

.contact-info form:hover{
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(154, 154, 154, 0.473);
}

.contact-info form div{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
}

.contact-info form div textarea{
  height: 100px;
  resize: none;
  background: rgba(0, 0, 0, 0.162);
}

.contact-info div{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-info form div input{
  background: rgba(0, 0, 0, 0.162);
  color: var(--blue);
}

.contact-info form div input:focus, .contact-info form div textarea:focus{
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid var(--blue);
  outline: none;
  color: var(--black);
}

.contact-info form div input::placeholder, .contact-info form div textarea::placeholder{
  color: var(--black);
  opacity: 0.7;
}

.contact-info > div:nth-child(3){
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0rem;
  background: var(--secondary_color);
  padding: 10px;
  border-radius: var(--borderRadius);
}

.contact-info > div > div{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  
}

.contact-info > div > div:not(:last-child){
  border-bottom: 1px solid rgba(0, 0, 0, 0.205);
}

.contact-info > div > div:hover{
  background: var(--hover_color);
  cursor: pointer;
  border-radius: var(--borderRadius);
  cursor: default;
  transition: all 0.3s ease;
}

.contact-info > div > div a{
  color: var(--black);
  font-size: 15px;
}

.contact-info > div > div:hover ion-icon{
  font-size: 1.5rem;
  color: var(--secondary_color);
  transition: all 0.3s ease;
}

.contact-info > div > div:hover a{
  /* font-size: 1.5rem; */
  color: var(--secondary_color);
  transition: all 0.3s ease;
}

/* Footer */

footer{
  width: 100%;
  height: 100px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .footer-content p{
  color: var(--white);
  font-weight: lighter;
  font-size: small;
  text-align: center;
}

.product_heading{
  font-size: var(--h1_desktop);
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  width: 100%;
  font-weight: bolder;
  position: relative;
  z-index: 2;
}



@media only screen and (min-width: 100px) and (max-width: 430px){
  *{
    margin: 0; padding: 0;
    box-sizing: border-box;
  }

  html{
    font-size: 70%;
  }

  h3 {
    font-size: var(--h3_mobile);
  }

  p{
    font-weight: 600;
    font-size: var(--paragraph_text_mobile);
  }

  .genbtn{
    width: 650px;
    height: 50px;
    font-size: var(--scalable_button2);
  }

  #mobile_info{
    display: block;
  }

  .wrapper header{
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--black);
    z-index: 1000;
  }

  .wrapper main section div:first-child {
    gap: 2.5rem;
  }

  .wrapper main section div:first-child p{
    text-align: center;
  }

  .wrapper main section div h1 span {
    font-size: 40px;
    text-transform: uppercase;
  }

  .wrapper header nav{
    width: 90%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;

  }

  .genbtn {
    width: 150px;
  }

  body{
    height: 100vh;
    width: 100vw;
    background: var(--body_background);
    padding-bottom: 0rem;
  }

  .wrapper main section {
    margin-top: 100px;
    min-height: calc(100dvh - 100px);
    padding: 20px;
    /* gap: 1rem; */
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: auto;
  }

  .wrapper main section div{
    align-items: center;
  }

  .wrapper main section > div:last-child > div {
    width: 270px;
    height: 300px;
  }

  .wrapper main section.displayart  div {
    width: 250px;
    height: 300px;
  }

  .wrapper main section.sizes div:first-child {
    width: 270px;
    height: 200px;
  }

  .wrapper main section.customer_reviews div.customer_review_img{
    width: 250px;
    height: 300px;
  }

  .wrapper main section.customer_reviews div{
    align-items: center;
  }

  .wrapper main section:last-child div:last-child {
    width: 250px;
    height: 300px;
    background-size: cover;
  }

  .wrapper main section:last-child div:first-child h2 {
    font-size: 40px;
    /* font-size: clamp(2rem, 8vw, 20rem); */
    text-align: center;
  }

  .wrapper main section.sizes{
    flex-direction: column-reverse;
  }

  .wrapper main section.sizes div:last-child {
    width: 100%;
  }

  section.form-section{
    display: flex;
    flex-direction: column;
  }

  section.form-section form{
    /* width: 100%; */
    padding: 10px;
  }

  .wrapper header nav .logo{
    height: 100%;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .wrapper header nav .logo img{
    width: 100px;
    height: auto;
    object-fit: cover;
  }

  #mobile_menu{
    position: fixed;
    /* top: 0; */
    left: -120%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: flex-start;
    padding: 60px 20px 20px 20px;
    width: 80%;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.922);
    position: absolute;
    z-index: 1000;
    transition: 0.5s ease-in-out;
  }

  #mobile_menu.menupop{
    position: fixed;
    padding: 60px 20px 20px 20px;
    left: 0%;
    transition: 0.5s ease-in-out;
  }

  .mobile_menu::after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.7);
    z-index: -102;
  }

  .mobile_menu div{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 50px;
  }

  body .wrapper header > div.mobile_menu a.active{
    background: var(--hover_color);
  }

  .mobile_menu div.media_icons_2{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
  }

  .mobile_menu div.media_icons_2 a{
    padding: 0;
    width: 20%;
    display: flex;
    justify-content: center;
    border-bottom: none;
  }

  .mobile_menu div.media_icons_2 a ion-icon{
    font-size: x-large;
  }

  .mobile_menu p{
    color: var(--white_text);
    font-size: small;
    text-align: center;
    color: rgba(255, 255, 255, 0.519);
  }

  .mobile_menu div a{
    border: 0;
    width: 30%;
    padding: 0;
  }

  .mobile_menu div a img{
    width: 100%;
  }

  .mobile_menu div h4{
    color: var(--white_text);
  }

  .mobile_menu a{
    border-bottom: .5px solid rgba(255, 255, 255, 0.474);
    padding: 20px;
    width: 100%;
    text-align: left;
    color: var(--white);
    font-weight: bolder;
    font-size: 15px;
    /* background: #001F52; */
  }

  .menu_icon{
    position: relative;
    /* top: 3%;
    right: 5%; */
    /* background: var(--white); */
    color: var(--white);
    z-index: 2002;
    font-size: 35px;
    border: 1px solid white;
    cursor: pointer;
    display: flex;
  }

  .menu_icon.menupop{
    border: 1px solid white;
  }

  .mobile_menu.menupop{
    display: flex;
    transition: 0.5s ease-in-out;
  }

  .mobile_menu.menupop{
    padding: 60px 20px 20px 20px;
    left: 0%;
    transition: 0.5s ease-in-out;
  }

  .mobile_menu p{
    /* font-size: x-small; */
    font-weight: lighter;
  }

  .mobile_menu .active, .mobile_menu a:hover{
    background: var(--hover_color);
    border-bottom: none;
  }

  .wrapper header nav ul {
    display: none;
  }

  .wrapper main section.about_landing{
    display: flex;
    flex-direction: column-reverse;
    margin-top: 0;
    margin-bottom: 0;
  }

  .wrapper main section.about_landing > div:last-child div{
    /* background: url("/3418cfc9fd7030df38e83ef543b6723d.jpg"); */
    background-size: cover;
  }

  .contact-info{
    width: 100%;
    height: 100%;
    gap: 2rem;
    padding: 10px;
    /* padding-top: 50px; */
    
  }

  .contact-info form{
    width: 90%;
    height: auto;
    gap: 1rem;
    padding: 20px;
    border-radius: 0;
  }

  .contact-info > div.information{
    display: none;
  }

  /* .contact-info > div.information > div{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  } */

  .contact-info > div > div a{
    color: var(--black);
    font-size: 15px;
  }

  .contact-info form div input, .contact-info form div textarea{
    border-radius: 0;
  }

  .contact-info > div.mobile_info{
    width: 90%;
    display: flex;
    flex-direction: column;
    /* gap: 2.5rem; */
    background: var(--secondary_color);
    padding: 20px;
    border-radius: 5px;
  }

  .contact-info > div.mobile_info > div ion-icon{
    font-size: 25px;
    background: lightblue;
    padding: 5px;
    border-radius: 5px;
  }

  .contact-info > div.mobile_info > div{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid rgba(0, 0, 0, 0.123);
    padding: 10px;
  }

  .contact-info > div.mobile_info > div:last-child{
    width: 100%;
    border-bottom: 0;
  }


}

@media only screen and (min-width: 426px) and (max-width: 910px){

   :root{

    /* Heading Sizes for desktop and mobile */
    --h1_desktop: clamp(1rem, 3vw, 2.5rem);
    --h2_desktop: clamp(.85rem, 3vw, 2rem);
    --h3_desktop: clamp(.65rem, 3vw, 1.75rem);
    --h4_desktop: clamp(1.25rem, 2.5vw, 2rem);
    --h5_desktop: clamp(1.125rem, 2vw, 1.75rem);
    --h6_desktop: clamp(1rem, 1.5vw, 1.5rem);

    --scalable_body_texts: clamp(1rem, 1.8vw, 2rem);

    --scalable_button: clamp(.75rem, 1.45vw, 1rem);

  }

  html{
    font-size: 70%;
  }

  h3 {
    font-size: var(--h3_mobile);
  }

  p{
    font-weight: 600;
    font-size: var(--paragraph_text_mobile);
  }

  .wrapper header nav{
    width: 90%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;

  }

  .wrapper header nav ul li a{
    font-size: 14px;
  }

  .wrapper main section div h1 span {
    font-size: clamp(2rem, 6vw, 20rem);
  }

  p{
    font-size: var(--scalable_body_texts);
    line-height: var(--pText_line_height);
  }

  .wrapper main section div:first-child {
    max-width: 300px;
    gap: 2rem;
  }
  
  .wrapper main section > div:last-child > div {
    width: 300px;
    height: 300px;
  }

   .wrapper main section.displayart{
    flex-wrap: wrap;
   }

  .wrapper main section.displayart div {
    width: 300px;
    height: 370px;
  }
  .wrapper main section {
    padding: 40px;
  }

  .wrapper main section.sizes{
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .wrapper main section.sizes div:first-child {
    width: 100%;
    height: 300px;
    background-size: cover;
  }

  .wrapper main section.sizes div:last-child {
    width: 65%;
  }

  .wrapper main section.customer_reviews div.customer_review_img {
    width: 350px;
    height: 350px;
  }

  .wrapper main section:last-child div:first-child h2 {
    font-size: 70px;
  }

  .wrapper main section:last-child div:last-child {
    width: 400px;
    height: 500px;
    background-size: cover;
  }

  .genbtn {
    width: 170px;
    height: 45px;
    padding: 5px;
  }

  .preview-card {
    width: 250px; 
    height: 250px;
  }

  section.form-section form > div:not(:first-child) {
    width: 100%;
  }

  .separate-inputs {
    width: 100%;
  }

  section.form-section form {
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
  }

  section.form-section form div input {
    font-size: 14px;
  }

   .wrapper main section:last-child div:first-child h2 {
    font-size: 60px;
  }

  .wrapper main section:last-child div:last-child {
    width: 400px;
    height: 300px;
    background-size: contain;
    object-fit: cover;
  }

 
}

@media only screen and (min-width: 911px) and (max-width: 1024px){
  :root{

    /* Heading Sizes for desktop and mobile */
    --h1_desktop: clamp(1rem, 3vw, 2.5rem);
    --h2_desktop: clamp(.85rem, 3vw, 2rem);
    --h3_desktop: clamp(.65rem, 3vw, 1.75rem);
    --h4_desktop: clamp(1.25rem, 2.5vw, 2rem);
    --h5_desktop: clamp(1.125rem, 2vw, 1.75rem);
    --h6_desktop: clamp(1rem, 1.5vw, 1.5rem);

    --scalable_body_texts: clamp(1rem, 1.6vw, 1.35rem);

    --scalable_button: clamp(.75rem, 1.45vw, 1rem);

  }

  .wrapper header nav ul li a{
    font-size: 14px;
  }

  .wrapper main section div h1 span {
    font-size: clamp(2rem, 6vw, 20rem);
  }

  p{
    font-size: var(--scalable_body_texts);
    line-height: var(--pText_line_height);
  }

  .wrapper main section div:first-child {
    max-width: 450px;
    gap: 2rem;
  }
  
  .wrapper main section > div:last-child > div {
    width: 300px;
    height: 400px;
  }

 .wrapper main section.displayart div {
    width: 1000px;
    height: 450px;
  }
  .wrapper main section {
    padding: 40px;
  }

  .wrapper main section.sizes div:first-child {
    height: 400px;
    background-size: contain;
  }

  .wrapper main section.customer_reviews div.customer_review_img {
    width: 350px;
    height: 350px;
  }

  .wrapper main section:last-child div:first-child h2 {
    font-size: 70px;
  }

  .wrapper main section:last-child div:last-child {
    width: 400px;
    height: 500px;
    background-size: cover;
  }

  .genbtn {
    width: 170px;
    height: 45px;
    padding: 5px;
  }

  .preview-card {
    width: 250px; 
    height: 250px;
  }

  section.form-section form > div:not(:first-child) {
    width: 100%;
  }

  .separate-inputs {
    width: 100%;
  }

  section.form-section form {
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
  }

  section.form-section form div input {
    font-size: 14px;
  }
}
