.mobile {
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
}

.mobileImg {
  width: 100vw;
  height: 13vh;

  background-color: rgb(228, 228, 228);
  border-bottom: 4px solid var(--b);

  display: flex;
  align-items: center;

  position: fixed;
  top: 0;
  z-index: 999;

}

.mobileImg img {

  height: 90%;
  padding-left: 1rem;

  
}

.mobileLogoBox {
  width: 80%;
}

.mobileMenu {
  display: flex;
  flex-direction: column;
}

.mobileMenu a{
  padding: 0.5rem 1rem;
  margin-bottom: 10px;

  text-decoration: none;
  text-transform: capitalize;
  font-weight: 600;

  color: black;
}

.mobileMenu .cta {
  margin: 10px;
  display: inline-block;

  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 120%;

  border-radius: 100px;
  /* border: 2px solid var(--d); */
  box-shadow: 0 5px 0 black;

  background-color: var(--r);
  color: white;
}

/* ? media queries to edit css responsiveness */

/* small mobile */
/* @media (min-width: 320px) {
 
} */

/* m mobile */
/* @media (min-width: 375px) {
 
} */

/* l mobile */
/* @media (min-width: 425px) {
 
} */

/* xs */
/* @media (min-width: 475px) {

} */

/* sm */
/* @media (min-width: 640px) {

} */

/* m */
@media (min-width: 768px) {
.mobile {
  display: none;
}

.mobileImg {
  display: none;
}
}

/* lg */
/* @media (min-width: 1024px) {
 
}
 */
/* xl */
/* @media (min-width: 1280px) {
 
} */

/* 2xl */
/* @media (min-width: 1536px) {

} */