@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

/********************** Basic text ***************************/
* {
  box-sizing: border-box;
}
body {
  background: #ffffff none repeat scroll 0 0;
  color: #373636;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  box-sizing: border-box;
}
h2, h3, h4, h5 {
  line-height: 1.5;
  margin: 0 0 7px 0;
  font-weight: 500;
  color: #313131;
}
h1 {
  font-size: 22px;
	color: #202020;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 10px 0;
}
h2,
.h2 {
  font-size: 18px;
}
h3,
.h3 {
  font-size: 16px;
}
h4 {
  font-size: 14px;
}
p {
  margin: 0 0 15px;
  line-height: 2;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
}
a img:hover {
  opacity: 0.9;
}
strong {
  font-weight: 500;
}
ul,
ol {
  margin: 0 0 15px 15px;
  padding: 0;
}
li {
  margin: 0 0 8px 0;
  padding: 0;
}
input {
  border: medium none;
  font-family: "Montserrat", sans-serif;
}
img {
  height: auto;
  max-width: 100%;
}
input[type="text"],
input[type="email"],
textarea,
input[type="password"] {
  background: #f4f5f5 none repeat scroll 0 0;
  font-family: sans-serif;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: #202020;
  line-height: 1.3;
  padding: 12px 0;
  text-indent: 12px;
  width: 100%;
  font-size: inherit;
}
textarea {
  padding: 12px;
  text-indent: 0;
}
select {
  color: #373636;
  text-indent: 0;
  border-radius: 0;
  border: none;
  background: #f4f5f5;
  padding: 12px 15px 12px 10px;
  font-family: "Montserrat", sans-serif;
  font-size: inherit;
}
label {
  font-weight: normal;
  margin-bottom: 5px;
  display: block;
}
.form-type-managed-file .form-managed-file {
  margin-top: 10px;
}
.form-type-managed-file .description {
  margin-top: 10px;
}
@media (min-width: 768px) {
  input[type="text"],
  input[type="email"],
  textarea,
  input[type="password"] {
    padding: 15px 0;
  }
  select {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  textarea {
    padding: 15px;
  }
}
@media (min-width: 1000px) {
  a.conv_phone {
    text-decoration: none;
  }
}

@media (min-width: 1181px) {
  body {
    font-size: 16px;
  }
  h1, h2, h3, h4, h5 {
    margin: 0 0 15px 0;
  }
  h1 {
    font-size: 28px;
  }
  h2 {
     font-size: 22px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 17px;
  }
  input[type="text"],
  input[type="email"],
  input[type="password"] {
    padding: 20px 0;
  }
  select {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  textarea {
    padding: 20px;
  }
}
@media (min-width: 1300px) {
  h1 {
    font-size: 32px;
  }
}

/********************* Buttons ********************/
a.button,
input.button,
.button a,
.form-submit {
  background-color: #850a0d;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 400;
  display: inline-block;
  font-size: 13px;
  line-height: 1.2;
  padding: 11px 35px;
  text-transform: uppercase;
  transition: all 200ms linear 0s;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  -webkit-appearance: none;
}
a.button:hover,
.button a:hover,
input.button:hover,
.form-submit:hover {
  background-color: #6d080b;
  cursor: pointer;
}
.button.button-big {
  font-size: 14px;
  padding: 13px 40px;
}
.inline-buttons .button {
  width: 100%;
}
.inline-buttons .button:nth-of-type(1) {
  margin-bottom: 10px;
}
.button {
  margin-top: 5px;
}
a.conv-phone {
  color: #890906;
}

@media (min-width: 768px) {
  .inline-buttons {
    text-align: center;
  }
  a.conv-phone {
    color: inherit;
  }
}
@media (min-width: 1000px) {
  .button.button-big {
    font-size: 15px;
  }
}
@media (min-width: 1181px) {
  a.button,
  input.button,
  .button a,
  .form-submit {
    font-size: 15px;
  }
  .button {
    margin-top: 10px;
  }
  .button.button-big {
    font-size: 17px;
    padding: 13px 40px;
  }
}

/* Background colours */
.button.bg-red,
.bg-red {
  background-color: #850a0d;
}
a.bg-red:hover {
  background-color: #6d080b;
}
.button.bg-yellow,
.bg-yellow {
  background-color: #d5b01b;
}
a.bg-yellow:hover {
  background-color: #b59411;
}
.button.bg-yellow-dark,
.bg-yellow-dark {
  background-color: #a98907;
}
a.bg-yellow-dark:hover {
  background-color: #7b6304;
}
.button.bg-black,
.bg-black {
  background-color: #202020;
}
a.bg-black:hover {
  background-color: #000000;
}
.button.bg-white,
.bg-white {
  background-color: #ffffff;
}
a.bg-white:hover {
  background-color: #f7f7f7;
}
.bg-grey-light {
  background-color: #f4f5f5;
}

/***** Font colours ********/
.fc-red {
  color: #850a0d;
}
.fc-yellow {
  color: #d5b01b;
}
.fc-yellow-dark {
  color: #a98907;
}
.fc-black {
  color: #202020;
}
.fc-white {
  color: #ffffff;
}
.fc-grey-light {
  background-color: #f4f5f5;
}

/* Text and font custom styles */
.center {
  text-align: center;
}
.inline {
  display: inline;
}
.lowercase {
  text-transform: lowercase;
}
.underline {
	text-decoration: underline;
}
.fw-light {
  font-weight: 300;
}
.fw-normal {
  font-weight: 400;
}
.fw-medium {
  font-weight: 500;
}
.fw-bold {
  font-weight: 700;
}
.fw-black {
  font-weight: 900;
}
.field-label-inline,
.label-inline {
  display: inline;
}


/**** Long formatted text blogs and services ***/

.long-text-formatted h2,
.long-text-formatted h3 {
  margin-bottom: 10px;
  margin-top: 30px;
}
.long-text-formatted h2:first-child {
  margin-top: 0;
}

/* Custom font sizes */
.fs-18 {
	font-size: 15px;
}
@media (min-width: 1181px) {
	.fs-18 {
	  font-size: 18px;
  }
}

/* Heading underlines */
.und-red::after,
.und-black::after {
  display: block;
  content: "";
  width: 40px;
  height: 2px;
  margin-top: 10px;
  margin-bottom: 15px;
}
.und-black::after {
  background-color: #313131;
}
.und-red::after {
  background-color: #850a0d;
}
.und-red.center::after,
.und-black.center::after {
  margin-left: auto;
  margin-right: auto;
}

/********************** Custom headings and font sections ******************/

blockquote {
    margin: 20px 0;
    position: relative;
    padding-left: 40px;
}
blockquote::before {
    content: "“";
    font-family: georgia;
    font-size: 55px;
    font-weight: 600;
    line-height: 1.1;
    position: absolute;
    left: 0;
    top: 0;
    color: #d5b01b;
    opacity: 0.5;
}
blockquote p {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
}
blockquote cite {
    font-size: 12px;
    color: #999;
    font-style: normal;
    text-transform: uppercase;
    margin-top: 10px;
  display: block;
}
blockquote a,
cite a {
  color: #890906;
}
h2.heading-large {
  font-size: 22px;
  font-weight: 600;
}
h3.red-notice {
	color: #890906;
	position: relative;
	padding-left: 25px;
	font-weight: 500;
}
h3.red-notice::before {
	position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f06a";
  font-style: normal;
}
h3.red-notice a {
  text-decoration: underline;
}
h3 .black-num {
    background: #444;
    color: #fff;
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    border-radius: 30px;
    margin-right: 5px;
}
.box-info {
    padding: 20px;
    background: #f4f5f5;
    position: relative;
    padding-left: 50px;
    margin-bottom: 25px;
    margin-top: 25px;
    font-style: italic;
 line-height: 1.6;
}
.box-info::before {
  color: #333;
  position: absolute;
  top: 18px;
  left: 20px;
  font-size: 18px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f05a";
  font-style: normal;
}	
.big-text::after {
  display: block;
  height: 2px;
  width: 50px;
  content:"";
  background: #202020;
  margin-top: 10px;
}
.big-text.center::after {
  margin-left: auto;
  margin-right: auto;
}
.big-text h2 {
  font-size: 22px;
  font-weight: 600;
}
.big-text p {
  font-size: 14px;
}
@media (min-width: 768px) {

  .big-text h2 {
    font-size: 22px;
  }
  .big-text p {
    font-size: 15px;
  }
}
@media (min-width: 1000px) {
  .big-text h2 {
    font-size: 25px;
  }
  .big-text p {
    font-size: 16px;
  }
}
@media (min-width: 1181px) {
  blockquote {
    margin: 30px 0 30px 0;
    padding-left: 50px;
  }
  blockquote::before {
    font-size: 70px;
  }
  blockquote p {
    font-size: 17px;
  }
  blockquote cite {
    font-size: 13px;
  }
  h2.heading-large {
    font-size: 28px;
  }
  .big-text h2 {
    font-size: 28px;
  }
  .big-text p {
    font-size: 17px;
  }
  .big-text h2 {
    font-size: 32px;
  }
  .big-text h2 {
    font-size: 32px;
  }
  .big-text p {
    font-size: 17px;
  }
  .big-text::after {
    width: 70px;
    margin-top: 30px;
  }
}

/************************ Common main regions and elements ********************************/
.wrap {
  clear: both;
  margin: 0 auto;
  width: 80%;
  max-width: 1200px;
  position: relative;
  box-sizing: border-box;
}
.section-main {
  margin-bottom: 40px;
}
.clear {
  clear: both;
  display: block;
  height: 0;
}
.form-item,
.form-actions {
  margin: 0 0 10px;
}
#edit-actions {
  margin-bottom: 0;
}
.mob-flip .flex-container {
  display: flex;
  flex-direction: column-reverse;
}
.flex-container.cols2 .first {
  margin-bottom: 20px;
}
.mob-flip .flex-container.cols2 .last {
  margin-bottom: 15px;
}
.mob-flip .flex-container.cols2 .first {
  margin-bottom: 0;
}
.mob-hide {
  display: none;
}
.small-mob-hide,
.inline-small-mob-hide {
  display: none;
}
.tab-show {
  display: none;
}
.med-tab-show {
  display: none;
}
.mob-show {
  display: block;
}
iframe {
  max-width: 100%;
}
@media (min-width: 500px) {
  .small-mob-hide {
    display: block;
  }
  .inline-small-mob-hide {
    display: inline-block;
  }
}
@media (min-width: 768px) {
  .section-main {
    margin-bottom: 50px;
  }
  .mob-hide {
    display: block;
  }
  .mob-show {
    display: none;
  }
  .tab-show {
    display: block;
  }
}
@media (min-width: 900px) {
  .tab-med-show {
    display: none;
  }
  .tab-med-hide {
    display: block;
  }
}
@media (min-width: 1000px) {
  .section-main {
    margin-bottom: 80px;
  }
}
@media (min-width: 1181px) {
  .wrap {
    width: 90%;
  }
  .section-main {
    margin-bottom: 120px;
  }
  .desk-show {
    display: block;
  }
  .desk-hide {
    display: none;
  }
}

/* Margins and padding elements */
.mb-0,
.section-main.mb-0 {
  margin-bottom: 0;
}
.mb-20, .section-main.mb-20 {
  margin-bottom: 10px;
}
.mb-40, .section-main.mb-40 {
  margin-bottom: 20px;
}
.mb-60,
.section-main.mb-60 {
  margin-bottom: 30px;
}
.mb-80,
.section-main.mb-80 {
  margin-bottom: 40px;
}
.mb-100,
.section-main.mb-100 {
  margin-bottom: 50px;
}
.mb-100,
.section-main.mb-120 {
  margin-bottom: 60px;
}
.mb-100,
.section-main.mb-140 {
  margin-bottom: 70px;
}
.mb-160,
.section-main.mb-160 {
  margin-bottom: 80px;
}
.mt-20 {
	margin-top: 20px;
}
.mt-40 {
	margin-top: 40px;
}
.mt-60 {
	margin-top: 60px;
}
.mt-80 {
	margin-top: 80px;
}
.mt-100 {
	margin-top: 100px;
}
.mt-120 {
	margin-top: 120px;
}
.mt-140 {
	margin-top: 140px;
}
.mt-160 {
	margin-top: 160px;
}

.ptb-0 {
  padding-top: 0;
  padding-bottom: 0;
}
.ptb-20 {
  padding-top: 10px;
  padding-bottom: 10px;
}
.ptb-40 {
  padding-top: 20px;
  padding-bottom: 20px;
}
.ptb-60 {
  padding-top: 30px;
  padding-bottom: 30px;
}
.ptb-80 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.ptb-100 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.ptb-120 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.ptb-140 {
  padding-top: 70px;
  padding-bottom: 70px;
}
.ptb-160 {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (min-width: 768px) {
  .mb-20,
  .section-main.mb-20 {
    margin-bottom: 13px;
  }
  .mb-40,
  .section-main.mb-40 {
    margin-bottom: 25px;
  }
  .mb-60,
  .section-main.mb-60 {
    margin-bottom: 35px;
  }
  .mb-80,
  .section-main.mb-80 {
    margin-bottom: 50px;
  }
  .mb-100,
  .section-main.mb-100 {
    margin-bottom: 55px;
  }
  .mb-120,
  .section-main.mb-120 {
    margin-bottom: 70px;
  }
  .mb-140,
  .section-main.mb-140 {
    margin-bottom: 80px;
  }
  .mb-160,
  .section-main.mb-160 {
    margin-bottom: 90px;
  }
	
	.mt-20 {
    margin-bottom: 13px;
  }
  .mt-40 {
    margin-bottom: 25px;
  }
  .mt-60 {
    margin-bottom: 35px;
  }
  .mt-80 {
    margin-bottom: 50px;
  }
  .mt-100 {
    margin-bottom: 55px;
  }
  .mt-120 {
    margin-bottom: 70px;
  }
  .mb-140 {
    margin-bottom: 80px;
  }
  .mt-160 {
    margin-bottom: 90px;
  }

  .ptb-20 {
    padding-top: 13px;
    padding-bottom: 13px;
  }
  .ptb-40 {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .ptb-60 {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .ptb-80 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .ptb-100 {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .ptb-120 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .ptb-140 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .ptb-160 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

@media (min-width: 1000px) {
  .mb-20,
  .section-main.mb-20 {
    margin-bottom: 15px;
  }
  .mb-40,
  .section-main.mb-40 {
    margin-bottom: 30px;
  }
  .mb-60,
  .section-main.mb-60 {
    margin-bottom: 40px;
  }
  .mb-80,
  .section-main.mb-80 {
    margin-bottom: 60px;
  }
  .mb-100,
  .section-main.mb-100 {
    margin-bottom: 70px;
  }
  .mb-120,
  .section-main.mb-120 {
    margin-bottom: 80px;
  }
  .mb-140,
  .section-main.mb-140 {
    margin-bottom: 90px;
  }
  .mb-160,
  .section-main.mb-160 {
    margin-bottom: 100px;
  }
	
	.mt-20 {
    margin-bottom: 15px;
  }
  .mt-40 {
    margin-bottom: 30px;
  }
  .mt-60 {
    margin-bottom: 40px;
  }
  .mt-80 {
    margin-bottom: 60px;
  }
  .mt-100,
  .section-main.mb-100 {
    margin-bottom: 70px;
  }
  .mt-120 {
    margin-bottom: 80px;
  }
  .mt-140 {
    margin-bottom: 90px;
  }
  .mt-160 {
    margin-bottom: 100px;
  }

  .ptb-20 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .ptb-40 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .ptb-60 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .ptb-80 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ptb-100 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .ptb-120 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .ptb-140 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .ptb-160 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1181px) {
  .width-50 {
    width: 50%;
    margin: 0 auto;
  }
  .width-60 {
    width: 60%;
    margin: 0 auto;
  }
  .width-70 {
    width: 70%;
    margin: 0 auto;
  }
  .width-80 {
    width: 80%;
    margin: 0 auto;
  }
  .width-90 {
    width: 90%;
    margin: 0 auto;
  }

  .mb-20,
  .section-main.mb-20 {
    margin-bottom: 20px;
  }
  .mb-40,
  .section-main.mb-40 {
    margin-bottom: 40px;
  }
  .mb-60,
  .section-main.mb-60 {
    margin-bottom: 60px;
  }
  .mb-80,
  .section-main.mb-80 {
    margin-bottom: 80px;
  }
  .mb-100,
  .section-main.mb-100 {
    margin-bottom: 100px;
  }
  .mb-120,
  .section-main.mb-120 {
    margin-bottom: 120px;
  }
  .mb-140,
  .section-main.mb-140 {
    margin-bottom: 140px;
  }
  .mb-160,
  .section-main.mb-160 {
    margin-bottom: 160px;
  }
	
	.mt-20 {
    margin-bottom: 20px;
  }
  .mt-40 {
    margin-bottom: 40px;
  }
  .mt-60 {
    margin-bottom: 60px;
  }
  .mt-80 {
    margin-bottom: 80px;
  }
  .mt-100 {
    margin-bottom: 100px;
  }
  .mt-100 {
    margin-bottom: 120px;
  }
  .mt-100 {
    margin-bottom: 140px;
  }
  .mt-160 {
    margin-bottom: 160px;
  }
	
  .ptb-20 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .ptb-40 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .ptb-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ptb-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .ptb-120 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .ptb-140 {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .ptb-160 {
    padding-top: 160px;
    padding-bottom: 160px;
  }
}

/* Alignment styles */
.center {
  text-align: center;
}
.inline {
  display: inline;
}
.valign-top {
  vertical-align: top;
}
.valign-middle {
  vertical-align: middle;
}
.valign-bottom {
  vertical-align: bottom;
}

/* Image/video holder elements */
.img-holder {
  overflow: hidden;
  display: block;
}
.img-holder img {
  display: block;
}
.img-holder {
  overflow: hidden;
  display: block;
}
.img-holder img {
  display: block;
}
.hover-zoom img {
  transition: transform 1s;
}
.hover-zoom:hover img {
  transform: scale(1.3);
}

/******************************** Responsive menu ********************************/
#block-custom-horizontalmenu {
  display: none;
}
.off-canvas-wrapper {
  display: block;
}
.no-js .off-canvas-wrapper {
  display: none;
}
body.user-logged-in.toolbar-fixed.mm-wrapper_opening,
body.user-logged-in.toolbar-fixed.mm-wrapper_opened {
  padding-top: 0 !important;
}
.mm-page,
.mm-wrapper_background body {
  background-color: #ffffff;
}
.mm-wrapper_opening .toolbar-tray-open.toolbar-fixed.toolbar-vertical,
.mm-opened .toolbar-tray-open.toolbar-fixed.toolbar-vertical {
  margin-left: 0;
}
.mm-wrapper_opening .toolbar-tray-open.toolbar-fixed.toolbar-vertical .mm-page,
.mm-opened .toolbar-tray-open.toolbar-fixed.toolbar-vertical .mm-page {
  padding-left: 240px;
  padding-left: 15rem;
}
.responsive-menu-toggle {
  display: inline-block;
}
.responsive-menu-toggle-icon {
  box-sizing: border-box;
  display: block;
  width: 40px;
  height: 20px;
  z-index: 4;
  margin-top: 0;
  position: relative;
}
.no-js .responsive-menu-toggle-icon {
  display: none;
}
.responsive-menu-toggle-icon span.label {
  font-weight: 400;
  font-size: 14px;
  left: 47px;
  top: 1px;
  position: absolute;
  text-transform: uppercase;
  display: none;
}
.responsive-menu-toggle-icon:before,
.responsive-menu-toggle-icon:after,
.responsive-menu-toggle-icon span.icon {
  background: #ffffff;
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
}
.responsive-menu-toggle-icon:before {
  top: 0px;
}
.responsive-menu-toggle-icon span.icon {
  top: 10px;
}
.responsive-menu-toggle-icon:after {
  top: 20px;
}
.responsive-menu-toggle-icon:before,
.responsive-menu-toggle-icon:after,
.responsive-menu-toggle-icon span.icon {
  transition: none 0.4s ease-out 0.1s;
  transition-property: -webkit-transform, top, bottom, left, opacity;
  transition-property: transform, top, bottom, left, opacity;
}
.mm-wrapper_opening .responsive-menu-toggle-icon:before,
.mm-wrapper_opening .responsive-menu-toggle-icon:after {
  top: 14px;
}
.mm-wrapper_opening .responsive-menu-toggle-icon span.icon {
  left: -25px;
  opacity: 0;
}
.mm-wrapper_opening .responsive-menu-toggle-icon:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mm-wrapper_opening .responsive-menu-toggle-icon:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.mm-menu a,
.mm-menu a:active,
.mm-menu a:hover,
.mm-menu a:link,
.mm-menu a:visited {
  text-decoration: none;
  color: #ffffff !important;
}
#mm-blocker {
  background: rgba(0, 0, 0, 0);
}
.mm-wrapper_opening #mm-blocker {
  background: rgba(0, 0, 0, 0.2);
  transition: background 1s ease 0.3s;
}
.mm-wrapper_opening #page {
  border-left: 1px solid #ccc;
}
.mm-panel a {
  border-bottom: none;
}
ul.menu.mm-listview a.is-active {
  color: inherit;
}
.mm-panel a:hover {
  border: none;
}
ul.menu.mm-listview {
  padding-left: 0;
  margin-left: 0;
}

/****** Top bar above header *******/

#top-bar {
  padding: 10px 0;
  background: #850a0d;
}
#top-bar p {
  text-align: center;
  margin-bottom: 0;
  color: #fff;
  line-height: 1.3;
}

/********************************* Header region ***************************/
header {
  background: #1d1d1d;
}
header .wrap {
  position: relative;
  max-width: 100%;
  width: 1900px;
  height: 70px;
  display: flex;
  flex-wrap: wrap;
}
header #header-logo {
  position: absolute;
  width: 230px;
  top: 20px;
  left: 10px;
}
header #header-menu {
  position: absolute;
  right: 10px;
  top: 24px;
}
header #header-phone {
  display: none;
}
header #header-quote-mob {
  display: none;
}

@media (min-width: 500px) {
  header #header-phone {
    display: block;
    position: absolute;
    line-height: 1;
    right: 70px;
    top: 27px;
    color: #ffffff;
  }
  header #header-phone a {
    color: #ffffff;
    text-decoration: none;
  }
  header #header-phone i {
    font-size: 15px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 3px;
  }
  header #header-phone span {
    display: inline-block;
    vertical-align: middle;
    font-size: 17px;
  }
}
@media (min-width: 640px) {
  header #header-quote-mob {
    display: block;
    position: absolute;
    right: 215px;
    top: 17px;
  }
  header #header-quote-mob .button {
    padding: 5px 10px;
  }
}
@media (min-width: 768px) {
  header #header-logo {
    width: 260px;
    top: 17px;
  }
  header #header-phone {
    top: 26px;
  }
  header #header-phone i {
    font-size: 17px;
  }
  header #header-phone span {
    font-size: 19px;
  }
  header #header-quote-mob {
    right: 230px;
    top: 16px;
  }
  header #header-quote-mob .button {
    padding: 7px 20px;
  }
}
@media (min-width: 1000px) {
  header .wrap {
    height: 80px;
  }
  header #header-logo {
    top: 22px;
    left: 20px;
  }
  header #header-quote-mob {
    display: none;
  }
  header #header-menu {
    top: 26px;
    right: 20px;
  }
  header #header-phone {
    display: none;
  }

}
@media (min-width: 1181px) {
  header .wrap {
    height: 90px;
  }
   header #header-logo {
    top: 28px;
  }
  header #header-menu {
    top: 33px;
    right: 190px;
  }
  header #header-phone {
    display: block;
    right: 20px;
    top: 35px;
  }
  header #header-phone i {
    border: 1px solid #fff;
    border-radius: 50px;
    font-size: 12px;
    padding: 5px;
  }
}
@media (min-width: 1300px) {
   header #header-menu {
    right: 200px;
  }
}
@media (min-width: 1500px) {
  header #header-logo {
    width: 280px;
    top: 25px;
  }
   header #header-menu {
    right: 240px;
     top: 29px;
  }
  header #header-phone {
    top: 32px;
  }
   header #header-phone span {
    font-size: 21px;
  }
  header #header-phone i {
    font-size: 14px;
    padding: 7px;
    margin-right: 12px;
  }
}
@media (min-width: 1600px) {
  header #header-logo {
    width: 295px;
    top: 25px;
  }
   header #header-menu {
    right: 280px;
    top: 27px;
  }
}
@media (min-width: 1900px) {
  header #header-menu {
    right: 400px;
  }
}

/**************************** Main horizontal menu ***************************/
@media (min-width: 1000px) {
  .responsive-menu-toggle-wrapper.responsive-menu-toggle {
    display: none;
  }
  #block-custom-horizontalmenu {
    display: block;
  }
  .horizontal-menu {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1;
  }
  .horizontal-menu > li {
    position: relative;
    list-style: none;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
  }
  .horizontal-menu > li ul ul {
    left: 13.75em;
    top: 0;
  }
  .horizontal-menu ul .fly-left ul {
    left: -13.75em;
  }
  .horizontal-menu > li > a {
    text-transform: uppercase;
    color: #ffffff;
    background-color: transparent;
    padding: 0;
    margin: 0;
    font-size: 16px;
    display: block;
    text-decoration: none;
    font-weight: 500;
    margin-right: 12px;
    line-height: 1;
  }
  .horizontal-menu > li:last-child > a,
  .horizontal-menu > li:last-child > a.is-active {
    margin-right: 0;
    background: #850a0d;
    color: #ffffff;
    border-radius: 10px;
    padding: 7px 10px;
    font-size: 14px;
  }
  .horizontal-menu > li:last-child > a:hover,
  .horizontal-menu > li:last-child > a.is-active:hover {
    background: #6d080b;
    color: #ffffff;
  }
  .horizontal-menu > li.menu-item--expanded > a {
    margin-right: 20px;
  }
  .horizontal-menu > li.menu-item--expanded > a::after {
    position: absolute;
    top: 0;
    right:7px;
    font-size: 11px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f078";
  }
  .horizontal-menu > li > a:hover,
  .horizontal-menu > li > a.is-active,
  .horizontal-menu .is-active-border {
    color: #850a0d;
  }
  .horizontal-menu > li > a.menu-button.is-active {
    color: #ffffff;
  }
  .horizontal-menu > li ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
    padding-top: 30px;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    margin-left: -20px;
    box-sizing: border-box;
    width: 340px;
    list-style: none;
    background: #1d1d1d;
    text-align: left;
    margin-top: 0;
  }
  .horizontal-menu li.sfHover > ul,
  .horizontal-menu li:hover > ul {
    display: block;
  }
  .horizontal-menu li li {
    margin: 0;
  }
  .horizontal-menu > li > li:hover > ul,
  .horizontal-menu > li > li.sfHover > ul {
    display: block;
  }
  .horizontal-menu > li li > a {
    display: block;
    position: relative;
    padding: 10px 0px 10px 20px;
    text-transform: none;
    text-decoration: none;
    box-sizing: border-box;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    border-bottom: 1px solid #555;
    color: #ffffff;
  }
  .horizontal-menu > li li > a:hover {
    background-color: #a70d09;
    color: #fff;
  }
}
@media (min-width: 1300px) {
  .horizontal-menu > li > a {
    margin-right: 20px;
  }
  .horizontal-menu > li.menu-item--expanded > a {
    margin-right: 35px;
  }
  .horizontal-menu > li li > a {
    padding: 15px 0px 15px 20px;
  }
  .horizontal-menu > li.menu-item--expanded > a::after {
    right: 20px;
  }
}
@media (min-width: 1450px) {
  .horizontal-menu > li > a {
    margin-right: 30px;
    font-size: 18px;
  }
  .horizontal-menu > li li > a {
    font-size: 18px;
  }
  .horizontal-menu > li.menu-item--expanded > a {
    margin-right: 45px;
  }
  .horizontal-menu > li.menu-item--expanded > a::after {
    right: 30px;
  }
  .horizontal-menu > li:last-child > a,
  .horizontal-menu > li:last-child > a.is-active {
    padding: 10px 30px;
    font-size: 16px;
  }
}
@media (min-width: 1600px) {
  .horizontal-menu > li > a {
    margin-right: 40px;
    font-size: 19px;
  }
  .horizontal-menu > li li > a {
    font-size: 19px;
  }
  .horizontal-menu > li.menu-item--expanded > a {
    margin-right: 55px;
  }
  .horizontal-menu > li.menu-item--expanded > a::after {
    right: 38px;
  }
  .horizontal-menu > li:last-child > a {
    padding: 10px 30px;
    font-size: 18px;
  }
}

/***************** Banner (top no wrap) ***************************/
#top-no-wrap {
	background-size: cover;
  background-color: #302f2f;
}
#top-no-wrap .banner-inner {
  padding: 60px 0 30px 0;
  width: 830px;
  max-width: 100%;
}
#top-no-wrap h1,
#top-no-wrap h2 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 700;
}
#top-no-wrap h4 {
  color: #ffffff;
  text-transform: uppercase;
}
#top-no-wrap h4 a {
  text-decoration: underline;
}
#top-no-wrap p {
  color: #ffffff;
  font-weight: 500;
  line-height: 1.7;
  font-size: 15px;
}
#top-no-wrap .button {
  font-size: 14px;
  padding: 10px 30px;
  border-radius: 20px;
  font-weight: 500;
}
@media (min-width: 768px) {
  #top-no-wrap .banner-inner {
    padding: 100px 0 60px 0;
  }
  #top-no-wrap h1,
  #top-no-wrap h2 {
    font-size: 28px;
  }
  #top-no-wrap h4 {
    margin-bottom: 15px;
  }
  #top-no-wrap p {
    font-size: 16px;
  }
  #top-no-wrap .button {
    font-size: 15px;
    padding: 12px 30px;
  }
}
@media (min-width: 1000px) {
  #top-no-wrap .banner-inner {
    padding: 120px 0 70px 0;
  }
  #top-no-wrap h1,
  #top-no-wrap h2 {
    font-size: 30px;
  }
  #top-no-wrap p {
    font-size: 17px;
    line-height: 2;
  }
  #top-no-wrap .button {
    font-size: 16px;
    padding: 14px 40px;
  }
}
@media (min-width: 1181px) {
  #top-no-wrap .banner-inner {
    padding: 150px 0 90px 0;
  }
  #top-no-wrap h1,
  #top-no-wrap h2 {
    font-size: 34px;
    margin-bottom: 15px;
  }
  #top-no-wrap p {
    font-size: 18px;
  }
   #top-no-wrap .button {
    font-size: 18px;
    padding: 17px 60px;
  }
}
@media (min-width: 1300px) {
  #top-no-wrap .banner-inner {
    width: 1000px;
  }
  #top-no-wrap h1,
  #top-no-wrap h2 {
    font-size: 44px;
    margin-bottom: 20px;
  }
  #top-no-wrap p {
    font-size: 21px;
  }
}
/******************** Breadcrumbs ***********************/
#breadcrumbs {
  line-height: 1.4;
  color: #777;
  font-style: italic;
  font-size: 13px;
}
#breadcrumbs .wrap {
  border-bottom: 2px solid #efefef;
  padding: 20px 0;
  margin-bottom: 30px;
}
#breadcrumbs nav ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
#breadcrumbs nav ol li {
  margin: 0;
  padding: 0;
  display:inline-block;
}
#breadcrumbs nav ol li a::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin: -2px 8px 0 8px;
  display: inline-block;
  font-style: normal;
  font-size: 11px;
}
.breadcrumbs ol li:last-child a::after {
  content: "";
}
#breadcrumbs nav a {
  color: #890906;
  text-decoration: none;
}
#breadcrumbs nav a:hover {
  text-decoration: underline;
}

@media (min-width: 1000px) {
  #breadcrumbs {
    font-size: 14px;
  }
}
@media (min-width: 1181px) {
  #breadcrumbs {
    font-size: 15px;
  }
  #breadcrumbs .wrap {
    padding: 30px 0;
    margin-bottom: 40px;
  }
}
/************************* Footer ******************************/

#footer {
    background: #302f2f;
    padding: 40px 0;
}
#footer .footer-one,#footer .footer-two,#footer .footer-three {
  margin-bottom: 20px;
}
#footer h4 {
    color: #b0b0b0;
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 1px solid;
 }
#footer p {
    color: #b0b0b0;
    line-height: 1.5;
}
#footer a {
    color: #b0b0b0;
}
#footer a:hover {
    text-decoration: underline;
}
#footer ul {
    margin: 0;
    padding: 0;
}
#footer ul li {
    list-style: none;
    line-height: 1.3;
}
#footer .footer-one img {
    width: 180px;
}
#footer .footer-one p.f-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}
#footer .footer-one p.f-abn {
    font-size: 11px;
    margin-bottom: 0;
}
#footer .footer-one p.f-title {
    font-weight: 600;
    margin-bottom: 6px;
    margin-top: 20px;
}
#footer .footer-one p.f-dets {
    margin-bottom: 8px;
}
#footer .footer-one p.f-dets i {
    width: 20px;
}
#footer .footer-one .f-socials {
    margin-top: 20px;
}
#footer .footer-one .f-socials i {
    font-size: 16px;
    margin-right: 7px;
    border: 1px solid;
    border-radius: 50px;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
}
#footer .footer-one .f-socials i:hover {
    opacity: 0.7;
}
#footer .copyright {
    clear: both;
    width: 100%;
    text-align: center;
    margin-top: 50px;
}
#footer .copyright {
    font-size: 13px;
}
#footer .copyright p {
  margin-bottom: 0;
}
@media (min-width: 400px) {
  #footer .footer-two ul li,
  #footer .footer-three ul li {
    display: inline-block;
    width: 48%;
    margin-right: 2%;
    vertical-align: top;
  }
  #footer .footer-two ul li:nth-of-type(2n),
  #footer .footer-three ul li:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
   #footer .wrap {
    width: 92%;
  }
  #footer .footer-one,
  #footer .footer-two,
  #footer .footer-three {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 0;
  }
  #footer .footer-one {
    width: 23%;
    margin-right: 3%;
  }
  #footer .footer-two {
    width: 18%;
    margin-right: 4%;
  }
  #footer .footer-three {
    width: 49%;
  }
  #footer h4 {
    border-bottom: none;
    margin-bottom: 8px;
  }
  #footer .footer-two ul li {
    display: block;
    width: 100%;
    margin-right: 0;
  }
  #footer .footer-one p.f-name {
    font-size: 15px;
  }
    #footer ul li {
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (min-width: 1000px) {
  #footer {
    background: #302f2f;
    padding: 50px 0;
  }
  #footer .wrap {
    width: 80%;
  }
  #footer .footer-one {
    width: 30%;
    margin-right: 4%;
  }
  #footer .footer-two {
    width: 19%;
  }
  #footer .footer-three {
    width: 42%;
  }
  #footer h4 {
    margin-bottom: 15px;
  }
   #footer ul li {
    font-size: 14px;
  }
   #footer .footer-one img {
    width: 190px;
  }
}
@media (min-width: 1181px) {
  #footer {
    padding: 80px 0;
  }
  #footer .footer-one {
    width: 30%;
  }
  #footer .footer-two {
    width: 18%;
  }
  #footer .footer-three {
    width: 43%;
  }
  #footer h4 {
    font-size: 19px;
    margin-bottom: 20px;
  }
  #footer ul li {
    font-size: 15px;
  }
  #footer .footer-one img {
    width: 260px;
  }
  #footer .footer-one p.f-name {
    font-size: 16px;
  }
  #footer .copyright {
    font-size: 14px;
  }
}
@media (min-width: 1300px) {
  #footer .footer-two {
    width: 22%;
  }
  #footer .footer-three {
    width: 39%;
  }
}

/********************* Quote forms and webform *********************/



/****************************** Slick slideshows ***********************************/
.slick {
  position: relative;
}
nav.slick__arrow button {
  position: absolute;
  top: calc(50% - 17px);
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  opacity: 0.5;
}
nav.slick__arrow button:hover {
  opacity: 1;
}
nav.slick__arrow button::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  color: #bbbbbb;
  font-size: 25px;
}
nav.slick__arrow button.slick-prev {
  left: -25px;
}
nav.slick__arrow button.slick-next {
  right: -25px;
}
nav.slick__arrow button.slick-prev::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f053";
}
nav.slick__arrow button.slick-next::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
}
.slick-nav-dots {
  text-align: center;
  list-style: none;
  margin-top: 50px;
}
.slick-nav-dots li {
  display: inline;
  margin: 0 3px;
}
.slick-nav-dots li button {
  background: #eee;
  border: none;
  border-radius: 17px;
  width: 17px;
  height: 17px;
  font-size: 0;
}
.slick-nav-dots li.slick-active button {
  background-color: #ddd;
}
@media (min-width: 500px) {
  nav.slick__arrow button.slick-prev {
    left: -40px;
  }
  nav.slick__arrow button.slick-next {
    right: -40px;
  }
}
@media (min-width: 768px) {
  nav.slick__arrow button.slick-prev {
    left: -50px;
  }
  nav.slick__arrow button.slick-next {
    right: -50px;
  }
}
@media (min-width: 1300px) {
  nav.slick__arrow button::before {
    font-size: 30px;
  }
  nav.slick__arrow button.slick-prev {
    left: -90px;
  }
  nav.slick__arrow button.slick-next {
    right: -90px;
  }
}
@media (min-width: 1650px) and (max-width: 1710px) {
  nav.slick__arrow button.slick-prev {
    left: -30px;
  }
  nav.slick__arrow button.slick-next {
    right: -30px;
  }
}


/******************** Flex containers in wrap **********************/
@media (min-width: 768px) {
  .flex-container {
    display: flex;
  }
  .flex-item {
    box-sizing: border-box;
  }
  .flex-wrap {
    flex-wrap: wrap;
  }
  .mob-flip .flex-container {
    flex-direction: initial;
    flex-wrap: nowrap;
  }
  .cols2 .flex-item {
    flex: 0 1 50%;
  }
  .flex-container.cols3 {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: self-start;
  }
  .cols3 .flex-item {
    flex: 0 1 32%;
  }
  .cols4 .flex-item {
    flex: 0 1 23%;
  }
  .cols5 .flex-item {
    flex: 0 1 20%;
  }
  .cols6 .flex-item {
    flex: 0 1 16.666%;
  }
  .cols2-20-80 .first,
  .cols2-80-20 .last {
    flex: 0 1 20%;
  }
  .cols2-25-75 .first,
  .cols2-75-25 .last {
    flex: 0 1 25%;
  }
  .cols2-30-70 .first,
  .cols2-70-30 .last {
    flex: 0 1 30%;
  }
  .cols2-35-65 .first,
  .cols2-65-35 .last {
    flex: 0 1 35%;
  }
  .cols2-40-60 .first,
  .cols2-60-40 .last {
    flex: 0 1 40%;
  }
  .cols2-45-65 .first,
  .cols2-65-45 .last {
    flex: 0 1 45%;
  }
  .cols2-50-50 .flex-item {
    flex: 0 1 50%;
  }
  .cols2-55-65 .first,
  .cols2-655-55 .last {
    flex: 0 1 55%;
  }
  .cols2-60-40 .first,
  .cols2-40-60 .last {
    flex: 0 1 60%;
  }
  .cols2-65-35 .first,
  .cols2-35-65 .last {
    flex: 0 1 65%;
  }
  .cols2-70-30 .first,
  .cols2-30-70 .last {
    flex: 0 1 70%;
  }
  .cols2-75-25 .first,
  .cols2-25-75 .last {
    flex: 0 1 75%;
  }
  .cols2-80-20 .first,
  .cols2-20-80 .last {
    flex: 0 1 80%;
  }
  .gutter-2 .flex-item {
    margin-right: 2%;
  }
  .gutter-5 .flex-item {
    margin-right: 5%;
  }
  .gutter-7 .flex-item {
    margin-right: 7%;
  }
  .gutter-10 .flex-item {
    margin-right: 10%;
  }
  .cols4 .last,
  .cols3 .last,
  .cols2 .last {
    margin-right: 0;
  }
  .flex-container.cols2 .first,
  .mob-flip .flex-container.cols2 .last {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .flex-container.cols4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: self-start;
  }
  .cols4 .flex-item {
    flex: 0 1 48%;
  }
}
@media (min-width: 1000px) {
  .flex-container.cols2 .block-layout-builder p:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 1300px) {
  .valign-top .flex-item {
    align-self: top;
  }
  .valign-middle .flex-item {
    align-self: center;
  }
  .valign-bottom .flex-item {
    align-self: bottom;
  }
  .flex-item.flex-align-top {
    align-self: top;
  }
  .flex-item.flex-align-middle {
    align-self: center;
  }
  .flex-item.flex-align-bottom {
    align-self: bottom;
  }
  .flex-container.flex-align-top,
  .flex-align-top .flex-container {
    align-items: top;
  }
  .flex-container.flex-align-middle,
  .flex-align-middle .flex-container {
    align-items: center;
  }
  .flex-container.flex-align-bottom,
  .flex-align-bottom .flex-container {
    align-items: bottom;
  }
}

/************************** No wrap flex-containers ****************************/

.text-in-box .flex-container.cols2 .first,
.text-in-box.mob-flip .flex-container.cols2 .last {
  margin-bottom: 0;
}
.cols2-no-wrap.img-right .first,
.cols2-no-wrap.img-left .last {
  padding-left: 10%;
  padding-right: 10%;
}

.cols2-no-wrap.img-right.text-in-box .first,
.cols2-no-wrap.img-left.text-in-box .last {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (min-width: 900px) {
  .cols2-no-wrap.flex-align-middle .flex-container {
    display: flex;
    width: 100%;
  }
  .cols2-no-wrap.img-right .last,
  .cols2-no-wrap.img-left .first {
    flex: 1;
    position: relative;
  }
  .cols2-no-wrap.img-right .last img,
  .cols2-no-wrap.img-left .first img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .cols2-no-wrap.img-right .first,
  .cols2-no-wrap.img-right.text-in-box .first {
    padding: 80px 50px 80px 10%;
  }
  .cols2-no-wrap.img-left .last,
  .cols2-no-wrap.img-left.text-in-box .last {
    padding: 80px 10% 80px 50px;
  }
}
@media (min-width: 1000px) {
  .cols2-no-wrap.img-left .last,
  .cols2-no-wrap.img-left.text-in-box .last {
    padding: 120px 10% 120px 60px;
  }
  .cols2-no-wrap.img-right .first,
  .cols2-no-wrap.img-right.text-in-box .first {
    padding: 120px 60px 120px 10%;
  }
}
@media (min-width: 1400px) {
  .cols2-no-wrap.img-left .last,
  .cols2-no-wrap.img-left.text-in-box .last {
    padding: 180px 10% 180px 60px;
  }
  .cols2-no-wrap.img-right .first,
  .cols2-no-wrap.img-right.text-in-box .first {
    padding: 180px 60px 180px 10%;
  }
}
@media (min-width: 1980px) {
  .cols2-no-wrap.img-right .last,
  .cols2-no-wrap.img-left .first {
    flex-basis: 50%;
    width: 50%;
    flex-grow: 0;
  }
  .cols2-no-wrap.img-right .flex-container {
    justify-content: right;
  }
  .cols2-no-wrap.img-left .last,
  .cols2-no-wrap.img-left.text-in-box .last {
    padding: 230px 0 230px 80px;
    max-width: 775px;
  }
  .cols2-no-wrap.img-right .first,
  .cols2-no-wrap.img-right.text-in-box .first {
    padding: 230px 80px 230px 0;
    max-width: 775px;
  }
}

/*************************** Grid items ************************************/

.grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 600px) {
  .grid.grid-cols2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.grid-cols3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.grid-cols4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.grid-cols5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .grid.grid-cols3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.grid-cols4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.grid-cols5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1050px) {

  .grid.grid-cols4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid.grid-cols5 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1181px) {

  .grid.grid-cols5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

/************** Hover boxes all *********************/

.hover-boxes-3cols .views-view-responsive-grid--horizontal {
  grid-template-columns: repeat(1,1fr);
}
.hover-boxes {
	position: relative;
	background: #111;
}
.hover-boxes a {
    display: block;
}
.hover-boxesx:hover {
    background-color: #333;
}
.hover-boxes:hover img {
	opacity: 0;
}
.hover-boxes img {
	display: block;
	width: 100%;
	height: 100%;
	opacity: 0.4;
}
.hover-boxes .hover-hide {
  position: absolute;
  top: 0;
  left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
  padding: 0 20px;
  text-align: center;
}
.hover-boxes:hover .hover-hide {
	display: none;
}
.hover-boxes .hover-show {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0 20px;
	opacity: 0;
	text-align: center;
	color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;;
  line-height: 1.7;
}
.hover-boxes:hover .hover-show {
	opacity: 1;
	cursor: pointer;
}
.hover-boxes .hover-show a {
	text-decoration: none;
}
.hover-boxes .hover-show .desc {
  display: none;
}
.hover-boxes .hover-show .button-border {
	background: #fff;
	color: #111;
	width: 100px;
	margin: 0 auto;
	display: block;
	font-size: 12px;
	padding: 5px 0;
  justify-self: center;
}
.hover-boxes .hover-show span.button-border:hover {
	background-color: #ccc;
}
@media (min-width: 500px) {
  .hover-boxes-3cols .views-view-responsive-grid--horizontal {
    grid-template-columns: repeat(2,1fr);
  }
}
@media (min-width: 900px) {
  .hover-boxes-3cols .views-view-responsive-grid--horizontal {
    grid-template-columns: repeat(3,1fr);
  }
}
@media (min-width: 1000px) {
  .hover-boxes .hover-hide {
    font-size: 18px;
  }
}
@media (min-width: 1181px) {
  .hover-boxes .hover-show .desc {
    display: block;
    margin-bottom: 10px;
  }
  .hover-boxes .hover-hide {
    font-size: 22px;
  }
}

/**** Services grids *****/
.services-grid-4cols-container .views-view-responsive-grid--horizontal {
  grid-template-columns: repeat(1,1fr);
  gap: 30px 10px;
}
.services-grid-item img {
  width: 100%;
}
.services-grid-item h3 {
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 5px;
}
.services-grid-item p {
  line-height: 1.7;
  font-size: 13px;
  margin-bottom: 10px;
}
.services-grid-item .button-border {
  font-size: 11px;
  color: #850a0d;
  border: 1px solid;
  text-align: center;
  padding: 4px 15px;
  line-height: 1;
}

@media (min-width: 600px) {
  .services-grid-4cols-container .views-view-responsive-grid--horizontal {
    grid-template-columns: repeat(2,1fr);
  }
  .services-grid-item h3 {
    margin-top: 5px;
  }
}
@media (min-width: 900px) {
  .services-grid-4cols-container .views-view-responsive-grid--horizontal {
    grid-template-columns: repeat(3,1fr);
  }
}

@media (min-width: 1000px) {
  .services-grid-4cols-container .views-view-responsive-grid--horizontal {
    gap: 30px
  }
  .services-grid-item p {
    font-size: 14px;
  }
}


/****************** Testimonial slides *****************/

/* Main 2 col slide */

.testimonial-slide {
  text-align: center;
}
.testimonial-slide .left {
  margin-bottom: 20px;
}
.testimonial-slide .left img {
  border-radius: 200px;
  margin-left: auto;
  margin-right: auto;
  width: 150px;
}
.testimonial-slide .right {
  padding: 0 10%;
}
.testimonial-slide h4 {
  margin-top: 13px;
  font-size: 16px;
}
.testimonial-slide h4 a {
  color: #890906;
  text-decoration: underline;
}
.testimonial-slide p {
  font-size: 15px;
}
.testimonial-slide .test-text {
  font-style: italic;
  color: #202020;
}
.testimonial-slide .test-text a {
  color: #890906;
  text-decoration: underline;
}
.testimonial-slide .test-text::after {
  width: 50px;
  height: 1px;
  background: #890906;
  content: "";
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}
.testimonial-slide .test-name {
  font-weight: 500;
  color: #202020;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .testimonial-slide {
    display: flex;
    text-align: left;
  }
  .testimonial-slide .left {
    flex: 0 1 200px;
    text-align: center;
    margin-bottom: 0;
  }
  .testimonial-slide .right {
    flex: 1;
    padding: 0 0 0 20px;
  }
  .testimonial-slide p {
    font-size: 16px;
  }
  .testimonial-slide .test-text::after {
    margin-right: 0;
    margin-left: 0;
    margin-top: 20px;
    height: 2px;
  }
}
@media (min-width: 1000px) {
  .testimonial-slide .right {
    padding-left: 30px;
  }
  .testimonial-slide p {
    font-size: 16px;
  }
}
@media (min-width: 1181px) {
  .testimonial-slide .left {
    flex: 0 1 250px;
    text-align: center;
  }
  .testimonial-slide .left img {
    width: 200px;
  }
  .testimonial-slide p {
    font-size: 18px;
  }
  .testimonial-slide h4 {
    font-size: 18px;
    margin-top: 15px;
  }
}

/* Testimonials 1 col slide */

.testimonial-slide-cols1 .test-text {
  font-style: italic;
  font-size: 15px;
  color: #555;
}
.testimonial-slide-cols1 .top {
  margin-bottom: 20px;
}
.testimonial-slide-cols1 .test-name {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #333;
}
.testimonial-slide-cols1 .test-text::after {
  display: block;
  content: "";
  width: 50px;
  height: 1px;
  background-color: #555;
  margin-top: 15px;
}
.testimonial-slide-cols1 .bottom img {
  width: 80px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 120px;
}
.testimonial-slide-cols1 h4 {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
}
.testimonial-slide-cols1 h4 a {
  color: #890906;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .testimonial-slide-cols1 .test-text,
  .testimonial-slide-cols1 .test-name {
    font-size: 14px;
  }
  .testimonial-slide-cols1 .bottom img {
    width: 60px;
  }
}
@media (min-width: 1000px) {
  .testimonial-slide-cols1 .test-text,
  .testimonial-slide-cols1 .test-name {
    font-size: 15px;
  }
  .testimonial-slide-cols1 .bottom img {
    width: 80px;
  }
}
@media (min-width: 1181px) {
  .testimonial-slide-cols1 .test-text,
  .testimonial-slide-cols1 .test-name {
    font-size: 16px;
    padding-bottom: 15px;
  }
  .testimonial-slide-cols1 h4 {
    font-size: 18px;
  }

  .testimonial-slide-cols1 .test-text::after {
    margin-top: 20px;
    width: 70px;
  }
}

/******* Testimonials main page ***************/
.testimonials-list-main {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #efefef;
}
.testimonials-list-main .right {
  margin-bottom: 10px;
}
.testimonials-list-main .right img {
  width: 50px;
  height: 50px;
  border-radius: 150px;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}
.testimonials-list-main .right h4 {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}
.testimonials-list-main .right h4 a {
  color: #890906;
  text-decoration: underline;
}
.testimonials-list-main .test-name {
  margin-bottom: 0;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .testimonials-list-main {
    display: flex;
    padding-bottom: 30px;
    margin-bottom; 30px;
  }
  .testimonials-list-main .left {
    flex: 1;
    padding-left: 20px;
  }
  .testimonials-list-main .right {
    flex: 0 1 120px;
    text-align: center;
    margin-bottom: 0;
  }
  .testimonials-list-main .right img {
    width: 100px;
    height: 100px;
    display: block;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1000px) {
  .testimonials-list-main .left {
    padding-left: 40px;
  }
  .testimonials-list-main .right {
    flex: 0 1 150px;
  }
}
@media (min-width: 1181px) {
  .testimonials-list-main {
    padding-bottom; 40px;
    margin-bottom: 40px;
  }
  .testimonials-list-main .right {
    flex: 0 1 200px;
  }
  .testimonials-list-main .right img  {
    width: 150px;
    height: 150px;
  }
}

/********* News pages elements **************************************/

/****** News main grid *********/

.news-grid-container .views-view-responsive-grid__item {
  box-shadow: 0 0 15px #ddd;
}
.news-grid-container .views-view-responsive-grid--horizontal {
  gap: 20px 0;
  grid-template-columns: repeat(1,1fr);
}
@media (min-width: 600px) {
  .news-grid-container .views-view-responsive-grid--horizontal {
   gap: 10px;
    grid-template-columns: repeat(2,1fr);
  }
}
@media (min-width: 768px) {
  .news-grid-container .views-view-responsive-grid--horizontal {
   gap: 20px;
  }
}
@media (min-width: 900px) {
  .news-grid-container .views-view-responsive-grid--horizontal {
   gap: 20px;
    grid-template-columns: repeat(3,1fr);
  }
}
@media (min-width: 1181px) {
  .news-grid-container .views-view-responsive-grid--horizontal {
    gap: 30px;
  }
}

/* News slideshows */
.news-slideshow-container .slick-slide {
  background: #ffffff;
  margin: 0 3px;
}
.news-slideshow-container .slick-track {
  display: flex !important;
}
.news-slideshow-container .slick-slide {
  height: inherit !important;
}
.news-slideshow-container .view-header {
  margin-bottom: 20px;
}
.news-slideshow-container .view-header h2 {
  font-size: 20px;
}
@media (min-width: 400px) {
  .news-slideshow-container .view-header {
    display: flex;
    flex-wrap: wrap;
  }
  .news-slideshow-container .view-header .right {
    margin-left: auto;
  }
}
@media (min-width: 1000px) {
   .news-slideshow-container .view-header h2 {
    font-size: 26px;
  }
}
@media (min-width: 1181px) {
  .news-slideshow-container .slick-slide {
    margin: 0 10px;
  }
  .news-slideshow-container .view-header h2 {
    font-size: 26px;
  }
}

/* News grid items all */
.news-grid-item {
  background: #ffffff;
}
.news-grid-item .b-inner {
  padding: 25px;
}
.news-grid-item img {
  width: 100%;
}
.news-grid-item .b-author-date {
  text-transform: uppercase;
  line-height: 1.3;
  color: #7e7d7d;
  font-size: 11px;
  margin-bottom: 10px;
}
.news-grid-item h3 {
  margin-bottom: 10px;
}
.news-grid-item p.b-sum {
  line-height: 1.7;
}
.news-grid-item  .b-button {
  color: #890906;
  font-size: 11px;
  border: 1px solid #890906;
  width: 100px;
  text-align: center;
  padding: 3px 0;
  border-radius: 5px;
}

@media (min-width: 1181px) {
  .news-grid-item .b-author-date {
    font-size; 12px;
  }
  .news-grid-item p.b-sum {
    font-size: 14px;
  }
}

/********* News items sidebar *****************/
.news-sidebar-container {
  margin-top: 40px;
}
.news-sidebar-container .view-header h2 {
  display: block;
  color: #ffffff;
  background: #1d1d1d;
  padding: 10px;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1;
}
.news-sidebar-container .view-footer {
  margin-top: 25px;
}
.news-sidebar-container .view-footer a {
  font-weight: 500;
}
.news-grid-side {
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}
.news-grid-side h4 {
    font-size: 14px;
  margin-bottom: 7px;
  }
.news-grid-side p {
  margin: 0;
  font-size: 12px;
  line-height: 1;
  color: #999;
}
@media (min-width: 350px) and (max-width: 767px) {
  .news-grid-side {
    display: flex;
  }
  .news-grid-side .left {
    flex: 0 1 150px;
  }
  .news-grid-side .right {
    flex: 1;
    padding-left: 15px;
  } 
}
@media (min-width: 768px) {
  .news-sidebar-container {
    margin-top: 0;
  }
}
@media (min-width: 1000px) {
  .news-grid-side {
    display: flex;
  }
  .news-grid-side .left {
    flex: 0 1 100px;
  }
  .news-grid-side .right {
    flex: 1;
    padding-left: 15px;
  }
}
@media (min-width: 1181px) {
  .news-grid-side .left {
    flex: 0 1 130px;
  }
}
/****** generic quote block ****/
#generic-quote {
  background: #d5b01b url("/sites/default/files/images/template/reasons-bg.jpg") no-repeat scroll center right;
  text-align: center;
  padding: 50px 0;
}
#generic-quote h2 {
  color: #ffffff;
  margin-bottom: 10px;
}
#generic-quote .button {
  font-weight: 500;
}
@media (min-width: 768px) {
  #generic-quote h2 {
    margin-bottom: 15px;
  }
  #generic-quote .static-quote h2 {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
  }
}
@media (min-width: 1181px) {
  #generic-quote {
    padding: 80px 0;
  }
}
@media (min-width: 1181px) {
  #generic-quote {
    padding: 90px 0;
  }
  #generic-quote .static-quote h2 {
    max-width: 800px;
  }
}

/* Membership logos block */
#membership-logos {
  text-align: center;
}
#membership-logos h4 {
  text-align: center;
  margin-bottom: 20px;
  color: #7b7a7a;
}
#membership-logos a {
  margin-bottom: 10px;
  display: block;
}
#membership-logos img {
  height: 50px;
  width: auto;
}
#membership-logos a:last-child {
  margin-block: 0;
}
@media (min-width: 400px) {
  #membership-logos .logo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #membership-logos a {
    margin: 0 10px 0 10px;
  }
}
@media (min-width: 768px) {
  #membership-logos h4 {
    margin-bottom: 30px;
  }
  #membership-logos img {
    height: 70px;
  }
}
@media (min-width: 1000px) {
  #membership-logos h4 {
    font-size: 15px;
  }
  #membership-logos img {
    height: 90px;
  }
}
@media (min-width: 1181px) {
  #membership-logos h4 {
    font-size: 16px;
    margin-bottom: 40px;
  }
  #membership-logos a {
    margin: 0 20px;
  }
  #membership-logos img {
    height: auto;
  }
}

/**** Sidebar menus **/

.sidebar-menu-container .view-content {
  margin-top: 20px;
}
.sidebar-menu {
  position: relative;
  line-height: 1.5;
  margin: 0 0 10px 0;
  padding: 0 0 10px 20px;
  border-bottom: 1px solid #ddd;
}
.sidebar-menu::before {
  position: absolute;
  top: 0px;
  left: 0;
  color: #890906;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  content: "\f0da";
}
.sidebar-menu a {
  color: #890906;
}
.sidebar-menu a:hover {
  text-decoration: underline;
}
.mobile-jump-menu-container h2 {
  margin-bottom: 15px;
}
.mobile-jump-menu-container select {
  width: 100%;
  text-indent: 0;
  padding: 15px 0 15px 10px;
  font-size: 15px;
}
@media (min-width: 1181px) {
  .sidebar-menu-container .view-content {
    margin-top: 30px;
  }
}

/**** 2 column boxes at bottom */
.bottom-2col-box {
  padding: 25px;
  background: #f4f5f5;
}
.bottom-2col-box h2 {
  margin-bottom: 20px;
  font-size: 20px;
}
.bottom-2col-box .address-top {
  margin-bottom: 20px;
}
.bottom-2col-box .address-top p {
  font-size: 15px;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
  color: #555;
}
.bottom-2col-box .address-top i {
  position: absolute;
  top: 4px;
  left: 0;
  margin-right: 7px;
}
.bottom-2col-box iframe {
  width: 100%;
  height: 300px;
}
@media (min-width: 350px) {
  .bottom-2col-box {
    padding: 40px;
  }
  .bottom-2col-box .address-top p {
    padding-left: 25px;
  }
}
@media (min-width: 768px) {
  .bottom-2col-boxes-container .bottom-2col-box {
    width: 49%;
    margin-right: 2%;
  }
  .bottom-2col-boxes-container .bottom-2col-box.last {
    margin-right: 0;
  }
  .bottom-2col-box {
    padding: 30px;
  }
  .bottom-2col-box .address-top p {
    font-size: 16px;
  }
  .bottom-2col-box iframe {
    height: 330px;
  }
}
@media (min-width: 1000px) {
  .bottom-2col-box {
    padding: 45px;
  }
  .bottom-2col-box h2 {
    margin-bottom: 30px;
    font-size: 22px;
  }
  .bottom-2col-box .address-top p {
    font-size: 18px;
  }
  .bottom-2col-box iframe {
    height: 300px;
  }
}
@media (min-width: 1181px) {
  .bottom-2col-box {
    padding: 60px;
  }
  .bottom-2col-box h2 {
    font-size: 26px;
  }
  .bottom-2col-box .address-top p {
    font-size: 20px;
    padding-left: 30px;
    margin-bottom: 20px;
  }
  .bottom-2col-box .address-top i {
    top 7px;
  }
  .bottom-2col-box iframe {
    height: 300px;
  }
  .bottom-2col-box .address-top {
    margin-bottom: 30px;
  }
}

/**** Accordians /  FAQs ****/
.accordian-container h2 {
  margin-bottom: 15px;
}
.accordian-holder {
  margin-bottom: 10px;
}
.accordian-holder .accordion {
  background: #f4f5f5;
  border: medium none;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  color: #3e3d3d;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  outline: medium none;
  padding: 18px 45px 18px 20px;
  text-align: left;
  transition: all 0.4s ease 0s;
  width: 100%;
  line-height: 1.6;
}
.accordian-holder .accordion:hover {
    background: #eee;
}
.accordian-holder .accordion::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 18px;
}
.accordian-holder .accordion.active::after {
    content: "-";
    top: 10px;
    font-size: 30px;
}
.accordian-holder button.accordion.active:nth-of-type(1) {
    margin-top: 0;
}
.accordian-holder .panel.show {
    display: block;
    margin-bottom: 20px;
    margin-top: -5px;
    padding: 18px;
    border: 1px solid #f4f5f5;
}
.accordian-holder .panel {
    display: none;
    padding: 10px 0 15px 0;
}
.accordian-holder .panel p {
    margin-bottom: 10px;
    font-size: 14px;
}

@media (min-width: 1181px) {
  .accordian-container h2 {
    margin-bottom: 25px;
  }
  .accordian-holder .accordion {
    font-size: 17px;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .accordian-holder .accordion::after {
    font-size: 24px;
    top: 12px;    
  }
}

/*****  Photo galleries *****/
#photo-gallery-container .gallery-item img {
  width: 100%;
}
#photo-gallery-container .gallery-item p {
  text-align: center;
  line-height: 1.5;
  font-size: 13px;
  margin-bottom: 0;
}

/********* projects main grid ****************/
.projects-slide-1col-container .slick__slide {
  margin: 0 5px;
}
.projects-main-grid-container .views-view-responsive-grid--horizontal {
    grid-template-columns: repeat(1,1fr);
    gap: 30px 0;
  }
.projects-list-main h4 {
  font-style: italic;
  color: #666;
  text-transform: uppercase;
  margin-bottom: 5px;
  margin-top: 5px;
  font-size: 12px;
}
.projects-list-main h2 {
  font-size: 16px;
  margin-bottom: 10px;
}
.projects-list-main .button-border {
  font-size: 11px;
  color: #850a0d;
  border: 1px solid;
  text-align: center;
  padding: 4px 12px;
  line-height: 1;
  display: inline-block;
}

@media (min-width: 550px) {
  .projects-main-grid-container .views-view-responsive-grid--horizontal {
    grid-template-columns: repeat(2,1fr);
    gap: 20px 10px;
  }
}
@media (min-width: 768px) {
  .projects-main-grid-container .views-view-responsive-grid--horizontal {
    gap: 30px 20px;
  }
}
@media (min-width: 900px) {
  .projects-main-grid-container .views-view-responsive-grid--horizontal {
    grid-template-columns: repeat(3,1fr);
  }
}
@media (min-width: 1000px) {
  .projects-list-main h4 {
    margin-bottom 10px;
  }
  .projects-list-main h2 {
    font-size: 17px;
    margin-bottom: 15px;
  }
}
@media (min-width: 1181px) {
  .projects-slide-1col-container .slick__slide {
    margin: 0 10px;
  }
  .projects-main-grid-container .views-view-responsive-grid--horizontal {
    gap: 40px;
  }
  .projects-list-main h4 {
    font-size: 13px;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .projects-list-main h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .projects-list-main .button-border{
    font-size: 12px;
  }
}

/************* Projects slide *****************/
.project-slide .left {
  margin-bottom: 10px;
}
.project-slide .project-year {
  text-transform: uppercase;
  color: #666;
  font-size: 13px;
  line-height: 1.3;
}
.project-slide h2 {
  margin-bottom: 5px;
}
.project-slide h3 {
  color: #850a0d;
  font-style: italic;
  margin-bottom: 10px;
  font-size: 15px;
}
@media (min-width: 768px) {
  .project-slide .left {
    margin-bottom: 30px;
  }
}
@media (min-width: 1000px) {
  .project-slide {
    display: flex;
  }
  .project-slide .left {
    margin-bottom: 0;
    flex: 0 1 500px;
  }
  .project-slide .right {
    flex: 1;
    padding-left: 20px;
  }
  .project-slide p {
    margin-bottom: 5px;
  }
  .project-slide .button {
    font-size: 12px;
  }
}
@media (min-width: 1181px) {
  .project-slide {
    align-items: center;
  }
  .project-slide .left {
    flex: 0 1 700px;
  }
  .project-slide .right {
    padding-left: 40px;
  }
}

/************** Team profiles ******************/

.team-profile-container {
  margin-bottom: 40px;
  border-bottom: 3px solid #efefef;
  padding-bottom: 30px;
}
.team-profile-container h2 {
  margin-bottom: 3px;
}
.team-profile-container h4 {
    margin: 0 0 15px 0;
    font-style: italic;
    color: #890906;
}
.team-profile-container h4::after {
    width: 40px;
    height: 2px;
    content: "";
    display: block;
    background: #555;
    margin-top: 15px;
}
.team-profile-container .profile-socials {
    margin-top: 10px;
}
.team-profile-container .profile-socials i {
    font-size: 17px;
    margin-right: 10px;
    color: #bbb;
}
.team-profile-container .right img {
  max-width: 200px;
}
@media (min-width: 600px) {
  .team-profile-container {
    display: flex;
    flex-wrap: wrap;
  }
  .team-profile-container .right {
    flex: 0 1 150px;
  }
  .team-profile-container .left {
    flex: 1;
    padding-left: 20px;
  }
}
@media (min-width: 768px) and (max-width:900px) {
  .team-profile-container .right {
    flex: 0 1 120px;
  }
}
@media (min-width: 1000px) {
  .team-profile-container h2 {
    margin-bottom: 5px;
  }
}
@media (min-width: 1181px) {
  .team-profile-container {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  .team-profile-container .left {
    padding-left: 40px;
  }
  .team-profile-container .body p {
    font-size: 15px;
  }
  .team-profile-container h4 {
    font-size: 16px;
  }
  .team-profile-container .profile-socials {
    margin-top: 20px;
  }
  .team-profile-container .profile-socials i {
    font-size: 20px;
  }
}

/************* 7 reasons sidebar banner ****/
.reasons7-sidebar {
  background: #efefef;
  padding: 30px;
  text-align: center;
  margin-top: 40px;
}
.reasons7-sidebar h3 {
  margin: 0 auto 10px auto;
  font-size: 20px;
  max-width: 400px;
}
@media (min-width:768px) {
  .reasons7-sidebar {
    padding: 30px 15px;
  }
  .reasons7-sidebar h3 {
    font-size: 16px;
  }
  .reasons7-sidebar .button {
    padding: 10px 20px;
    font-size: 12px
  }
}
@media (min-width:1000px) {
  .reasons7-sidebar {
    padding: 30px;
  }
  .reasons7-sidebar h3 {
    font-size: 18px;
  }
  .reasons7-sidebar .button {
    padding: 10px 20px;
    font-size: 12px
  }
}
@media (min-width:1181px) {
  .reasons7-sidebar {
    padding: 40px;
  }
  .reasons7-sidebar h3 {
    font-size: 22px;
  }
  .reasons7-sidebar .button {
    padding: 15px 40px;
    font-size: 13px
  }
}

/****** Webforms **********/
.block-webform .form-submit {
  border-radius: 0;
}
@media (min-width: 1181px) {
  .block-webform .form-submit {
    padding: 15px 40px;
  }
}


/********************************** Individual pages ***********************************************/

/********************************** Homepage **********************************/

.path-frontpage #top-no-wrap .banner-inner {
  padding: 80px 0 60px 0;
}
.path-frontpage #top-no-wrap h2 {
    font-size: 26px;
}
#home-top {
  margin-top: 40px;
}
#home-7reasons-container {
  background: #d5b01b url("/sites/default/files/images/template/reasons-bg.jpg") no-repeat scroll center right;
  text-align: center;
}
#home-7reasons-container h3 {
  color: #ffffff;
  font-size: 19px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
}
#home-7reasons-container .button {
  font-weight: 500;
}
@media (min-width: 768px) {
  .path-frontpage #top-no-wrap .banner-inner {
    padding: 120px 0 80px 0;
    width: 700px;
  }
  .path-frontpage #top-no-wrap h2 {
    font-size: 32px;
  }
  .path-frontpage #top-no-wrap p {
    font-size: 17px;
  }
  #home-7reasons-container h3 {
    font-size: 21px;
  }
}
@media (min-width: 1000px) {
  .path-frontpage #top-no-wrap .banner-inner {
    padding: 160px 0 100px 0;
  }
  .path-frontpage #top-no-wrap h2 {
    font-size: 36px;
  }
  .path-frontpage #top-no-wrap p {
    font-size: 18px;
  }
  #home-top {
    margin-top: 50px;
  }
  #home-7reasons-container .width-80 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  #home-7reasons-container h3 {
    font-size: 24px;
    max-width: none;
    flex: 0 1 500px;
    margin: 0;
  }
  #home-7reasons-container .right {
    flex: 0 1 220px;
    padding-left: 20px;
  }
}
@media (min-width: 1181px) {
  .path-frontpage #top-no-wrap .banner-inner {
    padding: 200px 0 140px 0;
  }
  .path-frontpage #top-no-wrap h2 {
    font-size: 42px;
  }
  .path-frontpage #top-no-wrap p {
    font-size: 19px;
  }
  #home-top {
    margin-top: 80px;
  }
  #home-7reasons-container h3 {
    font-size: 28px;
    flex: 0 1 570px;
  }
}
@media (min-width: 1300px) {
    .path-frontpage #top-no-wrap .banner-inner {
    padding: 240px 0 160px 0;
      width: 850px;
  }
  .path-frontpage #top-no-wrap h2 {
    font-size: 50px;
  }
  .path-frontpage #top-no-wrap p {
    font-size: 22px;
  }
}

/************ Services pages ************/

#services-top .services-page-body {
  margin-top: 20px;
}
.block-views-blockaccordians-block-1 {
  margin-top: 40px;
}
#services-pages-projects .wrap {
  background: #f4f5f5;
  padding: 40px;
}
@media (min-width: 768px) {
  #services-top .services-page-body {
    margin-top: 30px;
  }
}
@media (min-width: 1181px) {
  #services-top .services-page-body {
    margin-top: 40px;
  }
	#services-pages-projects .wrap {
    padding: 60px;
  }
}

/****************** About us pages ***************/
.about-councils-box {
  background: #f4f5f5;
  padding: 40px;
  text-align: center;
}
.about-councils-box .block-inline-blockimage {
  margin-top: 25px;
}
#about-why-benefits .about-why-icon-box {
  background: #f4f5f5;
  padding: 40px;
  text-align: center;
}
#about-why-benefits .about-why-icon-box h2 {
  margin-bottom: 40px;
}
.about-why-icon-box .boxes-container h3 {
  margin-top: 10px;
  margin-bottom: 5px;
}
.about-why-icon-box .boxes-container img {
  max-width: 100px;
}
.about-why-icon-box .boxes-container p {
  margin-bottom; 0;
}
.block-views-blockservices-block-3 {
  margin-top: 30px;
}
.page-node-32 #under-top {
  padding: 40px 0;
  background: #f4f5f5;
}
#about-projects-list ul.cols2 {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .page-node-32 #under-top {
    padding: 50px 0;
  }
}

@media (min-width: 900px) {
  #about-projects-list .cols2 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
  }
}

@media (min-width: 1181px) {
  #about-why-benefits .about-why-icon-box {
    padding: 80px;
  }
  #about-why-benefits .about-why-icon-box h2 {
    margin-bottom: 60px;
  }
  #about-why-benefits .grid.grid-cols3 {
    gap: 40px;
  }
  .block-views-blockservices-block-3 {
    margin-top: 40px;
  }
  .page-node-32 #under-top {
    padding: 80px 0;
  }
  #about-projects-list .cols2 {
    gap: 30px 50px;
  }

}

/********************** Projects pages *************************/
#projects-main-top .project-det-summary {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
}
#projects-main-top .project-det-summary::after {
  display: block;
  content: "";
  width: 50px;
  height: 2px;
  margin-top: 15px;
  background: #850a0d;
}
#projects-main-top .project-det-item {
  margin-bottom: 10px;
}
.project-det-item.last {
  margin-bottom; 0;
}
.project-det-item.last a {
  color: #850a0d;
}
.project-det-item.last a::after {
  content: ",";
  margin-right: 2px;
}
.project-det-item.last a:last-child::after {
  display: none;
}
#projects-page-gallery .gallery-item {
  background: #fff;
}
#projects-page-gallery .gallery-item img {
  display: block;
}
#projects-page-gallery .gallery-item p {
  padding: 25px;
  margin: 0;
  text-align: center;
}
@media (min-width: 1181px) {
  #projects-main-top .project-det-summary {
    font-size: 18px;
    line-height: 2;
  }
  #projects-main-top .project-det-summary::after {
    width: 70px;
    margin-top: 20px;
  }
  #projects-page-gallery .gallery-item p {
    font-size: 15px;
  }
}

/*************************** News individual pages ***************************/
#news-pages-top h1 {
  margin-bottom: 12px;
  border-bottom: 1px solid #efefef;
  padding-bottom: 15px;
}
#news-pages-top .news-main-det-item {
  font-size: 13px;
  line-height: 1;
}
#news-pages-top .news-main-det-item::after {
  content: "•";
  margin: 0 7px;
  font-weight: 700;
}
#news-pages-top .news-main-det-item .field__label {
  font-weight: 400;
  display: inline;
  margin-right: 5px;
}
#news-pages-top .block-field-blocknodelatestnewscreated {
  display: inline-block;
  line-height: 1;
}
#news-pages-top .block-field-blocknodelatestnewsfield-category {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  margin-left: 3px;
}
#news-pages-top .block-field-blocknodelatestnewsfield-category .news-main-det-item::after {
  display: none;
}
#news-pages-top .block-social-sharing-block {
  margin-top: 10px;
}
#news-pages-top .block-social-sharing-block h2 {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  margin: 0;
  font-size: 13px;
  font-weight: 400;
}
#news-pages-top .block-social-sharing-block .social-media-sharing {
  display: inline-block;
  vertical-align: middle;
  margin-left: 7px;
  line-height: 1;
}
#news-pages-top .social-media-sharing ul {
  margin: 0;
  line-height: 1;
}
#news-pages-top .social-media-sharing li {
  margin: 0 5px 0 0;
}
#news-pages-top .social-media-sharing a {
  display: inline-block;
}
#news-pages-top .social-media-sharing .share img {
  width: 25px;
}
.block-field-blocknodelatestnewsfield-images {
  margin-top: 11px;
  margin-bottom: 20px;
  border-top: 1px solid #efefef;
  padding-top: 25px;
}

@media (min-width: 1181px) {
  #news-pages-top h1 {
    padding-bottom: 20px;
    margin-bottom: 16px;
    font-size: 36px;
  }
  #news-pages-top .news-main-det-item,
  #news-pages-top .block-social-sharing-block h2 {
    font-size: 14px;
  }
  #news-pages-top .block-social-sharing-block {
    display: inline-block;
    margin-left: 20px;
    margin-top: 0;
    vertical-align: middle;
  }
  #news-pages-top .block-social-sharing-block {
    margin-left: 3px;
  }
  #news-pages-top .block-field-blocknodelatestnewsfield-category .news-main-det-item::after {
    display: inline-block;
  }
  .block-field-blocknodelatestnewsfield-images {
    padding-top: 30px;
  }
}

/****** 7 Reasons Why page ******/

.reasons-list .item {
  margin-bottom: 40px;
  position: relative;
}
.reasons-list .number {
  background: #373636;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  width: 50px;
  height: 50px;
  font-size: 18px;
  line-height: 50px;
  padding: 0;
  border-radius: 50px;
  position: absolute;
  top: -5px;
  left: -20px;
  z-index: 9999;
}
.reasons-list .reason p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  padding: 10px 20px 10px 40px;
  background: #efefef;
  font-weight: 500;
}
 .reasons-list .item .reason span {
  margin: 0;
  display: block;
  padding: 20px;
  padding: 10px 20px 10px 40px;
  font-size: 14px;
  color: #850a0d;
  background: #faf3f3;
  font-style: italic;
}
@media (min-width: 768px) {
  .reasons-list .item {
    display: flex;
    align-items: stretch;
    margin-bottom: 5px;
    flex-wrap: wrap;
  }
  .reasons-list .number {
    flex: 0 1 50px;
    padding-top: 20px;
    font-size: 26px;
    border-radius: 0;
    position: relative;
    height: auto;
    width: 50px;
    top: unset;
    left: unset;
    border-right: 5px solid #ffffff;
  }
  .reasons-list .reason {
    flex: 1;
    height: 100%;
    display: flex;
  }
  .reasons-list .reason p {
    flex: 0 1 50%;
    padding: 25px;
    border-right: 5px solid #ffffff;
  }
  .reasons-list .item .reason span {
    flex-basis: 50%;
    padding: 25px;
    font-size: 15px;
  }
}
@media (min-width: 1168px) {
  .reasons-list .number {
    flex: 0 1 100px;
    font-size: 30px;
    padding-top: 30px;
  }
  .reasons-list .reason p,
  .reasons-list .item .reason span {
    font-size: 16px;
    padding: 30px;
  }
  
}

/********* Contact page **************/

#contact-page-top .c-logo img {
  max-width: 200px;
}
#contact-page-top p {
  margin-bottom: 5px;
}
#contact-page-top .c-name {
  font-size: 17px;
  line-height: 1.5;
  margin-top: 20px;
  font-weight: 600;
}
#contact-page-top .c-dets {
  color: #373636;
  font-size: 16px;
  font-weight: 500;
}
#contact-page-top .c-dets i {
  color: #373636;
  margin-right: 7px;
}
#contact-page-top .c-socials {
    font-size: 17px;
    line-height: 38px;
    margin-top: 20px;
}
#contact-page-top .c-socials a {
    margin-right: 10px;
    color: #373636;
    border: 2px solid;
    border-radius: 40px;
    width: 40px;
    height: 40px;
    text-align: center;
    display: inline-block;
    opacity: 0.9;
}
#contact-page-top .c-socials a:hover {
    opacity: 1;
}
#contact-page-top .last.flex-item {
  margin-top: 40px;
}
#contact-page-map iframe {
  width: 100%;
  height: 400px;
}
@media (min-width: 768px) {
  #contact-page-top .c-dets {
    font-size: 15px;
  }
  #contact-page-top .last.flex-item {
    margin-top: 0;
  }
}
@media (min-width: 1000px) {
  #contact-page-top .c-logo img {
    max-width: none;
  }
  #contact-page-top .c-dets {
    font-size: 16px;
  }
  #contact-page-top .last.flex-item {
    margin-top: 0;
  }
}
@media (min-width: 1181px) {
  #contact-page-top .c-name {
    font-size: 22px;
  }
  #contact-page-top .c-dets {
    font-size: 18px;
  }
  #contact-page-top .last.flex-item {
    margin-top: 0;
  }
  #contact-page-map iframe {
    height: 500px;
  }
}


/******* Free quote page **********/
#quote-page-top .bigger {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}
@media (min-width: 768px) {
  #quote-page-top .bigger {
  font-size: 17px;
  }
}
@media (min-width: 1000px) {
  #quote-page-top .bigger {
  font-size: 18px;
  }
}

/*** Front end user stuff ***/
.user-login-form {
  width: 1200px;
  max-width: 80%;
  margin: 0 auto;
}

/* Admin stuff */
.layout-builder-form #edit-actions {
  margin-bottom: 20px;
}
.layout-builder-form #edit-actions input {
  display: inline;
}
.layout-builder-form #edit-preview-toggle {
  margin-top: 30px;
}
.layout-builder-form .form-type-vertical-tabs {
  margin-bottom: 30px;
}
.tabs ul.primary {
  border-bottom: 1px solid #bbb;
  border-collapse: collapse;
  height: auto;
  line-height: normal;
  list-style: outside none none;
  margin: 5px 5px 40px 0px;
  padding: 0;
  white-space: nowrap;
  font-size: 15px;
}
#drupal-off-canvas-wrapper {
  width: 1200px !important;
}
nav.tabs,
article.profile,
.path-user .block-system-main-block,
.layout-builder-form,
.layout-builder-discard-changes,
#layout-builder-revert-overrides {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto 0 auto;
}
.path-user .block-system-main-block,
.layout-builder-discard-changes {
  margin-bottom: 100px;
}
.page-node-type-article nav.tabs {
  width: 900px;
  margin-top: 50px;
}
.layout-builder-discard-changes #edit-actions,
#layout-builder-revert-overrides #edit-actions {
  margin-top: 30px;
}
.layout-builder .mob-show {
  display: block;
}
.layout-builder .mob-hide {
  display: block;
}
.layout-builder .small-mob-hide,
.layout-builder .inline-small-mob-hide {
  display: block;
}
.layout-builder .tab-show {
  display: block;
}
.layout-builder .med-tab-show {
  display: block;
}
@media (min-width: 900px) {
  .layout-builder .tab-med-show {
    display: none;
  }
}
@media (min-width: 1181px) {
  .layout-builder .desk-hide {
    display: block;
  }
}

