body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'arial', 'Oxygen',
      'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
      sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
      monospace;
  }

  .makeStyles-headingLeftDescr {
    color: #006936;
    font-family: arial;
    padding-left: 8.5vw;
  }
  .makeStyles-textLeft-20 {
    font-size: 18px;
    font-family: arial;
    padding-left: 8.5vw;
    padding-right: 2vw;
}
.makeStyles-txtLoc-13 {
  font-size: 19px;
  font-family: arial;
  padding-left: 12vw;
}
.makeStyles-headingAbout-39 {
  color: #006936;
  font-size: 30px;
  font-family: arial;
  padding-top: 0.2em;
  padding-left: 13vw;
}
.makeStyles-textGreyGrid-43 {
  font-size: 18px;
  text-align: justify;
  font-family: arial;
  padding-left: 13vw;
  padding-right: 13vw;
  padding-bottom: 2em;
}
.makeStyles-heading-46 {
  color: #006936;
  font-size: 30px;
  font-family: arial;
  padding-top: 0.2em;
  padding-left: 13vw;
}
.makeStyles-headingGreySub-49 {
  color: #006936;
  font-size: 26px;
  font-family: arial;
  padding-top: 0.2em;
  padding-left: 13vw;
}
.makeStyles-textWhiteGrid-48 {
  font-size: 18px;
  font-family: arial;
  padding-left: 13vw;
  padding-right: 5em;
}


.makeStyles-headLoc-13 {
  color: #006936;
  width: 72%;
  font-size: 19px;
  font-family: arial;
  margin-left: 5vw;
  border-bottom: 1px solid grey;
}

.makeStyles-txtLoc-14 {
  color: #006936;
  font-size: 18px;
  font-family: arial;
  line-height: 25px;
  margin-left: 5vw;
}

.img-fluid-80 {
  max-width: 80%;
  height: auto;
}

  /* .navbar {
      background: linear-gradient(90deg, rgb(28, 27, 27) 0%, rgb(26, 23, 23) 100%);
      height: 80px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.2rem;
    }

    .navbar-logo {
      color: #fff;
      justify-self: start;
      margin-left: 20px;
      cursor: pointer;
      text-decoration: none;
      font-size: 2rem;
    } */

    .fa-firstdraft {
      margin-left: 0.5rem;
      font-size: 1.6rem;
    }

    .nav-menu {
      display: grid;
      grid-template-columns: repeat(5, auto);
      grid-gap: 1vw;
      list-style: none;
      text-align: center;
      width:auto;
      max-width: 100%;
      /* width: 70vw; */
      justify-content: end;
      padding-right: 10vw;
      /* margin-right: 5vw; */
      /* margin-left: 1rem; */
    }

    .nav-item {
      display: flex;
      align-items: center;
      height: 80px;
      cursor: pointer;
    }
    .nav-subitem {
      display: flex;
      align-items: center;
      height: 100%;
      cursor: pointer;
    }
    .nav-links {
      color:#006936;
      font-family: 'arial';
      font-weight: 700;
      font-size: 18px;
      text-decoration: none;
      padding: 0.5rem 3rem;
    }

    .nav-links:hover {
      /* background-color: #dbe2df; */
      border-radius: 4px;
      transition: all 0.2s ease-out;
      transition-delay: 1s;
    }

    .fa-bars {
      color: #fff;
    }

    .nav-links-mobile {
      display: none;
    }

    .menu-icon {
      display: none;
    }

    @media screen and (max-width: 1200px) {
      .nav-menu {
        display: grid;
        grid-template-columns: repeat(5, auto);
        grid-gap: 0px;
        list-style: none;
        text-align: center;
        max-width: 100%;
        width: auto;
        justify-content: end;
        margin-right: -1rem;
      }
      .nav-links {
        color:#006936;
        font-family: 'arial';
        font-weight: 700;
        font-size: 16px;
        text-decoration: none;
        padding: 0.5rem 2rem;
      }
    }

    @media screen and (max-width: 960px) {
      .NavbarItems {
        position: relative;
      }

      .nav-menu {
        display: flex;
        flex-direction: column;
        max-width: 100%;
        width: auto;
        height: 90vh;
        position: absolute;
        top: 80px;
        left: -100%;
        opacity: 1;
        transition: all 0.5s ease;
      }

      .nav-menu.active {
        background: #242222;
        left: 0;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 1;
      }

      .nav-links {
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
      }

      .nav-links:hover {
        background-color: #1888ff;
        border-radius: 0;
      }

      .navbar-logo {
        position: absolute;
        top: 0;
        left: 0;
        transform: translate(25%, 50%);
      }

      .menu-icon {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        transform: translate(-100%, 60%);
        font-size: 1.8rem;
        cursor: pointer;
      }

      .fa-times {
        color: #fff;
        font-size: 2rem;
      }

      .nav-links-mobile {
        display: block;
        text-align: center;
        padding: 1.5rem;
        margin: 2rem auto;
        border-radius: 4px;
        width: 80%;
        background: #1888ff;
        text-decoration: none;
        color: #fff;
        font-size: 1.5rem;
      }

      .nav-links-mobile:hover {
        background: #fff;
        color: #1888ff;
        transition: 250ms;
      }

      button {
        display: none;
      }
    }

  .dropdown-menu {
      background: white;
      width: 200px;
      position: absolute;
      top: 8vh;
      list-style: none;
      text-align: center;
      box-shadow: 3px 3px 5px grey;
      margin-left: -1vw;
      padding-inline-start: 0;
  }

  .dropdown-menu li {
      background: white;
      cursor: pointer;
      width: 200px;
  }

  .dropdown-menuAb {
      /* background: white; */
      width: 250px;
      position: absolute;
      top: 8vh;
      list-style: none;
      text-align: center;
      box-shadow: 3px 3px 5px grey;
      margin-left: -1.5vw;
      padding-inline-start: 0;
  }

  .dropdown-menuAb li {
      background: white;
      cursor: pointer;
  }

  .dropdown-submenu {
      /* background: red; */
      width: 200px;
      position: absolute;
      top: 0em;
      left:200px;
      list-style: none;
      text-align: center;
      padding-inline-start: 0;
  }

  .dropdown-submenu li {
      background:white;
      cursor: pointer;
  }

  .dropdown-menu li:hover {
      background: #5cabff;
  }

  .dropdown-menuAb li:hover {
      background: #5cabff;
  }

  .dropdown-submenu li:hover {
      background: #5cabff;
  }

  .dropdown-menu.clicked {
      display: none;
  }
  .dropdown-submenu.clicked {
      display: none;
  }

  .dropdown-link {
      display: block;
      height: 100%;
      width: 100%;
      text-decoration: none;
      color: #006936;
      padding: 25px;
      font-size: 18px;
      font-family: 'arial';
      font-weight: 700;
      margin-left: -25px;
  }
  .dropdown-linkAb {
      display: block;
      height: 100%;
      width: 100%;
      text-decoration: none;
      color: #006936;
      padding: 25px;
      font-size: 18px;
      font-family: 'arial';
      font-weight: 700;
      margin-left: -25px;
  }

    @media screen and (max-width: 960px) {
      .fa-caret-down {
        display: none;
      }
  }


  .MuiPaper-root {
    color: rgba(0, 0, 0, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    background-color: #fff;
  }
  .MuiPaper-rounded {
    border-radius: 4px;
  }
  .MuiPaper-outlined {
    border: 1px solid rgba(0, 0, 0, 0.12);
  }
  .MuiPaper-elevation0 {
    box-shadow: none;
  }
  .MuiPaper-elevation1 {
    box-shadow: 0px 2px 1px -1px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 1px 3px 0px rgba(0,0,0,0.12);
  }
  .MuiPaper-elevation2 {
    box-shadow: 0px 3px 1px -2px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 1px 5px 0px rgba(0,0,0,0.12);
  }
  .MuiPaper-elevation3 {
    box-shadow: 0px 3px 3px -2px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 1px 8px 0px rgba(0,0,0,0.12);
  }
  .MuiPaper-elevation4 {
    box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12);
  }
  .MuiPaper-elevation5 {
    box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 5px 8px 0px rgba(0,0,0,0.14),0px 1px 14px 0px rgba(0,0,0,0.12);
  }
  .MuiPaper-elevation6 {
    box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12);
  }
  .MuiPaper-elevation7 {
    box-shadow: 0px 4px 5px -2px rgba(0,0,0,0.2),0px 7px 10px 1px rgba(0,0,0,0.14),0px 2px 16px 1px rgba(0,0,0,0.12);
  }
  .MuiPaper-elevation8 {
    box-shadow: 0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12);
  }
  .MuiPaper-elevation9 {
    box-shadow: 0px 5px 6px -3px rgba(0,0,0,0.2),0px 9px 12px 1px rgba(0,0,0,0.14),0px 3px 16px 2px rgba(0,0,0,0.12);
  }
  .MuiPaper-elevation10 {
    box-shadow: 0px 6px 6px -3px rgba(0,0,0,0.2),0px 10px 14px 1px rgba(0,0,0,0.14),0px 4px 18px 3px rgba(0,0,0,0.12);
  }
  .MuiPaper-elevation11 {
    box-shadow: 0px 6px 7px -4px rgba(0,0,0,0.2),0px 11px 15px 1px rgba(0,0,0,0.14),0px 4px 20px 3px rgba(0,0,0,0.12);
  }
  .MuiPaper-elevation12 {
    box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 12px 17px 2px rgba(0,0,0,0.14),0px 5px 22px 4px rgba(0,0,0,0.12);
  }
  .MuiPaper-elevation13 {
    box-shadow: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 13px 19px 2px rgba(0,0,0,0.14),0px 5px 24px 4px rgba(0,0,0,0.12);
  }
  .MuiPaper-elevation14 {
    box-shadow: 0px 7px 9px -4px rgba(0,0,0,0.2),0px 14px 21px 2px rgba(0,0,0,0.14),0px 5px 26px 4px rgba(0,0,0,0.12);
  }
  .MuiPaper-elevation15 {
    box-shadow: 0px 8px 9px -5px rgba(0,0,0,0.2),0px 15px 22px 2px rgba(0,0,0,0.14),0px 6px 28px 5px rgba(0,0,0,0.12);
  }
  .MuiPaper-elevation16 {
    box-shadow: 0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12);
  }
  .MuiPaper-elevation17 {
    box-shadow: 0px 8px 11px -5px rgba(0,0,0,0.2),0px 17px 26px 2px rgba(0,0,0,0.14),0px 6px 32px 5px rgba(0,0,0,0.12);
  }
  .MuiPaper-elevation18 {
    box-shadow: 0px 9px 11px -5px rgba(0,0,0,0.2),0px 18px 28px 2px rgba(0,0,0,0.14),0px 7px 34px 6px rgba(0,0,0,0.12);
  }
  .MuiPaper-elevation19 {
    box-shadow: 0px 9px 12px -6px rgba(0,0,0,0.2),0px 19px 29px 2px rgba(0,0,0,0.14),0px 7px 36px 6px rgba(0,0,0,0.12);
  }
  .MuiPaper-elevation20 {
    box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 20px 31px 3px rgba(0,0,0,0.14),0px 8px 38px 7px rgba(0,0,0,0.12);
  }
  .MuiPaper-elevation21 {
    box-shadow: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 21px 33px 3px rgba(0,0,0,0.14),0px 8px 40px 7px rgba(0,0,0,0.12);
  }
  .MuiPaper-elevation22 {
    box-shadow: 0px 10px 14px -6px rgba(0,0,0,0.2),0px 22px 35px 3px rgba(0,0,0,0.14),0px 8px 42px 7px rgba(0,0,0,0.12);
  }
  .MuiPaper-elevation23 {
    box-shadow: 0px 11px 14px -7px rgba(0,0,0,0.2),0px 23px 36px 3px rgba(0,0,0,0.14),0px 9px 44px 8px rgba(0,0,0,0.12);
  }
  .MuiPaper-elevation24 {
    box-shadow: 0px 11px 15px -7px rgba(0,0,0,0.2),0px 24px 38px 3px rgba(0,0,0,0.14),0px 9px 46px 8px rgba(0,0,0,0.12);
  }

  .MuiAppBar-root {
    width: 100%;
    display: flex;
    z-index: 1100;
    box-sizing: border-box;
    flex-shrink: 0;
    flex-direction: column;
  }
  .MuiAppBar-positionFixed {
    top: 0;
    left: auto;
    right: 0;
    position: fixed;
  }
  @media print {
    .MuiAppBar-positionFixed {
      position: absolute;
    }
  }
  .MuiAppBar-positionAbsolute {
    top: 0;
    left: auto;
    right: 0;
    position: absolute;
  }
  .MuiAppBar-positionSticky {
    top: 0;
    left: auto;
    right: 0;
    position: sticky;
  }
  .MuiAppBar-positionStatic {
    position: static;
  }
  .MuiAppBar-positionRelative {
    position: relative;
  }
  .MuiAppBar-colorDefault {
    color: rgba(0, 0, 0, 0.87);
    background-color: #f5f5f5;
  }
  .MuiAppBar-colorPrimary {
    color: #fff;
    background-color: #3f51b5;
  }
  .MuiAppBar-colorSecondary {
    color: #fff;
    background-color: #f50057;
  }
  .MuiAppBar-colorInherit {
    color: inherit;
  }
  .MuiAppBar-colorTransparent {
    color: inherit;
    background-color: transparent;
  }

  .MuiToolbar-root {
    display: flex;
    position: relative;
    align-items: center;
  }
  .MuiToolbar-gutters {
    padding-left: 16px;
    padding-right: 16px;
  }
  @media (min-width:600px) {
    .MuiToolbar-gutters {
      padding-left: 24px;
      padding-right: 24px;
    }
  }
  .MuiToolbar-regular {
    min-height: 56px;
  }
  @media (min-width:0px) and (orientation: landscape) {
    .MuiToolbar-regular {
      min-height: 48px;
    }
  }
  @media (min-width:600px) {
    .MuiToolbar-regular {
      min-height: 64px;
    }
  }
  .MuiToolbar-dense {
    min-height: 48px;
  }

  .MuiTouchRipple-root {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    position: absolute;
    border-radius: inherit;
    pointer-events: none;
  }
  .MuiTouchRipple-ripple {
    opacity: 0;
    position: absolute;
  }
  .MuiTouchRipple-rippleVisible {
    opacity: 0.3;
    animation: MuiTouchRipple-keyframes-enter 550ms cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
  }
  .MuiTouchRipple-ripplePulsate {
    animation-duration: 200ms;
  }
  .MuiTouchRipple-child {
    width: 100%;
    height: 100%;
    display: block;
    opacity: 1;
    border-radius: 50%;
    background-color: currentColor;
  }
  .MuiTouchRipple-childLeaving {
    opacity: 0;
    animation: MuiTouchRipple-keyframes-exit 550ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .MuiTouchRipple-childPulsate {
    top: 0;
    left: 0;
    position: absolute;
    animation: MuiTouchRipple-keyframes-pulsate 2500ms cubic-bezier(0.4, 0, 0.2, 1) 200ms infinite;
  }
  @-webkit-keyframes MuiTouchRipple-keyframes-enter {
    0% {
      opacity: 0.1;
      transform: scale(0);
    }
    100% {
      opacity: 0.3;
      transform: scale(1);
    }
  }
  @-webkit-keyframes MuiTouchRipple-keyframes-exit {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  @-webkit-keyframes MuiTouchRipple-keyframes-pulsate {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(0.92);
    }
    100% {
      transform: scale(1);
    }
  }

  .MuiButtonBase-root {
    color: inherit;
    border: 0;
    cursor: pointer;
    margin: 0;
    display: inline-flex;
    outline: 0;
    padding: 0;
    position: relative;
    align-items: center;
    user-select: none;
    border-radius: 0;
    vertical-align: middle;
    -moz-appearance: none;
    justify-content: center;
    text-decoration: none;
    background-color: transparent;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
  }
  .MuiButtonBase-root::-moz-focus-inner {
    border-style: none;
  }
  .MuiButtonBase-root.Mui-disabled {
    cursor: default;
    pointer-events: none;
  }
  @media print {
    .MuiButtonBase-root {
      -webkit-print-color-adjust: exact;
    }
  }

  .MuiIconButton-root {
    flex: 0 0 auto;
    color: rgba(0, 0, 0, 0.54);
    padding: 12px;
    overflow: visible;
    font-size: 1.5rem;
    text-align: center;
    transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 50%;
  }
  .MuiIconButton-root:hover {
    background-color: rgba(0, 0, 0, 0.04);
  }
  .MuiIconButton-root.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
    background-color: transparent;
  }
  @media (hover: none) {
    .MuiIconButton-root:hover {
      background-color: transparent;
    }
  }
  .MuiIconButton-edgeStart {
    margin-left: -12px;
  }
  .MuiIconButton-sizeSmall.MuiIconButton-edgeStart {
    margin-left: -3px;
  }
  .MuiIconButton-edgeEnd {
    margin-right: -12px;
  }
  .MuiIconButton-sizeSmall.MuiIconButton-edgeEnd {
    margin-right: -3px;
  }
  .MuiIconButton-colorInherit {
    color: inherit;
  }
  .MuiIconButton-colorPrimary {
    color: #3f51b5;
  }
  .MuiIconButton-colorPrimary:hover {
    background-color: rgba(63, 81, 181, 0.04);
  }
  @media (hover: none) {
    .MuiIconButton-colorPrimary:hover {
      background-color: transparent;
    }
  }
  .MuiIconButton-colorSecondary {
    color: #f50057;
  }
  .MuiIconButton-colorSecondary:hover {
    background-color: rgba(245, 0, 87, 0.04);
  }
  @media (hover: none) {
    .MuiIconButton-colorSecondary:hover {
      background-color: transparent;
    }
  }
  .MuiIconButton-sizeSmall {
    padding: 3px;
    font-size: 1.125rem;
  }
  .MuiIconButton-label {
    width: 100%;
    display: flex;
    align-items: inherit;
    justify-content: inherit;
  }

  .MuiTypography-root {
    margin: 0;
  }
  .MuiTypography-body2 {
    font-size: 0.875rem;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    line-height: 1.43;
    letter-spacing: 0.01071em;
  }
  .MuiTypography-body1 {
    font-size: 1rem;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.00938em;
  }
  .MuiTypography-caption {
    font-size: 0.75rem;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    line-height: 1.66;
    letter-spacing: 0.03333em;
  }
  .MuiTypography-button {
    font-size: 0.875rem;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
  }
  .MuiTypography-h1 {
    font-size: 6rem;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 300;
    line-height: 1.167;
    letter-spacing: -0.01562em;
  }
  .MuiTypography-h2 {
    font-size: 3.75rem;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.00833em;
  }
  .MuiTypography-h3 {
    font-size: 3rem;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    line-height: 1.167;
    letter-spacing: 0em;
  }
  .MuiTypography-h4 {
    font-size: 2.125rem;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    line-height: 1.235;
    letter-spacing: 0.00735em;
  }
  .MuiTypography-h5 {
    font-size: 1.5rem;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    line-height: 1.334;
    letter-spacing: 0em;
  }
  .MuiTypography-h6 {
    font-size: 1.25rem;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.0075em;
  }
  .MuiTypography-subtitle1 {
    font-size: 1rem;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.00938em;
  }
  .MuiTypography-subtitle2 {
    font-size: 0.875rem;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 500;
    line-height: 1.57;
    letter-spacing: 0.00714em;
  }
  .MuiTypography-overline {
    font-size: 0.75rem;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    line-height: 2.66;
    letter-spacing: 0.08333em;
    text-transform: uppercase;
  }
  .MuiTypography-srOnly {
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: absolute;
  }
  .MuiTypography-alignLeft {
    text-align: left;
  }
  .MuiTypography-alignCenter {
    text-align: center;
  }
  .MuiTypography-alignRight {
    text-align: right;
  }
  .MuiTypography-alignJustify {
    text-align: justify;
  }
  .MuiTypography-noWrap {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .MuiTypography-gutterBottom {
    margin-bottom: 0.35em;
  }
  .MuiTypography-paragraph {
    margin-bottom: 16px;
  }
  .MuiTypography-colorInherit {
    color: inherit;
  }
  .MuiTypography-colorPrimary {
    color: #3f51b5;
  }
  .MuiTypography-colorSecondary {
    color: #f50057;
  }
  .MuiTypography-colorTextPrimary {
    color: rgba(0, 0, 0, 0.87);
  }
  .MuiTypography-colorTextSecondary {
    color: rgba(0, 0, 0, 0.54);
  }
  .MuiTypography-colorError {
    color: #f44336;
  }
  .MuiTypography-displayInline {
    display: inline;
  }
  .MuiTypography-displayBlock {
    display: block;
  }

  .MuiSvgIcon-root {
    fill: currentColor;
    width: 1em;
    height: 1em;
    display: inline-block;
    font-size: 1.5rem;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    flex-shrink: 0;
    user-select: none;
  }
  .MuiSvgIcon-colorPrimary {
    color: #3f51b5;
  }
  .MuiSvgIcon-colorSecondary {
    color: #f50057;
  }
  .MuiSvgIcon-colorAction {
    color: rgba(0, 0, 0, 0.54);
  }
  .MuiSvgIcon-colorError {
    color: #f44336;
  }
  .MuiSvgIcon-colorDisabled {
    color: rgba(0, 0, 0, 0.26);
  }
  .MuiSvgIcon-fontSizeInherit {
    font-size: inherit;
  }
  .MuiSvgIcon-fontSizeSmall {
    font-size: 1.25rem;
  }
  .MuiSvgIcon-fontSizeLarge {
    font-size: 2.1875rem;
  }

  .MuiBackdrop-root {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    z-index: -1;
    position: fixed;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-tap-highlight-color: transparent;
  }
  .MuiBackdrop-invisible {
    background-color: transparent;
  }

  .MuiButton-root {
    color: rgba(0, 0, 0, 0.87);
    padding: 6px 16px;
    font-size: 0.875rem;
    min-width: 64px;
    box-sizing: border-box;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 500;
    line-height: 1.75;
    border-radius: 4px;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
  }
  .MuiButton-root:hover {
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.04);
  }
  .MuiButton-root.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
  }
  @media (hover: none) {
    .MuiButton-root:hover {
      background-color: transparent;
    }
  }
  .MuiButton-root:hover.Mui-disabled {
    background-color: transparent;
  }
  .MuiButton-label {
    width: 100%;
    display: inherit;
    align-items: inherit;
    justify-content: inherit;
  }
  .MuiButton-text {
    padding: 6px 8px;
  }
  .MuiButton-textPrimary {
    color: #3f51b5;
  }
  .MuiButton-textPrimary:hover {
    background-color: rgba(63, 81, 181, 0.04);
  }
  @media (hover: none) {
    .MuiButton-textPrimary:hover {
      background-color: transparent;
    }
  }
  .MuiButton-textSecondary {
    color: #f50057;
  }
  .MuiButton-textSecondary:hover {
    background-color: rgba(245, 0, 87, 0.04);
  }
  @media (hover: none) {
    .MuiButton-textSecondary:hover {
      background-color: transparent;
    }
  }
  .MuiButton-outlined {
    border: 1px solid rgba(0, 0, 0, 0.23);
    padding: 5px 15px;
  }
  .MuiButton-outlined.Mui-disabled {
    border: 1px solid rgba(0, 0, 0, 0.12);
  }
  .MuiButton-outlinedPrimary {
    color: #3f51b5;
    border: 1px solid rgba(63, 81, 181, 0.5);
  }
  .MuiButton-outlinedPrimary:hover {
    border: 1px solid #3f51b5;
    background-color: rgba(63, 81, 181, 0.04);
  }
  @media (hover: none) {
    .MuiButton-outlinedPrimary:hover {
      background-color: transparent;
    }
  }
  .MuiButton-outlinedSecondary {
    color: #f50057;
    border: 1px solid rgba(245, 0, 87, 0.5);
  }
  .MuiButton-outlinedSecondary:hover {
    border: 1px solid #f50057;
    background-color: rgba(245, 0, 87, 0.04);
  }
  .MuiButton-outlinedSecondary.Mui-disabled {
    border: 1px solid rgba(0, 0, 0, 0.26);
  }
  @media (hover: none) {
    .MuiButton-outlinedSecondary:hover {
      background-color: transparent;
    }
  }
  .MuiButton-contained {
    color: rgba(0, 0, 0, 0.87);
    box-shadow: 0px 3px 1px -2px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 1px 5px 0px rgba(0,0,0,0.12);
    background-color: #e0e0e0;
  }
  .MuiButton-contained:hover {
    box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12);
    background-color: #d5d5d5;
  }
  .MuiButton-contained.Mui-focusVisible {
    box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12);
  }
  .MuiButton-contained:active {
    box-shadow: 0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12);
  }
  .MuiButton-contained.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.12);
  }
  @media (hover: none) {
    .MuiButton-contained:hover {
      box-shadow: 0px 3px 1px -2px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 1px 5px 0px rgba(0,0,0,0.12);
      background-color: #e0e0e0;
    }
  }
  .MuiButton-contained:hover.Mui-disabled {
    background-color: rgba(0, 0, 0, 0.12);
  }
  .MuiButton-containedPrimary {
    color: #fff;
    background-color: #3f51b5;
  }
  .MuiButton-containedPrimary:hover {
    background-color: #303f9f;
  }
  @media (hover: none) {
    .MuiButton-containedPrimary:hover {
      background-color: #3f51b5;
    }
  }
  .MuiButton-containedSecondary {
    color: #fff;
    background-color: #f50057;
  }
  .MuiButton-containedSecondary:hover {
    background-color: #c51162;
  }
  @media (hover: none) {
    .MuiButton-containedSecondary:hover {
      background-color: #f50057;
    }
  }
  .MuiButton-disableElevation {
    box-shadow: none;
  }
  .MuiButton-disableElevation:hover {
    box-shadow: none;
  }
  .MuiButton-disableElevation.Mui-focusVisible {
    box-shadow: none;
  }
  .MuiButton-disableElevation:active {
    box-shadow: none;
  }
  .MuiButton-disableElevation.Mui-disabled {
    box-shadow: none;
  }
  .MuiButton-colorInherit {
    color: inherit;
    border-color: currentColor;
  }
  .MuiButton-textSizeSmall {
    padding: 4px 5px;
    font-size: 0.8125rem;
  }
  .MuiButton-textSizeLarge {
    padding: 8px 11px;
    font-size: 0.9375rem;
  }
  .MuiButton-outlinedSizeSmall {
    padding: 3px 9px;
    font-size: 0.8125rem;
  }
  .MuiButton-outlinedSizeLarge {
    padding: 7px 21px;
    font-size: 0.9375rem;
  }
  .MuiButton-containedSizeSmall {
    padding: 4px 10px;
    font-size: 0.8125rem;
  }
  .MuiButton-containedSizeLarge {
    padding: 8px 22px;
    font-size: 0.9375rem;
  }
  .MuiButton-fullWidth {
    width: 100%;
  }
  .MuiButton-startIcon {
    display: inherit;
    margin-left: -4px;
    margin-right: 8px;
  }
  .MuiButton-startIcon.MuiButton-iconSizeSmall {
    margin-left: -2px;
  }
  .MuiButton-endIcon {
    display: inherit;
    margin-left: 8px;
    margin-right: -4px;
  }
  .MuiButton-endIcon.MuiButton-iconSizeSmall {
    margin-right: -2px;
  }
  .MuiButton-iconSizeSmall > *:first-child {
    font-size: 18px;
  }
  .MuiButton-iconSizeMedium > *:first-child {
    font-size: 20px;
  }
  .MuiButton-iconSizeLarge > *:first-child {
    font-size: 22px;
  }

  .MuiDrawer-docked {
    flex: 0 0 auto;
  }
  .MuiDrawer-paper {
    top: 0;
    flex: 1 0 auto;
    height: 100%;
    display: flex;
    outline: 0;
    z-index: 1200;
    position: fixed;
    overflow-y: auto;
    flex-direction: column;
    -webkit-overflow-scrolling: touch;
  }
  .MuiDrawer-paperAnchorLeft {
    left: 0;
    right: auto;
  }
  .MuiDrawer-paperAnchorRight {
    left: auto;
    right: 0;
  }
  .MuiDrawer-paperAnchorTop {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    height: auto;
    max-height: 100%;
  }
  .MuiDrawer-paperAnchorBottom {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    max-height: 100%;
  }
  .MuiDrawer-paperAnchorDockedLeft {
    border-right: 1px solid rgba(0, 0, 0, 0.12);
  }
  .MuiDrawer-paperAnchorDockedTop {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .MuiDrawer-paperAnchorDockedRight {
    border-left: 1px solid rgba(0, 0, 0, 0.12);
  }
  .MuiDrawer-paperAnchorDockedBottom {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
  }

  .MuiGrid-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
  }
  .MuiGrid-item {
    margin: 0;
    box-sizing: border-box;
  }
  .MuiGrid-zeroMinWidth {
    min-width: 0;
  }
  .MuiGrid-direction-xs-column {
    flex-direction: column;
  }
  .MuiGrid-direction-xs-column-reverse {
    flex-direction: column-reverse;
  }
  .MuiGrid-direction-xs-row-reverse {
    flex-direction: row-reverse;
  }
  .MuiGrid-wrap-xs-nowrap {
    flex-wrap: nowrap;
  }
  .MuiGrid-wrap-xs-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  .MuiGrid-align-items-xs-center {
    align-items: center;
  }
  .MuiGrid-align-items-xs-flex-start {
    align-items: flex-start;
  }
  .MuiGrid-align-items-xs-flex-end {
    align-items: flex-end;
  }
  .MuiGrid-align-items-xs-baseline {
    align-items: baseline;
  }
  .MuiGrid-align-content-xs-center {
    align-content: center;
  }
  .MuiGrid-align-content-xs-flex-start {
    align-content: flex-start;
  }
  .MuiGrid-align-content-xs-flex-end {
    align-content: flex-end;
  }
  .MuiGrid-align-content-xs-space-between {
    align-content: space-between;
  }
  .MuiGrid-align-content-xs-space-around {
    align-content: space-around;
  }
  .MuiGrid-justify-content-xs-center {
    justify-content: center;
  }
  .MuiGrid-justify-content-xs-flex-end {
    justify-content: flex-end;
  }
  .MuiGrid-justify-content-xs-space-between {
    justify-content: space-between;
  }
  .MuiGrid-justify-content-xs-space-around {
    justify-content: space-around;
  }
  .MuiGrid-justify-content-xs-space-evenly {
    justify-content: space-evenly;
  }
  .MuiGrid-spacing-xs-1 {
    width: calc(100% + 8px);
    margin: -4px;
  }
  .MuiGrid-spacing-xs-1 > .MuiGrid-item {
    padding: 4px;
  }
  .MuiGrid-spacing-xs-2 {
    width: calc(100% + 16px);
    margin: -8px;
  }
  .MuiGrid-spacing-xs-2 > .MuiGrid-item {
    padding: 8px;
  }
  .MuiGrid-spacing-xs-3 {
    width: calc(100% + 24px);
    margin: -12px;
  }
  .MuiGrid-spacing-xs-3 > .MuiGrid-item {
    padding: 12px;
  }
  .MuiGrid-spacing-xs-4 {
    width: calc(100% + 32px);
    margin: -16px;
  }
  .MuiGrid-spacing-xs-4 > .MuiGrid-item {
    padding: 16px;
  }
  .MuiGrid-spacing-xs-5 {
    width: calc(100% + 40px);
    margin: -20px;
  }
  .MuiGrid-spacing-xs-5 > .MuiGrid-item {
    padding: 20px;
  }
  .MuiGrid-spacing-xs-6 {
    width: calc(100% + 48px);
    margin: -24px;
  }
  .MuiGrid-spacing-xs-6 > .MuiGrid-item {
    padding: 24px;
  }
  .MuiGrid-spacing-xs-7 {
    width: calc(100% + 56px);
    margin: -28px;
  }
  .MuiGrid-spacing-xs-7 > .MuiGrid-item {
    padding: 28px;
  }
  .MuiGrid-spacing-xs-8 {
    width: calc(100% + 64px);
    margin: -32px;
  }
  .MuiGrid-spacing-xs-8 > .MuiGrid-item {
    padding: 32px;
  }
  .MuiGrid-spacing-xs-9 {
    width: calc(100% + 72px);
    margin: -36px;
  }
  .MuiGrid-spacing-xs-9 > .MuiGrid-item {
    padding: 36px;
  }
  .MuiGrid-spacing-xs-10 {
    width: calc(100% + 80px);
    margin: -40px;
  }
  .MuiGrid-spacing-xs-10 > .MuiGrid-item {
    padding: 40px;
  }
  .MuiGrid-grid-xs-auto {
    flex-grow: 0;
    max-width: none;
    flex-basis: auto;
  }
  .MuiGrid-grid-xs-true {
    flex-grow: 1;
    max-width: 100%;
    flex-basis: 0;
  }
  .MuiGrid-grid-xs-1 {
    flex-grow: 0;
    max-width: 8.333333%;
    flex-basis: 8.333333%;
  }
  .MuiGrid-grid-xs-2 {
    flex-grow: 0;
    max-width: 16.666667%;
    flex-basis: 16.666667%;
  }
  .MuiGrid-grid-xs-3 {
    flex-grow: 0;
    max-width: 25%;
    flex-basis: 25%;
  }
  .MuiGrid-grid-xs-4 {
    flex-grow: 0;
    max-width: 33.333333%;
    flex-basis: 33.333333%;
  }
  .MuiGrid-grid-xs-5 {
    flex-grow: 0;
    max-width: 41.666667%;
    flex-basis: 41.666667%;
  }
  .MuiGrid-grid-xs-6 {
    flex-grow: 0;
    max-width: 50%;
    flex-basis: 50%;
  }
  .MuiGrid-grid-xs-7 {
    flex-grow: 0;
    max-width: 58.333333%;
    flex-basis: 58.333333%;
  }
  .MuiGrid-grid-xs-8 {
    flex-grow: 0;
    max-width: 66.666667%;
    flex-basis: 66.666667%;
  }
  .MuiGrid-grid-xs-9 {
    flex-grow: 0;
    max-width: 75%;
    flex-basis: 75%;
  }
  .MuiGrid-grid-xs-10 {
    flex-grow: 0;
    max-width: 83.333333%;
    flex-basis: 83.333333%;
  }
  .MuiGrid-grid-xs-11 {
    flex-grow: 0;
    max-width: 91.666667%;
    flex-basis: 91.666667%;
  }
  .MuiGrid-grid-xs-12 {
    flex-grow: 0;
    max-width: 100%;
    flex-basis: 100%;
  }
  @media (min-width:600px) {
    .MuiGrid-grid-sm-auto {
      flex-grow: 0;
      max-width: none;
      flex-basis: auto;
    }
    .MuiGrid-grid-sm-true {
      flex-grow: 1;
      max-width: 100%;
      flex-basis: 0;
    }
    .MuiGrid-grid-sm-1 {
      flex-grow: 0;
      max-width: 8.333333%;
      flex-basis: 8.333333%;
    }
    .MuiGrid-grid-sm-2 {
      flex-grow: 0;
      max-width: 16.666667%;
      flex-basis: 16.666667%;
    }
    .MuiGrid-grid-sm-3 {
      flex-grow: 0;
      max-width: 25%;
      flex-basis: 25%;
    }
    .MuiGrid-grid-sm-4 {
      flex-grow: 0;
      max-width: 33.333333%;
      flex-basis: 33.333333%;
    }
    .MuiGrid-grid-sm-5 {
      flex-grow: 0;
      max-width: 41.666667%;
      flex-basis: 41.666667%;
    }
    .MuiGrid-grid-sm-6 {
      flex-grow: 0;
      max-width: 50%;
      flex-basis: 50%;
    }
    .MuiGrid-grid-sm-7 {
      flex-grow: 0;
      max-width: 58.333333%;
      flex-basis: 58.333333%;
    }
    .MuiGrid-grid-sm-8 {
      flex-grow: 0;
      max-width: 66.666667%;
      flex-basis: 66.666667%;
    }
    .MuiGrid-grid-sm-9 {
      flex-grow: 0;
      max-width: 75%;
      flex-basis: 75%;
    }
    .MuiGrid-grid-sm-10 {
      flex-grow: 0;
      max-width: 83.333333%;
      flex-basis: 83.333333%;
    }
    .MuiGrid-grid-sm-11 {
      flex-grow: 0;
      max-width: 91.666667%;
      flex-basis: 91.666667%;
    }
    .MuiGrid-grid-sm-12 {
      flex-grow: 0;
      max-width: 100%;
      flex-basis: 100%;
    }
  }
  @media (min-width:960px) {
    .MuiGrid-grid-md-auto {
      flex-grow: 0;
      max-width: none;
      flex-basis: auto;
    }
    .MuiGrid-grid-md-true {
      flex-grow: 1;
      max-width: 100%;
      flex-basis: 0;
    }
    .MuiGrid-grid-md-1 {
      flex-grow: 0;
      max-width: 8.333333%;
      flex-basis: 8.333333%;
    }
    .MuiGrid-grid-md-2 {
      flex-grow: 0;
      max-width: 16.666667%;
      flex-basis: 16.666667%;
    }
    .MuiGrid-grid-md-3 {
      flex-grow: 0;
      max-width: 25%;
      flex-basis: 25%;
    }
    .MuiGrid-grid-md-4 {
      flex-grow: 0;
      max-width: 33.333333%;
      flex-basis: 33.333333%;
    }
    .MuiGrid-grid-md-5 {
      flex-grow: 0;
      max-width: 41.666667%;
      flex-basis: 41.666667%;
    }
    .MuiGrid-grid-md-6 {
      flex-grow: 0;
      max-width: 50%;
      flex-basis: 50%;
    }
    .MuiGrid-grid-md-7 {
      flex-grow: 0;
      max-width: 58.333333%;
      flex-basis: 58.333333%;
    }
    .MuiGrid-grid-md-8 {
      flex-grow: 0;
      max-width: 66.666667%;
      flex-basis: 66.666667%;
    }
    .MuiGrid-grid-md-9 {
      flex-grow: 0;
      max-width: 75%;
      flex-basis: 75%;
    }
    .MuiGrid-grid-md-10 {
      flex-grow: 0;
      max-width: 83.333333%;
      flex-basis: 83.333333%;
    }
    .MuiGrid-grid-md-11 {
      flex-grow: 0;
      max-width: 91.666667%;
      flex-basis: 91.666667%;
    }
    .MuiGrid-grid-md-12 {
      flex-grow: 0;
      max-width: 100%;
      flex-basis: 100%;
    }
  }
  @media (min-width:1280px) {
    .MuiGrid-grid-lg-auto {
      flex-grow: 0;
      max-width: none;
      flex-basis: auto;
    }
    .MuiGrid-grid-lg-true {
      flex-grow: 1;
      max-width: 100%;
      flex-basis: 0;
    }
    .MuiGrid-grid-lg-1 {
      flex-grow: 0;
      max-width: 8.333333%;
      flex-basis: 8.333333%;
    }
    .MuiGrid-grid-lg-2 {
      flex-grow: 0;
      max-width: 16.666667%;
      flex-basis: 16.666667%;
    }
    .MuiGrid-grid-lg-3 {
      flex-grow: 0;
      max-width: 25%;
      flex-basis: 25%;
    }
    .MuiGrid-grid-lg-4 {
      flex-grow: 0;
      max-width: 33.333333%;
      flex-basis: 33.333333%;
    }
    .MuiGrid-grid-lg-5 {
      flex-grow: 0;
      max-width: 41.666667%;
      flex-basis: 41.666667%;
    }
    .MuiGrid-grid-lg-6 {
      flex-grow: 0;
      max-width: 50%;
      flex-basis: 50%;
    }
    .MuiGrid-grid-lg-7 {
      flex-grow: 0;
      max-width: 58.333333%;
      flex-basis: 58.333333%;
    }
    .MuiGrid-grid-lg-8 {
      flex-grow: 0;
      max-width: 66.666667%;
      flex-basis: 66.666667%;
    }
    .MuiGrid-grid-lg-9 {
      flex-grow: 0;
      max-width: 75%;
      flex-basis: 75%;
    }
    .MuiGrid-grid-lg-10 {
      flex-grow: 0;
      max-width: 83.333333%;
      flex-basis: 83.333333%;
    }
    .MuiGrid-grid-lg-11 {
      flex-grow: 0;
      max-width: 91.666667%;
      flex-basis: 91.666667%;
    }
    .MuiGrid-grid-lg-12 {
      flex-grow: 0;
      max-width: 100%;
      flex-basis: 100%;
    }
  }
  @media (min-width:1920px) {
    .MuiGrid-grid-xl-auto {
      flex-grow: 0;
      max-width: none;
      flex-basis: auto;
    }
    .MuiGrid-grid-xl-true {
      flex-grow: 1;
      max-width: 100%;
      flex-basis: 0;
    }
    .MuiGrid-grid-xl-1 {
      flex-grow: 0;
      max-width: 8.333333%;
      flex-basis: 8.333333%;
    }
    .MuiGrid-grid-xl-2 {
      flex-grow: 0;
      max-width: 16.666667%;
      flex-basis: 16.666667%;
    }
    .MuiGrid-grid-xl-3 {
      flex-grow: 0;
      max-width: 25%;
      flex-basis: 25%;
    }
    .MuiGrid-grid-xl-4 {
      flex-grow: 0;
      max-width: 33.333333%;
      flex-basis: 33.333333%;
    }
    .MuiGrid-grid-xl-5 {
      flex-grow: 0;
      max-width: 41.666667%;
      flex-basis: 41.666667%;
    }
    .MuiGrid-grid-xl-6 {
      flex-grow: 0;
      max-width: 50%;
      flex-basis: 50%;
    }
    .MuiGrid-grid-xl-7 {
      flex-grow: 0;
      max-width: 58.333333%;
      flex-basis: 58.333333%;
    }
    .MuiGrid-grid-xl-8 {
      flex-grow: 0;
      max-width: 66.666667%;
      flex-basis: 66.666667%;
    }
    .MuiGrid-grid-xl-9 {
      flex-grow: 0;
      max-width: 75%;
      flex-basis: 75%;
    }
    .MuiGrid-grid-xl-10 {
      flex-grow: 0;
      max-width: 83.333333%;
      flex-basis: 83.333333%;
    }
    .MuiGrid-grid-xl-11 {
      flex-grow: 0;
      max-width: 91.666667%;
      flex-basis: 91.666667%;
    }
    .MuiGrid-grid-xl-12 {
      flex-grow: 0;
      max-width: 100%;
      flex-basis: 100%;
    }
  }

  .MuiLink-underlineNone {
    text-decoration: none;
  }
  .MuiLink-underlineHover {
    text-decoration: none;
  }
  .MuiLink-underlineHover:hover {
    text-decoration: underline;
  }
  .MuiLink-underlineAlways {
    text-decoration: underline;
  }
  .MuiLink-button {
    border: 0;
    cursor: pointer;
    margin: 0;
    outline: 0;
    padding: 0;
    position: relative;
    user-select: none;
    border-radius: 0;
    vertical-align: middle;
    -moz-appearance: none;
    background-color: transparent;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
  }
  .MuiLink-button::-moz-focus-inner {
    border-style: none;
  }
  .MuiLink-button.Mui-focusVisible {
    outline: auto;
  }

  .makeStyles-root-52 {
    flex-grow: 0;
  }
  .makeStyles-footerMenuHeader-53 {
    color: white;
    font-size: 16px;
    font-family: arial;
    font-weight: 700;
    padding-bottom: 1vh;
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-footerMenuHeader-53 {
      color: white;
      font-size: 14px;
      font-family: arial;
      font-weight: 700;
      padding-bottom: 1vh;
    }
  }
  @media (min-width:600px) and (max-width:1279.95px) {
    .makeStyles-footerMenuHeader-53 {
      color: white;
      font-size: 14px;
      font-family: arial;
      font-weight: 700;
      padding-bottom: 1vh;
    }
  }
  .makeStyles-footerMenuItem-54 {
    color: white;
    display: block;
    font-size: 16px;
    font-family: arial;
    font-weight: 500;
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-footerMenuItem-54 {
      color: white;
      display: block;
      font-size: 12px;
      font-family: arial;
      font-weight: 500;
    }
  }
  @media (min-width:600px) and (max-width:1279.95px) {
    .makeStyles-footerMenuItem-54 {
      color: white;
      display: block;
      font-size: 12px;
      font-family: arial;
      font-weight: 500;
    }
  }
  .makeStyles-copyRightInfo-55 {
    display: block;
    padding-top: 4.5vh;
  }
  .makeStyles-footerMenuCol-56 {
    width: 100%;
    display: block;
    flex-grow: 1;
    flex-basis: 0%;
    flex-shrink: 1;
  }
  .makeStyles-footerMenus-57 {
    width: 60.79%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: row;
    justify-content: flex-start;
  }
  @media (max-width:599.95px) {
    .makeStyles-footerMenus-57 {
      row-gap: 5vh;
      column-gap: 20vw;
    }
  }
  .makeStyles-footerSection-58 {
    background-color: #006936;
  }
  .makeStyles-footerCopyRight-59 {
    color: #FFFFFF;
    font-size: 12px;
    font-family: arial;
    margin-block-end: 0.5em;
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-footerCopyRight-59 {
      color: #FFFFFF;
      font-size: 10px;
      font-family: arial;
      margin-block-end: 0.5em;
    }
  }
  .makeStyles-footerInfo-60 {
    width: 39.02439024%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
  }
  .makeStyles-footerGrid-61 {
    display: flex;
    padding: 3vh 0;
    flex-wrap: wrap;
    align-items: stretch;
    padding-left: 9%;
    padding-right: 6%;
    flex-direction: row;
    padding-bottom: 1vh;
    justify-content: space-between;
  }
  .makeStyles-footerBio-62 {
    color: white;
    display: block;
    font-size: 16px;
    text-align: left;
    font-family: arial;
    font-weight: 700;
    line-height: 30px;
    padding-right: 15vw;
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-footerBio-62 {
      color: white;
      display: block;
      font-size: 14px;
      text-align: left;
      font-family: arial;
      font-weight: 500;
      line-height: 25.87px;
      padding-right: 15vw;
    }
  }
  .makeStyles-footerLogo-63 {
    height: 9vh;
    display: block;
    max-width: 100%;
    padding-left: 9%;
  }
  .makeStyles-link-64 {
    color: white;
    text-decoration: none;
  }
  .makeStyles-ptag-65 {
    border: 0px !important;
    margin: 0px !important;
    display: block !improtant;
    padding: 0px !important;
  }

  .makeStyles-logoMobile-66 {
    top: 0%;
    height: 9vh;
    max-width: 100%;
    padding-left: 20%;
  }

  .makeStyles-header-1 {
    top: 0;
    left: 0;
    right: 0;
    border: none;
    z-index: 1030;
    position: absolute;
  }
  @media (max-width: 900px) {
    .makeStyles-header-1 {
      padding-left: 0;
    }
  }
  .makeStyles-menuButton-2 {
    size: 18px;
    font-family: Open Sans, sans-serif;
    font-weight: 700;
    margin-left: 38px;
  }
  .makeStyles-toolbar-3 {
    display: flex;
    justify-content: space-between;
  }
  .makeStyles-drawerContainer-4 {
    padding: 20px 30px;
  }
  .makeStyles-xNavbar-5 {
    top: 0;
    left: 0;
    right: 0;
    border: none;
    z-index: 1030;
    position: absolute;
  }
  .makeStyles-logoMobile-6 {
    top: 0%;
    height: 9vh;
    display: block;
    position: absolute;
    max-width: 100%;
    box-sizing: border-box;
    margin-left: 0%;
    padding-left: 3vw;
  }
  .makeStyles-logo-7 {
    top: 0%;
    height: 9vh;
    display: block;
    position: absolute;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: 7.8%;
  }
  @media (min-width:1280px) {
    .makeStyles-logo-7 {
      top: 0%;
      height: 9vh;
      display: block;
      position: absolute;
      max-width: 100%;
      box-sizing: border-box;
      margin-right: 10vw;
      padding-left: 8%;
      padding-right: 10vw;
    }
  }
  .makeStyles-xToolbar-8 {
    height: 9vh;
    display: flex;
    box-sizing: border-box;
    justify-content: space-between;
  }

  .makeStyles-root-9 {
    flex-grow: 1;
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-carouselHeading-10 {
      color: white;
      font-size: 26px;
      text-align: center;
    }
  }
  @media (min-width:960px) and (max-width:1919.95px) {
    .makeStyles-carouselHeading-10 {
      color: white;
      font-size: 26px;
      text-align: center;
    }
  }
  @media (min-width:1280px) {
    .makeStyles-carouselHeading-10 {
      color: white;
      font-size: 30px;
      text-align: center;
    }
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-carouselText-11 {
      color: white;
      font-size: 14px;
      text-align: center;
      padding-top: 25px;
      padding-left: 25px;
      padding-right: 25px;
      padding-bottom: 25px;
    }
  }
  @media (min-width:600px) and (max-width:1279.95px) {
    .makeStyles-carouselText-11 {
      color: white;
      font-size: 14px;
      text-align: center;
      padding-top: 25px;
      padding-left: 25px;
      padding-right: 25px;
      padding-bottom: 0px;
    }
  }
  @media (min-width:1280px) {
    .makeStyles-carouselText-11 {
      color: white;
      font-size: 18px;
      text-align: center;
      padding-top: 50px;
      padding-left: 100px;
      padding-right: 100px;
      padding-bottom: 50px;
    }
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-carouselItem-12 {
      margin-top: 25px;
      margin-left: 25px;
      border-color: white;
      border-style: solid;
      margin-right: 25px;
      background-color: #006936;
    }
  }
  @media (min-width:600px) and (max-width:1279.95px) {
    .makeStyles-carouselItem-12 {
      margin-top: 25px;
      margin-left: 25px;
      border-color: white;
      border-style: solid;
      margin-right: 25px;
      background-color: #006936;
    }
  }
  @media (min-width:1280px) {
    .makeStyles-carouselItem-12 {
      margin-top: 25px;
      margin-left: 25px;
      border-color: white;
      border-style: solid;
      margin-right: 25px;
      background-color: #006936;
    }
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-carouselWho-13 {
      color: white;
      font-size: 14px;
      text-align: right;
      margin-right: 5.208333333333334vw;
    }
  }
  @media (min-width:600px) and (max-width:1279.95px) {
    .makeStyles-carouselWho-13 {
      color: white;
      font-size: 14px;
      text-align: right;
      margin-right: 5.208333333333334vw;
    }
  }
  @media (min-width:1280px) {
    .makeStyles-carouselWho-13 {
      color: white;
      font-size: 18px;
      text-align: right;
      margin-right: 5.208333333333334vw;
    }
  }
  @media (min-width:1920px) {
    .makeStyles-carouselWho-13 {
      color: white;
      font-size: 18px;
      text-align: right;
      margin-right: 5.208333333333334vw;
    }
  }
  .makeStyles-freightServiceHead-14 {
    font-size: 35px;
    text-align: center;
    font-family: arial;
    font-weight: 700;
  }
  .makeStyles-freightBtn-15 {
    color: white;
    width: 7.916666666666667vw;
    border: none;
    cursor: pointer;
    height: 3.2407407407407405vh;
    display: block;
    font-size: 15px;
    font-family: arial;
    font-weight: 400;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
    background-color: #006936;
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-freightBtn-15 {
      color: white;
      width: 30.916666666666667vw;
      border: none;
      cursor: pointer;
      height: 3.2407407407407405vh;
      display: block;
      font-size: 12px;
      font-family: arial;
      font-weight: 400;
      margin-left: auto;
      margin-right: auto;
      border-radius: 15px;
      background-color: #006936;
    }
  }
  @media (min-width:600px) and (max-width:1279.95px) {
    .makeStyles-freightBtn-15 {
      color: white;
      width: 12.916666666666667vw;
      border: none;
      cursor: pointer;
      height: 3.2407407407407405vh;
      display: block;
      font-size: 12px;
      font-family: arial;
      font-weight: 400;
      margin-left: auto;
      margin-right: auto;
      border-radius: 15px;
      background-color: #006936;
    }
  }
  .makeStyles-freightImgs-16 {
    width: 176.78;
    height: 120.96px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
  .makeStyles-freightHead-17 {
    color: #006936;
    text-align: center;
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-freightHead-17 {
      color: #006936;
      font-size: 18px;
      text-align: center;
    }
  }
  @media (min-width:600px) and (max-width:1279.95px) {
    .makeStyles-freightHead-17 {
      color: #006936;
      font-size: 18px;
      text-align: center;
    }
  }
  .makeStyles-freightText-18 {
    font-size: 18px;
    text-align: center;
    font-family: arial;
    font-weight: 400;
    line-height: 20px;
    padding-left: 15%;
    padding-right: 15%;
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-freightText-18 {
      font-size: 14px;
      text-align: center;
      font-family: arial;
      font-weight: 400;
      line-height: 20px;
      padding-left: 15%;
      padding-right: 15%;
    }
  }
  @media (min-width:600px) and (max-width:1279.95px) {
    .makeStyles-freightText-18 {
      font-size: 14px;
      text-align: center;
      font-family: arial;
      font-weight: 400;
      line-height: 20px;
      padding-left: 15%;
      padding-right: 15%;
    }
  }
  .makeStyles-freightTextGrid-19 {
    display: block;
    padding: 40px;
    box-sizing: border-box;
    padding-left: 4.8%;
    padding-right: 4.8%;
  }
  .makeStyles-itemGridTxtDob-20 {
    width: 48%;
    display: block;
    padding: 40px;
    box-sizing: border-box;
    padding-top: 0;
    padding-left: 4.8%;
    padding-right: 0;
  }
  .makeStyles-itemGridTxt1-21 {
    width: 48%;
    display: block;
    padding: 40px;
    box-sizing: border-box;
    padding-left: 4.8%;
    padding-right: 0;
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-itemGridImgLand-22 {
      width: 100%;
      height: 34vh;
      display: block;
      position: relative;
      flex-wrap: 1;
      box-sizing: border-box;
      flex-basis: auto;
    }
  }
  @media (min-width:600px) and (max-width:1279.95px) {
    .makeStyles-itemGridImgLand-22 {
      width: 100%;
      height: 24vh;
      display: block;
      position: relative;
      flex-wrap: 1;
      box-sizing: border-box;
      flex-basis: auto;
    }
  }
  @media (min-width:1280px) {
    .makeStyles-itemGridImgLand-22 {
      width: 48%;
      height: 50vh;
      display: block;
      position: relative;
      flex-wrap: 1;
      box-sizing: border-box;
      flex-basis: auto;
    }
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-itemGridImg1-23 {
      width: 100%;
      height: 47vh;
      display: block;
      position: relative;
      flex-wrap: 1;
      box-sizing: border-box;
      flex-basis: auto;
    }
  }
  @media (min-width:600px) and (max-width:1279.95px) {
    .makeStyles-itemGridImg1-23 {
      width: 100%;
      height: 47vh;
      display: block;
      position: relative;
      flex-wrap: 1;
      box-sizing: border-box;
      flex-basis: auto;
    }
  }
  @media (min-width:1280px) {
    .makeStyles-itemGridImg1-23 {
      top: -5%;
      width: 48%;
      height: 70vh;
      display: block;
      position: relative;
      flex-wrap: 1;
      box-sizing: border-box;
      flex-basis: auto;
    }
  }
  .makeStyles-textRight-24 {
    font-size: 18px;
    font-family: arial;
    font-weight: 400;
    line-height: 25px;
    padding-right: 10%;
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-textRight-24 {
      font-size: 14px;
      font-family: arial;
      font-weight: 400;
      line-height: 25px;
      padding-right: 10%;
    }
  }
  @media (min-width:600px) and (max-width:1279.95px) {
    .makeStyles-textRight-24 {
      font-size: 14px;
      font-family: arial;
      font-weight: 400;
      line-height: 25px;
      padding-right: 10%;
    }
  }
  .makeStyles-headingRight-25 {
    color: #006936;
    display: block;
    font-size: 30px;
    font-family: arial;
    margin-block-end: 1em;
    margin-inline-end: 0px;
    margin-block-start: 1em;
    margin-inline-start: 0px;
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-headingRight-25 {
      color: #006936;
      display: block;
      font-size: 24px;
      font-family: arial;
      margin-block-end: 1em;
      margin-inline-end: 0px;
      margin-block-start: 1em;
      margin-inline-start: 0px;
    }
  }
  @media (min-width:600px) and (max-width:1279.95px) {
    .makeStyles-headingRight-25 {
      color: #006936;
      display: block;
      font-size: 24px;
      font-family: arial;
      margin-block-end: 1em;
      margin-inline-end: 0px;
      margin-block-start: 1em;
      margin-inline-start: 0px;
    }
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-imgSingle-26 {
      left: 50%;
      width: auto;
      height: auto;
      display: wrap;
      position: relative;
      max-width: 100%;
      transform: translate(-50%,0);
      max-height: 100%;
    }
  }
  @media (min-width:600px) and (max-width:1279.95px) {
    .makeStyles-imgSingle-26 {
      left: 50%;
      width: auto;
      height: auto;
      display: wrap;
      position: relative;
      max-width: 91%;
      transform: translate(-50%,0);
      max-height: 100%;
    }
  }
  @media (min-width:960px) and (max-width:1919.95px) {
    .makeStyles-imgSingle-26 {
      left: 50%;
      width: auto;
      height: auto;
      display: wrap;
      position: relative;
      max-width: 91%;
      max-height: 100%;
    }
  }
  @media (min-width:1280px) {
    .makeStyles-imgSingle-26 {
      top: 50%;
      left: 0%;
      height: auto;
      display: wrap;
      position: relative;
      max-width: 100%;
      transform: translate(0,-50%);
      max-height: 86.59793814432989vh;
    }
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-imgLower2-27 {
      top: 3rem;
      left: 45%;
      float: left;
      width: auto;
      height: auto;
      display: wrap;
      z-index: 2;
      position: relative;
      max-width: 91%;
      transform: translate(-50%,0);
      max-height: 100%;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgLower2-27:hover, .makeStyles-imgLower2-27:focus {
      z-index: 2;
    }
  }
  @media (min-width:600px) and (max-width:1279.95px) {
    .makeStyles-imgLower2-27 {
      top: 3rem;
      left: 40%;
      float: left;
      width: auto;
      height: auto;
      display: wrap;
      z-index: 2;
      position: relative;
      max-width: 91%;
      transform: translate(-50%,0);
      max-height: 100%;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgLower2-27:hover, .makeStyles-imgLower2-27:focus {
      z-index: 2;
    }
  }
  @media (min-width:1280px) {
    .makeStyles-imgLower2-27 {
      top: 6rem;
      left: 0%;
      float: left;
      height: auto;
      display: wrap;
      z-index: 2;
      position: relative;
      max-width: 100%;
      max-height: 86.59793814432989vh;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgLower2-27:hover, .makeStyles-imgLower2-27:focus {
      z-index: 2;
    }
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-imgLowerDown2-28 {
      top: 3rem;
      left: 45%;
      float: left;
      width: auto;
      filter: grayscale(100%);
      height: auto;
      display: wrap;
      opacity: 0.5;
      position: relative;
      max-width: 91%;
      transform: translate(-50%,0);
      max-height: 100%;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgLowerDown2-28:hover, .makeStyles-imgLowerDown2-28:focus {
      z-index: 2;
    }
  }
  @media (min-width:600px) and (max-width:1279.95px) {
    .makeStyles-imgLowerDown2-28 {
      top: 3rem;
      left: 40%;
      float: left;
      width: auto;
      filter: grayscale(100%);
      height: auto;
      display: wrap;
      opacity: 0.5;
      position: relative;
      max-width: 91%;
      transform: translate(-50%,0);
      max-height: 100%;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgLowerDown2-28:hover, .makeStyles-imgLowerDown2-28:focus {
      z-index: 2;
    }
  }
  @media (min-width:1280px) {
    .makeStyles-imgLowerDown2-28 {
      top: 6rem;
      left: 0%;
      float: left;
      filter: grayscale(100%);
      height: auto;
      display: wrap;
      opacity: 0.5;
      position: relative;
      max-width: 100%;
      max-height: 86.59793814432989vh;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgLowerDown2-28:hover, .makeStyles-imgLowerDown2-28:focus {
      z-index: 2;
    }
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-imgLower3-29 {
      top: 3rem;
      left: 45%;
      float: left;
      width: auto;
      height: auto;
      display: wrap;
      z-index: 2;
      position: relative;
      max-width: 91%;
      transform: translate(-50%,0);
      max-height: 100%;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgLower3-29:hover, .makeStyles-imgLower3-29:focus {
      z-index: 2;
    }
  }
  @media (min-width:600px) and (max-width:1279.95px) {
    .makeStyles-imgLower3-29 {
      top: 3rem;
      left: 40%;
      float: left;
      width: auto;
      height: auto;
      display: wrap;
      z-index: 2;
      position: relative;
      max-width: 91%;
      transform: translate(-50%,0);
      max-height: 100%;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgLower3-29:hover, .makeStyles-imgLower3-29:focus {
      z-index: 2;
    }
  }
  @media (min-width:1280px) {
    .makeStyles-imgLower3-29 {
      top: 6rem;
      left: 0%;
      float: left;
      height: auto;
      display: wrap;
      z-index: 2;
      position: relative;
      max-width: 100%;
      max-height: 86.59793814432989vh;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgLower3-29:hover, .makeStyles-imgLower3-29:focus {
      z-index: 2;
    }
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-imgLowerDown3-30 {
      top: 3rem;
      left: 45%;
      float: left;
      width: auto;
      filter: grayscale(100%);
      height: auto;
      display: wrap;
      opacity: 0.5;
      position: relative;
      max-width: 91%;
      transform: translate(-50%,0);
      max-height: 100%;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgLowerDown3-30:hover, .makeStyles-imgLowerDown3-30:focus {
      z-index: 2;
    }
  }
  @media (min-width:600px) and (max-width:1279.95px) {
    .makeStyles-imgLowerDown3-30 {
      top: 3rem;
      left: 40%;
      float: left;
      width: auto;
      filter: grayscale(100%);
      height: auto;
      display: wrap;
      opacity: 0.5;
      position: relative;
      max-width: 91%;
      transform: translate(-50%,0);
      max-height: 100%;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgLowerDown3-30:hover, .makeStyles-imgLowerDown3-30:focus {
      z-index: 2;
    }
  }
  @media (min-width:1280px) {
    .makeStyles-imgLowerDown3-30 {
      top: 6rem;
      left: 0%;
      float: left;
      filter: grayscale(100%);
      height: auto;
      display: wrap;
      opacity: 0.5;
      position: relative;
      max-width: 100%;
      max-height: 86.59793814432989vh;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgLowerDown3-30:hover, .makeStyles-imgLowerDown3-30:focus {
      z-index: 2;
    }
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-imgLower-31 {
      top: 3rem;
      left: 45%;
      float: left;
      width: auto;
      height: auto;
      display: wrap;
      z-index: 2;
      position: relative;
      max-width: 91%;
      transform: translate(-50%,0);
      max-height: 100%;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgLower-31:hover, .makeStyles-imgLower-31:focus {
      z-index: 2;
    }
  }
  @media (min-width:600px) and (max-width:1279.95px) {
    .makeStyles-imgLower-31 {
      top: 3rem;
      left: 45%;
      float: left;
      width: auto;
      height: auto;
      display: wrap;
      z-index: 2;
      position: relative;
      max-width: 91%;
      transform: translate(-50%,0);
      max-height: 100%;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgLower-31:hover, .makeStyles-imgLower-31:focus {
      z-index: 2;
    }
  }
  @media (min-width:1280px) {
    .makeStyles-imgLower-31 {
      top: 6rem;
      left: 0%;
      float: left;
      height: auto;
      display: wrap;
      z-index: 2;
      position: relative;
      max-width: 100%;
      max-height: 86.59793814432989vh;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgLower-31:hover, .makeStyles-imgLower-31:focus {
      z-index: 2;
    }
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-imgLowerDown-32 {
      top: 3rem;
      left: 45%;
      float: left;
      width: auto;
      filter: grayscale(100%);
      height: auto;
      display: wrap;
      opacity: 0.5;
      position: relative;
      max-width: 91%;
      transform: translate(-50%,0);
      max-height: 100%;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgLowerDown-32:hover, .makeStyles-imgLowerDown-32:focus {
      z-index: 2;
    }
  }
  @media (min-width:600px) and (max-width:1279.95px) {
    .makeStyles-imgLowerDown-32 {
      top: 3rem;
      left: 45%;
      float: left;
      width: auto;
      filter: grayscale(100%);
      height: auto;
      display: wrap;
      opacity: 0.5;
      position: relative;
      max-width: 91%;
      transform: translate(-50%,0);
      max-height: 100%;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgLowerDown-32:hover, .makeStyles-imgLowerDown-32:focus {
      z-index: 2;
    }
  }
  @media (min-width:1280px) {
    .makeStyles-imgLowerDown-32 {
      top: 6rem;
      left: 0%;
      float: left;
      filter: grayscale(100%);
      height: auto;
      display: wrap;
      opacity: 0.5;
      position: relative;
      max-width: 100%;
      max-height: 86.59793814432989vh;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgLowerDown-32:hover, .makeStyles-imgLowerDown-32:focus {
      z-index: 2;
    }
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-imgTop2-33 {
      top: 0%;
      left: 65%;
      width: auto;
      height: auto;
      z-index: 3;
      position: absolute;
      max-width: 91%;
      transform: translate(-60%,0);
      max-height: 100%;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgTop2-33:hover, .makeStyles-imgTop2-33:focus {
      opacity: 1;
      z-index: 3;
    }
  }
  @media (min-width:600px) and (max-width:1279.95px) {
    .makeStyles-imgTop2-33 {
      top: 0%;
      left: 60%;
      width: auto;
      height: auto;
      z-index: 3;
      position: absolute;
      max-width: 91%;
      transform: translate(-60%,0);
      max-height: 100%;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgTop2-33:hover {
      opacity: 1;
      z-index: 3;
    }
  }
  @media (min-width:1280px) {
    .makeStyles-imgTop2-33 {
      top: 0%;
      left: 10%;
      height: auto;
      z-index: 3;
      position: absolute;
      max-width: 100%;
      max-height: 86.59793814432989vh;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgTop2-33:hover {
      opacity: 1;
      z-index: 3;
    }
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-imgTopDown2-34 {
      top: 0%;
      left: 65%;
      width: auto;
      filter: grayscale(100%);
      height: auto;
      opacity: 0.5;
      z-index: 0;
      position: absolute;
      max-width: 91%;
      transform: translate(-60%,0);
      max-height: 100%;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgTopDown2-34:hover, .makeStyles-imgTopDown2-34:focus {
      opacity: 1;
      z-index: 3;
    }
  }
  @media (min-width:600px) and (max-width:1279.95px) {
    .makeStyles-imgTopDown2-34 {
      top: 0%;
      left: 60%;
      width: auto;
      filter: grayscale(100%);
      height: auto;
      opacity: 0.5;
      z-index: 0;
      position: absolute;
      max-width: 91%;
      transform: translate(-60%,0);
      max-height: 100%;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgTopDown2-34:hover {
      opacity: 1;
      z-index: 3;
    }
  }
  @media (min-width:1280px) {
    .makeStyles-imgTopDown2-34 {
      top: 0%;
      left: 10%;
      filter: grayscale(100%);
      height: auto;
      opacity: 0.5;
      z-index: 0;
      position: absolute;
      max-width: 100%;
      max-height: 86.59793814432989vh;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgTopDown2-34:hover {
      opacity: 1;
      z-index: 3;
    }
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-imgTop3-35 {
      top: 0%;
      left: 65%;
      width: auto;
      height: auto;
      z-index: 3;
      position: absolute;
      max-width: 91%;
      transform: translate(-60%,0);
      max-height: 100%;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgTop3-35:hover, .makeStyles-imgTop3-35:focus {
      opacity: 1;
      z-index: 3;
    }
  }
  @media (min-width:600px) and (max-width:1279.95px) {
    .makeStyles-imgTop3-35 {
      top: 0%;
      left: 60%;
      width: auto;
      height: auto;
      z-index: 3;
      position: absolute;
      max-width: 91%;
      transform: translate(-60%,0);
      max-height: 100%;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgTop3-35:hover {
      opacity: 1;
      z-index: 3;
    }
  }
  @media (min-width:1280px) {
    .makeStyles-imgTop3-35 {
      top: 0%;
      left: 10%;
      height: auto;
      z-index: 3;
      position: absolute;
      max-width: 100%;
      max-height: 86.59793814432989vh;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgTop3-35:hover {
      opacity: 1;
      z-index: 3;
    }
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-imgTopDown3-36 {
      top: 0%;
      left: 65%;
      width: auto;
      filter: grayscale(100%);
      height: auto;
      opacity: 0.5;
      z-index: 0;
      position: absolute;
      max-width: 91%;
      transform: translate(-60%,0);
      max-height: 100%;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgTopDown3-36:hover, .makeStyles-imgTopDown3-36:focus {
      opacity: 1;
      z-index: 3;
    }
  }
  @media (min-width:600px) and (max-width:1279.95px) {
    .makeStyles-imgTopDown3-36 {
      top: 0%;
      left: 60%;
      width: auto;
      filter: grayscale(100%);
      height: auto;
      opacity: 0.5;
      z-index: 0;
      position: absolute;
      max-width: 91%;
      transform: translate(-60%,0);
      max-height: 100%;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgTopDown3-36:hover {
      opacity: 1;
      z-index: 3;
    }
  }
  @media (min-width:1280px) {
    .makeStyles-imgTopDown3-36 {
      top: 0%;
      left: 10%;
      filter: grayscale(100%);
      height: auto;
      opacity: 0.5;
      z-index: 0;
      position: absolute;
      max-width: 100%;
      max-height: 86.59793814432989vh;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgTopDown3-36:hover {
      opacity: 1;
      z-index: 3;
    }
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-imgTop-37 {
      top: 0%;
      left: 55%;
      width: auto;
      height: auto;
      z-index: 3;
      position: absolute;
      max-width: 91%;
      transform: translate(-50%,0);
      max-height: 100%;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgTop-37:hover, .makeStyles-imgTop-37:focus {
      opacity: 1;
      z-index: 3;
    }
  }
  @media (min-width:600px) and (max-width:1279.95px) {
    .makeStyles-imgTop-37 {
      top: 0%;
      left: 55%;
      width: auto;
      height: auto;
      z-index: 3;
      position: absolute;
      max-width: 91%;
      transform: translate(-50%,0);
      max-height: 100%;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgTop-37:hover {
      opacity: 1;
      z-index: 3;
    }
  }
  @media (min-width:1280px) {
    .makeStyles-imgTop-37 {
      top: 0%;
      left: 10%;
      height: auto;
      z-index: 3;
      position: absolute;
      max-width: 100%;
      max-height: 86.59793814432989vh;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgTop-37:hover {
      opacity: 1;
      z-index: 3;
    }
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-imgTopDown-38 {
      top: 0%;
      left: 55%;
      width: auto;
      filter: grayscale(100%);
      height: auto;
      opacity: 0.5;
      z-index: 0;
      position: absolute;
      max-width: 91%;
      transform: translate(-50%,0);
      max-height: 100%;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgTopDown-38:hover, .makeStyles-imgTopDown-38:focus {
      opacity: 1;
      z-index: 3;
    }
  }
  @media (min-width:600px) and (max-width:1279.95px) {
    .makeStyles-imgTopDown-38 {
      top: 0%;
      left: 55%;
      width: auto;
      filter: grayscale(100%);
      height: auto;
      opacity: 0.5;
      z-index: 0;
      position: absolute;
      max-width: 91%;
      transform: translate(-50%,0);
      max-height: 100%;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgTopDown-38:hover {
      opacity: 1;
      z-index: 3;
    }
  }
  @media (min-width:1280px) {
    .makeStyles-imgTopDown-38 {
      top: 0%;
      left: 10%;
      filter: grayscale(100%);
      height: auto;
      opacity: 0.5;
      z-index: 0;
      position: absolute;
      max-width: 100%;
      max-height: 86.59793814432989vh;
      transition: all 2000ms cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 0.25s;
    }
    .makeStyles-imgTopDown-38:hover, .makeStyles-imgTopDown-38:focus {
      opacity: 1;
      z-index: 3;
    }
  }
  .makeStyles-whiteContainer-39 {
    background-color: #FFFFFF;
  }
  .makeStyles-greyContainer-40 {
    background-color: #F3F5F4;
  }
  .makeStyles-singleGrid-41 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 9%;
    padding-top: -8vh;
    margin-right: 9%;
    flex-direction: row-reverse;
    padding-bottom: 2vh;
    justify-content: space-between;
  }
  .makeStyles-whiteGrid-42 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 9%;
    padding-top: 8vh;
    margin-right: 9%;
    flex-direction: row-reverse;
    padding-bottom: 16vh;
    justify-content: space-between;
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-whiteGrid-42 {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      margin-left: 9%;
      padding-top: 8vh;
      margin-right: 9%;
      flex-direction: row-reverse;
      padding-bottom: 3vh;
      justify-content: space-between;
    }
  }
  .makeStyles-greyGrid-43 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 9%;
    padding-top: 8vh;
    margin-right: 9%;
    flex-direction: row;
    padding-bottom: 8vh;
    justify-content: space-between;
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-greyGrid-43 {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      margin-left: 9%;
      padding-top: 2vh;
      margin-right: 9%;
      flex-direction: row;
      padding-bottom: 2vh;
      justify-content: space-between;
    }
  }
  @media (min-width:600px) and (max-width:1279.95px) {
    .makeStyles-greyGrid-43 {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      margin-left: 9%;
      padding-top: 2vh;
      margin-right: 9%;
      flex-direction: row;
      padding-bottom: 2vh;
      justify-content: space-between;
    }
  }
  .makeStyles-greyGridDob-44 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 9%;
    padding-top: 8vh;
    margin-right: 9%;
    flex-direction: row;
    justify-content: space-between;
  }
  .makeStyles-topHeading-45 {
    color: #006936;
    font-size: 36px;
    text-align: left;
    margin-left: 10%;
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-topHeading-45 {
      color: #006936;
      font-size: 28px;
      text-align: left;
      margin-left: 10%;
    }
  }
  @media (min-width:600px) and (max-width:1279.95px) {
    .makeStyles-topHeading-45 {
      color: #006936;
      font-size: 28px;
      text-align: left;
      margin-left: 10%;
    }
  }
  .makeStyles-topHeadingGrey-46 {
    width: 100%;
    background-color: #F3F5F4;
  }
  .makeStyles-headerText-47 {
    top: 50%;
    left: 50%;
    color: white;
    position: absolute;
    font-size: 30px;
    transform: translate(-50%, -50%);
    font-family: arial;
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-headerText-47 {
      top: 50%;
      left: 50%;
      color: white;
      position: absolute;
      font-size: 20px;
      transform: translate(-50%, -50%);
      font-family: arial;
    }
  }
  .makeStyles-headContainer-48 {
    width: auto;
    position: relative;
    max-width: 100%;
    text-align: center;
  }
  .makeStyles-headImgGrid-49 {
    width: 100%;
    position: relative;
  }
  .makeStyles-headerImg-50 {
    width: 100%;
    height: 100vh;
    position: relative;
    object-fit: cover;
  }
  .makeStyles-btn-51 {
    top: 70%;
    left: 50%;
    color: white;
    width: 17.447916666666668vw;
    border: none;
    cursor: pointer;
    height: 5.555555555555555vh;
    padding: 12px 24px;
    position: absolute;
    font-size: 16px;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    background-color: #006936;
  }
  @media (min-width:0px) and (max-width:959.95px) {
    .makeStyles-btn-51 {
      top: 65%;
      left: 50%;
      color: white;
      width: 36.447916666666668vw;
      border: none;
      cursor: pointer;
      height: 5.555555555555555vh;
      padding: 12px 24px;
      position: absolute;
      font-size: 12px;
      transform: translate(-50%, -50%);
      border-radius: 15px;
      background-color: #006936;
    }
    .makeStyles-btn-51:hover {
      background-color: #006936;
    }
  }
  @media (min-width:600px) and (max-width:1279.95px) {
    .makeStyles-btn-51 {
      top: 65%;
      left: 50%;
      color: white;
      width: 22.447916666666668vw;
      border: none;
      cursor: pointer;
      height: 5.555555555555555vh;
      padding: 12px 24px;
      position: absolute;
      font-size: 12px;
      transform: translate(-50%, -50%);
      border-radius: 15px;
      background-color: #006936;
    }
    .makeStyles-btn-51:hover {
      background-color: #006936;
    }
  }
  .makeStyles-btn-51:hover {
    background-color: #006936;
  }
  .css-11lq3yg-MuiGrid-root {
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}


.makeStyles-headingRight-14 {
  color: #006936;
  display: block;
  font-size: 30px;
  font-family: arial;
  margin-inline-end: 0px;
  margin-block-start: 1em;
  margin-inline-start: 0px;
}
.makeStyles-headingRightDescr-13 {
  color: #006936;
  display: block;
  font-size: 30px;
  font-family: arial;
  margin-block-end: 1.5em;
  margin-inline-end: 0px;
  margin-block-start: -0.5em;
  margin-inline-start: 0px;
}
.makeStyles-textRight-12 {
  font-size: 18px;
  font-family: arial;
  font-weight: 400;
  line-height: 20px;
  padding-right: 10%;
}

.btn-primary-green {
    --bs-btn-color: #fff;
    --bs-btn-bg: #006936;
    --bs-btn-border-color: #006936;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #048144;
    --bs-btn-hover-border-color: #048144;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #048144;
    --bs-btn-active-border-color: #048144;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #006936;
    --bs-btn-disabled-border-color: #006936;
}
