.boxes__wrapper{
    margin-top: 20px;
}

    /* Center the boxes container */
.boxes-container {
  display: flex;
  justify-content: center;
 
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1200px;
}

/* Set the width of each box */
.box {
  width: 300px;
  margin: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* align content at the top */
  align-items: center;
}
/* 
.box:nth-child(2) {
  margin-top: -12px;
  padding-top: 0;
} */

.box img {
  width: 300px;
  height: auto; /* make sure the image retains its aspect ratio */
  object-fit: contain; /* fit the image within the available space without cropping */
}

.box h3 {
  text-align: center;
  font-family: 'Teko', sans-serif;
  font-size: 2.1em;
  margin-top: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  padding-bottom: 0px;
  margin-bottom: -0.4em;  
}

.box p {
  max-width: 90%;
  text-align: center;
  font-family: 'Lato', sans-serif;
  
}
/* Set the width of each box on mobile */
@media screen and (max-width: 767px) {
  .box {
    width: 100%;
  }
}

/* Set the width of each box on tablet */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .box {
    width: calc(28% - 2rem);
  }
}



/* New styles 25/11/2023 */

/* Normal styles for all devices */

/* Media query for iPads in portrait mode */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: portrait) {
    /* Your styles for iPads in portrait mode go here */

	/* Home page */

	/* Set the width of each box on tablet */
	.box {
		width: calc(28% - 2rem);
	}

	.body{
		background-color: #aaa !important;
	}

  
.menu-main-container {
  display: none;
}
}