@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans&display=swap'); /* fnt */
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@700&display=swap'); /* f2 */
@import url('https://fonts.googleapis.com/css2?family=Mukta&display=swap'); /* fnt */
@import url('https://fonts.googleapis.com/css2?family=Zalando+Sans+Expanded:ital,wght@0,200..900;1,200..900&display=swap'); /* fZal */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Zalando+Sans+Expanded:ital,wght@0,200..900;1,200..900&display=swap');  /* fRobo */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap'); /* fPlay */
@import url('https://fonts.googleapis.com/css2?family=Oranienbaum&display=swap'); /* fOran */



::-webkit-scrollbar {
    width: 0;
}
/* ONLY CHANGE THESE COLORS */
:root {
    --background: #FFFFFF;
    --secondary-background:#F7F7F7 ; 
    --main-color: rgba(36, 112, 71, 0.8);;
    --main-hover-color: #258efe;
    --discord-col: #7289DA;
}
body {
    margin: 0;
}
/* custom colors for html code */
.bg {
    background-color: var(--background);
}
.transBg {
    background-color: rgba(10, 11, 12, 0.3);
}
.dg {
    background-color: var(--secondary-background);
}
.bgCol {
    background-color: var(--main-color);
}
.bgTrans {
    background-color: rgba(36, 99, 66, 0.5);
}
.bgTrans2 {
    background-color: rgba(36, 112, 71, 0.8);
}
.bgTransDark {
    background-color: rgba(36, 112, 71, 0.85);
}
.bgCol-hover:hover {
    background-color: var(--main-hover-color);
}
.textCol {
    color: var(--main-color);
}
.textCol-hover:hover {
    color: var(--main-hover-color);
    transition: 0.2s linear;
}
.textColTrans2 {
    color: rgba(36, 112, 71, 0.8);
}
.brdCol {
    border-color: var(--main-color);
}
.brdBg {
    border-color: var(--background);
}
.brdDg {
    border-color: var(--secondary-background);
}
.brd {
    border-color: rgba(37, 126, 78, 0.8);
}
.discordCol {
    background-color: var(--discord-col);
}
.fnt {
    font-family: 'Nunito Sans', sans-serif;
}
.f2 {
    font-family: 'Mukta', sans-serif;
}
.fntBold {
    font-family: 'Kanit', sans-serif;
}
.fZal {
  font-family: "Zalando Sans Expanded", sans-serif;
}
.fRobo {
 font-family: "Roboto", sans-serif;
}
.fPlay {
  font-family: "Playfair Display", serif;
}
.fOran {
  font-family: "Oranienbaum", serif;
}
.content {
    max-width: 90rem;
    margin-inline: auto;
}
.cntSm {
    max-width: 65%;
    margin-inline: auto;
}
.content2 {
    max-width: 90%;
    margin-inline: auto;
}
.navcontent {
    max-width: 60%;
    margin-inline: auto;
}
.miAuto {
    margin-inline: auto;
}

.card1 {
    transform: perspective(300px) rotateY(2deg);
    transition: 0.3s linear;
}
.card2 {
    transform: perspective(300px) rotateY(-2deg);
    transition: 0.3s linear;
}
.card3 {
    transform: perspective(300px) rotateY(2deg);
    transition: 0.3s linear;
}
.card4 {
    transform: perspective(300px) rotateY(-2deg);
    transition: 0.3s linear;
}

li::marker {
    color: var(--main-color);
  }


/* Status Colors */
.green {
    color: #15803d;
}
.greenTrans {
 background-color: rgba(21, 128, 61, 0.2);
}

/* Extra */

.sdwLight {
    box-shadow: 0px 2px 0px 0px black;
}
.sdwCol {
    box-shadow: 0px 2px 0px 0px var(--main-color);
}
.sdwTopLight {
    box-shadow: 0px 0px 2px 0px var(-);
}

  .customHomeWidthForTwext {
    width: 50rem;
  }

  .maxHeight {
    height: 52rem;
  }

#heroImage {
  background-image: url(https://cdn.discordapp.com/attachments/1095847349328285866/1112265687730233344/lawMower1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh; /* Full screen height */
  position: relative;
}



  .popup-animation {
    animation-name: popupFadeIn;
    animation-duration: 0.5s;
  }
  
  @keyframes popupFadeIn {
    from {
      opacity: 0;
      transform: translate(-50%, -60%);
    }
    to {
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }



  .no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}


 .flip-hover {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

/* the animated layer */
.flip-hover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(36, 112, 71, 0.732);   /* hover color */
  z-index: -1;

  /* start hidden in bottom-right */
  transform: scale(0);
  transform-origin: bottom right;

  transition: transform 0.45s cubic-bezier(.22,1,.36,1);
}

/* on hover, fill the element */
.flip-hover:hover::after {
  transform: scale(1);
}




