body{
  background-image: url(/images/img-noise.webp);
  color: #004318;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@keyframes scaleImage {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
#myImage {
  transition: transform 2s;
}
.animate-scale {
  animation: scaleImage 2s forwards;
  animation-iteration-count: infinite;
}
.footer{
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer > span {
  margin: 0 5px 0 5px;
}
.my-pointer{
  transform: rotate(-35deg);
  position: relative;
  top: -20px;
}
.header{
  position: fixed;
  top: 23px;
  left: 0;
}
a > img {
  margin: 0 auto;
}
.header > span{
  margin-left: 10px;
}
.content{
  padding-top: 30px;
}
.content-subpage{
  padding: 0;
  max-width: 80vw;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}
a, a:visited {
  color: #004318;
  text-decoration: none;
  font-size: 1.3rem;
}
.mail-link{
  display: inline-flex;
  align-items: center;
}
.contact {
  color: #004318;
  text-align: start;
  text-align: center;
  font-size: 1.5rem;
}
.contact > p {
  margin-bottom: 1.5rem;
}
.logo {
  width: revert;
  height: 50vh;
  max-width: inherit;
}
.logo-small {
  width: revert;
  height: 64px;
  max-width: inherit;
  margin-bottom: 2rem;
}
.logo-cropped {
  height: 35vh;
  width: revert;
}
p {
  margin: 2px;
  color: #004318;
  font-size: 2.5rem;
}
.flip-card {
  background-color: transparent;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */;
}
/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
/* Do an horizontal flip when you move the mouse over the flip box container */
/*
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  */

.flip-it {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  color: black;
}

/* Style the back side */
.flip-card-back {
  transform: rotateY(180deg);
}

@media only screen and (max-device-width: 640px) {
  .logo {
    max-width: 100%;
  }
  p {
    font-size: 2rem;
  }
}
@media only screen and (max-device-width: 425px) {
  a{
    font-size: 1rem;
  }
  p {
    font-size: 1.5rem;
  }
  .logo {
    width: 90vw;
    height: auto;
    max-width: inherit;
  }
}
@media only screen and (min-device-width: 1024px) {
  a {
    font-size: 1.4rem;
  }
}
@media (orientation: landscape) {
  a {
    font-size: 1.1rem;
  }
  .logo{
    height: auto;
    width: 35vw;
  }
  .services {
    display: block;
    float: right;
    position: absolute;
    top: 15vh;
    left: 45vw;
  }
  .services > p {
    font-size: 2rem;
  }
  .logo-container{
    position: absolute;
    top: 0;
    left: 5vw;
  }
  .contact > p {
    margin-bottom: 0;
  }
  p {
    font-size: 2rem;
  }
}
@font-face {
  font-family: 'M PLUS 1p';
  src: url('MPLUS1p-Regular.ttf') format('truetype');
  font-weight: 700;
}