@media screen  and (pointer: coarse){
.burger-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
  padding: 1.5em;
}

.burger-menu__icon {
  width: var(--size-twounits);
  fill: var(--color-deep-blue);
}

.mobile-menu {
  align-items: flex-start;
  flex-direction: column;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  padding: 32px;
  z-index: 100;
  position: absolute;
  flex-direction: column;
  color: var(--color-deep-blue);
  background-color: var(--color-rose);
}

.mobile-menu__logo {
  font-size: 2em;
  font-family: Bricolage Grotesque;
  font-weight: 700;
  line-height: 150%;
  text-transform: uppercase;
}

.mobile-menu__close {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: var(--space-threeunits);
  justify-content: space-between;
}

.mobile-menu__navbar {
  flex: 0 0 auto;
  display: flex;
  align-self: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.mobile-menu__navbar-link {
  margin-bottom: var(--space-unit);
  font-size: 16px;
  font-family: Bricolage Grotesque;
  font-weight: 400;
  line-height: 150%;
  text-align:center;
}

.navbar {
  display: none;
}

}

/* Mobile phones (portrait) */
@media screen and (max-width: 480px) and (orientation: portrait) and (pointer: coarse){
  :root {
    --size-font-size: 11px;
  }
  .features__cards {
    grid-template-columns: 1fr;
  }
}

/* Mobile phones (landscape) & small tablets */
@media screen and (max-width: 768px) and (orientation: landscape) and (pointer: coarse){
  :root {
    --size-font-size: 11px; 
  }
  
}
  
/* Tablets and iPads (portrait) */
@media screen and (min-width: 481px) and (max-width: 1024px) and (orientation: portrait) and (pointer: coarse){
  :root {
    --size-font-size: 20px; 
  }
  .features__cards {
    grid-template-columns: 1fr;
  }
}
  
/* Tablets and big phones (landscape) */
@media screen and (min-width: 769px) and (max-width: 1023px) and (orientation: landscape) and (pointer: coarse){
  :root {
    --size-font-size: 11px; 

}
} 
/* Big Tablets and iPads (landscape) */
@media screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) and (pointer: coarse){
  :root {
    --size-font-size: 20px; 
  }
}

