/* =============================================================
* Project Name: Specs Dynamics website
* Project URL: https://specsdynamics.co.tz/
* Author: Silvabizhub | Afribrainy | Dynatech Hub 4 Creativity
* License: GNU/
============================================================== */
:root {
  --blue:#0090BD;
  --cerise: #E11B4F;
  --cerise-light: #ddc6cc;
  --gold: rgb(229, 159, 55);
  --white: #fff;
  --black: rgb(0, 0, 0);
  --gray-light: #e9e9e9;
  --gray-darker: #444444;
  --gray-dark: #e0e0e0;
}

html {
  overflow:auto;
  scrollbar-width:none;
  overflow-x:hidden;
  font-size:clamp(8px, 6vw, 14px);
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

* {
  box-sizing:border-box;
  margin:0;
}

::-webkit-scrollbar {
  display:none;
}

body {
  background-color:#eee;
  overflow-x:hidden;
  line-height:1.3;
  background-repeat:repeat;
  background-size:auto;
  max-width:100%;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  overflow: auto;
  padding: 0;
  box-shadow: 0 0 6px rgba(0,0,0,.5);
  background-color:var(--white);
  overflow-x: hidden;
}

.up_strip {
  background-color: var(--cerise);
  height: 5px;
  width: 100%;
}

.email_strip {
  display: flex;
  flex-direction: row;
  color: var(--white);
}

.left_email {
  display: flex;
  background-color: var(--white);
  width: 75%;
}

.middle_email {
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-radius: 0px 0px 10px 10px;
  background-color: var(--cerise);
  width: auto;
  padding: 0px 5px 3px 5px;
}

.middle_email p {
  font-size: clamp(10px, 3vw, 12px);
}

.right_email {
  width: auto;
  min-width: 10px;
}
  
.nav_strip {
  display: flex;
  flex-direction: row;
  background-color: var(--white);
  color: black;
  flex-direction: row;
  justify-content: center;
  justify-items: center;
  align-items: center;
  height: 40px;
  width: 100%;
  border-bottom: 2px solid var(--gold);
  outline-offset: 20px;
}

.nav_strip ul,li, a {
  text-decoration: none;
  list-style: none;
  text-align: left;
  color: var(--cerise);
  text-underline-offset: 0px;
  text-decoration-thickness: 0px;
  
}

.right_footer_down li, a {
  text-decoration: none;
  color: var(--cerise);

}

.right_footer_down li, a:hover {
  color: black;
}

.nav_strip a:hover {
  color: blue;
  transform: scale(4);
}


.left_logo a:hover {
  transform: none;
}

.sidenav {
display: none;
}

.humberg {
display: none;
}

.left_logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  padding: 10px 10px 20px 20px;
  width: 30%;
  height: 100%;
}

.left_logo img {
  width: 100%;
}

.right_nav {
  width: 70%;
}

.right_nav ul {
  display: flex;
  flex-direction: row;
  color: var(--black);
  align-content: space-between;
  justify-content: space-around;
  width: 90%;
}

.right_nav li a {
  text-decoration: none;
}
    
.slider_strip {
  background-color: var(--white);
  width: 100%;
}

button {
  display: inline-block;
  background-color: transparent;
  border-radius: 10px;
  padding: 5px 20px;
  outline: var(--cerise);
  border-color: var(--cerise);
  cursor: pointer;
  transition: all 0.3s ease; /* Smooth transition for all properties */
}

button:hover {
  background-color: var(--cerise); /* Background color on hover */
  color: white; /* Text color on hover */
  border-color: var(--cerise); /* Border color stays the same or changes */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a shadow to the button */
  transform: translateY(-2px); /* Lift the button on hover */
}

button:focus {
  outline: none; /* Remove default focus outline */
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2); /* Add focus outline effect */
}
     
.what_strip {
  display: flex;
  flex-direction: row;
  background-color: var(--white);
}

.what_strip h2 {
  color: var(--cerise);
  border-bottom: 2px solid var(--cerise);
  margin-bottom: 10px;
}

.what_left {
  display: flex;
  flex-direction: column;
  width: 50%;
  align-items: center;
  background-color: var(--white);
  padding: 10px;
  margin: 20px;
}

.what_left form {
  width: 100%;
}

.what_left p {
  text-align: justify;
  margin-bottom: 10px;
  padding-bottom: 20px;
}

.what_right {
  display: flex;
  flex-direction: column;
  width: 50%;
  align-items: center;
  padding: 10px;
}

.about_right {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.about_right img {
  width: 98%;
}

  /* Using CSS Grid */
.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 85px);
  grid-template-rows: repeat(3, 58px);
  gap: 10px;
  padding: 10px;
  margin-bottom: 10px;
}

.grid-item {
  background-color: rgba(217, 217, 217, 0.6);
  color: white;
  border-radius: 10px;
  text-align: center;
  font-size: 16px;
  border: 1px solid var(--cerise);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 1px 4px 4px 1px rgba(0, 0, 0, 0.2); /* The Specs shadow */
  transition: box-shadow 0.3s ease;
}

.grid-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
     
.slid_cards {
  background-color: grey;
  display: flex;
  width: 100%;
  /*height: 100%;*/
  max-width: 100%;
  /*max-height: 100%;*/
  place-items: center;
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  opacity: 1;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, #000000 12.5%, #000000 87.5%, rgba(0, 0, 0, 0) 100%);
  overflow: hidden;
}
     
.slogan_strip {
  display: flex;
  flex-direction: column;
  padding: 10px;
  align-items: center;
  justify-content: center;
  background-color: var(--cerise);
  color: var(--white);
  height: 10vh;
  
}
     
.how_we_do {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
}

.how_we_do img {
  width: 35%;
  height: auto;
}
.how_we_do_it {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  margin: 10px;
}

.how_we_do_it h2 {
  color: var(--cerise);
  border-bottom: 2px solid var(--cerise);
  margin-bottom: 10px;
}

.how_we_do_it p {
  text-align: justify;
  margin-bottom: 10px;
  padding-bottom: 20px;
}
     
.footer {
  display: flex;
  flex-direction: row;
  background-color: var(--gray-light);
  width: 100%;
  padding: 20px;
}

.left_footer {
  display: flex;
  flex-direction: column;
  border-right: .7px solid red;
  width: 30%;
  text-align: right;
  padding-right: 20px;
}

.right_footer {
  display: flex;
  flex-direction: column;
  width: 70%;
}

.right_footer_up {
  display: flex;
  flex-direction: row;
  align-content: space-between;
  border-bottom: .7px solid red;
  height: 50%;
}

.up_left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding: 20px;
  margin-bottom: 8px;
}

.up_right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-content: space-around;
  justify-items: stretch;
  height: 100%;
  width: 50%;
  color: var(--blue);
}

.up_right img {
  width: 20px;
}

.right_footer_down {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  height: 50%;
}

.right_footer_down ul {
      display: flex;
      flex-direction: row;
      color: var(--black);
      align-content: space-between;
      justify-content: space-around;
      width: 90%;
}

.footer_logo img {
  width: 60%;
}
     
.copy_right {
  background-color: rgba(183, 183, 183, 1);
  display:flex;
  flex-direction:row;
  justify-content:space-between;
  height:auto;
  padding:1rem
}

/* CONTACT US FORM */

    .contact-form h2 {
      margin-bottom: 20px;
      font-size:clamp(8px, 6vw, 14px);
      font-family: "Lato", sans-serif;
      text-align: center;
      color: #333;
    }

    .form-group {
      margin-bottom: 6px;
    }

    input[type="text"],
    input[type="email"],
    textarea {
      width: 100%;
      padding: 8px 8px;
      border: 1px solid #ccc;
      border-radius: 10px;
      transition: all 0.3s ease;
      /* font-size: 16px; */
    }

    input[type="text"]:focus,
    input[type="email"]:focus,
    textarea:focus {
      transform: scale(1.02);
      background-color: var(--cerise-light);
      border-color: var(--cerise);
      outline: none;
    }

    textarea {
      resize: vertical;
      min-height: 50px;
    }

    form button[type="submit"] {
    display: block;
    margin: 10px auto 0 auto;
    padding: 5px 8px;
    cursor: pointer;
    transition: 0.3s;
    }

  @media (max-width: 480px) {
  .contact-form {
    padding: 20px;
  }

  input[type="text"],
  input[type="email"],
  textarea {
    font-size: 15px;
  }

  /* button[type="submit"] {
    font-size: 15px;
    padding: 10px;
  } */
}

/* END OF CONTACT US FORM */

/* CARD SLIDER BELOW */
.grid-itemx {
background-color: #ffffff;
border: 1px solid #e0e0e0;
/* 8px */
/* border-radius: 0.5rem; */
padding-block-end: 2.5rem;
text-align: center;
display: grid;
justify-content: center;
padding-top: 2rem;
position: relative;
}
/* Estilo del contenedor del carrusel */
.carousel-containerx {
width: 100%;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}
/* Contenido del carrusel */
.carousel-contentx {
display: flex;
animation: scroll 50s linear infinite;
}
/* Cada elemento del carrusel */
.carousel-itemx {
min-width: 200px;
height: 150px;
margin-right: 10px;
display: flex;
justify-content: center;
align-items: center;
}
.carousel-itemx img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 8px;
}
/* Animation of the scroll cards */
@keyframes scroll {
0% {
  transform: translateX(0);
}
100% {
  transform: translateX(-20%);
}
}

/* ON TABLET SCREENS */

@media only screen and (max-width: 660px) and (min-width: 431px) {

}

/* ON MOBILE PHONE SCREENS */

@media only screen and (max-width: 430px) and (min-width: 20px) {
  body {
      background-color:black;
  }

}

/* SLIDER PROPERTIES */
@media (min-width: 992px) {
  .slider, .slide {
    height: 45vh;
  }
}

.slide {
  position: relative;
  transition: 1s;
}
.slide .slide__img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
@media (min-width: 992px) {
  .slide .slide__img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
.slide .slide__img img {
  max-width: 100%;
  height: auto;
  opacity: 1 !important;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  transition: all 1s ease;
}
.slide .slide__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slide .slide__content.slide__content__left {
  left: 15%;
  transform: translate(-15%, -50%);
}
.slide .slide__content.slide__content__right {
  right: 15%;
  left: auto;
  transform: translate(5%, -50%);
}
.slide .slide__content--headings {
  color: #FFF;
}
.slide .slide__content--headings h2 {
  font-size: 1.5rem;
  margin: 10px 0;
}
.slide .slide__content--headings .animated {
  transition: all 0.5s ease;
}
.slide .slide__content--headings .top-title {
  font-family: "Lato", sans-serif;
  font-size: 1.5rem;
}
.slide .slide__content--headings .title {
  font-size: 2.5rem;
}
.slide .slide__content--headings .button-custom {
  text-decoration: none;
  color: #333;
  padding: 1.2rem 2.5rem;
  font-size: 0.25rem;
}

.slider [data-animation-in] {
  opacity: 0;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  transition: opacity 0.5s ease 0.3s;
  transition: 1s;
}

.slick-dotted .slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: 25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  display: block;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.simple-dots .slick-dots li {
  width: 20px;
  height: 20px;
}
.simple-dots .slick-dots li button {
  border-radius: 50%;
  background-color: white;
  opacity: 0.25;
  width: 20px;
  height: 20px;
}
.simple-dots .slick-dots li button:hover, .simple-dots .slick-dots li button:focus {
  opacity: 1;
}
.simple-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}

.stick-dots .slick-dots li {
  height: 3px;
  width: 50px;
}
.stick-dots .slick-dots li button {
  position: relative;
  background-color: white;
  opacity: 0.25;
  width: 50px;
  height: 3px;
  padding: 0;
}
.stick-dots .slick-dots li button:hover, .stick-dots .slick-dots li button:focus {
  opacity: 1;
}
.stick-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}
.stick-dots .slick-dots li.slick-active button:hover, .stick-dots .slick-dots li.slick-active button:focus {
  opacity: 1;
}

/* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
  to {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
}
@keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
  to {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
}
.zoomInImage {
  -webkit-animation-name: zoomInImage;
          animation-name: zoomInImage;
}

@-webkit-keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
  to {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
}

@keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
  to {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }

}
.zoomOutImage {
  -webkit-animation-name: zoomOutImage;
          animation-name: zoomOutImage;
  transition: 1s;
}

.slick-nav {
  --active: #fff;
  --border: rgba(255, 255, 255, .12);
  width: 44px;
  height: 44px;
  position: absolute;
  cursor: pointer;
  top: calc(50% - 44px);
}
.slick-nav.prev-arrow {
  left: 3%;
  transform: scaleX(-1);
  z-index: 999;
}
.slick-nav.next-arrow {
  left: auto;
  right: 3%;
}
.slick-nav i {
  display: block;
  position: absolute;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
}
.slick-nav i:before, .slick-nav i:after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  transform-origin: 9px 50%;
}
.slick-nav i:before {
  transform: rotate(-40deg);
}
.slick-nav i:after {
  transform: rotate(40deg);
}
.slick-nav:before, .slick-nav:after {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
}
.slick-nav svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--active);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  transform: rotate(0deg);
}
.slick-nav.animate svg {
  -webkit-animation: stroke 1s ease forwards 0.3s;
          animation: stroke 1s ease forwards 0.3s;
}
.slick-nav.animate i {
  -webkit-animation: arrow 1.6s ease forwards;
          animation: arrow 1.6s ease forwards;
}
.slick-nav.animate i:before {
  -webkit-animation: arrowUp 1.6s ease forwards;
          animation: arrowUp 1.6s ease forwards;
}
.slick-nav.animate i:after {
  -webkit-animation: arrowDown 1.6s ease forwards;
          animation: arrowDown 1.6s ease forwards;
}

@-webkit-keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }
  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }
  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}

@keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }
  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }
  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}
@-webkit-keyframes arrow {
  0%, 100% {
    transform: translateX(0);
    opacity: 1;
  }
  23% {
    transform: translateX(17px);
    opacity: 1;
  }
  24%, 80% {
    transform: translateX(-22px);
    opacity: 0;
  }
  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}
@keyframes arrow {
  0%, 100% {
    transform: translateX(0);
    opacity: 1;
  }
  23% {
    transform: translateX(17px);
    opacity: 1;
  }
  24%, 80% {
    transform: translateX(-22px);
    opacity: 0;
  }
  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}
@-webkit-keyframes arrowUp {
  0%, 100% {
    transform: rotate(-40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
@keyframes arrowUp {
  0%, 100% {
    transform: rotate(-40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
@-webkit-keyframes arrowDown {
  0%, 100% {
    transform: rotate(40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
@keyframes arrowDown {
  0%, 100% {
    transform: rotate(40deg) scaleX(1);
  }
  20%, 80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

/* ON TABLET && OTHER SMALL SCREENS */

/* ON TABLET && OTHER SMALL SCREENS */

/* On smaller screens, decrease text size */

@media only screen and (max-width: 660px) and (min-width: 366px) {
  .grid-container {
      grid-template-columns: repeat(3, 1fr);
      aspect-ratio: 85 / 58;
  }

  .nav_strip {
    display: flex;
    flex-direction: row;
    background-color: var(--white);
    color: black;
    justify-content: space-between;
    justify-items: center;
    align-items: center;
}

  .right_nav ul {
    display: none;
  }

  .what_strip {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      background-color: var(--white);
      padding: 10px;
  }

  .what_left {
      display: flex;
      flex-direction: column;
      width: 100%;
      align-items: center;
      justify-content: center;
      background-color: var(--white);
      margin: 20px;
  }

  .what_right {
      display: flex;
      flex-direction: column;
      width: 100%;
      align-items: center;
      justify-content:  center;
      background-color: var(--white);
      margin: 10px;
  }

  .grid-container {
      display: grid;
      align-items: center;
      justify-content: center;
      grid-template-columns: repeat(4, 65px);
      grid-template-rows: repeat(3, 38px);
      /* grid-template-columns: repeat(3, 1fr);
      aspect-ratio: 85 / 58; */
      gap: 15px;
      padding: 10px;
  }

  .slogan_strip {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 10px;
  }

  .slogan_strip p {
      text-align: center;
  }

  .how_we_do {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background-color: var(--white);
  }

  .how_we_do img {
      width: 65%;
      height: auto;
      margin-top: 10px;
  }

  .how_we_do_it {
      width: 100%;
      padding: 20px;
  }

  .footer {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background-color: var(--gray-light);
      width: 100%;
      padding: 20px;
  }

  .left_footer {
      display: flex;
      flex-direction: column;
      border-right: none;
      width: 100%;
      text-align: center;
      padding-right: 20px;
  }
  
  .right_footer {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
  }
  
  .right_footer_up {
      display: flex;
      flex-direction: column;
      align-content: center;
      justify-content: center;
      height: 50%;
      border-bottom: none;
  }
  
  .up_left {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 20px;
      margin-bottom: 8px;
      border-bottom: none;
  }

  .up_left p {
      text-align: center;
  }
  
  .up_right {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      align-content: space-around;
      justify-items: stretch;
      height: 100%;
      width: 100%;
      color: var(--blue);
      margin-bottom: 20px;
      border-bottom: none;
  }
  
  .right_footer_down {
      display: flex;
      flex-direction: column;
      align-items: center;
      align-content: center;
      justify-content: center;
      justify-content: center;
      height: 50%;
      text-align: center;
      }
  
  .right_footer_down ul {
      display: flex;
      flex-direction: row;
      color: var(--black);
      align-content: space-between;
      gap: clamp(1rem, 2vw, 2rem);
      justify-content: space-around;
      width: 100%;
      padding: 0;
      margin: 0 auto; /* center it horizontally */
      display: flex;
      justify-content: center;
      list-style: none;

  }
  
  .footer_logo img {
      width: 70%;
  }

  .left_logo {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: start;
      padding: 10px 10px 20px 20px;
      width: 80%;
      height: 100%;
  }
  
  .left_logo img {
      width: 75%;
  }

  .right_nav {
      width: 15%;
  }

  .slide .slide__content--headings .title {
      font-size: 1.5rem;
    }

    .sidenav {
      display: block;
      height: 100%;
      width: 0;
      position: fixed;
      z-index: 100;
      top: 0;
      right: 0;
      background-color: #111;
      opacity: 75%;
      overflow-x: hidden;
      transition: 0.5s;
      padding-top: 60px;
    }
    
    .sidenav a {
      padding: 8px 8px 8px 32px;
      text-decoration: none;
      font-size:clamp(8px, 6vw, 14px);
      font-family: "Lato", sans-serif;
      font-style: normal;
      color: var(--white);
      display: block;
      transition: 0.3s;
    }
    
    .sidenav a:hover {
      color: #f1f1f1;
    }
    
    .sidenav .closebtn {
      position: absolute;
      top: 0;
      right: 25px;
      font-size: 20px;
      margin-left: 50px;
    }
  
    .humberg {
      display: block;
      margin-left: 8px;
    }
  
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 15px;}

    .up_strip {
      background-color: var(--cerise);
      height: 3px;
      width: 100%;
  }

}

/* ON VERY SMALL SCREENS  -  HEY, BUDDY LET'S HELP THEM SEE NICELY */
@media only screen and (max-width: 365px) and (min-width: 20px) {
  .grid-container {
      grid-template-columns: repeat(3, 1fr);
      aspect-ratio: 85 / 58;
  }

  .right_nav ul {
    display: none;
  }

  .left_logo img {
    width: 75%;
}

.right_nav {
    width: 15%;
}

  .what_strip {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      background-color: var(--white);
      padding: 10px;
  }

  .what_left {
      display: flex;
      flex-direction: column;
      width: 100%;
      align-items: center;
      justify-content: center;
      background-color: var(--white);
      margin: 20px;
  }

  .what_right {
      display: flex;
      flex-direction: column;
      width: 100%;
      align-items: center;
      justify-content:  center;
      background-color: var(--white);
      margin: 12px;
  }

  .grid-container {
      display: grid;
      align-items: center;
      justify-content: center;
      grid-template-columns: repeat(4, 65px);
      grid-template-rows: repeat(3, 38px);
      /* grid-template-columns: repeat(3, 1fr);
      aspect-ratio: 85 / 58; */
      gap: 15px;
      padding: 10px;
  }

  .slogan_strip {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 10px;
  }

  .slogan_strip p {
      text-align: center;
  }

  .how_we_do {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background-color: var(--white);
  }

  .how_we_do img {
      width: 65%;
      height: auto;
      margin-top: 10px;
  }

  .how_we_do_it {
      width: 100%;
      padding: 20px;
  }

  .footer {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background-color: var(--gray-light);
      width: 100%;
      padding: 20px;
  }

  .left_footer {
      display: flex;
      flex-direction: column;
      border-right: none;
      width: 100%;
      text-align: center;
      padding-right: 20px;
  }
  
  .right_footer {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
  }
  
  .right_footer_up {
      display: flex;
      flex-direction: column;
      align-content: center;
      justify-content: center;
      height: 50%;
      border-bottom: none;
  }
  
  .up_left {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 20px;
      margin-bottom: 8px;
      border-bottom: none;
  }

  .up_left p {
      text-align: center;
  }
  
  .up_right {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      align-content: space-around;
      justify-items: stretch;
      height: 100%;
      width: 100%;
      color: var(--blue);
      margin-bottom: 20px;
      border-bottom: none;
  }

  .up_right img {
    width: 25px;
  }
  
  .right_footer_down {
      display: flex;
      flex-direction: column;
      align-items: center;
      align-content: center;
      justify-content: center;
      height: 50%;
  }
  
  .right_footer_down ul {
          display: flex;
          flex-direction: row;
          color: var(--black);
          justify-items: center;
          align-items: center;
          gap: clamp(0.3rem, 1vw, 0.5rem);
          width: 90%;
  }
  
  .footer_logo img {
      width: 70%;
  }
  
  .left_logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    padding: 10px 10px 20px 20px;
    width: 80%;
    height: 100%;
}

.left_logo img {
    width: 75%;
}

.right_nav {
    width: 15%;
}

  .slide .slide__content--headings .title {
      font-size: 1.5rem;
    }

    .sidenav {
      display: block;
      height: 100%;
      width: 0;
      position: fixed;
      z-index: 100;
      top: 0;
      right: 0;
      background-color: #111;
      opacity: 75%;
      overflow-x: hidden;
      transition: 0.5s;
      padding-top: 60px;
    }
    
    .sidenav a {
      padding: 8px 8px 8px 32px;
      text-decoration: none;
      font-family: "Lato", sans-serif;
      font-size:clamp(6px, 3vw, 8px);
      color: var(--white);
      display: block;
      transition: 0.3s;
    }
    
    .sidenav a:hover {
      color: #f1f1f1;
    }
    
    .sidenav .closebtn {
      position: absolute;
      top: 0;
      right: 25px;
      font-size: 20px;
      margin-left: 50px;
    }
  
    .humberg {
      display: block;
      margin-left: 8px;
    }
  
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 15px;}

}

/* Vision & Mission */
.about_grid {
  display: grid;
  grid-template-areas:
    "b"
    "a"
    "d"
    "c"
    "e"
    "f";
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 20px;
}

.about_grid .a { grid-area: a; }
.about_grid .b { grid-area: b; }
.about_grid .c { grid-area: c; }
.about_grid .d { grid-area: d; }
.about_grid .e { grid-area: e; }
.about_grid .f { grid-area: f; }

.about_grid > div {
  background: #fff;
  padding: 5px;
  border-radius: 10px;
}

/* Responsive images */
.about_grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.about_grid p {
  text-align: justify;
  padding-top: 20px;
}

.about_grid h2 {
  color: var(--cerise);
  border-bottom: 2px solid var(--cerise);
  margin-bottom: 10px;
}

.about_grid .a {
  display: flex;
  flex-direction: column;
  align-items: center;   /* vertical alignment (optional) */
  justify-content: center;  /* horizontal centering */
  justify-items: center;
  text-align: center;
}

.about_grid .b {
  display: flex;
  flex-direction: column;
  align-items: center;   /* vertical alignment (optional) */
  justify-content: center;  /* horizontal centering */
  justify-items: center;
  text-align: center;
}

.about_grid .c {
  display: flex;
  flex-direction: column;
  align-items: center;   /* vertical alignment (optional) */
  justify-content: center;  /* horizontal centering */
  justify-items: center;
  text-align: center;
}

.about_grid .d {
  display: flex;
  flex-direction: column;
  align-items: center;   /* vertical alignment (optional) */
  justify-content: center;  /* horizontal centering */
  justify-items: center;
  text-align: center;
}

.about_grid .e {
  display: flex;
  flex-direction: column;
  align-items: center;   /* vertical alignment (optional) */
  justify-content: center;  /* horizontal centering */
  justify-items: center;
  text-align: center;
}

.about_grid .f {
  display: flex;
  flex-direction: column;
  align-items: center;   /* vertical alignment (optional) */
  justify-content: center;  /* horizontal centering */
  justify-items: center;
  text-align: center;
}


/* For screens ≥768px: show 2-column grid */
@media (min-width: 768px) {
  .about_grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "a b"
      "c d"
      "e f";
  }
}


