@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary: #983025;
  --secondary: #008133;
  --text-1: #1f1f1f;
  --text-2: #333233;
  --light: #fff;
  --dark: #000;
  --transition: all 0.5s ease-in-out;
  --primary-font: "Montserrat", sans-serif;
  --secondary-font: "Roboto", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: var(--primary-font);
}

body {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 18px);
  margin: 0;
  background-color: var(--light);
  color: var(--text-2);
  overflow-x: clip;
  line-height: 1.2;
  letter-spacing: 0.2px;
}

img {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  vertical-align: middle;
}
h1,
h2,
h3,
h5,
h4,
h6 {
  font-family: var(--primary-font);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
img {
  max-width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
}
a,
a:active,
a:hover {
  text-decoration: none;
  outline: 0;
  transition: var(--transition);
}
p {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--text-2);
  margin: 0 0 6px;
  line-height: 1.4;
  font-weight: 300;
  font-family: var(--secondary-font);
}
p:last-child {
  margin-bottom: 0;
}
strong {
  font-weight: 700;
}
.wrapper,
.wrapper-small,
.wrapper-large {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
.wrapper-large {
  max-width: 1700px;
}
.wrapper-small {
  max-width: 1024px;
}
.padding-tb {
  padding: clamp(40px, 6vw, 105px) 0;
}
.padding-t {
  padding-top: clamp(40px, 6vw, 105px);
}
.padding-b {
  padding-bottom: clamp(40px, 6vw, 105px);
}
.padding-tb-small {
  padding-top: clamp(40px, 4vw, 80px);
  padding-bottom: clamp(40px, 4vw, 80px);
}
.padding-b-small {
  padding-bottom: clamp(40px, 4vw, 80px);
}

/* Common section start */
h1 {
  font-size: clamp(30px, 4vw, 44px);
  color: var(--text-1);
}
h2 {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--text-1);
}
h3 {
  font-size: clamp(20px, 2vw, 26px);
  text-transform: unset;
}
h1 span,
h2 span,
h3 span {
  color: var(--primary);
}
p a {
  color: var(--primary);
}
.section-wrap {
  margin-bottom: clamp(25px, 3vw, 45px);
}
.section-wrap p {
  margin: 10px 0 0;
}
.section-wrap.center {
  text-align: center;
}
.btn,
.btn-green,
.btn-outline {
  font-size: 16px;
  font-weight: 600;
  color: var(--light);
  background-color: var(--primary);
  border: 1px solid var(--primary);
  text-align: center;
  display: block;
  width: fit-content;
  padding: 8px 16px;
  white-space: nowrap;
  line-height: 1.4;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  border-radius: 6px;
}
.btn:hover {
  background-color: var(--light);
  color: var(--primary);
  transform: scale(1.1);
}
.btn-green {
  background-color: #8ab51d;
  font-size: clamp(18px, 1.6vw, 20px);
  border: 2px solid #fff;
  padding: 10px clamp(26px, 3vw, 40px);
}
.btn-green:hover {
  background-color: var(--light);
  border-color: #8ab51d;
  color: #8ab51d;
  transform: scale(1.1);
}
.btn-outline {
  border: 2px solid var(--secondary);
  background-color: transparent;
  color: var(--secondary);
}
.btn-outline:hover {
  background-color: var(--secondary);
  color: var(--light);
  transform: scale(1.1);
}
.content__area h1,
.content__area h2,
.content__area h3,
.content__area h4 {
  margin: 16px 0 10px;
}
.content__area p {
  margin-bottom: 10px;
}
.content__area ul {
  list-style: decimal;
  margin: 16px 0;
  padding: 0;
  padding-left: 36px;
}
.content__area ul li {
  font-weight: 300;
  margin-bottom: 4px;
}

form {
  width: 100%;
}
form input,
form select,
form textarea {
  padding: 16px;
  border: unset;
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid #000;
  outline: unset !important;
  width: 100%;
  color: var(--text-1);
  font-size: 16px;
  outline: unset;
  font-family: var(--secondary-font);
  font-weight: 400;
}
input::placeholder,
textarea::placeholder {
  color: #a1a1a1;
}
input.wpcf7-submit {
  background-color: #0787c9;
  border: 1px solid #0787c9;
  color: var(--light);
  cursor: pointer;
  width: 100%;
  font-size: clamp(16px, 1.5vw, 18px);
}
input.wpcf7-submit:hover,
input.wpcf7-submit:focus {
  background-color: var(--light);
  color: #0787c9;
}
form label {
  font-weight: 400;
  font-size: 16px;
  color: var(--text-2);
  margin: 0 0 6px;
  display: block;
}
form p {
  position: relative;
}
.wpcf7-spinner {
  position: absolute;
  right: 10px;
  top: 22px;
  margin: 0;
}
.wpcf7-list-item {
  margin: 0;
}
.wpcf7-list-item label {
  display: flex;
  align-items: start;
  gap: 8px;
}
.wpcf7-list-item label input {
  width: fit-content;
  margin-top: 2px;
}
.wpcf7-list-item label span {
  font-size: 12px;
}

.three-grid,
.four-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: clamp(20px, 3vw, 30px);
}
.four-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.entry-header h1 {
  color: var(--text-1);
}
.error-404-wrapper {
  text-align: center;
}
.error-404-wrapper h1 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  margin: 0 0 10px;
}
.error-404-wrapper p {
  margin: 0;
  font-size: 18px;
}
.error-404-wrapper .btn {
  margin: 20px auto 0;
  width: fit-content;
}
header.entry-header {
  margin-bottom: clamp(15px, 2vw, 25px);
}
/* Common section end */

/* Header start */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  background: #ffffff;
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
}
.site-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 45px;
  width: 100%;
  padding: 6px 0;
}
.site-branding img {
  max-height: clamp(50px, 4vw, 80px);
  width: 100%;
}
#site-navigation {
  display: flex;
  justify-content: end;
  flex: 1;
}
.main-navigation #primary-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.main-navigation #primary-menu a {
  color: #1e2b32;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--primary-font);
}
.main-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-navigation ul li {
  position: relative;
}
.main-navigation #primary-menu > .current_page_item > a,
.main-navigation #primary-menu > li:hover > a,
.main-navigation #primary-menu > li li:hover > a,
.main-navigation #primary-menu > li a:hover {
  color: var(--primary);
  position: relative;
}
.main-navigation #primary-menu > .current_page_item > a::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--primary);
  position: absolute;
  bottom: -7px;
  left: 0;
}
.header-button {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-button button {
  padding: 0;
  border: unset;
  background-color: unset;
  line-height: 1;
  display: none;
}
.header-button button i {
  font-size: 24px;
}
#primary-menu .sub-menu {
  position: absolute;
  min-width: 270px;
  background-color: var(--light);
  border-radius: 6px;
  top: 45px;
  left: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 6px;
  visibility: hidden;
  transform: translateY(50px);
  transition: var(--transition);
  z-index: -1;
}
#primary-menu .sub-menu a {
  padding: 10px 16px;
  display: block;
}
#primary-menu > li.menu-item-has-children > .sub-menu > li > .sub-menu {
  left: 100% !important;
  top: 10px !important;
  margin-left: 10px;
}
#primary-menu > li.menu-item-has-children:hover > .sub-menu,
#primary-menu > li.menu-item-has-children > .sub-menu > li:hover > .sub-menu {
  visibility: visible;
  transform: translateY(0);
  z-index: 1;
}
#primary-menu > li.menu-item-has-children > a::after {
  content: "\f0d7";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 15px;
  color: var(--text);
  margin-left: 10px;
}
#primary-menu .sub-menu > li.menu-item-has-children > a::after {
  content: "\f0da";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  font-size: 15px;
  top: 50%;
  right: 6px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Offcanvas */
.uk-offcanvas .uk-offcanvas-bar {
  background: #fff;
  padding: 0;
}
.uk-offcanvas .uk-offcanvas-close {
  background-color: var(--primary);
  top: 28px;
  right: 20px;
}
.uk-offcanvas-close svg {
  color: var(--light);
}
.uk-offcanvas #primary-menu1 {
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 2px 38px 0px;
}
.uk-offcanvas #primary-menu1 a {
  color: #1e2b32;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 16px;
  display: block;
  position: relative;
}
.uk-offcanvas #primary-menu1 > li > ul > li > a {
  padding: 8px 28px;
}
.uk-offcanvas #primary-menu1 > li > ul > li > ul > li > a {
  padding: 8px 42px;
}
.offcanvas__content > div {
  padding: 20px;
}
.offcanvas__content #primary-menu1 > li > ul,
.offcanvas__content #primary-menu1 > li > ul > li > ul {
  display: none;
  padding: 0;
  position: relative;
  z-index: 1;
  border-radius: 0;
}
#primary-menu1 li.menu-item-has-children > a::before {
  content: "\f0da";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  right: 1px;
  color: var(--text);
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
#primary-menu1 li.menu-item-has-children > a.show-active::before {
  transform: rotate(90deg);
}
.offcanvas__content #primary-menu1 > li:not(:last-child),
.offcanvas__content #primary-menu1 .sub-menu > li:not(:last-child) {
  border-bottom: 1px solid #f2f2f2;
}
.offcanvas__content #primary-menu1 .sub-menu {
  border-top: 1px solid #f2f2f2;
}
.offcanvas__logo {
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.offcanvas__logo img {
  height: 36px;
}

/* Offcanvas */

/* Header end */

/* Footer start */
.site-footer {
  background-color: #008133;
}
.site-footer__wrapper {
  display: flex;
  align-items: start;
  gap: 45px;
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 30px;
}
.site-footer__wrapper > div {
  flex: 1;
}
.site-footer__wrapper > div:first-child {
  flex: 3;
}
.footer-widget img {
  width: 100px;
  margin-bottom: 12px;
}
.footer-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-widget p,
.footer-widget ul li a,
.footer-menu ul a,
.footer-menu a,
.footer-menu p {
  line-height: 1.3;
  font-size: 16px;
  color: rgb(255, 255, 255);
  font-weight: 300;
}
.social-media {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-media > a {
  color: #fff;
  background-color: #8ab51d;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.social-media > a:hover {
  background-color: #000d05;
}
.widget-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 18px;
  color: #ffffff;
}
.footer-widget ul li {
  margin-bottom: 10px;
}
.footer-widget ul li:last-child {
  margin-bottom: 0;
}
.footer-menu {
  margin-top: 25px;
  padding: 0 20px;
}
.footer-menu ul {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

/* Footer end */

@media (max-width: 1200px) {
  .site-footer__wrapper > div:first-child {
    flex: 2;
  }
  .header-button button {
    display: block;
  }
  #site-navigation {
    display: none;
  }
}
@media (max-width: 989px) {
  .site-footer__wrapper {
    flex-wrap: wrap;
  }
  .site-footer__wrapper > div {
    flex: unset !important;
    width: calc(50% - 22.5px);
  }
}

@media (max-width: 768px) {
  #site-navigation {
    display: none;
  }
}
@media (max-width: 567px) {
  .site-footer__wrapper > div {
    width: 100%;
  }
}
