:root {
  --black: #000000;
  --white: #ffffff;

  --primary-color: #7f8037;
  --secondary-color: #aa6127;
  --background-color: #70ac45;
  --optional-color: #2daaaf;
  --placeholder-color: #F7F7F7;
  --grey-color: #444444;

  --font-h1: 27px;
  --font-h2: 25px;
  --font-h3: 23px;
  --font-h4: 21px;
  --font-h5: 19px;
  --font-h6: 17px;
  --font-default: 14px;

  --font-family-primary: 'Varela Round', sans-serif;

  --font-lh-1: 35px;
  --font-lh-2: 30px;
  --font-lh-3: 27px;
  --font-lh-4: 24px;
  --font-lh-5: 28px;
  --font-lh-6: 25px;
  --font-lh-default: 24px;
}

@media (min-width: 768px) {
  :root {
    --font-h1: 36px;
    --font-h2: 32px;
    --font-h3: 28px;
    --font-h4: 24px;
    --font-h5: 20px;
    --font-h6: 17px;
    --font-default: 14px;

    --font-lh-1: 44px;
    --font-lh-2: 40px;
    --font-lh-3: 36px;
    --font-lh-4: 32px;
    --font-lh-5: 28px;
    --font-lh-6: 29px;
    --font-lh-default: 23px;
  }
}

@media (min-width: 1024px) {
  :root {
    --font-h1: 50px;
    --font-h2: 40px;
    --font-h3: 30px;
    --font-h4: 26px;
    --font-h5: 22px;
    --font-h6: 18px;
    --font-default: 15px;

    --font-lh-1: 65px;
    --font-lh-2: 55px;
    --font-lh-3: 40px;
    --font-lh-4: 35px;
    --font-lh-5: 30px;
    --font-lh-6: 34px;
    --font-lh-default: 28px;
  }
}

/* Basic Styling */
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  color: var(--black);
  font-family: var(--font-family-primary);
  font-size: var(--font-default);
  font-style: normal;
  font-weight: 500;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

h1 {
  font-family: var(--font-family-primary);
  font-weight: 300;
  font-size: var(--font-h1);
  font-style: normal;
  line-height: var(--font-lh-1);
}

h2 {
  font-family: var(--font-family-primary);
  font-weight: 300;
  font-size: var(--font-h2);
  font-style: normal;
  line-height: var(--font-lh-2);
}

h3 {
  font-family: var(--font-family-primary);
  font-weight: 300;
  font-size: var(--font-h3);
  font-style: normal;
  line-height: var(--font-lh-3);
}

h4 {
  font-family: var(--font-family-primary);
  font-weight: 300;
  font-size: var(--font-h4);
  font-style: normal;
  line-height: var(--font-lh-4);
}

h5 {
  font-family: var(--font-family-primary);
  font-weight: 300;
  font-size: var(--font-h5);
  font-style: normal;
  line-height: var(--font-lh-5);
}

h6 {
  font-family: var(--font-family-primary);
  font-weight: 600;
  font-size: var(--font-h6);
  font-style: normal;
  line-height: var(--font-lh-6);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

a {
  font-family: var(--font-family-primary);
  font-weight: 300;
  font-size: var(--font-default);
  text-decoration: none;
  font-style: normal;
  line-height: var(--font-lh-default);
}

a:hover {
  color: var(--primary-color);
  cursor: pointer;
}

p {
  font-family: var(--font-family-primary);
  font-weight: 300;
  font-size: var(--font-default);
  font-style: normal;
  line-height: var(--font-lh-default);
  margin: 0 0 10px 0;
  color: var(--grey-color);

}

p span {
  color: var(--primary-color);
}

table {
  width: 100%;
}


/* FORMS AND BUTTONS */
input {
  color: var(--black);
  outline: none;
}

textarea {
  color: var(--black);
  outline: none;
  height: 140px;
}

/* Responsive images */
img {
  width: 100%;
  height: auto;
}

.post,
.page {
  margin: 0;
}

.main-btn {
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  padding: 9px 25px;
  /*    color: var(--primary-color);*/
  font-family: var(--font-family-primary);
  font-weight: 300;
  font-size: var(--font-default);
  text-decoration: none;
  font-style: normal;
  line-height: var(--font-lh-default);
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  transition: 0.5s all ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-btn:hover {
  border: 1px solid var(--primary-color);
  color: var(--white);
  background-color: var(--primary-color);
  opacity: 0.8;
  letter-spacing: 1px;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
  font-size: var(--font-default);
  font-family: var(--font-family-primary);
}

h2 span {
  color: var(--primary-color);
}

input,
textarea,
select {
  border: 1px solid rgba(0, 0, 0, 0.32);
  width: 100%;
  display: block;
  padding: 9px;
}

i {
  color: var(--secondary-color);
}

.list-style li {
  position: relative;
  padding-left: 20px;
}

.list-style li::after {
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background-color: var(--primary-color);
  border-radius: 50%;
  content: '';
}

.list-style li:last-child {
  padding-bottom: 15px;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.breadcrumb-wrp ol {
  margin-bottom: 0;
}

.breadcrumb-wrp ol li a {
  color: var(--primary-color);
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /*display: flex;
      justify-content: center;
      align-items: center;*/
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 43%;
}

.swiper-pagination-bullet-active {
  background: var(--secondary-color);
}

.section-padding {
  padding: 40px 0;
}

.section-top-margin {
  margin-top: 40px;
}

.section-bottom-margin {
  margin-bottom: 40px;
}

.section-margin-row {
  margin-top: 30px;
}

@media (min-width: 768px) {}

@media (min-width: 992px) {}

@media (min-width:1200px) {
  .section-padding {
    padding: 80px 0;
  }

  .section-top-margin {
    margin-top: 80px;
  }

  .section-bottom-margin {
    margin-bottom: 80px;
  }

  .section-margin-row {
    margin-top: 40px;
  }
}