/* Base CSS */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
/* font-family: 'Open Sans', sans-serif; */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@900&display=swap');
/* font-family: 'Lato', sans-serif; */
:root {
  --secondary-color: 255, 255, 255;
  /*--primary-color: #81B00C;*/
  --black-clr: #000;
}
body {
  background-color: rgb(var(--secondary-color));
}
.img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.bg-white {
  background-color: #fff !important;
}

a,
.button {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:hover,
a {
  color: rgb(var(--primary-color));
}

a:hover{
  text-decoration: underline;
}
a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-style: normal;
  font-weight: 700;
}

.entry-content h1, .entry-content h1,
.entry-content h2, .entry-content h2,
.entry-content h3, .entry-content h3,
.entry-content h4, .entry-content h4,
.entry-content h5, .entry-content h5,
.entry-content h6, .entry-content h6{
  margin-top: .9rem;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}


.entry-content h1 {
    font-size: 35px;
}

.entry-content h2 {
    font-size: 28px;
}

.entry-content h3 {
    font-size: 25px;
}

.entry-content h4 {
    font-size: 22px;
}

ul {
margin: 0px;
padding: 0px;
}


.entry-content ul:not(.gform_fields):not(.blocks-gallery-grid):not(.entry-meta) {
    padding: 10px 0 20px 0;
}

.entry-content ul:not(.gform_fields):not(.blocks-gallery-grid):not(.entry-meta) li {
    color: #333;
    /*position: relative;
    list-style: none;
    padding-left: 30px;*/
}

/*
.entry-content ul:not(.gform_fields):not(.blocks-gallery-grid):not(.entry-meta) li:not(:last-child) {
    margin-bottom: 15px;
}*/

/*.entry-content ul:not(.gform_fields):not(.blocks-gallery-grid):not(.entry-meta) li:before {
    content: '\f058';
    font-family: "Font Awesome\ 5 Free";
    font-size: 20px;
    left: 0;
    position: absolute;
    top: 1px;
    font-weight: 900;
    color: rgb(var(--primary-color));
}*/


li {
  list-style: none;
}

p {
  font-size: 16px;
  font-weight: normal;
  line-height: 26px;
}
a:hover {
  text-decoration: none;
}
.btn {
    display: inline-block;
    position: relative;
    transition: .5s;
    text-align: center;
    outline: 0;
    width: unset;
}
.btn-primary {
    /*background: rgb(var(--primary-color)) !important;*/
    /*color: #ffffff !important;*/
}
.btn-success:hover {
    color: #fff;
    background-color: rgba(var(--primary-color), 0.7);
    border-color: rgba(var(--primary-color), 0.7);
}