h1,
h2,
h3,
h4,
h5,
h6,
p,
nav,
li,
a {
  font-family: "Roboto", sans-serif;
  color: #36474f;
  transition: all 0.3s ease 0s;
}

ul li {
  font-size: 14px;
}

h1 {
  color: #ffffff;
}

h2 {
  font-weight: 600;
  color: #36474f;
}

h3 {
  color: #36474f;
  font-weight: 500;
}

h4 {
  color: #36474f;
}

h5 {
  font-weight: 600;
  color: #36474f;
}

p {
  color: #36474f;
}

input {
  border: solid 1px #36474f;
}

input.textarea {
  height: 250px;
}

input::placeholder {
  color: #36474f;
  font-size: 12px;
  margin: 0;
}

.button.secondary:hover {
  background-color: #49bb80;
}

a:hover {
  color: #49bb80;
}

a:link {
  color: #36474f;
}

.button.primary {
  background-color: transparent;
  border: solid 1px #ffffff;
  color: #ffffff;
}
.button.primary:hover {
  background-color: #49bb80;
}

.button.secondary {
  background-color: transparent;
  border: solid 1px #36474f;
  color: #36474f;
}

.button.green {
  background-color: #49bb80;
  border: solid 1px #ffffff;
  color: #ffffff;
}

.outer-container {
  max-width: 1250px;
}

.inner-container {
  max-width: 1160px;
}

body.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

.sweet-overlay {
  background-color: black;
  /* IE8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  /* IE8 */
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 10000;
}

.sweet-alert {
  background-color: white;
  width: 478px;
  padding: 17px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -256px;
  margin-top: -200px;
  overflow: hidden;
  display: none;
  z-index: 99999;
}

@media all and (max-width: 540px) {
  .sweet-alert {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    left: 15px;
    right: 15px;
  }
}
.sweet-alert h2 {
  color: #575757;
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  text-transform: none;
  position: relative;
  margin: 25px 0;
  padding: 0;
  line-height: 40px;
  display: block;
}

.sweet-alert p {
  color: #797979;
  font-size: 16px;
  text-align: center;
  font-weight: 300;
  position: relative;
  text-align: inherit;
  float: none;
  margin: 0;
  padding: 0;
  line-height: normal;
}

.sweet-alert fieldset {
  border: none;
  position: relative;
}

.sweet-alert .sa-error-container {
  background-color: #f1f1f1;
  margin-left: -17px;
  margin-right: -17px;
  overflow: hidden;
  padding: 0 10px;
  max-height: 0;
  webkit-transition: padding 0.15s, max-height 0.15s;
  transition: padding 0.15s, max-height 0.15s;
}

.sweet-alert .sa-error-container.show {
  padding: 10px 0;
  max-height: 100px;
  webkit-transition: padding 0.2s, max-height 0.2s;
  transition: padding 0.25s, max-height 0.25s;
}

.sweet-alert .sa-error-container .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ea7d7d;
  color: white;
  line-height: 24px;
  text-align: center;
  margin-right: 3px;
}

.sweet-alert .sa-error-container p {
  display: inline-block;
}

.sweet-alert .sa-input-error {
  position: absolute;
  top: 29px;
  right: 26px;
  width: 20px;
  height: 20px;
  opacity: 0;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.sweet-alert .sa-input-error::before, .sweet-alert .sa-input-error::after {
  content: "";
  width: 20px;
  height: 6px;
  background-color: #f06e57;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  left: 50%;
  margin-left: -9px;
}

.sweet-alert .sa-input-error::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.sweet-alert .sa-input-error::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sweet-alert .sa-input-error.show {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.sweet-alert input {
  width: 100%;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #d7d7d7;
  height: 43px;
  margin-top: 10px;
  margin-bottom: 17px;
  font-size: 18px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.06);
  padding: 0 12px;
  display: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sweet-alert input:focus {
  outline: none;
  box-shadow: 0px 0px 3px #c4e6f5;
  border: 1px solid #b4dbed;
}

.sweet-alert input:focus::-moz-placeholder {
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}

.sweet-alert input:focus:-ms-input-placeholder {
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}

.sweet-alert input:focus::-webkit-input-placeholder {
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}

.sweet-alert input::-moz-placeholder {
  color: #bdbdbd;
}

.sweet-alert input:-ms-input-placeholder {
  color: #bdbdbd;
}

.sweet-alert input::-webkit-input-placeholder {
  color: #bdbdbd;
}

.sweet-alert.show-input input {
  display: block;
}

.sweet-alert button {
  background-color: #AEDEF4;
  color: white;
  border: none;
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  -webkit-border-radius: 4px;
  border-radius: 5px;
  padding: 10px 32px;
  margin: 26px 5px 0 5px;
  cursor: pointer;
}

.sweet-alert button:focus {
  outline: none;
  box-shadow: 0 0 2px rgba(128, 179, 235, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.sweet-alert button:hover {
  background-color: #a1d9f2;
}

.sweet-alert button:active {
  background-color: #81ccee;
}

.sweet-alert button.cancel {
  background-color: #D0D0D0;
}

.sweet-alert button.cancel:hover {
  background-color: #c8c8c8;
}

.sweet-alert button.cancel:active {
  background-color: #b6b6b6;
}

.sweet-alert button.cancel:focus {
  box-shadow: rgba(197, 205, 211, 0.8) 0px 0px 2px, rgba(0, 0, 0, 0.0470588) 0px 0px 0px 1px inset !important;
}

.sweet-alert button::-moz-focus-inner {
  border: 0;
}

.sweet-alert[data-has-cancel-button=false] button {
  box-shadow: none !important;
}

.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
  padding-bottom: 40px;
}

.sweet-alert .sa-icon {
  width: 80px;
  height: 80px;
  border: 4px solid gray;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  margin: 20px auto;
  padding: 0;
  position: relative;
  box-sizing: content-box;
}

.sweet-alert .sa-icon.sa-error {
  border-color: #F27474;
}

.sweet-alert .sa-icon.sa-error .sa-x-mark {
  position: relative;
  display: block;
}

.sweet-alert .sa-icon.sa-error .sa-line {
  position: absolute;
  height: 5px;
  width: 47px;
  background-color: #F27474;
  display: block;
  top: 37px;
  border-radius: 2px;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 17px;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 16px;
}

.sweet-alert .sa-icon.sa-warning {
  border-color: #F8BB86;
}

.sweet-alert .sa-icon.sa-warning .sa-body {
  position: absolute;
  width: 5px;
  height: 47px;
  left: 50%;
  top: 10px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #F8BB86;
}

.sweet-alert .sa-icon.sa-warning .sa-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-left: -3px;
  left: 50%;
  bottom: 10px;
  background-color: #F8BB86;
}

.sweet-alert .sa-icon.sa-info {
  border-color: #C9DAE1;
}

.sweet-alert .sa-icon.sa-info::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 29px;
  left: 50%;
  bottom: 17px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #C9DAE1;
}

.sweet-alert .sa-icon.sa-info::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  top: 19px;
  background-color: #C9DAE1;
}

.sweet-alert .sa-icon.sa-success {
  border-color: #A5DC86;
}

.sweet-alert .sa-icon.sa-success::before, .sweet-alert .sa-icon.sa-success::after {
  content: "";
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  position: absolute;
  width: 60px;
  height: 120px;
  background: white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sweet-alert .sa-icon.sa-success::before {
  -webkit-border-radius: 120px 0 0 120px;
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 60px 60px;
  transform-origin: 60px 60px;
}

.sweet-alert .sa-icon.sa-success::after {
  -webkit-border-radius: 0 120px 120px 0;
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 0px 60px;
  transform-origin: 0px 60px;
}

.sweet-alert .sa-icon.sa-success .sa-placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(165, 220, 134, 0.2);
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2;
}

.sweet-alert .sa-icon.sa-success .sa-fix {
  width: 5px;
  height: 90px;
  background-color: white;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.sweet-alert .sa-icon.sa-success .sa-line {
  height: 5px;
  background-color: #A5DC86;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  width: 25px;
  left: 14px;
  top: 46px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  width: 47px;
  right: 8px;
  top: 38px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.sweet-alert .sa-icon.sa-custom {
  background-size: contain;
  border-radius: 0;
  border: none;
  background-position: center center;
  background-repeat: no-repeat;
}

@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
}
/*
ul {
  list-style-type: none;
  a {
    color: $white;
    li {
      display: inline-block;
      position: relative;
    }
  }
}
*/
.topo-background {
  background-image: url("../img/background.png");
  background-repeat: repeat;
  background-position-y: top;
}

.buffer {
  position: relative;
}

header {
  height: 100px;
  background-image: url("../img/background.png");
  background-repeat: repeat;
  background-position-y: bottom;
  width: 100%;
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 999;
}
header .logo-container {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9999;
}
header .logo-container .logo {
  display: block;
  background-image: url("../img/logo.png");
  height: 100px;
  width: 250px;
  background-position: center;
  background-size: cover;
  margin-left: 20px;
}
header .company-name h1 {
  font-size: 20px;
  padding-left: 10px;
  margin: 5px 0 0 0;
  position: relative;
}

.menuopen .header header span:nth-child(1) {
  transform: rotate(45deg) translateX(5px) translateY(5px);
}
.menuopen .header header span:nth-child(2) {
  transform: rotate(-45deg) translateX(0px) translateY(0px);
}
.menuopen .header header span:nth-child(3) {
  opacity: 0;
}
.menuopen .header header nav.menu {
  transform: translate3d(0%, 0, 0);
  box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.5);
}

.hide-on-desktop {
  display: none;
}

nav {
  position: relative;
  display: inline-block;
  text-align: right;
  top: 50%;
  transform: translateY(-50%);
}
nav .grid-x {
  width: 100%;
}
nav .menu {
  float: right;
  max-width: 700px;
  z-index: 988;
}
nav .menu li {
  display: inline-block;
}
nav .menu li a {
  padding: 15px 20px;
  color: #ffffff;
  transition: all 0.3s ease 0s;
}
nav .menu i {
  font-size: 20px;
}
nav .menu a:hover {
  color: #49bb80;
}
nav .menu li:last-child a {
  padding-right: 0;
}
nav .bottom {
  border-top: solid 1px #ffffff;
}
nav .bottom ul li:last-child a {
  padding-right: 0;
}

nav.mob-menu {
  display: none;
}
nav.mob-menu i {
  color: #ffffff;
  font-size: 40px;
  margin-right: 10px;
}

a.mobilemenu {
  display: none;
}

header .menu .search-container {
  margin: auto 0;
  position: relative;
  width: 0;
  overflow-x: hidden;
  transition: all 0.3s ease 0s;
}
header .menu .search-container #searchform input {
  display: inline-block;
  white-space: nowrap;
}
header .menu .search-container #searchform input[type=text] {
  border: solid 2px #49bb80;
  background: #36474f;
  color: #fff;
  width: 90%;
  margin-right: 20%;
}
header .menu .search-container #searchform input::placeholder {
  color: #fff;
  font-size: 16px;
}
header .menu .search-container.open {
  width: 290px;
}

#searchsubmit {
  position: absolute;
  display: inline-block;
  white-space: nowrap;
  top: 0;
  bottom: 0;
  left: 90%;
  cursor: pointer;
}
#searchsubmit i {
  color: #fff;
  margin-left: 10px;
  transition: all 0.3s ease 0s;
}
#searchsubmit:hover i {
  color: #49bb80;
}

.hero {
  height: calc(100vh - 100px);
  background-position: center;
  background-size: cover;
}
.hero .bx-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  max-width: 1910px !important;
  margin: 0px auto;
}
.hero ul {
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero ul li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  transition: none;
}
.hero .grid-container {
  position: relative;
  z-index: 2;
}

.hero-container {
  position: absolute;
  height: calc(100vh - 100px);
  max-width: calc(-100px + 1050px/2);
}
.hero-container .hero-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
}
.hero-container .hero-content h1 {
  font-size: 26px;
  line-height: 38px;
  font-weight: 300;
  margin-bottom: 40px;
  padding-right: 30px;
}
.hero-container .hero-content h1 b {
  font-weight: 400;
}
.hero-container .hero-content .button {
  padding: 15px 20px;
  font-weight: 400;
}
.hero-container .hero-opaque {
  height: calc(100vh - 100px);
  max-width: 770px;
  min-width: 770px;
  background-color: #36474f;
  opacity: 0.8;
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
}

.landing-info {
  padding-top: 20px;
}
.landing-info .container {
  position: relative;
  height: 400px;
}
.landing-info .container .content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
  padding-left: 15%;
}
.landing-info .container .content p {
  margin-bottom: 35px;
}
.landing-info .container .content button {
  font-weight: 600;
  padding: 15px 20px;
}
.landing-info .container-map {
  position: relative;
  height: 400px;
}
.landing-info .container-map .map {
  background-image: url("../img/map.png");
  background-position: center;
  background-size: cover;
  height: 400px;
}

.mapcontainer {
  position: relative;
  z-index: 25;
}

.imgmap {
  position: relative;
  z-index: 1;
}
.imgmap .tt {
  width: 20px;
  height: 20px;
  position: absolute;
}
.imgmap .toggle {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  background: #49bb80;
}
.imgmap .ttin {
  width: 300px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.imgmap h4 {
  font-size: 20px;
  color: #49bb80;
  font-weight: bold;
  margin: 0 0 10px;
}
.imgmap .tt.rightaligned .ttin {
  margin-left: -280px;
}
.imgmap .tt.open {
  z-index: 10;
}
.imgmap .tt.open .ttin {
  opacity: 1;
  z-index: 10;
  visibility: visible;
}
.imgmap p {
  margin: 0;
}
.imgmap p a:hover, .imgmap p a:focus, .imgmap p a:visited {
  text-decoration: underline;
}

.cards {
  position: relative;
  margin-top: 150px;
  min-height: 500px;
}
.cards .background-strip {
  position: absolute;
  background-image: url("../img/background.png");
  background-repeat: repeat;
  height: 300px;
  margin-top: 200px;
  width: 100%;
  z-index: 20;
}
.cards .home-cards {
  position: relative;
  background-color: #ffffff;
  padding: 0;
}
.cards .home-cards .card {
  position: relative;
  padding: 0;
  max-width: 330px;
  z-index: 21;
  transition: all 0.5s ease 0s;
}
.cards .home-cards .card .content {
  margin-top: 30px;
  padding: 30px 30px;
  display: inline-block;
  position: relative;
}
.cards .home-cards .card .content h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 20px;
}
.cards .home-cards .card .content p {
  font-size: 14px;
}
.cards .home-cards .card .content span {
  color: #36474f;
  color: #49bb80;
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  float: left;
  transition: all 0.5s ease 0s;
  white-space: nowrap;
  margin-right: 0px;
}
.cards .home-cards .card .content::before {
  content: "";
  position: absolute;
  border-top: solid 1px black;
  top: 0;
  width: 30px;
}
.cards .home-cards .card:hover {
  background-color: #ebeff2;
}
.cards .home-cards .card:hover .content span {
  max-width: 150px;
  margin-right: 10px;
}
.cards .home-cards .image {
  min-height: 200px;
  background-position: center;
  background-size: cover;
}

.news-container {
  margin-top: 50px;
}
.news-container h2 {
  padding: 30px 0 50px 0;
  font-size: 20px;
  font-weight: 400;
}
.news-container .news {
  display: inline-block;
  position: relative;
  margin: 50px 0;
  height: auto;
}
.news-container .news .entry {
  background-color: #fafafa;
  height: 250px;
  margin: 20px 0;
}
.news-container .news .entry .image {
  position: relative;
  background-position: center;
  background-size: cover;
  height: 250px;
}
.news-container .news .entry .image .post-date {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #36474f;
}
.news-container .news .entry .image .post-date h6 {
  color: #ffffff;
  padding: 7px 30px;
  margin: 0;
}
.news-container .news .entry .content {
  padding: 40px 30px;
}
.news-container .news .entry .content h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 900;
}
.news-container .news .entry .content p {
  overflow-y: hidden;
  font-size: 14px;
}
.news-container .news .entry .content i {
  color: #36474f;
}
.news-container .news::before {
  content: "";
  position: absolute;
  border-top: solid 2px rgb(179, 179, 179);
  top: 0;
  width: 30px;
}
.news-container .catagories {
  display: inline-block;
  position: relative;
  padding-left: 10px;
  height: 600px;
  margin-top: 50px;
}
.news-container .catagories h2:first-child {
  color: #49bb80;
}
.news-container .catagories ul {
  margin: 0;
  padding-top: 20px;
  margin-left: 20px;
  height: inherit;
  overflow-y: scroll;
}
.news-container .catagories ul li {
  padding: 8px 0;
}
.news-container .catagories ul li a {
  color: black;
}
.news-container .catagories ul ul.submenu {
  padding: 8px 0 0 20px;
  background-color: #fafafa;
}
.news-container .catagories ul ul.submenu li a {
  color: #36474f;
}
.news-container .catagories::before {
  content: "";
  position: absolute;
  border-top: solid 2px rgb(179, 179, 179);
  top: 0;
  width: 30px;
}
.news-container.notitle .news::before {
  display: none;
}
.news-container.notitle .news {
  margin-top: 0;
}
.news-container.notitle .catagories {
  margin-top: 20px;
}
.news-container.notitle .catagories h2 {
  padding-bottom: 0px;
}

.testimonials {
  background-position: center;
  background-size: cover;
  position: relative;
  height: 680px;
}
.testimonials .testimonial-container {
  min-height: 200px;
  max-width: 700px;
  margin-right: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
}
.testimonials .testimonial-container .content-container {
  margin: 40px 80px;
}
.testimonials .testimonial-container .content-container h2 {
  padding: 20px 0;
  border-top: solid 2px #fafafa;
  font-size: 20px;
  font-weight: 900;
}
.testimonials .testimonial-container .content-container h2::before {
  margin: 40px 0;
  content: "";
  position: absolute;
  border-top: solid 1px black;
  top: 0;
  width: 30px;
}
.testimonials .testimonial-container .content-container p.content {
  margin: -5px 0 30px 0;
}
.testimonials .testimonial-container .content-container .icon {
  position: absolute;
  width: 35px;
  height: 35px;
  background-color: #36474f;
  border-radius: 100%;
  margin-left: -55px;
}
.testimonials .testimonial-container .content-container .icon i {
  color: white;
  font-size: 8px;
  padding-left: 13px;
}
.testimonials .testimonial-container .content-container p.name, .testimonials .testimonial-container .content-container p.company {
  margin: 0;
  max-width: 200px;
}
.testimonials .testimonial-container .content-container p {
  font-size: 14px;
}
.testimonials .testimonial-container .content-container p.name {
  font-weight: 900;
  font-size: 24px;
}
.testimonials .testimonial-container .button {
  float: right;
  padding: 20px 40px;
  font-weight: 600;
}

footer {
  margin: 40px 0 0 0;
  position: relative;
}
footer ul {
  margin: 0;
}
footer ul li {
  list-style: none;
}
footer .footer-social {
  margin-bottom: 40px;
}
footer .footer-social h5 {
  padding: 20px 0;
  font-weight: 900;
}
footer .footer-social h5::before {
  content: "";
  position: absolute;
  border-top: solid 1px black;
  top: 0;
  width: 30px;
}
footer .footer-social ul {
  margin: 0;
}
footer .footer-social .sitemap ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: 125px;
}
footer .footer-social .sitemap ul a li {
  color: #36474f;
  font-size: 15px;
  transition: all 0.3s ease 0s;
}
footer .footer-social .sitemap ul a li:hover {
  color: #49bb80;
}
footer .footer-social .social i {
  float: left;
  color: #36474f;
  margin: 5px 20px 0 0;
}
footer .footer-social .social li {
  font-size: 15px;
  margin: 0 0 11px 0;
  color: #36474f;
  transition: all 0.3s ease 0s;
}
footer .footer-social .social li:hover {
  color: #49bb80;
}
footer .footer-social .newsletter {
  position: relative;
}
footer .footer-social .newsletter .t-and-c {
  vertical-align: middle;
}
footer .footer-social .newsletter #terms {
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
}
footer .footer-social .newsletter input {
  padding: 20px;
  border: solid 1px #36474f;
  margin-bottom: 5px;
}
footer .footer-social .newsletter input::placeholder {
  color: #36474f;
}
footer .footer-social .newsletter button {
  float: right;
  margin: 0;
}
footer .footer-social .newsletter label {
  line-height: 18px;
  color: #36474f;
  font-size: 12px;
}
footer .footer-social .newsletter label a {
  color: #49bb80;
  text-decoration: underline;
}
footer .footer-locations {
  margin-top: 40px;
  padding: 50px 0px;
  background-color: #fafafa;
}
footer .footer-locations .location {
  height: 300px;
  min-width: 200px;
  max-width: 300px;
  transition: all 0.3s ease 0s;
}
footer .footer-locations .location h4 {
  background-color: #36474f;
  color: #ffffff;
  padding: 10px 15px;
  font-size: 20px;
  font-weight: 500;
}
footer .footer-locations .location h4 i {
  font-size: 15px;
  float: right;
  line-height: 30px;
}
footer .footer-locations .location h4 i.mobile {
  display: none;
}
footer .footer-locations .location p {
  word-break: break-word;
  padding: 15px;
  font-size: 14px;
}
footer .footer-locations .location p a {
  font-size: 12px;
  color: #36474f;
}
footer .footer-locations .location p.post-code {
  display: none;
  font-size: 15px;
  color: #36474f;
}
footer .footer-locations .location:hover {
  background-color: #ffffff;
}
footer .footer-bottom {
  background-image: url("../img/background.png");
  background-repeat: repeat;
  color: #ffffff;
  padding: 30px 0;
  position: relative;
}
footer .footer-bottom .content {
  position: relative;
}
footer .footer-bottom .content p {
  padding: 0;
  margin: 0;
  color: #ffffff;
}
footer .footer-bottom .content ul {
  margin: 0;
  margin-top: 10px;
}
footer .footer-bottom .content ul li {
  display: inline-block;
  position: relative;
  max-width: 200px;
  vertical-align: text-top;
  margin: 0 30px 0 0;
  font-size: 14px;
  font-weight: 400;
}
footer .footer-bottom .content ul li a {
  transition: all 0.3s ease 0s;
  color: #fff;
  padding: 0;
}
footer .footer-bottom .content ul li a:hover {
  color: #49bb80;
}
footer .footer-bottom .content .logo {
  position: relative;
}
footer .footer-bottom .content .logo .vc-logo {
  position: absolute;
  height: 40px;
  width: 140px;
  right: 0;
  background-position: center;
  background-size: cover;
}

.title {
  background-color: #36474f;
}
.title .location {
  margin: 20px 40px;
}
.title .location h2 {
  background-color: #ffffff;
  width: fit-content;
  padding: 10px 20px;
  color: #36474f;
}
.title .location a {
  background-color: #49bb80;
  color: #ffffff;
  padding: 10px 20px;
}
.title .location a i {
  margin-right: 20px;
}
.title .location a span {
  font-weight: bold;
}

.banner {
  background-color: #49bb80;
  min-height: 50px;
  margin: 20px 0;
  color: #ffffff;
}
.banner .content {
  padding: 10px 20px;
  position: relative;
}
.banner .content .icon {
  position: absolute;
  margin-left: 10px;
  top: 50%;
  transform: translateY(-50%);
  height: 35px;
  width: 35px;
  border-radius: 100%;
  background-color: #ffffff;
}
.banner .content .icon i {
  color: #49bb80;
  padding: 8px 14px;
  font-size: 20px;
}
.banner .content .right {
  right: 20px;
  background-color: #49bb80;
}
.banner .content .right i {
  padding: 0px;
  color: #ffffff;
  font-size: 40px;
}
.banner .content .announcement-content {
  margin: 0 10px;
}
.banner .content .announcement-content h3 {
  margin: 0;
  font-size: 24px;
  color: #ffffff;
}
.banner .content .announcement-content p {
  margin: 0;
  font-weight: 300;
  font-size: 20px;
  color: #ffffff;
}
.banner .content .announcement-content p a {
  color: #ffffff;
  text-decoration: underline;
}

.location-content {
  margin: 0 -15px;
}
.location-content .content p.below {
  margin-left: 15px;
  font-weight: 400;
  font-size: 14px;
}
.location-content .content .image {
  background-image: url("https://via.placeholder.com/800x500.png?text=Image");
  background-position: center;
  background-size: cover;
  height: 500px;
  margin-left: -100px;
  margin-bottom: 40px;
}

.social-buttons {
  margin: 30px 0;
}
.social-buttons .link .link-content {
  margin: 15px 0 0 0;
  padding: 10px 20px;
  position: relative;
  background-color: #49bb80;
}
.social-buttons .link .link-content a {
  color: #ffffff;
}
.social-buttons .link .link-content i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
}
.social-buttons .link .link-content p {
  margin: 0;
  padding-left: 50px;
  color: #ffffff;
  font-weight: 300;
}
.social-buttons .link .link-content p span {
  font-weight: bold;
}

.downloads {
  padding: 0 20px;
}
@media screen and (min-width: 640px) {
  .downloads .download:nth-child(2n) .download-content {
    padding-left: 20px;
  }
}
.downloads .download .download-content {
  margin: 30px 0 0px 0px;
  position: relative;
  border-top: solid 1px #36474f;
  padding: 20px 0 0 0;
}
.downloads .download .download-content p {
  margin: 0;
  font-weight: 600;
  padding-right: 20px;
}
.downloads .download .download-content i {
  position: absolute;
  padding-top: 20px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.contacts {
  margin: 20px 0;
  padding: 0 20px;
}
.contacts .employee .employee-content {
  position: relative;
  margin: 15px 0 0 0px;
  background-color: #fafafa;
  padding: 20px;
}
.contacts .employee .employee-content h4 {
  font-weight: 600;
  margin: 0;
}
.contacts .employee .employee-content h5 {
  font-weight: 400;
  margin: 0 0 20px 0;
}
.contacts .employee .employee-content p {
  position: relative;
  margin: 0 0 10px 0;
}
.contacts .employee .employee-content p i {
  position: absolute;
  font-size: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.contacts .employee .employee-content span {
  margin-left: 40px;
}
.contacts .employee .employee-content span span.bold {
  margin-left: 0;
  font-weight: bold;
}

.form, .wpcf7 {
  margin: 30px 0 50px 0px;
}
.form h3, .wpcf7 h3 {
  font-size: 26px;
  position: relative;
  padding: 20px 0 0 0;
  margin: 0 0 40px 0;
}
.form h3::before, .wpcf7 h3::before {
  content: "";
  position: absolute;
  border-top: solid 1px black;
  top: 0;
  width: 30px;
}
.form button, .wpcf7 button {
  float: right;
  font-weight: 400;
  font-size: 16px;
  padding: 15px 40px;
}
.form input, .form textarea, .wpcf7 input, .wpcf7 textarea {
  border: solid 1px #36474f;
}
.form textarea, .wpcf7 textarea {
  height: 250px;
}
.form input::placeholder, .form txetarea::placeholder, .wpcf7 input::placeholder, .wpcf7 txetarea::placeholder {
  color: #36474f;
  font-size: 12px;
  margin: 0;
}

.address .content {
  background-color: #fafafa;
}
.address .content .map {
  background-position: center;
  background-size: cover;
  height: 250px;
  margin: 0;
  position: relative;
}
.address .content .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.address .content .map .map-link {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #36474f;
}
.address .content .map .map-link p {
  color: #ffffff;
  padding: 10px;
  margin: 0;
  font-weight: 400;
}
.address .content .map .map-link p i {
  margin-right: 15px;
}
.address .content .details {
  padding: 50px;
}
.address .content .details h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
}
.address .content .details h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 0px 0;
  position: relative;
}
.address .content .details h4 .number-text {
  position: absolute;
}
.address .content .details h4 .number {
  margin-left: 70px;
  font-weight: 300;
  font-size: 16px;
}
.address .content .details h4.number-content {
  line-height: 30px;
  margin-bottom: 10px;
}
.address .content .details h5 {
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  margin: 0 0 20px 0;
}
.address .content .details h5 a {
  margin-left: 30px;
}

.title .location h2 {
  font-size: 28px;
  font-weight: 900;
}

.person .content {
  margin: 70px 0 0 0;
  position: relative;
}
.person .content h3 {
  padding: 25px 0 0 0;
  font-weight: 900;
}
.person .content h3::before {
  content: "";
  position: absolute;
  border-top: solid 2px rgb(179, 179, 179);
  top: 0;
  width: 30px;
}
.person .content h4 {
  margin: 30px 0 0 0;
  font-size: 22px;
}
.person .content p {
  margin: 30px 0 0 0;
  font-size: 14px;
}
.person .content .qualifications {
  position: relative;
  margin: 50px 0 0 0;
  padding: 30px 0;
}
.person .content .qualifications h5 {
  font-weight: 900;
}
.person .content .qualifications h5:before {
  content: "";
  position: absolute;
  border-top: solid 1px black;
  top: 0;
  width: 30px;
}
.person .content .qualifications ul {
  padding: 30px 0;
  list-style-type: disc;
}
.person .content .qualifications ul li {
  font-size: 14px;
  margin-bottom: 10px;
}

.personprofile {
  margin: 40px 0;
  background-color: #fafafa;
  max-width: 400px;
}
.personprofile .image {
  height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.personprofile .details {
  padding: 30px;
}
.personprofile .details i {
  margin-right: 30px;
}
.personprofile .details p {
  margin: 0;
}
.personprofile .details .phone {
  position: relative;
}
.personprofile .details .phone p {
  position: relative;
  margin-bottom: 10px;
  font-weight: 900;
}
.personprofile .details .phone p span {
  position: absolute;
  left: 60px;
  font-weight: 300;
}
.personprofile .details .social {
  position: relative;
  margin-top: 40px;
}
.personprofile .details .social p {
  position: relative;
  margin-bottom: 10px;
  font-weight: 900;
}
.personprofile .details .social p i {
  font-size: 24px;
}
.personprofile .details .social p span {
  position: absolute;
  left: 60px;
  font-weight: 300;
}

.image-and-text {
  background-position: center;
  background-size: cover;
  background-image: linear-gradient(to right, rgba(255, 0, 0, 0), rgb(255, 0, 0));
  position: relative;
  height: 680px;
}
.image-and-text.hasmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.image-and-text .image-and-text-container {
  min-height: 200px;
  max-width: 400px;
  margin-right: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
}
.image-and-text .image-and-text-container .content-container {
  margin: 40px 30px;
}
.image-and-text .image-and-text-container .content-container h2 {
  padding: 20px 0;
  font-size: 20px;
  font-weight: 900;
}
.image-and-text .image-and-text-container .content-container h2::before {
  margin: 40px 0;
  content: "";
  position: absolute;
  border-top: solid 1px black;
  top: 0;
  width: 30px;
}
.image-and-text .image-and-text-container .content-container p.content {
  margin: -5px 0 30px 0;
}
.image-and-text .image-and-text-container .content-container p.name, .image-and-text .image-and-text-container .content-container p.company {
  margin: 0;
  max-width: 200px;
}
.image-and-text .image-and-text-container .content-container p {
  font-size: 14px;
}
.image-and-text .image-and-text-container .content-container p.name {
  font-weight: 900;
  font-size: 24px;
}
.image-and-text .image-and-text-container button {
  float: left;
  padding: 20px 40px;
}

.singlenewscontent .pagecontent:first-child {
  margin-top: 20px;
}

.wp-block-column .grid-container {
  padding: 0;
}

.wp-block-buttons .button {
  background-color: transparent;
}

svg {
  max-width: 500px;
}
svg g.locale path, svg g.locale rect {
  fill: #fafafa;
  fill-rule: nonzero;
  stroke: #90a4ae;
  stroke-width: 0.82px;
  transition: all 0.3s ease 0s;
}
svg g.locale:hover path, svg g.locale:hover rect {
  fill: #49bb80;
  fill-rule: nonzero;
  stroke: #49bb80;
  stroke-width: 0.82px;
  cursor: pointer;
}

.content-behind {
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease 0s;
}
.content-behind.hidden {
  visibility: hidden;
  opacity: 0;
}

.overlay {
  height: 50px;
  width: 100%;
  background: linear-gradient(180deg, white 20%, transparent 100%);
  position: absolute;
  top: 0;
}

.office-info {
  position: absolute;
  background-color: #fff;
  height: auto;
  width: auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  top: 20px;
  right: 100%;
  width: max-content;
  visibility: hidden;
  padding: 20px;
  transition: all 0.3s ease-out;
  opacity: 0;
  margin-right: -100px;
}
.office-info.open {
  visibility: visible;
  opacity: 1;
}
.office-info h4 {
  color: #49bb80;
}
.office-info ul {
  margin: 0 0px 0 20px;
}
.office-info li a {
  color: black;
  font-size: 16px;
}
.office-info li:hover a {
  color: #49bb80;
}
.office-info i {
  position: absolute;
  top: 8px;
  right: 8px;
}

body {
  max-width: 1910px;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.pagination {
  display: flex;
}
.pagination span.current {
  background-color: #49bb80;
}

.wp-block-file__button {
  color: #ffffff !important;
}

.remove-top-margin {
  margin-top: 0 !important;
}

.pagecontent.list {
  margin: 5px !important;
}

.pagecontent.list-item {
  margin: 0 0 4px !important;
}

.pagecontent {
  margin: 20px 0;
}
.pagecontent .content p {
  font-size: 14px;
}
.pagecontent .content h3 {
  position: relative;
  font-size: 24px;
  font-weight: 900;
  padding-top: 30px;
}
.pagecontent .content h3:before {
  content: "";
  position: absolute;
  border-top: solid 1px black;
  top: 0;
  width: 30px;
}

.text-image .container {
  position: relative;
  background-color: #fafafa;
  height: 500px;
  margin: 50px 40px;
}
.text-image .container .image {
  height: 500px;
  background-position: center;
  background-size: cover;
}
.text-image .container .content {
  padding: 50px 100px;
}
.text-image .container .content h3 {
  position: relative;
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 40px 0;
  padding: 30px 0 0 0;
}
.text-image .container .content h3:before {
  content: "";
  position: absolute;
  border-top: solid 1px black;
  top: 0;
  width: 30px;
}
.text-image .container .content p {
  color: #36474f;
  font-size: 14px;
}

.text-image-block {
  margin: 20px 0 60px 0;
}
.text-image-block .container {
  margin: 20px 0;
}
.text-image-block .container .content {
  padding: 80px;
}
.text-image-block .container .content h3 {
  font-size: 24px;
  position: relative;
  padding: 30px 0 30px 0;
}
.text-image-block .container .content h3:before {
  content: "";
  position: absolute;
  border-top: solid 1px black;
  top: 0;
  width: 30px;
}
.text-image-block .container .content p {
  font-size: 14px;
}
.text-image-block .container .content.gray {
  background-color: #fafafa;
}
.text-image-block .container .content.gray p {
  color: #36474f;
}
.text-image-block .container .content.topo {
  background-image: url("../img/background.png");
  background-repeat: repeat;
}
.text-image-block .container .content.topo h3 {
  color: #fafafa;
}
.text-image-block .container .content.topo h3:before {
  border-top: solid 1px #fafafa;
}
.text-image-block .container .content.topo p {
  color: #fafafa;
}
.text-image-block .container .image {
  background-position: center;
  background-size: cover;
  min-height: 500px;
}

.usp-block {
  margin: 50px 0;
}
.usp-block .content p {
  text-align: center;
  font-weight: 900;
  font-size: 18px;
  margin: 0 0 80px 0;
}
.usp-block .content .usp-s span {
  background-color: #49bb80;
  padding: 5px 60px 5px 20px;
  font-weight: 900;
  font-size: 28px;
  margin: 0 0 20px 0;
}
.usp-block .content .usp-s p {
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  margin: 20px 0 0 0;
}

.jobs .container {
  padding-bottom: 70px;
  margin-bottom: 50px;
  background-color: #fafafa;
}
.jobs .container a {
  color: #36474f;
}
.jobs .container .block {
  margin: 70px 0 40px 0;
  position: relative;
}
.jobs .container .job-listing {
  background-color: #ffffff;
  margin: 5px 30px;
  padding: 30px;
  transition: all 0.3s ease 0s;
}
.jobs .container .job-listing h4 {
  font-size: 20px;
  font-weight: 700;
}
.jobs .container .job-listing h4 span {
  float: right;
  font-weight: 400;
  font-size: 18px;
}
.jobs .container .job-listing h4 span i {
  margin-right: 15px;
}
.jobs .container .job-listing p {
  font-size: 14px;
}
.jobs .container .job-listing.position:hover {
  background-color: #49bb80;
  padding: 30px 20px 30px 40px;
  margin: 5px -10px 5px 20px;
}
.jobs .container .job-listing.position:hover h4, .jobs .container .job-listing.position:hover p {
  color: #ffffff;
}
.jobs .container .job-listing.title {
  background-color: #fafafa;
  margin-top: 50px;
  margin-bottom: 30px;
  padding: 10px 30px;
}
.jobs .container .job-listing.title h3 {
  font-size: 24px;
  position: relative;
  padding-top: 20px;
}
.jobs .container .job-listing.title h3 span {
  float: right;
  font-size: 16px;
  margin-top: 5px;
  font-weight: 400;
}
.jobs .container .job-listing.title h3 span i {
  margin-left: 15px;
}
.jobs .container .job-listing.title h3:before {
  content: "";
  position: absolute;
  border-top: solid 1px black;
  top: 0;
  width: 30px;
}

.map-plus-text .container {
  position: relative;
  background-image: url("../img/background.png");
  background-repeat: repeat;
  height: 500px;
  margin: 25px 0px;
}
.map-plus-text .container .image {
  height: 500px;
  width: 400px;
  background-position: center;
  background-size: cover;
  margin: 0;
  position: absolute;
  right: 0;
}
.map-plus-text .container .content {
  padding: 50px 100px;
  margin: 0 400px 0 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.map-plus-text .container .content h3 {
  position: relative;
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 40px 0;
  padding: 30px 0 0 0;
}
.map-plus-text .container .content p {
  color: #ffffff;
  font-size: 14px;
}

.resource-library {
  position: relative;
  margin: 20px 0 170px 0;
}
.resource-library .cards h3.resource-title {
  position: relative;
  padding-top: 30px;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 40px;
}
.resource-library .cards h3.resource-title i {
  float: right;
  margin-left: 20px;
  color: #36474f;
}
.resource-library .cards h3.resource-title:before {
  content: "";
  position: absolute;
  border-top: solid 1px black;
  top: 0;
  width: 30px;
}

.form {
  position: relative;
}
.form .container {
  background-color: #fafafa;
  position: relative;
  padding: 100px 150px;
}
.form .container .form {
  position: relative;
}
.form .container .form h3 {
  font-size: 22px;
  font-weight: 900;
  margin: 30px 0 50px 0;
}
.form .container .form h3:before {
  left: 50%;
  transform: translateX(-50%);
}
.form .container .form button {
  float: right;
}
.form .container .form input::placeholder {
  color: #36474f;
}

.wpcf7 {
  background-color: #fafafa;
  position: relative;
  padding: 100px 150px;
}

.columns .wpcf7 {
  padding: 0;
  background: none;
}

.other-services .title {
  background-color: #36474f;
  padding: 80px 0 30px 0;
  margin-top: 50px;
}
.other-services .title h2 {
  background-color: #ffffff;
  width: fit-content;
  padding: 10px 15px;
  font-size: 30px;
  font-weight: 900;
}
.other-services .content {
  padding: 50px 0;
  background-color: #fafafa;
}
.other-services .content .option {
  position: relative;
  height: fit-content;
  margin: 15px 15px;
  padding: 20px;
  height: 80px;
  display: block;
  transition: all 0.3s ease 0s;
}
.other-services .content .option p {
  position: absolute;
  left: 30px;
  font-size: 22px;
  height: fit-content;
  padding: 20px 10px;
  top: 50%;
  transform: translateY(-50%);
}
.other-services .content .option i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.other-services .content .option:hover {
  background-color: #49bb80;
}
.other-services .content .option:hover p, .other-services .content .option:hover i {
  color: #ffffff;
}

.singleimage {
  margin: 100px 0;
}

.defaultblock.section.image .medium-10 {
  width: 100%;
  margin: 0 !important;
}

.defaultblock.paragraph {
  margin: 40px 0;
}
.defaultblock.paragraph p:last-child {
  margin-bottom: 0;
}

.defaultblock.paragraph + .defaultblock.paragraph {
  margin-top: -30px;
}

.defaultblock.heading + .defaultblock.heading {
  margin-top: -40px;
}

.defaultblock.heading + .defaultblock.paragraph {
  margin-top: -30px;
}

.defaultblock.paragraph + .defaultblock.columns {
  margin-top: 20px;
  margin-top: -30px;
}

.defaultblock.heading + .defaultblock.columns {
  margin-top: 20px;
  margin-top: -30px;
}

.defaultblock.columns .pagecontent {
  margin: 0 0 30px;
  margin-top: 0 !important;
}

.wp-block-column > .pagecontent > .row > .columns {
  width: 100%;
  margin: 0 !important;
}

.wp-block-columns > .pagecontent > .row > .columns {
  width: 100%;
  margin: 0 !important;
}

.defaultblock.columns, .defaultblock.column {
  padding-left: 0;
  padding-right: 0;
}

.defaultblock.column {
  padding-right: 40px;
}
@media screen and (max-width: 1250px) {
  .location-content .content .image {
    margin-left: 0;
  }
  .location-content .address .content {
    margin-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  header nav.menu {
    z-index: 10000;
  }
  header .mobilemenu {
    display: block;
    width: 32px;
    height: 32px;
    right: 20px;
    z-index: 9999;
    position: fixed;
    padding: 0 7px;
    padding-top: 7px;
    transition: all 0.1s ease 0s;
    top: 32px;
  }
  header .mobilemenu span {
    display: block;
    height: 2px;
    background: #fff;
    margin-bottom: 5px;
    transform-origin: 50% 50%;
    transition: all 0.5s ease 0s;
  }
  header ul.top, header ul.bottom {
    height: auto;
    overflow-y: auto;
    left: -15px;
    transform: translate3d(-100%, 0, 0);
    right: auto;
    width: 80%;
    background: #36474f;
    position: fixed;
    overflow-y: auto;
    overflow-y: hidden;
    transition: all 0.5s ease 0s;
    z-index: 999;
    top: 0 !important;
    padding: 30px 0;
    display: grid;
  }
  header ul.top li, header ul.bottom li {
    text-align: left;
    display: block;
    font-size: 20px;
  }
  header ul.top li:last-child, header ul.bottom li:last-child {
    padding-right: 20px;
  }
  header ul.top li a, header ul.bottom li a {
    color: #fff;
  }
  header ul.top #top-menu, header ul.bottom #top-menu {
    display: inline-block;
    border-top: solid 1px red;
    width: 100%;
  }
  header ul.bottom .hide-on-desktop {
    display: block;
  }
  .menuopen header .mobilemenu span:nth-child(1) {
    transform: rotate(45deg) translateX(5px) translateY(5px);
  }
  .menuopen header .mobilemenu span:nth-child(2) {
    transform: rotate(-45deg) translateX(0px) translateY(0px);
  }
  .menuopen header .mobilemenu span:nth-child(3) {
    opacity: 0;
  }
  .menuopen header ul.bottom {
    transform: translate3d(0%, 0, 0);
    box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.5);
  }
  .hide-on-mob {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .news-container {
    margin-top: 50px;
  }
  .news-container h2 {
    padding: 30px 0 50px 0;
    font-size: 20px;
  }
  .news-container .news .entry {
    max-width: 800px;
  }
  .news-container .news .entry .image {
    background-position: center;
    background-size: cover;
  }
  .news-container .news .entry .content {
    padding: 40px 30px;
  }
  .news-container .news .entry .content h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .news-container .news::before {
    content: "";
    position: absolute;
    border-top: solid 2px rgb(179, 179, 179);
    top: 0;
    width: 30px;
  }
  .news-container .catagories {
    display: none;
  }
  .news-container .catagories::before {
    content: "";
    position: absolute;
    border-top: solid 2px rgb(179, 179, 179);
    top: 0;
    width: 30px;
  }
  footer .footer-social .sitemap h5 {
    margin: 0 0 20px 0;
  }
  footer .footer-social .social h5 {
    margin: 0 0 20px 0;
  }
  footer .footer-social .newsletter {
    margin: 40px 0 0 0;
  }
  footer .footer-social .newsletter h5 {
    margin: 0 0 20px 0;
  }
  footer .footer-social .newsletter button.button.secondary {
    float: right;
  }
  footer .footer-bottom {
    height: 200px;
  }
  footer .footer-bottom ul {
    text-align: center;
  }
  footer .vc-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .location-content {
    margin: 0;
  }
  .location-content .address .content {
    margin: 0 15px;
  }
  .banner .content .announcement-content {
    margin: 0 70px;
  }
  .banner .content .announcement-content p {
    font-size: 15px;
  }
}
@media screen and (max-width: 900px) {
  .form {
    position: relative;
  }
  .form .container {
    background-color: #fafafa;
    position: relative;
    padding: 50px 20px;
  }
  .form .container .form {
    position: relative;
  }
  .form .container .form h3 {
    font-size: 22px;
    font-weight: 900;
    margin: 30px 0 50px 0;
  }
  .form .container .form h3:before {
    left: 50%;
    transform: translateX(-50%);
  }
  .form .container .form button {
    float: right;
  }
}
@media screen and (max-width: 639px) {
  header .logo-container .logo {
    margin-left: 0px;
  }
  header .mobilemenu {
    right: 0px;
  }
  .title .location {
    margin: 20px 0;
  }
  .title .location a i {
    display: none;
  }
  .hero-container .hero-content {
    position: absolute;
    top: auto;
    bottom: 0;
    transform: translateY(0%);
    left: 0;
    width: 280px;
    background-color: #36474f;
    opacity: 0.8;
    padding: 15px;
    margin-left: -15px;
  }
  .hero-container .hero-content a.button.primary {
    margin-bottom: 0;
  }
  .hero-container .hero-opaque {
    display: none;
  }
  .landing-info .container {
    position: relative;
    height: auto;
    min-height: 300px;
    margin: 50px 0;
  }
  .landing-info .container .content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
    padding-left: auto;
  }
  .landing-info .container-map {
    position: relative;
    height: 400px;
  }
  .landing-info .container-map .map {
    background-image: url("https://via.placeholder.com/700x700.png?text=Map");
    background-position: center;
    background-size: cover;
    height: 400px;
  }
  .landing-info .office-info {
    width: unset;
    top: unset;
    right: 20px;
    left: 20px;
    bottom: 100%;
    max-width: unset;
    margin-right: unset;
  }
  .testimonials .testimonial-container .content-container {
    margin: 10px 20px;
  }
  .testimonials .testimonial-container .content-container h2 {
    margin-top: 70px;
  }
  .testimonials .testimonial-container .content-container h2::before {
    margin: 71px 0;
  }
  .testimonials .testimonial-container .content-container p.content {
    margin-bottom: 15px;
  }
  .testimonials .testimonial-container .content-container .icon {
    margin-left: 0;
    top: 20px;
  }
  .testimonials .testimonial-container button {
    float: left;
    margin-top: 15px;
  }
  .news-container .news .entry {
    background-color: #fafafa;
    height: 400px;
    max-width: 350px;
  }
  .news-container .news .entry .image {
    height: 200px;
    max-width: 350px;
  }
  .news-container .news .entry .content {
    padding: 20px 30px;
  }
  .news-container .news .entry .content h3 {
    margin-bottom: 10px;
  }
  .news-container .news .entry .content p {
    height: 50px;
  }
  .news-container .news::before {
    content: "";
    position: absolute;
    border-top: solid 2px rgb(179, 179, 179);
    top: 0;
    width: 30px;
  }
  .news-container .catagories {
    display: none;
  }
  .news-container .catagories::before {
    content: "";
    position: absolute;
    border-top: solid 2px rgb(179, 179, 179);
    top: 0;
    width: 30px;
  }
  footer .footer-social .sitemap h5 {
    margin: 0 0 20px 0;
  }
  footer .footer-social .social {
    margin: 40px 0 0 0;
  }
  footer .footer-social .social h5 {
    margin: 0 0 20px 0;
  }
  footer .footer-social .newsletter {
    margin: 40px 0 0 0;
  }
  footer .footer-social .newsletter h5 {
    margin: 0 0 20px 0;
  }
  footer .footer-social .newsletter button.button.secondary {
    float: left;
    margin-top: 20px;
  }
  footer .footer-locations {
    background-color: #36474f;
  }
  footer .footer-locations .location {
    min-width: none;
    max-width: 400px;
    border-top: solid 1px #ffffff;
    margin: 0 20px;
  }
  footer .footer-locations .location h4 {
    position: relative;
  }
  footer .footer-locations .location h4 i.desktop {
    display: none;
  }
  footer .footer-locations .location h4 i.mobile {
    font-size: 18px;
    display: block;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
  }
  footer .footer-locations .location p.details {
    display: none;
  }
  footer .footer-locations .location p.post-code {
    display: block;
    font-size: 12px;
    padding: 0;
    margin: 5px 0 0 0;
    font-weight: 300;
    color: #ffffff;
  }
  footer .footer-locations .location:last-child {
    border-bottom: solid 1px #ffffff;
  }
  footer .footer-bottom .content ul {
    margin-bottom: 15px;
  }
  footer .footer-bottom .content ul li {
    margin: 0;
  }
  .location-content .address .content .details {
    padding: 20px;
  }
  .location-content .content p {
    margin: 0 15px;
  }
}
@media screen and (max-width: 540px) {
  footer .footer-social .sitemap ul {
    flex-wrap: unset;
    max-height: none;
  }
  footer .footer-social .newsletter .t-and-c {
    margin-right: 20px;
  }
  footer .footer-social .newsletter button.button.secondary {
    float: left;
    margin-top: 20px;
  }
  footer .vc-logo {
    float: right;
  }
}
@media screen and (max-width: 500px) {
  footer .footer-locations {
    padding: 30px 10px;
  }
  footer .footer-locations .location {
    min-width: none;
    max-width: 400px;
  }
}
@media screen and (max-width: 1024px) {
  .text-image .container {
    height: auto;
    margin: auto;
  }
  .text-image .container .content {
    padding: 20px;
  }
  .one-column .content {
    margin: 40px 0;
  }
  .one-column .content p, .one-column .content h3 {
    margin: 30px 20px;
  }
}

/*# sourceMappingURL=app.css.map */
