body {
  font-family: "Open Sans", sans-serif;
  max-width: 100vw;
  height: 100%;
}

html,
body {
  overflow-x: hidden;
}

body {
  position: relative;
}

#home {
  background: rgb(246 246 246);
}

#home .container-carousel {
  max-width: 1366px;
  margin: 0 auto;
}

.default-img {
  background-size: cover;
  min-width: 100%;
  height: fit-content;
}

.default-img img {
  width: 100%;
  max-height: 72vh;
  object-fit: scale-down;
}

.caption span.caption-01 {
  position: absolute;
  left: 12vw;
  top: 25%;
  color: white;
  font-weight: 600;
  line-height: calc(14px + 0.928vw);
  font-size: calc(14px + 0.928vw);
  font-family: "Open Sans", sans-serif;
  text-shadow: -0.5px -0.5px 0 #333, 0.5px -0.5px 0 #333, -0.5px 0.5px 0 #333,
    0.5px 0.5px 0 #333;
}

.caption span.caption-02 {
  position: absolute;
  left: 12vw;
  top: calc(25% + 10px + 2vw);
  color: white;
  font-weight: 800;
  font-size: calc(20px + 3vw);
  line-height: calc(20px + 3vw);
  max-width: 80%;
  word-spacing: 100vw;
  font-family: "Open Sans", sans-serif;
  text-shadow: -0.5px -0.5px 0 #333, 0.5px -0.5px 0 #333, -0.5px 0.5px 0 #333,
    0.5px 0.5px 0 #333;
}

.tree-image {
  max-height: 450px;
}

.states-available .states-available-item {
  margin-top: 16px;
}

.states-available .states-available-item h3 {
  font-size: 16px;
  margin: 0px;
  width: 100%;
}

.states-available .states-available-item p {
  font-size: 14px;
  margin: 0px;
  width: 100%;
  color: #6ab43e;
  font-weight: 700;
}

.our-services h3 {
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  margin: 0 auto;
  vertical-align: middle;
  max-width: 80%;
}

.our-services p {
  font-size: 14px;
  line-height: 14px;
  margin: 0px;
}

.our-services h5 {
  font-size: 15px;
  line-height: 15px;
  margin: 0px;
}

.our-services .our-services-item {
  margin-bottom: 24px;
}

.our-services .our-services-item:last-child {
  margin-bottom: 0;
}

.our-services .our-services-item .bg-white {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 200px;
  padding: 36px;
}

.contact-btn-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.contact-btn {
  display: flex;
  width: 120px;
  max-width: 29%;
  flex-direction: column;
  align-items: center;
  margin-left: 4px;
  margin-right: 4px;
  border: 1px solid #fff;
  border-radius: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-family: "Open Sans", sans-serif;
}

.contact-btn i {
  font-size: 26px;
  color: #ffffff;
  z-index: 1;
}

.contact-btn strong {
  font-size: 16px;
  color: white;
  z-index: 1;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
}

.glow-on-hover {
  position: relative;
  z-index: 0;
}

.glow-on-hover .glow-on-hover-before-wrapper {
  position: absolute;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  top: -2px;
  left: -2px;
  overflow: hidden;
  border-radius: 8px;
  background-color: #85d813;
  z-index: 0;
  opacity: 0;
}

.glow-on-hover .glow-on-hover-before {
  background: linear-gradient(45deg,
      #2c4c3b,
      #306844,
      #182c25,
      #455b55,
      #1e453e,
      #e6efd2,
      #cdeac2,
      #bde8aa,
      #b1e09c,
      #b6eb9f);
  position: absolute;
  top: 0;
  left: 0;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100%);
  height: calc(100%);
  animation: glowing 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
}

.glow-on-hover:active {
  color: white;
}

.glow-on-hover:active .glow-on-hover-after {
  background: #85d813;
}

.glow-on-hover:hover .glow-on-hover-before-wrapper {
  opacity: 1;
}

.glow-on-hover .glow-on-hover-after {
  z-index: 0;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #85d813;
  left: 0;
  top: 0;
  border-radius: 8px;
}

.glow-on-hover .glow-on-hover-after::selection {
  background: #85d813 !important;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

nav.mobile {
  display: flex;
  align-items: center;
  min-height: 70px;
  justify-content: space-between;
}

nav.mobile img {
  width: calc(140px + 3vw);
  padding: 12px;
  padding-left: 0px;
  margin-right: 16px;
}

nav.mobile .menu a {
  background: #333;
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 10px;
  outline: 0;
  line-height: 1.42857143;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
}

ul.desktop-contact {
  text-align: center;
}

ul.desktop-contact li {
  display: inline;
  font-size: 16px;
}

ul.desktop-contact li strong {
  color: white !important;
}

.pointer {
  cursor: pointer;
}

@media (max-width: 800px) {
  p {
    font-size: 14px;
  }
}