@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap");
/* line 64, ../sass/helper-classes.sass */
.desktop.xl {
  display: block;
}
@media only screen and (max-width: 1300px) {
  /* line 64, ../sass/helper-classes.sass */
  .desktop.xl {
    display: none;
  }
}
/* line 68, ../sass/helper-classes.sass */
.desktop.lg {
  display: block;
}
@media only screen and (max-width: 1200px) {
  /* line 68, ../sass/helper-classes.sass */
  .desktop.lg {
    display: none;
  }
}
/* line 72, ../sass/helper-classes.sass */
.desktop.md {
  display: block;
}
@media only screen and (max-width: 992px) {
  /* line 72, ../sass/helper-classes.sass */
  .desktop.md {
    display: none;
  }
}
/* line 76, ../sass/helper-classes.sass */
.desktop.sm {
  display: block;
}
@media only screen and (max-width: 768px) {
  /* line 76, ../sass/helper-classes.sass */
  .desktop.sm {
    display: none;
  }
}

/* line 82, ../sass/helper-classes.sass */
.mobile.xl {
  display: none;
}
@media only screen and (max-width: 1300px) {
  /* line 82, ../sass/helper-classes.sass */
  .mobile.xl {
    display: block;
  }
}
/* line 86, ../sass/helper-classes.sass */
.mobile.lg {
  display: none;
}
@media only screen and (max-width: 1200px) {
  /* line 86, ../sass/helper-classes.sass */
  .mobile.lg {
    display: block;
  }
}
/* line 90, ../sass/helper-classes.sass */
.mobile.md {
  display: none;
}
@media only screen and (max-width: 992px) {
  /* line 90, ../sass/helper-classes.sass */
  .mobile.md {
    display: block;
  }
}
/* line 94, ../sass/helper-classes.sass */
.mobile.sm {
  display: none;
}
@media only screen and (max-width: 768px) {
  /* line 94, ../sass/helper-classes.sass */
  .mobile.sm {
    display: block;
  }
}

/* line 99, ../sass/helper-classes.sass */
.text-left {
  text-align: left;
}
/* line 101, ../sass/helper-classes.sass */
.text-left * {
  margin-right: auto;
  margin-left: 0;
}

/* line 105, ../sass/helper-classes.sass */
.text-right {
  text-align: right;
}
/* line 107, ../sass/helper-classes.sass */
.text-right * {
  margin-left: auto;
  margin-right: 0;
}

/* line 111, ../sass/helper-classes.sass */
.text-center {
  text-align: center;
}

/* line 114, ../sass/helper-classes.sass */
.color-light {
  color: #fff;
}
/* line 116, ../sass/helper-classes.sass */
.color-light * {
  color: #fff;
}
/* line 118, ../sass/helper-classes.sass */
.color-light a:hover {
  color: #cccccc;
}

/* line 121, ../sass/helper-classes.sass */
.color-primary {
  color: #383838;
}
/* line 123, ../sass/helper-classes.sass */
.color-primary * {
  color: #383838;
}
/* line 125, ../sass/helper-classes.sass */
.color-primary a:hover {
  color: #050505;
}

/* line 128, ../sass/helper-classes.sass */
.color-secondary {
  color: #9AC43A;
}
/* line 130, ../sass/helper-classes.sass */
.color-secondary * {
  color: #9AC43A;
}
/* line 132, ../sass/helper-classes.sass */
.color-secondary a:hover {
  color: #5c7523;
}

/* line 135, ../sass/helper-classes.sass */
.color-black {
  color: black;
}

/* line 138, ../sass/helper-classes.sass */
.background-primary {
  background: #383838;
  border-color: #383838;
}

/* line 142, ../sass/helper-classes.sass */
.background-secondary {
  background: #9AC43A;
  border-color: #9AC43A;
}

/* line 146, ../sass/helper-classes.sass */
.background-light {
  background: #fff;
  border-color: #fff;
}

/* line 150, ../sass/helper-classes.sass */
.background-lightgrey {
  background: #f5f5f5;
  border-color: #f5f5f5;
}

/* line 156, ../sass/helper-classes.sass */
.col-primary {
  color: #383838;
}

/* line 159, ../sass/helper-classes.sass */
.d-inline-block {
  display: inline-block;
}

/* line 162, ../sass/helper-classes.sass */
.d-block {
  display: block;
}

/* line 165, ../sass/helper-classes.sass */
.d-flex {
  display: flex;
}

/* line 168, ../sass/helper-classes.sass */
.d-none {
  display: none;
}

/* line 171, ../sass/helper-classes.sass */
.reset {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* line 174, ../sass/helper-classes.sass */
.float-left {
  float: left;
}

/* line 177, ../sass/helper-classes.sass */
.float-right {
  float: right;
}

/* line 180, ../sass/helper-classes.sass */
.clear {
  clear: both;
}

/* line 183, ../sass/helper-classes.sass */
.btn {
  display: inline-block;
  padding: 6px 15px;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  transition: 0.4s;
  cursor: pointer;
}
/* line 191, ../sass/helper-classes.sass */
.btn.with-icon {
  text-align: left;
  padding: 13px 33px 14px 52px;
  position: relative;
}
/* line 195, ../sass/helper-classes.sass */
.btn.with-icon::before {
  position: absolute;
  top: 12px;
  margin-left: -30px;
  width: 22px;
  height: 20px;
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
}
/* line 205, ../sass/helper-classes.sass */
.btn.btn-primary {
  background: #383838;
  color: #fff;
}
/* line 208, ../sass/helper-classes.sass */
.btn.btn-primary:hover {
  background: #7b9d2e;
}
/* line 210, ../sass/helper-classes.sass */
.btn.btn-lightgrey {
  background: #f5f5f5;
  color: #9AC43A;
}
/* line 213, ../sass/helper-classes.sass */
.btn.btn-lightgrey:hover {
  background: gainsboro;
}
/* line 215, ../sass/helper-classes.sass */
.btn.btn-secondary {
  background: #9AC43A;
  color: #fff;
}
/* line 218, ../sass/helper-classes.sass */
.btn.btn-secondary:hover {
  background: #7b9d2e;
}

/* line 221, ../sass/helper-classes.sass */
.button-container {
  padding: 0 0 25px;
}
/* line 224, ../sass/helper-classes.sass */
.button-container.horizontal .btn, .button-container.horizontal button, .button-container.horizontal a, .button-container.horizontal span, .button-container.horizontal input {
  display: inline-block;
  width: auto;
}
/* line 228, ../sass/helper-classes.sass */
.button-container.horizontal.text-right .btn, .button-container.horizontal.text-right button, .button-container.horizontal.text-right a, .button-container.horizontal.text-right span, .button-container.horizontal.text-right input {
  margin: 0;
  margin-left: 5px;
}
@media only screen and (max-width: 992px) {
  /* line 228, ../sass/helper-classes.sass */
  .button-container.horizontal.text-right .btn, .button-container.horizontal.text-right button, .button-container.horizontal.text-right a, .button-container.horizontal.text-right span, .button-container.horizontal.text-right input {
    margin: 10px 0;
  }
}
/* line 234, ../sass/helper-classes.sass */
.button-container.horizontal.text-left .btn, .button-container.horizontal.text-left button, .button-container.horizontal.text-left a, .button-container.horizontal.text-left span, .button-container.horizontal.text-left input {
  margin: 0;
  margin-right: 5px;
}
@media only screen and (max-width: 992px) {
  /* line 234, ../sass/helper-classes.sass */
  .button-container.horizontal.text-left .btn, .button-container.horizontal.text-left button, .button-container.horizontal.text-left a, .button-container.horizontal.text-left span, .button-container.horizontal.text-left input {
    margin: 10px 0;
  }
}

/* line 240, ../sass/helper-classes.sass */
button {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: transparent;
  border: none;
}

/* line 245, ../sass/helper-classes.sass */
hr {
  border: none;
  border-bottom: 3px solid #e5e5e5;
}

/* line 248, ../sass/helper-classes.sass */
hr.thin {
  border: none;
  border-bottom: 1px solid #e5e5e5;
}

/* line 251, ../sass/helper-classes.sass */
hr.thick {
  border: none;
  border-bottom: 5px solid #e5e5e5;
}

/* line 255, ../sass/helper-classes.sass */
.hide {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  z-index: -99;
  max-height: 0;
  opacity: 0;
  transition: 0.4s;
}

/* line 263, ../sass/helper-classes.sass */
.hidden {
  display: none;
}

/* line 267, ../sass/helper-classes.sass */
.vertical-align * {
  display: inline-block;
  width: 100%;
}

/* line 271, ../sass/helper-classes.sass */
.horizontal-align * {
  display: inline-block;
  width: auto;
}

/* line 275, ../sass/helper-classes.sass */
img {
  max-width: 100%;
}

/* line 278, ../sass/helper-classes.sass */
.square-box {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
}
/* line 283, ../sass/helper-classes.sass */
.square-box > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 290, ../sass/helper-classes.sass */
.image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* line 294, ../sass/helper-classes.sass */
.image.contain {
  background-size: contain;
}

/* line 297, ../sass/helper-classes.sass */
.round {
  border-radius: 50%;
}

/* line 301, ../sass/helper-classes.sass */
.with-info-button.right {
  padding-right: 120px;
}

/* line 306, ../sass/helper-classes.sass */
.show-tooltip {
  cursor: pointer;
}
/* line 308, ../sass/helper-classes.sass */
.show-tooltip .info,
.show-tooltip .tooltip {
  transform: scale(0);
  transform-origin: top left;
  transition: 0.2s;
}
/* line 314, ../sass/helper-classes.sass */
.show-tooltip:hover .info,
.show-tooltip:hover .tooltip {
  transition-delay: 0.5s;
  transform: scale(1);
}

/* line 8, ../sass/screen.sass */
html {
  background: black;
  scroll-behavior: smooth;
}

/* line 11, ../sass/screen.sass */
body {
  background: #fff;
  padding-top: 62px;
}
@media only screen and (max-width: 992px) {
  /* line 11, ../sass/screen.sass */
  body {
    padding-top: 48px;
  }
}

/* line 16, ../sass/screen.sass */
body.home {
  opacity: 0;
  transition: 1.2s;
}
/* line 19, ../sass/screen.sass */
body.home.active {
  opacity: 1;
}

/* line 23, ../sass/screen.sass */
.image img {
  width: 100%;
}

/* line 27, ../sass/screen.sass */
body {
  line-height: 1.6;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  overflow-x: hidden;
}

/* line 33, ../sass/screen.sass */
h1, h2, h3, h4, h5, h6 {
  color: #383838;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 25px;
}

/* line 39, ../sass/screen.sass */
h1 {
  font-size: 35px;
  color: #fff;
}
@media only screen and (max-width: 1200px) {
  /* line 39, ../sass/screen.sass */
  h1 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  /* line 39, ../sass/screen.sass */
  h1 {
    font-size: 28px;
  }
}

/* line 47, ../sass/screen.sass */
h2 {
  font-size: 38px;
  margin: -7px 0 30px;
}
@media only screen and (max-width: 992px) {
  /* line 47, ../sass/screen.sass */
  h2 {
    font-size: 31px;
    line-height: 1.2;
  }
}

/* line 54, ../sass/screen.sass */
h3 {
  font-size: 25px;
  margin: 0 0 7px;
}
/* line 57, ../sass/screen.sass */
h3.title {
  margin: 0 0 40px;
}
@media only screen and (max-width: 992px) {
  /* line 54, ../sass/screen.sass */
  h3 {
    font-size: 23px;
    line-height: 1.2;
  }
}

/* line 63, ../sass/screen.sass */
h4 {
  font-size: 21px;
  margin: 0 0 7px;
}

/* line 68, ../sass/screen.sass */
.wp-content h1, .wp-content h2, .wp-content h3, .wp-content h4, .wp-content h5, .wp-content h6 {
  margin: 35px 0 25px;
}
@media only screen and (max-width: 992px) {
  /* line 71, ../sass/screen.sass */
  .wp-content h1, .wp-content h4, .wp-content h5, .wp-content h6 {
    margin: 15px 0 25px;
  }
  /* line 73, ../sass/screen.sass */
  .wp-content h2 {
    margin: 35px 0 20px;
  }
  /* line 75, ../sass/screen.sass */
  .wp-content h3 {
    margin: 30px 0 20px;
  }
}

/* line 78, ../sass/screen.sass */
p, a, li {
  font-size: 17px;
  font-weight: 400;
}

/* line 82, ../sass/screen.sass */
ul {
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  padding: 0 0 25px;
}
/* line 86, ../sass/screen.sass */
ul li {
  line-height: 1.8;
  position: relative;
  padding-left: 40px;
}
/* line 90, ../sass/screen.sass */
ul li::before {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  left: 25px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9AC43A;
  content: "";
}

/* line 101, ../sass/screen.sass */
p {
  color: #333;
  margin: 0 0 20px;
}

/* line 105, ../sass/screen.sass */
a, a:visited, a:active {
  color: #9AC43A;
  transition: 0.4s;
}
/* line 108, ../sass/screen.sass */
a:hover, a:visited:hover, a:active:hover {
  color: #5c7523;
}

/* line 112, ../sass/screen.sass */
.btn {
  padding: 11px 60px 10px 15px;
  margin-top: 45px;
  background: #9AC43A;
  color: #fff !important;
  font-size: 18px;
  font-weight: 600;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 992px) {
  /* line 112, ../sass/screen.sass */
  .btn {
    margin-top: 15px;
  }
}
/* line 125, ../sass/screen.sass */
.btn:hover {
  color: #fff;
  background: #1f1f1f;
}
/* line 128, ../sass/screen.sass */
.btn::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: calc(100% - 50px);
  right: -10px;
  bottom: -1px;
  transform: skewX(-20deg);
  content: "";
}
/* line 137, ../sass/screen.sass */
.btn::after {
  position: absolute;
  z-index: 1;
  top: 0;
  left: calc(100% - 45px);
  right: -5px;
  bottom: 0;
  content: "";
}
/* line 146, ../sass/screen.sass */
.btn.btn-light::before {
  background: #fff;
}
/* line 148, ../sass/screen.sass */
.btn.btn-light::after {
  background-image: url("/wp-content/uploads/2022/12/chevrons-right-solid-1.svg");
  background-size: 25px;
  background-position: center;
  background-repeat: no-repeat;
}
/* line 154, ../sass/screen.sass */
.btn.btn-dark::before {
  background: #616160;
}
/* line 156, ../sass/screen.sass */
.btn.btn-dark::after {
  background-image: url("/wp-content/uploads/2022/12/chevrons-right-solid.svg");
  background-size: 25px;
  background-position: center;
  background-repeat: no-repeat;
}

/* line 163, ../sass/screen.sass */
hr {
  margin: 35px 0;
}

/* line 167, ../sass/screen.sass */
.row {
  display: flex;
}
@media only screen and (max-width: 992px) {
  /* line 167, ../sass/screen.sass */
  .row {
    display: block;
  }
}
/* line 171, ../sass/screen.sass */
.row .col {
  flex: 1;
  width: 100%;
  padding: 0 15px;
}
/* line 175, ../sass/screen.sass */
.row .col:first-child {
  padding-left: 0;
}
/* line 177, ../sass/screen.sass */
.row .col:last-child {
  padding-right: 0;
}
/* line 179, ../sass/screen.sass */
.row .col.col-6 {
  flex: 6;
}
/* line 181, ../sass/screen.sass */
.row .col.col-5 {
  flex: 5;
}
/* line 183, ../sass/screen.sass */
.row .col.col-4 {
  flex: 4;
}
/* line 185, ../sass/screen.sass */
.row .col.col-3 {
  flex: 3;
}
/* line 187, ../sass/screen.sass */
.row .col.col-2 {
  flex: 2;
}
/* line 189, ../sass/screen.sass */
.row .col.col-1 {
  flex: 1;
}
@media only screen and (max-width: 992px) {
  /* line 171, ../sass/screen.sass */
  .row .col {
    padding: 0;
  }
}

/* line 195, ../sass/screen.sass */
.top-nav {
  background: #fff;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
}
@media only screen and (max-width: 1300px) {
  /* line 195, ../sass/screen.sass */
  .top-nav {
    overflow-x: visible;
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0;
    width: 100%;
  }
}
/* line 209, ../sass/screen.sass */
.top-nav .content {
  position: relative;
  background: #fff;
}
@media only screen and (max-width: 992px) {
  /* line 209, ../sass/screen.sass */
  .top-nav .content {
    height: 56px;
  }
}
/* line 214, ../sass/screen.sass */
.top-nav .content::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 763px;
  width: 2000px;
  height: 100%;
  background: #9AC43A;
  transform: skewX(-20deg);
  content: "";
}
@media only screen and (max-width: 1400px) {
  /* line 214, ../sass/screen.sass */
  .top-nav .content::before {
    left: 707px;
  }
}
@media only screen and (max-width: 1300px) {
  /* line 214, ../sass/screen.sass */
  .top-nav .content::before {
    display: none;
  }
}
/* line 228, ../sass/screen.sass */
.top-nav .content .right-menu {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 50px;
  width: 430px;
  height: 100%;
}
@media only screen and (max-width: 1300px) {
  /* line 228, ../sass/screen.sass */
  .top-nav .content .right-menu {
    background: #9AC43A;
    width: auto;
    height: auto;
    top: -250px;
    right: 0;
    transition: 0.4s;
  }
  /* line 242, ../sass/screen.sass */
  .top-nav .content .right-menu.active {
    top: 0;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 992px) {
  /* line 228, ../sass/screen.sass */
  .top-nav .content .right-menu {
    right: 0;
    width: 100%;
  }
}

/* line 247, ../sass/screen.sass */
.top-nav .content .right-menu .menuClose {
  font-size: 38px;
  font-weight: 600;
  margin: -9px 8px -15px;
  cursor: pointer;
}
/* line 252, ../sass/screen.sass */
.top-nav .content .right-menu .contact-tag {
  position: fixed;
  top: 0;
  right: 0;
  width: 200px;
  text-align: center;
  padding-top: 4px;
  height: 85px;
  background: #9AC43A;
  cursor: pointer;
}
/* line 262, ../sass/screen.sass */
.top-nav .content .right-menu .contact-tag::before {
  position: absolute;
  top: 0;
  left: -20px;
  width: 40px;
  height: 100%;
  background: #9AC43A;
  transform: skewX(-20deg);
  content: "";
}
@media only screen and (max-width: 992px) {
  /* line 262, ../sass/screen.sass */
  .top-nav .content .right-menu .contact-tag::before {
    display: none;
  }
}
@media only screen and (max-width: 1300px) {
  /* line 252, ../sass/screen.sass */
  .top-nav .content .right-menu .contact-tag {
    padding: 25px 0 0;
  }
}
@media only screen and (max-width: 992px) {
  /* line 252, ../sass/screen.sass */
  .top-nav .content .right-menu .contact-tag {
    padding: 14px 0 0;
  }
  /* line 277, ../sass/screen.sass */
  .top-nav .content .right-menu .contact-tag img {
    width: 28px;
  }
}
@media only screen and (max-width: 992px) {
  /* line 252, ../sass/screen.sass */
  .top-nav .content .right-menu .contact-tag {
    width: auto;
    right: 25%;
    background: transparent;
  }
}
@media only screen and (max-width: 768px) {
  /* line 252, ../sass/screen.sass */
  .top-nav .content .right-menu .contact-tag {
    right: 109px;
  }
}
/* line 285, ../sass/screen.sass */
.top-nav .content .right-menu ul {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}
/* line 288, ../sass/screen.sass */
.top-nav .content .right-menu ul li {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: inline-block;
}
/* line 291, ../sass/screen.sass */
.top-nav .content .right-menu ul li::before {
  display: none;
}
@media only screen and (max-width: 1300px) {
  /* line 288, ../sass/screen.sass */
  .top-nav .content .right-menu ul li {
    display: block;
  }
}
/* line 295, ../sass/screen.sass */
.top-nav .content .right-menu ul li a {
  display: block;
  padding: 16px;
  color: #fff;
}
/* line 299, ../sass/screen.sass */
.top-nav .content .right-menu ul li a img {
  position: relative;
  top: -3px;
  left: -3px;
}
/* line 303, ../sass/screen.sass */
.top-nav .content .nav-trigger {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  padding: 9px 0 9px 23px;
  cursor: pointer;
  border-left: 3px solid rgba(255, 255, 255, 0.4);
}
/* line 311, ../sass/screen.sass */
.top-nav .content .nav-trigger img {
  display: block;
  width: 32px;
}
/* line 315, ../sass/screen.sass */
.top-nav .content span.logo {
  display: inline-block;
  width: 160px;
  margin-right: 20px;
  position: relative;
  top: 8px;
}
@media only screen and (max-width: 992px) {
  /* line 315, ../sass/screen.sass */
  .top-nav .content span.logo {
    width: 120px;
    top: 3px;
  }
}
/* line 324, ../sass/screen.sass */
.top-nav .content nav {
  display: inline-block;
  position: relative;
  top: -10px;
}
/* line 328, ../sass/screen.sass */
.top-nav .content nav .mobile.md {
  width: 100vw;
}
/* line 330, ../sass/screen.sass */
.top-nav .content nav .mobile.md > ul {
  height: 83vh;
  overflow-y: auto;
}
/* line 333, ../sass/screen.sass */
.top-nav .content nav ul {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  list-style: none;
}
@media only screen and (max-width: 992px) {
  /* line 333, ../sass/screen.sass */
  .top-nav .content nav ul {
    position: absolute;
    top: -1600px;
    left: -30px;
    width: calc(100% + 60px);
    padding: 16px 45px 35px;
    background: #fff;
    transition: 0.4s;
  }
  /* line 342, ../sass/screen.sass */
  .top-nav .content nav ul li {
    border-bottom: 3px solid #e5e5e5;
  }
  /* line 344, ../sass/screen.sass */
  .top-nav .content nav ul li a {
    font-weight: 600 !important;
    padding: 12px 0 5px !important;
  }
}
/* line 350, ../sass/screen.sass */
.top-nav .content nav ul li {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: inline-block;
}
/* line 353, ../sass/screen.sass */
.top-nav .content nav ul li::before {
  display: none;
}
@media only screen and (max-width: 992px) {
  /* line 350, ../sass/screen.sass */
  .top-nav .content nav ul li {
    display: block;
  }
}
/* line 357, ../sass/screen.sass */
.top-nav .content nav ul li a {
  display: block;
  padding: 16px;
  color: #383838;
  font-weight: 500;
  text-transform: uppercase;
}
@media only screen and (max-width: 1400px) {
  /* line 357, ../sass/screen.sass */
  .top-nav .content nav ul li a {
    padding: 16px 9px;
  }
}
/* line 365, ../sass/screen.sass */
.top-nav .content nav ul li a:hover {
  color: #9AC43A;
}
@media only screen and (max-width: 992px) {
  /* line 357, ../sass/screen.sass */
  .top-nav .content nav ul li a {
    padding: 6px 16px;
    font-size: 21px;
  }
}
/* line 370, ../sass/screen.sass */
.top-nav .content nav ul li.menu-item-has-children {
  position: relative;
}
/* line 372, ../sass/screen.sass */
.top-nav .content nav ul li.menu-item-has-children ul.sub-menu {
  display: none;
  position: absolute;
  width: auto;
  border: 2px solid #383838;
  padding: 0;
}
/* line 378, ../sass/screen.sass */
.top-nav .content nav ul li.menu-item-has-children ul.sub-menu li {
  display: block;
}
/* line 380, ../sass/screen.sass */
.top-nav .content nav ul li.menu-item-has-children ul.sub-menu li a {
  display: block;
  padding: 3px 18px;
  background: #fff;
  white-space: nowrap;
  transition: 0.3s;
}
/* line 386, ../sass/screen.sass */
.top-nav .content nav ul li.menu-item-has-children ul.sub-menu li a:hover {
  background: #f2f2f2;
}
/* line 388, ../sass/screen.sass */
.top-nav .content nav ul li.menu-item-has-children:hover > ul.sub-menu {
  display: block;
}
@media only screen and (max-width: 992px) {
  /* line 391, ../sass/screen.sass */
  .top-nav .content nav ul li.menu-item-has-children ul.sub-menu {
    padding-left: 30px;
    display: block;
    position: static;
    border: none;
  }
  /* line 396, ../sass/screen.sass */
  .top-nav .content nav ul li.menu-item-has-children ul.sub-menu li {
    border: none;
  }
  /* line 398, ../sass/screen.sass */
  .top-nav .content nav ul li.menu-item-has-children ul.sub-menu li > a {
    font-size: 17px;
    padding: 4px 0 !important;
  }
}
@media only screen and (max-width: 992px) {
  /* line 402, ../sass/screen.sass */
  .top-nav::after {
    position: absolute;
    top: 0;
    left: 56%;
    background: #9AC43A;
    width: 60%;
    height: 100%;
    transform: skewX(-20deg);
    content: "";
  }
}

/* line 414, ../sass/screen.sass */
.top-nav.expanded .cover {
  position: fixed;
  top: 56px;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
}
/* line 421, ../sass/screen.sass */
.top-nav.expanded .navbar-nav {
  top: -4px !important;
}

/* line 425, ../sass/screen.sass */
header {
  height: 600px;
  width: 100%;
  background: #616160;
  margin-bottom: 45px;
  position: relative;
}
@media only screen and (max-width: 992px) {
  /* line 425, ../sass/screen.sass */
  header {
    height: auto;
    margin-bottom: 0;
  }
  /* line 434, ../sass/screen.sass */
  header .text-content {
    padding: 180px 0;
    position: relative;
  }
}
@media only screen and (max-width: 992px) and (max-width: 992px) {
  /* line 434, ../sass/screen.sass */
  header .text-content {
    padding: 0;
    height: 400px;
    display: flex;
    vertical-align: middle;
  }
}
@media only screen and (max-width: 992px) {
  /* line 442, ../sass/screen.sass */
  header .text-content .container {
    position: relative;
    z-index: 2;
  }
  /* line 445, ../sass/screen.sass */
  header .text-content .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: brightness(20%);
  }
}
/* line 453, ../sass/screen.sass */
header .cover-right {
  position: absolute;
  top: 0;
  left: calc(50% - 70px);
  right: 0;
  height: 650px;
  background: #616160;
  box-shadow: 0 0 15px #000;
}
/* line 461, ../sass/screen.sass */
header .header-content {
  overflow-x: hidden;
  position: relative;
  z-index: 1;
  height: 690px;
}
/* line 466, ../sass/screen.sass */
header .header-content .left,
header .header-content .right {
  position: absolute;
  top: 0;
  transform: skew(-20deg, 0);
  overflow-x: hidden;
}
/* line 472, ../sass/screen.sass */
header .header-content .left .content,
header .header-content .right .content {
  transform: skew(20deg, 0);
}
/* line 474, ../sass/screen.sass */
header .header-content .left .content.image,
header .header-content .right .content.image {
  position: relative;
  top: 0;
  left: -130px;
  width: 100%;
  height: 100%;
}
/* line 480, ../sass/screen.sass */
header .header-content .left {
  left: -120px;
  width: calc(50% + 120px);
  background: #383838;
  height: 600px;
}
/* line 485, ../sass/screen.sass */
header .header-content .left .content {
  padding: 130px 130px 0;
  color: #fff;
}
/* line 488, ../sass/screen.sass */
header .header-content .right {
  right: -125px;
  width: calc(50% + 191px);
  height: 650px;
  box-shadow: -5px -25px 30px #000;
}

/* line 496, ../sass/screen.sass */
header.default-page {
  height: 260px;
  width: 100%;
  background: #383838;
  margin-bottom: 15px;
  position: relative;
}
@media only screen and (max-width: 992px) {
  /* line 496, ../sass/screen.sass */
  header.default-page {
    height: 190px;
  }
}
/* line 504, ../sass/screen.sass */
header.default-page .cover-right {
  position: absolute;
  top: 0;
  left: calc(50% - 70px);
  right: 0;
  height: 260px;
  background: #616160;
  box-shadow: none;
}
@media only screen and (max-width: 992px) {
  /* line 504, ../sass/screen.sass */
  header.default-page .cover-right {
    height: 190px;
  }
}
/* line 514, ../sass/screen.sass */
header.default-page .header-content {
  overflow-x: hidden;
  position: relative;
  z-index: 1;
  height: 260px;
}
@media only screen and (max-width: 992px) {
  /* line 514, ../sass/screen.sass */
  header.default-page .header-content {
    height: 190px;
  }
}
/* line 521, ../sass/screen.sass */
header.default-page .header-content .left {
  position: absolute;
  top: 0;
  left: -123px;
  transform: skew(-20deg, 0);
  overflow-x: hidden;
  width: calc(50% + 127px);
  background: #383838;
  height: 260px;
}
@media only screen and (max-width: 992px) {
  /* line 521, ../sass/screen.sass */
  header.default-page .header-content .left {
    left: -55px;
    height: 190px;
    width: calc(50% + 230px);
  }
}
/* line 534, ../sass/screen.sass */
header.default-page .header-content .left .content {
  padding: 0;
  transform: skew(20deg, 0) translateY(-50%);
  color: #fff;
  color: #fff;
  position: relative;
  top: 49%;
  left: 140px;
  width: 70%;
}
@media only screen and (max-width: 1300px) {
  /* line 534, ../sass/screen.sass */
  header.default-page .header-content .left .content {
    left: 150px;
  }
  /* line 545, ../sass/screen.sass */
  header.default-page .header-content .left .content h1 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 992px) {
  /* line 534, ../sass/screen.sass */
  header.default-page .header-content .left .content {
    left: 120px;
  }
}
@media only screen and (max-width: 768px) {
  /* line 534, ../sass/screen.sass */
  header.default-page .header-content .left .content {
    left: 90px;
  }
}
/* line 551, ../sass/screen.sass */
header.default-page .header-content .left .content.image {
  position: relative;
  top: 0;
  left: -100px;
  width: 100%;
  height: 100%;
}

/* line 561, ../sass/screen.sass */
.breadcrumbs ul {
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  margin: 0 -15px 0;
}
/* line 565, ../sass/screen.sass */
.breadcrumbs ul li {
  display: inline-block;
  padding: 0 26px 0;
  border-right: 2px solid #e5e5e5;
  font-weight: 500;
}
/* line 570, ../sass/screen.sass */
.breadcrumbs ul li:last-child {
  border: none;
  color: primary;
}
/* line 573, ../sass/screen.sass */
.breadcrumbs ul li::before {
  display: none;
}
/* line 575, ../sass/screen.sass */
.breadcrumbs hr {
  margin: 15px 0;
}

/* line 579, ../sass/screen.sass */
.corner-triangle {
  position: absolute;
  top: -1px;
  left: -55px;
  width: 108px;
  height: 300px;
  z-index: 1;
  transform: skew(-20deg, 0);
}
@media only screen and (max-width: 992px) {
  /* line 579, ../sass/screen.sass */
  .corner-triangle {
    width: 43px;
  }
}

/* line 591, ../sass/screen.sass */
section {
  margin: 60px 0;
}
@media only screen and (max-width: 992px) {
  /* line 591, ../sass/screen.sass */
  section {
    margin: 30px 0;
  }
}
/* line 595, ../sass/screen.sass */
section.one {
  position: relative;
  margin-top: 45px;
  margin-bottom: 45px;
}
@media only screen and (max-width: 992px) {
  /* line 595, ../sass/screen.sass */
  section.one {
    background: #f5f5f5;
    margin-top: -25px;
    padding: 40px 0;
  }
}
/* line 605, ../sass/screen.sass */
section.one .content .square-box .image {
  z-index: 1;
  top: 60px;
  right: 0;
  width: auto;
}
/* line 610, ../sass/screen.sass */
section.one .content .square-box .corner-triangle {
  top: 59px;
}
/* line 612, ../sass/screen.sass */
section.one .left-background {
  position: absolute;
  top: 0;
  left: -15px;
  width: 50%;
  height: 100%;
}
@media only screen and (max-width: 992px) {
  /* line 618, ../sass/screen.sass */
  section.two {
    padding-top: 15px;
  }
}
/* line 621, ../sass/screen.sass */
section.two .skills {
  padding: 10px 0 30px;
}
@media only screen and (max-width: 992px) {
  /* line 621, ../sass/screen.sass */
  section.two .skills {
    padding: 30px 0 0;
  }
}
/* line 625, ../sass/screen.sass */
section.two .skills .slick-track {
  display: flex;
  gap: 30px;
}
@media only screen and (max-width: 576px) {
  /* line 625, ../sass/screen.sass */
  section.two .skills .slick-track {
    gap: 0;
  }
}
/* line 630, ../sass/screen.sass */
section.two .skills .slick-dots {
  bottom: -10px;
}
/* line 632, ../sass/screen.sass */
section.two .skills .slick-dots li::before {
  display: none;
}
/* line 635, ../sass/screen.sass */
section.two .skills .slick-dots li button::before {
  font-size: 18px;
}
/* line 638, ../sass/screen.sass */
section.two .skills .slick-dots li.slick-active button::before {
  color: #9AC43A;
}
@media only screen and (max-width: 992px) {
  /* line 641, ../sass/screen.sass */
  section.two .skills .content .square-box {
    margin-bottom: 30px;
  }
}
/* line 644, ../sass/screen.sass */
section.two .skills .content .square-box .title {
  padding: 12px 0;
  color: #fff;
  font-size: 21px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
/* line 654, ../sass/screen.sass */
section.three {
  padding: 60px 0;
}
@media only screen and (max-width: 992px) {
  /* line 654, ../sass/screen.sass */
  section.three {
    margin: 30px 0 0;
  }
}
/* line 658, ../sass/screen.sass */
section.three .text-content {
  padding-right: 120px;
}
@media only screen and (max-width: 992px) {
  /* line 658, ../sass/screen.sass */
  section.three .text-content {
    padding-right: 0;
    padding-bottom: 45px;
  }
}
/* line 663, ../sass/screen.sass */
section.three .text-content * {
  color: inherit;
}
/* line 665, ../sass/screen.sass */
section.reviews.home {
  padding: 45px 0;
  position: relative;
}
@media only screen and (max-width: 992px) {
  /* line 665, ../sass/screen.sass */
  section.reviews.home {
    padding: 30px 0 0;
    margin: 0;
  }
}
/* line 671, ../sass/screen.sass */
section.reviews.home::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  background: #f5f5f5;
  content: "";
}
/* line 679, ../sass/screen.sass */
section.reviews.home h2 {
  margin: 0 0 45px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 992px) {
  /* line 679, ../sass/screen.sass */
  section.reviews.home h2 {
    margin: 10px 0 20px;
  }
}
/* line 685, ../sass/screen.sass */
section.reviews.home .btn {
  margin-top: -15px;
}
/* line 687, ../sass/screen.sass */
section.reviews.home .content {
  position: relative;
  z-index: 1;
  width: 95%;
}
/* line 692, ../sass/screen.sass */
section.reviews.home .content .reviews-slider .slide {
  margin-bottom: 30px;
}
/* line 694, ../sass/screen.sass */
section.reviews.home .content .reviews-slider .cell {
  /*margin: 15px 0 */
}
/* line 696, ../sass/screen.sass */
section.reviews.home .content .reviews-slider .slick-dots {
  bottom: auto;
  top: 44%;
  right: -54%;
  transform: rotate(90deg);
}
/* line 702, ../sass/screen.sass */
section.reviews.home .content .reviews-slider .slick-dots li button::before {
  font-size: 14px;
  opacity: 0.9;
  color: #616160;
}
/* line 707, ../sass/screen.sass */
section.reviews.home .content .reviews-slider .slick-dots li.slick-active button::before {
  color: #9AC43A;
}
/* line 709, ../sass/screen.sass */
section.reviews.home .content .reviews-slider .slick-dots {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}
/* line 712, ../sass/screen.sass */
section.reviews.home .content .reviews-slider .slick-dots li {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* line 714, ../sass/screen.sass */
section.reviews.home .content .reviews-slider .slick-dots li::before {
  display: none;
}

@media only screen and (max-width: 992px) {
  /* line 717, ../sass/screen.sass */
  .square-box {
    overflow: unset;
  }
}

/* line 722, ../sass/screen.sass */
.review-container {
  border: 7px solid #9AC43A !important;
  padding: 25px 100px 35px;
  background: #fff;
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 992px) {
  /* line 722, ../sass/screen.sass */
  .review-container {
    padding: 30px 70px;
  }
}
@media only screen and (max-width: 768px) {
  /* line 722, ../sass/screen.sass */
  .review-container {
    padding: 30px 40px;
  }
}
/* line 734, ../sass/screen.sass */
.review-container::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 65px;
  height: 65px;
  background-color: #9AC43A;
  background-image: url("/wp-content/uploads/2023/01/quote-left-solid.svg");
  background-size: 43px;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
}
@media only screen and (max-width: 992px) {
  /* line 734, ../sass/screen.sass */
  .review-container::before {
    width: 40px;
    height: 40px;
    background-size: 25px;
  }
}
/* line 750, ../sass/screen.sass */
.review-container .text-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% - 200px);
}
@media only screen and (max-width: 992px) {
  /* line 750, ../sass/screen.sass */
  .review-container .text-content {
    width: calc(100% - 140px);
  }
}
@media only screen and (max-width: 768px) {
  /* line 750, ../sass/screen.sass */
  .review-container .text-content {
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 10px);
  }
}
/* line 761, ../sass/screen.sass */
.review-container p {
  font-size: 20px;
}
@media only screen and (max-width: 768px) {
  /* line 761, ../sass/screen.sass */
  .review-container p {
    font-size: 17px;
  }
}
/* line 765, ../sass/screen.sass */
.review-container span.title {
  display: inline-block;
  margin-top: 10px;
  font-size: 21px;
}
@media only screen and (max-width: 768px) {
  /* line 765, ../sass/screen.sass */
  .review-container span.title {
    font-size: 17px;
  }
}

/* line 779, ../sass/screen.sass */
body.services main section.services .content .service.cell,
body.expertise main section.services .content .service.cell {
  padding: 0 0 20px;
  scroll-margin: 100px;
}
/* line 782, ../sass/screen.sass */
body.services main section.services .content .service.cell h2,
body.expertise main section.services .content .service.cell h2 {
  margin: 0 0 15px;
}
/* line 784, ../sass/screen.sass */
body.services main section.services .content .service.cell p,
body.expertise main section.services .content .service.cell p {
  margin: 0 0 35px;
}
/* line 786, ../sass/screen.sass */
body.services main section.services .content .service.cell .btn,
body.expertise main section.services .content .service.cell .btn {
  margin-top: 0;
}
/* line 790, ../sass/screen.sass */
body.services main section.services .content .service.cell .row .col:first-child,
body.expertise main section.services .content .service.cell .row .col:first-child {
  padding-right: 45px;
}
@media only screen and (max-width: 992px) {
  /* line 790, ../sass/screen.sass */
  body.services main section.services .content .service.cell .row .col:first-child,
  body.expertise main section.services .content .service.cell .row .col:first-child {
    padding-right: 0;
    padding-bottom: 30px;
  }
}
/* line 795, ../sass/screen.sass */
body.services main section.services .content .service.cell .row .col:last-child,
body.expertise main section.services .content .service.cell .row .col:last-child {
  padding-left: 45px;
}
@media only screen and (max-width: 992px) {
  /* line 795, ../sass/screen.sass */
  body.services main section.services .content .service.cell .row .col:last-child,
  body.expertise main section.services .content .service.cell .row .col:last-child {
    padding-left: 0;
  }
}

/* line 803, ../sass/screen.sass */
body.reviews main section.reviews {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* line 805, ../sass/screen.sass */
body.reviews main section.reviews::after {
  display: none;
}
/* line 807, ../sass/screen.sass */
body.reviews main section.reviews .content {
  column-count: 2;
  column-gap: 45px;
}
@media only screen and (max-width: 992px) {
  /* line 807, ../sass/screen.sass */
  body.reviews main section.reviews .content {
    column-count: 1;
    column-gap: 0;
  }
}
/* line 813, ../sass/screen.sass */
body.reviews main section.reviews .content .cell {
  display: inline-block;
  border: 7px solid #9AC43A;
  padding: 60px 100px;
  margin: 0 0 22px;
  background: #fff;
  position: relative;
}
@media only screen and (max-width: 992px) {
  /* line 813, ../sass/screen.sass */
  body.reviews main section.reviews .content .cell {
    padding: 30px 70px;
  }
}
/* line 822, ../sass/screen.sass */
body.reviews main section.reviews .content .cell::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 65px;
  height: 65px;
  background-color: #9AC43A;
  background-image: url("/wp-content/uploads/2023/01/quote-left-solid.svg");
  background-size: 43px;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
}
@media only screen and (max-width: 992px) {
  /* line 822, ../sass/screen.sass */
  body.reviews main section.reviews .content .cell::before {
    width: 40px;
    height: 40px;
    background-size: 25px;
  }
}
/* line 838, ../sass/screen.sass */
body.reviews main section.reviews .content .cell span.title {
  display: inline-block;
  margin-top: 10px;
}

/* line 844, ../sass/screen.sass */
section.work .content {
  column-count: 3;
  column-gap: 45px;
}
@media only screen and (max-width: 1200px) {
  /* line 844, ../sass/screen.sass */
  section.work .content {
    column-count: 2;
    column-gap: 15px;
  }
}
@media only screen and (max-width: 768px) {
  /* line 844, ../sass/screen.sass */
  section.work .content {
    column-count: 1;
    column-gap: 0;
  }
}
/* line 853, ../sass/screen.sass */
section.work .content .box {
  display: inline-block;
  width: 100%;
  margin-bottom: 45px;
  background: #fff;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.6);
}
/* line 859, ../sass/screen.sass */
section.work .content .box .text-content {
  padding: 20px;
}
/* line 861, ../sass/screen.sass */
section.work .content .box .text-content h2 {
  margin: 3px 0 25px;
  font-size: 28px;
  line-height: 1.1;
}
/* line 865, ../sass/screen.sass */
section.work .content .box .text-content .btn {
  margin-top: 25px;
}

/* line 871, ../sass/screen.sass */
.contact h2 a {
  font-size: inherit;
  font-weight: inherit;
}

/* line 875, ../sass/screen.sass */
form label {
  color: #9AC43A;
  font-weight: 500;
}
/* line 878, ../sass/screen.sass */
form input[type="text"],
form input[type="tel"],
form input[type="email"],
form textarea,
form select {
  width: 100%;
  border: 3px solid #383838;
  height: 38px;
  padding-left: 15px;
}
/* line 887, ../sass/screen.sass */
form textarea {
  height: 200px;
  resize: none;
}
/* line 890, ../sass/screen.sass */
form input[type="submit"] {
  border: none;
  background: #383838;
  padding: 8px 16px;
  color: #fff;
  transition: 0.4s;
}
/* line 896, ../sass/screen.sass */
form input[type="submit"]:hover {
  background: #9AC43A;
}
/* line 898, ../sass/screen.sass */
form .postcode {
  max-width: 250px;
}
/* line 900, ../sass/screen.sass */
form select {
  max-width: 250px;
}

/* line 903, ../sass/screen.sass */
small.secondary {
  color: #9AC43A;
}

/* line 907, ../sass/screen.sass */
.privacy-policy-checkbox .wpcf7-list-item {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* line 912, ../sass/screen.sass */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
@media only screen and (max-width: 992px) {
  /* line 912, ../sass/screen.sass */
  .image-gallery {
    display: block;
  }
  /* line 918, ../sass/screen.sass */
  .image-gallery .image {
    margin-bottom: 15px;
  }
}

/* line 923, ../sass/screen.sass */
footer {
  background: #383838;
  overflow-x: hidden;
}
@media only screen and (max-width: 992px) {
  /* line 923, ../sass/screen.sass */
  footer {
    margin-top: 30px;
  }
}
/* line 928, ../sass/screen.sass */
footer .padding-rt {
  padding-right: 45px;
}
@media only screen and (max-width: 992px) {
  /* line 928, ../sass/screen.sass */
  footer .padding-rt {
    padding-right: 0;
  }
}
@media only screen and (max-width: 992px) {
  /* line 933, ../sass/screen.sass */
  footer .border.left {
    border: none;
    padding-left: 15px;
    padding-right: 15px;
  }
}
/* line 937, ../sass/screen.sass */
footer .content {
  position: relative;
  padding: 60px 0;
}
@media only screen and (max-width: 992px) {
  /* line 937, ../sass/screen.sass */
  footer .content {
    padding: 30px 0 0;
  }
}
/* line 942, ../sass/screen.sass */
footer .content::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: -2120px;
  width: 2000px;
  height: 100%;
  background: #616160;
  transform: skewX(-20deg);
  content: "";
}
@media only screen and (max-width: 992px) {
  /* line 942, ../sass/screen.sass */
  footer .content::before {
    display: none;
  }
}
/* line 954, ../sass/screen.sass */
footer .content::after {
  position: absolute;
  z-index: 0;
  top: 0;
  right: -2120px;
  width: 2000px;
  height: 100%;
  background: #616160;
  transform: skewX(-20deg);
  content: "";
}
@media only screen and (max-width: 992px) {
  /* line 954, ../sass/screen.sass */
  footer .content::after {
    display: none;
  }
}
/* line 966, ../sass/screen.sass */
footer .content .row {
  position: relative;
  z-index: 1;
}
/* line 969, ../sass/screen.sass */
footer .content .row h4 {
  color: #9AC43A;
}
/* line 971, ../sass/screen.sass */
footer .content .row ul {
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* line 974, ../sass/screen.sass */
footer .content .row li {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-transform: capitalize;
}
/* line 977, ../sass/screen.sass */
footer .content .row li::before {
  display: none;
}
/* line 979, ../sass/screen.sass */
footer .content .row p, footer .content .row li, footer .content .row a {
  color: #fff;
}
/* line 981, ../sass/screen.sass */
footer .content .row p {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* line 985, ../sass/screen.sass */
footer .hours ul {
  width: 130px;
  display: inline-block;
}

@media only screen and (max-width: 992px) {
  /* line 989, ../sass/screen.sass */
  .copyrights {
    padding: 8px 0;
    background: #f5f5f5;
  }
  /* line 993, ../sass/screen.sass */
  .copyrights .col {
    text-align: center;
  }
}
/* line 995, ../sass/screen.sass */
.copyrights p {
  margin: 6px 0;
}
@media only screen and (max-width: 992px) {
  /* line 995, ../sass/screen.sass */
  .copyrights p {
    margin: 3px 0;
  }
}
/* line 999, ../sass/screen.sass */
.copyrights p, .copyrights a {
  font-size: 15px;
}
@media only screen and (max-width: 992px) {
  /* line 999, ../sass/screen.sass */
  .copyrights p, .copyrights a {
    font-size: 13px;
  }
}

/* line 1005, ../sass/screen.sass */
.border.left {
  border-left: 3px solid rgba(56, 56, 56, 0.5);
  padding-left: 30px;
  /*padding-right: $gap*3 */
  padding-bottom: 30px;
}

/* line 1014, ../sass/screen.sass */
.leave-review-container {
  padding: 20px 0 30px;
  background: #EFF1F5;
  min-height: 100vh;
}
/* line 1018, ../sass/screen.sass */
.leave-review-container .content {
  margin: 10px 0 20px;
  padding: 10px 40px 60px;
}
@media only screen and (max-width: 768px) {
  /* line 1018, ../sass/screen.sass */
  .leave-review-container .content {
    padding: 10px 0px 20px;
  }
}
/* line 1023, ../sass/screen.sass */
.leave-review-container .content .inside {
  padding: 40px;
  background: #fff;
}
/* line 1026, ../sass/screen.sass */
.leave-review-container .content .inside h3 {
  margin: 0 0 25px;
}
/* line 1028, ../sass/screen.sass */
.leave-review-container .content .inside img {
  height: auto;
}
@media only screen and (max-width: 768px) {
  /* line 1023, ../sass/screen.sass */
  .leave-review-container .content .inside {
    padding: 30px;
  }
}
/* line 1034, ../sass/screen.sass */
.leave-review-container .content .inside .row:nth-of-type(1) .col:nth-of-type(2) {
  max-width: 300px;
  margin: auto;
}
/* line 1037, ../sass/screen.sass */
.leave-review-container .content .inside .arrow-container {
  padding-top: 65px;
}
@media only screen and (max-width: 992px) {
  /* line 1037, ../sass/screen.sass */
  .leave-review-container .content .inside .arrow-container {
    display: none;
  }
}
/* line 1041, ../sass/screen.sass */
.leave-review-container .content .inside .arrow-container img {
  width: 100px;
  height: auto;
}
/* line 1044, ../sass/screen.sass */
.leave-review-container .content .inside .row:nth-of-type(2) {
  padding-top: 50px;
}
@media only screen and (max-width: 768px) {
  /* line 1044, ../sass/screen.sass */
  .leave-review-container .content .inside .row:nth-of-type(2) {
    padding-top: 30px;
  }
}
/* line 1048, ../sass/screen.sass */
.leave-review-container .content .inside .row.footer {
  padding-top: 50px;
}
@media only screen and (max-width: 768px) {
  /* line 1048, ../sass/screen.sass */
  .leave-review-container .content .inside .row.footer {
    padding-top: 30px;
  }
}
/* line 1052, ../sass/screen.sass */
.leave-review-container .content .inside .row.footer img {
  width: auto;
  height: auto;
}
/* line 1055, ../sass/screen.sass */
.leave-review-container .content .inside .row.footer .col:nth-of-type(1) {
  padding-top: 12px;
}
/* line 1057, ../sass/screen.sass */
.leave-review-container .content .inside .row.footer .col:nth-of-type(1) img {
  height: 90px;
}
/* line 1060, ../sass/screen.sass */
.leave-review-container .content .inside .row.footer .col:nth-of-type(2) img {
  margin-top: 10px;
  height: 80px;
}
/* line 1063, ../sass/screen.sass */
.leave-review-container .content .inside .btn.btn-primary {
  margin-top: 30px;
  border-radius: 6px;
  padding: 12px;
  width: 100%;
  text-align: center;
  font-size: 17px;
}
/* line 1070, ../sass/screen.sass */
.leave-review-container .content .inside .no-wrap {
  display: flex;
}
/* line 1072, ../sass/screen.sass */
.leave-review-container .content .inside .no-wrap .col {
  padding: 0 30px;
}
@media only screen and (max-width: 768px) {
  /* line 1072, ../sass/screen.sass */
  .leave-review-container .content .inside .no-wrap .col {
    padding: 0 10px;
  }
}
/* line 1076, ../sass/screen.sass */
.leave-review-container .content .inside .button-container {
  text-align: center;
  padding: 10px 0;
}
/* line 1079, ../sass/screen.sass */
.leave-review-container .content .inside .button-container .btn {
  margin: 0 auto 20px;
  width: max-content;
  max-width: 100%;
  display: block;
}
/* line 1084, ../sass/screen.sass */
.leave-review-container .content .inside .border-left {
  border-left: 3px solid #e5e5e5;
}

/* line 1088, ../sass/screen.sass */
.popup-button {
  position: fixed;
  z-index: 99;
  bottom: 65px;
  right: -300px;
  opacity: 0;
  padding: 20px;
  background: #17b447;
  transition: 1s;
  box-shadow: 7px 3px 6px rgba(51, 51, 51, 0.4);
}
@media only screen and (max-width: 768px) {
  /* line 1088, ../sass/screen.sass */
  .popup-button {
    padding: 14px;
    bottom: 55px;
  }
}
/* line 1101, ../sass/screen.sass */
.popup-button a, .popup-button a:visited, .popup-button a:active, .popup-button a:hover {
  color: #fff;
  font-weight: inherit;
}

/* line 1105, ../sass/screen.sass */
body.popup-active .popup-button {
  right: 0;
  opacity: 1;
}
