@font-face {
  font-family: "Roboto Regular";
  src: url("../fonts/Roboto-Regular.woff") format("woff"),
    url("../fonts/Roboto-Regular.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Medium";
  src: url("../fonts/Roboto-Medium.woff") format("woff"),
    url("../fonts/Roboto-Medium.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
  font-family: Roboto Regular, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  color: #000;
  text-align: left;
  background-color: #f3f3f3;
}
img {
  max-width: 100%;
}
.wrapper {
  background: url(../images/bg.jpg);
  background-position: 0px center;
  background-size: contain;
}
.container {
  width: 1090px;
  text-align: center;
}
.text-center {
  text-align: center !important;
}
.flex {
  display: flex !important;
}
.justify-content-center {
  justify-content: center !important;
}
.align-items-center {
  align-items: center !important;
}
.h-full {
  height: 100% !important;
}
.grid-menu-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.grid-card {
  border-radius: 5px;
  border: 1px solid #d3d2d2;
  background: rgb(255 255 255 / 76%);
  box-shadow: 0px 0px 4.615px 0px rgba(0, 0, 0, 0.04),
    0px 9.231px 18.462px 0px rgba(0, 0, 0, 0.08);
  padding: 30px 0px;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s;
}
.grid-card:hover {
  box-shadow: 0px 0px 4.615px 0px rgb(0 0 0 / 5%),
    0px 9.231px 18.462px 0px rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}
.grid-card img {
  height: 90px;
}
.grid-card h3 {
  text-decoration: none;
  margin-bottom: 0px;
  color: #000;
  text-align: center;
  font-family: Roboto Medium;
  font-size: 18.67px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px; /* 112.48% */
}
p {
  color: #000;
  text-align: center;
  font-size: 18.1px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px; /* 149.171% */
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 1.25rem;
}
.mb-3 {
  margin-bottom: 1.5rem !important;
}
.mb-4 {
  margin-bottom: 1.75rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
.mt-0 {
  margin-top: 0rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.mt-5 {
  margin-top: 3rem !important;
}
.px-2 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.w-62 {
  width: 62%;
  margin: 15px auto 0px;
}
@media (min-width: 1024px) {
  .h-50 {
    height: 50px;
  }
  .h-70 {
    height: 70px;
  }
}
@media (max-width: 1024px) {
  .wrapper {
    padding: 30px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1024px) and (orientation: portrait) {
  .wrapper {
    padding: 30px;
  }
}

/* Styles for tablets in landscape mode */
@media only screen and (min-width: 600px) and (max-width: 1024px) and (orientation: landscape) {
  body {
    background-color: lightgreen;
  }
}

@media (max-width: 768px) {
  .wrapper {
    padding: 30px;
  }
  .grid-menu-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
  .w-62 {
    width: 100%;
    margin: 10px auto 0px;
  }
}
