@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Barlow", sans-serif;
}
h1,h2,h3,h4,h5,h6{
    font-weight:700;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1320px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 1320px;
  }
}
@media (min-width: 540px) {
  .container {
    max-width: 1320px;
  }
}
.topHeader {
  border-bottom: 1px #eee solid;
  padding: 5px 0;
	background-color:#07673933;
}
.topHeader .phoneOptions,
.topHeader .registerOptions {
  display: flex;
  list-style: none;
  gap: 30px;
  margin-bottom: 0;
  padding-left: 0;
}
.topHeader .phoneOptions li a,
.topHeader .registerOptions li a {
  display: flex !important;
  align-items: center;
  gap: 8px;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  padding: 7px;
  font-size:16px;
  display: block;
  text-transform: uppercase;
}
.topHeader .phoneOptions li a:hover,
.topHeader .registerOptions li a:hover {
  color: #076739;
}
.topHeader .phoneOptions li a:hover path,
.topHeader .registerOptions li a:hover path {
  stroke: #076739;
}
.topHeader .phoneOptions li:nth-child(1) a,
.topHeader .registerOptions li:nth-child(1) a {
  padding-left: 0;
}
.topHeader .phoneOptions li:last-child a,
.topHeader .registerOptions li:last-child a {
  padding-right: 0;
}
.topHeader .phoneOptions svg,
.topHeader .registerOptions svg {
  height: 20px;
  width: 20px;
}

.registerOptions {
  justify-content: flex-end;
}
.registerOptions li a {
  color: #fff !important;
  background-color: #076739;
  padding-left: 15px !important;
  padding-right: 15px !important;
  border-radius: 4px;
  border: 1px #076739 solid;
}
.registerOptions li a svg path {
  stroke: #fff;
}
.registerOptions li a:hover {
  background-color: transparent;
  color: #000 !important;
}
.registerOptions li a:hover svg path {
  stroke: #000 !important;
}

.menuHeader {
  padding: 5px 0;
}

.logoBox img {
  max-width: 100%;
}

.MenuUl {
  display: flex;
  gap: 25px;
  margin-bottom: 0;
  padding-left: 0;
  justify-content: flex-end;
}
.MenuUl * {
  transition: 0.3s ease-in-out all;
}
.MenuUl li {
  position: relative;
  list-style: none;
}
.MenuUl li.menu-item-has-children > a:after {
  content: "\f107";
  font-family: "FontAwesome";
  padding-left: 6px;
}
.MenuUl li a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.MenuUl li a:hover {
  color: #076739;
}
.MenuUl li a:hover svg {
  fill: #076739;
}
.MenuUl li > ul {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  background-color: #fff;
  top: 100%;
  border: 1px #eee solid;
  min-width: 220px;
  margin-bottom: 0;
  padding-left: 0;
  transform: translateY(-10px);
  z-index: 99;
}
.MenuUl li > ul li a {
  font-size: 16px;
  padding: 10px 10px;
  display: block;
  border-bottom: 1px #eee solid;
}
.MenuUl li > ul li:last-child a {
  border-bottom: 0;
}
.MenuUl li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.siteFooter {
  padding: 60px 0 30px 0px;
}

.footerBox h4.wp-block-heading {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footerBox ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.footerBox ul li {
  line-height: 2;
}
.footerBox ul li a {
  color: #076739;
  text-decoration: none;
}
.footerBox p,
.footerBox li {
  font-size: 16px;
  font-family: "Mulish", "Barlow", sans-serif;
}

.hamMenu {
  display: none;
}

.smallShow {
  display: none;
}
.breadcum ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 15px;
}
.breadcum ul * {
    color: #fff;
}
.breadcum ul li:after {
    content: '|';
    padding-left: 15px;
}
.breadcum ul li:last-child:after {
    display:none;
}
@media (max-width: 991px) {
  .MenuUl {
    display: none;
  }
  .hamMenu {
    display: block;
    font-size: 32px;
    text-align: right;
  }
  .smallHide {
    display: none;
  }
  .smallShow {
    display: block;
  }
  .menuHeader .registerOptions {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
  }
  .menuHeader .registerOptions li a {
    padding-top: 10px;
    padding-bottom: 10px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    white-space: nowrap;
  }
  .menuHeader .registerOptions li a svg {
    height: 20px;
    width: 20px;
  }
  .siteFooter {
    padding: 30px 0 20px 0px;
  }
}
@media (max-width: 656px) {
  .topHeader .phoneOptions,
  .topHeader .registerOptions {
    gap: 0px;
  }
  .topHeader .phoneOptions li a,
  .topHeader .registerOptions li a {
    font-size: 14px;
  }
  .menuHeader .registerOptions li a {
    font-size: 14px;
  }
}
@media (max-width: 550px) {
  .phoneOptions {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footerBox {
    margin-bottom: 30px;
  }
  .footerBox h4.wp-block-heading {
    font-size: 20px;
  }
}/*# sourceMappingURL=style.css.map */