html {
  font-size: 15px;
  scroll-behavior: smooth;
  height: 100%;
}

body #page {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  font-weight: 300;
  color: #2f3c54;
  text-align: center;
  height: 100%;
}

#page {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#content {
  flex-grow: 1;
  padding-top: 53px;
}

section {
  padding: 2em 0;
}

h2 {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 1.5px;
}

h3 {
  font-weight: 400;
  font-size: 1.55rem;
}

h4 {
  font-size: 1.1rem;
}

a {
  color: #2f3c54;
  font-weight: 500;
}
a:hover {
  color: #2f3c54;
}

.btn-primary {
  -webkit-box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.1);
  background-color: #8bc53f;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  padding: 0.75em 1em;
  transition: background-color 0.25s ease-in, color 0.15s 0.3s;
  min-width: 180px;
}

.btn-primary:focus,
.btn-primary:active,
.btn-primary:hover {
  background-color: #2f3c54 !important;
}

.btn-primary-alt {
  background-color: #2f3c54;
  color: white;
}

.btn-primary-alt:hover {
  background-color: #8bc53f;
  color: white;
}

::placeholder {
  color: #b1b1b1; /* Change the color to red */
  opacity: 1; /* Fix the opacity issue in Firefox */
}

::-ms-input-placeholder {
  /* For Edge 12 - 18 */
  color: #b1b1b1;
}

.wpcf7-spinner {
  position: absolute;
  left: 50%;
  transform: translateX(-15px);
  margin: 0;
  top: 20px;
}

#masthead {
  background-color: #2f3c54;
  position: fixed;
  width: 100%;
  z-index: 200;
}
#masthead img.logo {
  width: 50px;
  margin-left: 7px;
}

.navbar {
  background-color: #2f3c54;
  padding: 1em 0.5em;
}

.navbar-nav {
  margin: 0 0 0 1em;
}

.animated-icon1 {
  width: 40px;
  height: 20px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.animated-icon1 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  background-color: white;
}

.animated-icon1 span:nth-child(1) {
  top: 0px;
}

.animated-icon1 span:nth-child(2),
.animated-icon1 span:nth-child(3) {
  top: 10px;
}

.animated-icon1 span:nth-child(4) {
  top: 20px;
}

.animated-icon1.open span:nth-child(1) {
  top: 11px;
  width: 0%;
  left: 50%;
}

.animated-icon1.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.animated-icon1.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.animated-icon1.open span:nth-child(4) {
  top: 11px;
  width: 0%;
  left: 50%;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}

nav li {
  margin: 0 1rem;
}

nav .navbar-toggler {
  border: none;
}

nav a {
  color: white;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.95rem;
  display: block;
  position: relative;
}

@media only screen and (max-width: 768px) {
  nav li a {
    text-align: left;
    margin-bottom: 1em;
    font-weight: 600;
    font-size: 1.1rem;
    width: fit-content;
  }
  #masthead .socials {
    position: fixed;
    top: 18px;
    right: 70px;
  }
  .navbar-nav {
    margin: 2em auto 0;
  }
}
nav li a.active {
  font-weight: 600;
  pointer-events: none;
}

nav li a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: white;
  opacity: 0;
  transition: opacity 300ms, transform 300ms;
  transform-origin: center;
  transform: scale(0);
}

nav li a:hover::after,
nav li a:focus::after {
  opacity: 1;
  transform: scale(1);
}

nav li a:hover {
  text-decoration: none;
  color: white;
}

#masthead .socials {
  display: flex;
  align-items: center;
}

#masthead .socials a {
  padding-right: 0.3em;
}

#masthead .socials img {
  width: 28px;
}

#phone {
  background-color: white;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  position: fixed;
  display: flex;
  flex-direction: row;
  padding: 0.47em 0.6em 0.6em;
  right: -188px;
  top: 100px;
  z-index: 1000;
  transition: right 0.3s ease-in-out;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 992px) {
  #phone {
    top: 150px;
  }
}
#phone:hover {
  right: 0;
}

#phone img {
  width: 40px;
}

#phone p {
  margin: 0;
  font-weight: 500;
  font-size: 1rem;
}

#phone a {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2f3c54;
  line-height: 1.5rem;
}

#phone > div {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-left: 0.8em;
  padding-right: 1em;
}

#hero {
  background-image: url("/wp-content/themes/diamond-grass/assets/images/hero.jpg");
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
}
#hero.mid {
  height: 60vh;
}
#hero h2 {
  color: white;
  padding-bottom: 1em;
  font-weight: bold;
}
#hero h3 {
  color: white;
  font-size: 3rem;
  padding-bottom: 1em;
  font-weight: 200;
}

#hero-mini {
  background-image: url("/wp-content/themes/diamond-grass/assets/images/hero-mini.jpg");
  background-size: cover;
  background-position: center;
  height: 260px;
  display: flex;
  position: relative;
  padding-bottom: 0;
}
#hero-mini h2 {
  padding-top: 2.5em;
  font-weight: 600;
  color: white;
  line-height: 1em;
  font-size: 3rem;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
}
@media (min-width: 993px) {
  #hero-mini h2 {
    font-size: 4.5rem;
    padding-top: 1em;
  }
}
#hero-mini h3 {
  color: white;
  font-size: 2rem;
  padding-bottom: 1em;
  font-weight: 200;
}
#hero-mini.hero-contact {
  background-image: url("/wp-content/themes/diamond-grass/assets/images/hero-contact.jpg");
  height: 170px;
}
#hero-mini .gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2f3c54;
  background: -moz-linear-gradient(180deg, rgba(47, 60, 84, 0.7450980392), rgba(47, 60, 84, 0));
  background: -webkit-linear-gradient(180deg, rgba(47, 60, 84, 0.7450980392), rgba(47, 60, 84, 0));
  background: linear-gradient(180deg, rgba(47, 60, 84, 0.7450980392), rgba(47, 60, 84, 0));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#051a26",endColorstr="#051a26",GradientType=1);
}

#hero .content,
#hero-mini .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

#why {
  background-color: #f4f4f4;
}
#why h2 {
  margin-bottom: 1em;
}
#why img {
  width: 30px;
}
#why .title {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  #why .title {
    justify-content: center;
  }
}
#why .title h4 {
  margin: 0 0 0 0.5em;
  text-align: left;
}
#why p {
  font-size: 0.9rem;
  text-align: left;
  margin-top: 1em;
}
@media (max-width: 767px) {
  #why p {
    text-align: center;
  }
}

#where {
  padding: 2em 0;
}
#where .content {
  padding: 0em;
  border-right: 3px solid white;
}
#where .content div {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position-x: left;
}
@media (max-width: 991px) {
  #where .content div {
    height: 350px;
  }
}
#where p {
  font-weight: 500;
  position: absolute;
  color: white;
  bottom: 0;
  font-size: 1.1rem;
  text-align: left;
  padding: 1em 30% 0em 1em;
  text-shadow: 0 0 3px #2f3c54;
}
@media (max-width: 991px) {
  #where p {
    padding: 1em 1em 0em 1em;
  }
}

#gmap {
  width: 100%;
  height: 400px;
}

#icons {
  background-color: #2f3c54;
  color: white;
  padding: 2em;
}

#icons .content {
  padding: 0 1em;
}

#icons img {
  height: 60px;
  max-width: 50px;
  margin: 0 auto;
  display: block;
}

#icons p {
  text-align: center;
  padding: 1em 0 0;
}

#testimonial {
  background-color: color-blue-light;
  padding-top: 5em;
  margin-bottom: 2em;
}
#testimonial p {
  max-width: 800px;
  text-align: center;
  padding: 0;
  margin: 0 auto;
}
@media (max-width: 991px) {
  #testimonial p {
    padding: 0 3em;
  }
}
#testimonial p.review {
  padding-bottom: 0.75em;
}
#testimonial p.name {
  font-weight: 500;
  font-size: 1.2rem;
}
#testimonial .stars {
  margin: 0 auto 1em;
}

img.page-break {
  width: 50px;
  margin-bottom: 2em;
}

.map h4 {
  text-align: center;
  padding: 1em 1em 0;
  width: 100%;
  text-transform: uppercase;
  font-size: 1.25rem;
}

ul.areas {
  list-style-type: none;
  margin: 0.25em auto;
  padding: 0;
}
ul.areas li {
  display: inline-block;
  padding: 0.25em;
}

ul.stars {
  list-style-type: none;
  background-color: #2f3c54;
  padding: 6px 15px 5px 13px !important;
  border-radius: 25px;
  width: 180px;
}
ul.stars li {
  width: 30px;
  height: 30px;
  display: inline-block;
}
ul.stars img {
  display: block;
}

#map {
  background-color: #2f3c54;
  padding: 2em;
  position: relative !important;
  z-index: 100;
}

#map a {
  cursor: crosshair;
}

#map h4 {
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 600;
}

#map .content {
  background-color: white;
  padding: 2em;
  margin: 0 2em;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: left;
  transform: translateX(40px);
}

@media only screen and (max-width: 992px) {
  #map .content {
    margin: 0;
    transform: translateX(0px);
  }
  #map svg {
    display: none;
  }
}
#map svg {
  margin: 2em 2em;
  width: 100%;
  max-height: 600px;
  transform: translateX(-80px);
}

#map-label {
  background-color: white;
  padding: 0.25em 0.5em;
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 1px;
  z-index: 500;
}

#map-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  border: 11px solid transparent;
  border-top-color: #ffffff;
  border-bottom: 0;
  margin-left: -11px;
  margin-bottom: -11px;
}

#map-label.show {
  opacity: 1;
}

#map .area {
  fill: #8bc53f;
}

#map .area-line {
  fill: none;
  stroke: #2f3c54;
}

#news .content {
  display: flex;
  flex-direction: column;
  padding: 1em 0;
  align-items: start;
  text-align: left;
  height: 100%;
}
@media (min-width: 993px) {
  #news .content {
    padding: 0;
  }
}
#news .content p {
  flex-grow: 1;
}

#news h5 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.6rem;
}

#trust .item {
  padding: 1em;
}

#trust img {
  width: 100%;
  max-width: 140px;
  margin: 0 auto;
}

#quote {
  background-color: #f4f4f4;
  scroll-margin-top: 120px;
}

#quote h2 span {
  font-size: 1.1rem;
  font-weight: 300;
  text-transform: none;
  padding-left: 0.4em;
  letter-spacing: normal;
}

@media only screen and (max-width: 992px) {
  #quote h2 {
    font-size: 2rem;
  }
  #quote h2 span {
    display: block;
    padding-top: 1em;
  }
}
#quote input[type=tel],
#quote input[type=number],
#quote input[type=email],
#quote input[type=text],
#quote textarea {
  padding: 0.9em;
  margin-right: 0.25em;
  width: 100%;
  border: none;
  border-radius: 5px;
  font-size: 0.85rem;
}

#quote select {
  padding: 0.9em 0.5em;
  background-color: white;
  width: 100%;
  border: 0;
  color: #b5b5b5;
  font-size: 0.88rem;
  border-radius: 5px;
}

#quote textarea {
  height: 100px;
  margin-top: 0.75em;
}

#quote .btn {
  width: 100%;
  margin-bottom: 0.35em;
  margin-top: 0;
}

@media only screen and (max-width: 992px) {
  #quote input[type=tel],
  #quote input[type=email],
  #quote input[type=number],
  #quote input[type=text] {
    margin-top: 1em;
    font-size: 16px;
  }
  #quote textarea {
    font-size: 16px;
    height: 8em;
  }
  #quote select {
    font-size: 16px;
  }
  #quote .btn {
    margin-top: 0.5em;
  }
}
.wpcf7-not-valid-tip {
  text-align: left;
  font-size: 0.9rem;
  color: red;
  padding: 0.5em 0 0 0;
}

.wpcf7-response-output {
  border: none !important;
  font-weight: 400;
  margin: 0 !important;
}

form[data-status=invalid] .wpcf7-response-output {
  color: red;
}

#work .item {
  padding: 1em;
}

#work img {
  width: 100%;
}

#payment {
  padding: 3.5em 0 5em;
  background-size: cover;
  background-image: url("/wp-content/themes/diamond-grass/assets/images/payment.jpg");
}

#payment h2 {
  color: white;
  font-size: 2.6rem;
}

#payment p {
  color: white;
  font-size: 1.15rem;
  padding: 0.5em 0;
  font-weight: 400;
}

/* Product */
.owl-thumbs {
  margin-top: 0.5em;
}

.owl-thumbs .item {
  opacity: 0.5;
}

.owl-thumbs .current .item {
  opacity: 1;
}

.owl-thumbs .item img {
  width: 100%;
}

.owl-theme .owl-nav {
  margin-top: 0.5em;
  height: 0;
}

#products {
  background-color: white;
  text-align: left;
  color: #2f3c54;
}

#products a.title {
  color: #2f3c54;
  font-weight: 500;
  transition: color 0.3s ease-in;
  background: white;
  padding: 0.2em;
  text-align: center;
  margin-bottom: 0.5em;
  border-bottom-left-radius: 0.25em;
  border-bottom-right-radius: 0.25em;
  font-size: 1.8rem;
}

#spec ul,
#products ul {
  margin-left: -40px;
  list-style-type: none;
  flex-grow: 1;
  font-size: 0.95rem;
  column-count: 2;
}

#spec ul img,
#products ul img {
  width: 20px;
  margin: 0.25em;
}

#products .content {
  padding: 1.5em;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  height: 100%;
}

#products .image {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1/1;
}

#products .content:hover .image > div {
  transform: translateY(-10px) scale(1.2);
}

#products .content:hover a.title {
  color: #8bc53f;
  text-decoration: none;
}

#products .image > div {
  width: 100%;
  background-size: cover;
  background-position: center center;
  margin-bottom: 0.5em;
  transition: transform 0.2s ease-in;
  aspect-ratio: 1/1;
  transform: scale(1.1);
}

#products p {
  font-size: 0.95rem;
  flex-grow: 1;
}

.summary {
  text-align: left;
}
.summary .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.summary .content h3 {
  margin-bottom: 0.5em;
  font-size: 1.8rem;
}
.summary .content p:first-of-type {
  font-weight: 400;
}
.summary .ratings {
  padding: 0;
  margin-left: -30px;
}
@media (max-width: 991px) {
  .summary .ratings {
    margin: 1em auto 3em;
  }
}
.summary .ratings li {
  list-style-type: none;
}
.summary .ratings > li > div {
  display: flex;
  align-items: center;
}
.summary .ratings .stars {
  transform: scale(0.66);
}
.summary .ratings p {
  margin: 0;
  font-size: 0.85rem;
}
.summary .ratings p:first-of-type {
  font-size: 1.1rem;
  line-height: 1em;
}

.detail-header {
  text-align: left;
  background-color: #8bc53f;
  padding: 4em 0;
}

.detail-header ul {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  margin-left: -20px;
  column-gap: 2em;
}

.detail-header li {
  color: white;
  list-style-image: url("/wp-content/themes/diamond-grass/assets/images/list-icon.svg");
}

.detail-header li::marker {
  font-size: 1.5em;
}

.detail-body .card {
  border: 0;
}

.detail-body .card-header {
  background-color: white;
  border: 0;
  padding: 10px;
}

.detail-body .card-header .nav-item a {
  text-transform: uppercase;
  font-weight: 500;
  color: #2f3c54;
  border: 1px solid #f4f4f4;
  padding: 0.75em;
}

.card-header .nav-item {
  width: 33%;
}

@media only screen and (max-width: 992px) {
  .card-header .nav-item {
    width: 100%;
  }
}
.card-header .nav-tabs {
  margin-bottom: -14px;
}

.card-header .nav-tabs .nav-item.show .nav-link,
.card-header .nav-tabs .nav-link.active {
  background-color: #f4f4f4;
  border: 0;
}

.card-body {
  background-color: #f4f4f4;
  text-align: left;
  padding: 2em;
}

.product-img img {
  border: 1px solid #2f3c54;
}

.tab-content p:first-of-type {
  font-weight: 500;
}

/* Contact */
#contact::placeholder {
  color: #dee2e6;
}
#contact .contact-form input[type=tel],
#contact .contact-form input[type=email],
#contact textarea,
#contact select,
#contact .contact-form input[type=text] {
  padding: 0.45em;
  border: 0;
  background-color: white;
  font-size: 0.9rem;
  margin-top: 0.15em;
  width: 100%;
  color: #2f3c54;
}

#contact .contact-form input[type=tel],
#contact .contact-form input[type=email],
#contact .contact-form input[type=text] {
  margin-top: 1em;
}

#contact textarea {
  height: 6em;
}
#contact label {
  font-size: 0.85rem;
  width: 100%;
  margin-top: 1em;
  margin-bottom: 0;
  padding-left: 0.15em;
}
#contact .wpcf7 form.invalid .wpcf7-response-output {
  padding: 0.5em 0;
}
#contact a {
  color: #2f3c54;
  font-weight: 500;
}
#contact .form > div, #contact ul {
  list-style-type: none;
  background-color: #f8f9fa;
  padding: 20px 30px;
  border-radius: 1em;
}
#contact li {
  line-height: 2em;
}
#contact li.title {
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 0.2em;
}

@media only screen and (max-width: 992px) {
  #contact .contact-form input[type=tel],
  #contact .contact-form input[type=email],
  #contact .contact-form input[type=text],
  #contact select,
  #contact textarea {
    font-size: 16px;
  }
}
/* Footer */
.site-footer {
  background-color: #2f3c54;
  color: #f4f4f4;
  padding: 4em 0;
  font-size: 0.75rem;
  text-align: left;
}

.site-footer .bottom a {
  color: #f4f4f4;
}

.site-footer .logo {
  width: 100%;
}

.site-footer h5 {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
}

.site-footer .box > div {
  background-color: white;
  color: #2f3c54;
  border-radius: 1em;
  padding: 1.3em;
  height: 100%;
  font-size: 0.8rem;
}

.site-footer .box a {
  color: #2f3c54;
}

.site-footer ul {
  list-style-type: none;
  margin-left: -40px;
  margin-bottom: 0;
}

.site-footer li {
  font-size: 0.85rem;
  padding: 0.1em 0;
}

.site-footer .social img {
  width: 35px;
  margin: 0 0 0.6em 0;
}

@media only screen and (max-width: 992px) {
  .site-footer .social img {
    margin: 0 0.6em 0;
  }
}
.gallery .card {
  border: 0;
  border-radius: 0;
  margin-bottom: 1em;
}
.gallery .card-body {
  padding: 1em;
}
.gallery .card-body.full {
  position: fixed;
  width: 100%;
  top: 60px;
  bottom: 0;
  left: 0;
  z-index: 101;
  padding: 0 10%;
}

.card-columns {
  column-count: 1;
}

@media only screen and (min-width: 992px) {
  .card-columns {
    column-count: 4;
  }
}
/* FAQ */
#faq .card {
  border-radius: 0;
  border-bottom: 0;
}

#faq .card:last-of-type {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

#faq .card-header {
  background-color: white;
  order: 0;
  text-align: left;
  border-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

#faq .card-header a {
  color: #2f3c54;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  width: 100%;
  display: block;
}

#faq .card-body {
  background-color: white;
  padding: 0 1em 1em 1.5em;
}

#faq .card-header a div {
  background-image: url("assets/images/arrow.svg");
  width: 10px;
  height: 15px;
  filter: brightness(0);
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotateZ(90deg);
  transition: transform 0.3s ease-in-out;
  position: absolute;
  top: 15px;
  right: 20px;
}

#faq .card-header a.collapsed div {
  transform: rotateZ(-90deg);
}

#faq .card-header a:hover {
  cursor: pointer;
  text-decoration: underline !important;
}

/* Basic page */
section.basic {
  text-align: left;
}

section.basic p:first-of-type {
  font-weight: 500;
}

section.basic p {
  overflow-wrap: anywhere;
}

/* Articles */
article {
  text-align: left;
}

article div.header {
  background-color: #f4f4f4;
}

article li {
  padding: 1em;
}

article .content p:first-of-type {
  font-weight: 500;
}

.related .item {
  background-color: #f4f4f4;
  padding: 1em;
  margin-bottom: 1em;
}

.related img {
  width: 100%;
}

.related h5 {
  padding: 0.5em 0 0;
}

.more-link {
  color: #2f3c54;
  font-weight: 400;
}

.post-thumbnail {
  margin: 0;
}

.nv-links {
  display: flex;
  width: 100%;
  justify-content: center;
}

.nav-links a {
  color: #2f3c54;
  text-transform: none;
}

.nav-links a:hover {
  text-decoration: none;
  font-weight: 500;
}

/* UI element */
.not-found {
  padding: 3em;
  font-size: 1.2rem;
  font-weight: 500;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.not-found img {
  width: 75px;
  margin-bottom: 1em;
}

.grass {
  background-color: #f4f4f4;
  padding: 2em 0;
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: bottom;
  background-size: auto 60%;
}

.grass-0 {
  background-image: url("./assets/images/grass-0.svg");
}

.grass-1 {
  background-image: url("./assets/images/grass-1.svg");
}

.grass-2 {
  background-image: url("./assets/images/grass-2.svg");
}

.grass-3 {
  background-image: url("./assets/images/grass-3.svg");
}

#feature li,
.block-basic li,
.block-image li {
  list-style-image: url("/wp-content/themes/diamond-grass/assets/images/list-icon.svg");
  padding-bottom: 0.5em;
  text-align: left;
}

#feature li::marker,
.block-basic li::marker,
.block-image li::marker {
  font-size: 1.5em;
}

.block-basic p:first-of-type {
  font-size: 1.3rem;
  font-weight: 400;
}

img.arrow {
  width: 15px !important;
  position: absolute;
  top: 50%;
  transform: translateY(-15px);
}

img.arrow.right {
  right: 10px;
}

#news img.arrow {
  filter: brightness(0.25);
}

img.arrow.left {
  left: 10px;
  transform: scaleX(-100%) translateY(-15px);
}

.owl-thumbs img.arrow.left {
  transform: scaleX(-100%) translateY(-30px);
}

.owl-thumbs img.arrow.right {
  transform: scaleX(100%) translateY(-30px);
}

/* BS helper */
@media only screen and (min-width: 992px) {
  .w-md-a {
    width: auto !important;
  }
  .w-md-100 {
    width: 100% !important;
  }
}
/*  Effects */
.show-on-scroll {
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.75s ease-in-out, opacity 0.5s ease-in;
}

.show-on-scroll.is-visible {
  transform: translateY(0px);
  opacity: 1;
}

.flare-wrap {
  width: 100%;
  overflow: hidden;
  height: 58px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  pointer-events: none;
}

.flare.end {
  left: calc(100% + 100px);
}

.flare {
  transition: left 1s ease-in-out;
  position: absolute;
  left: -100px;
  top: 60px;
  width: 2%;
  height: 1px;
  transform-origin: 0 0;
  background: #fffffa;
  box-shadow: 0 0 8px 5px rgba(255, 255, 250, 0.3);
}

.flare:after,
.flare:before {
  content: " ";
  position: absolute;
  left: 20%;
  top: -2px;
  width: 5px;
  height: 5px;
  background: #fffffa;
  border-radius: 50%;
  box-shadow: 0 0 20px 35px rgba(255, 255, 250, 0.3), 0 0 4px 15px rgba(255, 255, 250, 0.3);
}

.flare:before {
  width: 20%;
  left: 10%;
  box-shadow: 0 0 20px 10px rgba(255, 255, 250, 0.7);
}

/*# sourceMappingURL=main.css.map */
