:root {
  /* Colors */
  --primary: #7C0041;
  --secondary: #F9CB01;
  --white: #ffffff;
  --black: #000000;
  --lightgrey: #f5f5f5;
  --dark: #27000D;

  /* Fonts */
  --defaultFont: "Roboto", sans-serif;
  --headingFont: "Roboto Serif", serif;
  --FontAwesome: "Font Awesome\ 6 Pro";
}

/*
Table Of Contents

 1.) Typography
 2.) Default Styles
 3.) Header - Main
 4.) Content - Main
 5.) Footer - Main
 6.) Inner - Pages
 7.) Modals
 8.) Text - Colors / Wordpress Cores

========================================*/
/*
 1.) Typography
----------------------------------------*/

/*
 2.) Default Styles
----------------------------------------*/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p,
ol,
ul,
li {
  padding: 0;
  margin: 0;
}

body {
  -webkit-font-smoothing: antialiased;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  font-family: var(--defaultFont);
  font-weight: 400;
  font-size: 18px;
  color: var(--black);
  line-height: 30px;
  background: var(--white);
  margin: 0;
  padding: 0;
}

sub,
sup {
  font-size: 60%;
}

sup {
  top: 0;
}

sub {
  bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  body {
    font-size: 17px;
    line-height: 26px;
  }
}

/* Background & Color Classes */
.bg-white {
  background-color: var(--white);
}

.bg-grey {
  background-color: var(--lightgrey);
}

.bg-dark {
  background-color: var(--dark) !important;
  color: var(--white);
}

.bg-black {
  background-color: var(--black);
  color: var(--white);
}

.bg-primary {
  background-color: var(--primary) !important;
  color: var(--white);
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.txt-white {
  color: var(--white);
}

.txt-dark {
  color: var(--dark);
}

.txt-black {
  color: var(--black);
}


/*= Links
=======================================================*/
a {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
  cursor: pointer;
}

a:hover,
a:focus,
a:active {
  color: var(--primary);
  text-decoration: underline;
}

a:visited {
  outline: 0;
}

a[href^="mailto:"] {
  word-break: break-all;
}

.bg-primary p a,
.bg-dark p a,
.bg-primary .aside a,
.bg-dark .aside a {
	color: var(--white);
}
.bg-primary p a:hover,
.bg-primary p a:active,
.bg-primary p a:focus,
.bg-primary .aside a:hover,
.bg-primary .aside a:active,
.bg-primary .aside a:focus,
.bg-dark .aside a:hover,
.bg-dark .aside a:active,
.bg-dark .aside a:focus,
.bg-dark p a:hover,
.bg-dark p a:active,
.bg-dark p a:focus {
	color: var(--secondary);
}

/*= Headings: P, H1, H2, H3, H4, H5, H6
=======================================================*/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--headingFont);
  font-weight: 400;
  padding-bottom: 19px;
}

h1,
.h1 {
  font-size: 64px;
  line-height: 80px;
  padding-bottom: 25px;
  font-weight: 500;
}

h2,
.h2 {
  font-size: 45px;
  line-height: 50px;
}

h3,
.h3 {
  font-weight: 400;
  font-size: 35px;
  line-height: 45px;
}

h4,
.h4 {
  font-size: 28px;
  line-height: 38px;
}

h5,
.h5 {
  font-size: 24px;
  line-height: 34px;
}

h6,
.h6 {
  font-size: 20px;
  line-height: 30px;
}

h3.h1,
h3.h2,
h3.h3,
h3.h4,
h3.h5,
h3.h6 {
  font-weight: inherit;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-weight: inherit;
  color: inherit;
}

h1:last-child,
.h1:last-child,
h2:last-child,
.h2:last-child,
h3:last-child,
.h3:last-child,
h4:last-child,
.h4:last-child,
h5:last-child,
.h5:last-child,
h6:last-child,
.h6:last-child {
  padding-bottom: 0;
}

p {
  padding-bottom: 20px;
}

p:last-child {
  padding-bottom: 0;
}

.txt {
  margin-bottom: 60px;
}

.txt:last-child {
  margin-bottom: 0;
}

em {
  font-style: italic;
}

em.fal,
em.far,
em.fas,
em.fab {
  font-style: normal;
}

strong {
  font-weight: 700;
}

@media (max-width: 1199px) {
  h1,
  .h1 {
    font-size: 50px;
    line-height: 60px;
  }

  h2,
  .h2 {
    font-size: 40px;
    line-height: 50px;
  }
}

@media (max-width: 767px) {
  h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3,
  h4,
  .h4,
  h5,
  .h5,
  h6,
  .h6 {
    padding-bottom: 16px;
  }

  h1,
  .h1 {
    font-size: 40px;
    line-height: 50px;
    padding-bottom: 20px;
  }

  h2,
  .h2 {
    font-size: 34px;
    line-height: 44px;
  }

  h3,
  .h3 {
    font-size: 28px;
    line-height: 38px;
  }

  .txt {
    margin-bottom: 50px;
  }
}

/*= Unorder List
=======================================================*/
ul,
ol {
  list-style: none;
}

li {
  position: relative;
  padding-left: 17px;
  padding-bottom: 10px;
}

li:last-child {
  padding-bottom: 20px;
}

li:before {
  position: absolute;
  top: 0;
  left: 0;
}

ul li:before {
  content: "\f111";
  font-family: var(--FontAwesome);
  color: var(--primary);
  font-weight: 900;
  font-size: 35%;
  line-height: 35%;
  position: absolute;
  top: 13px;
  left: 0;
}

ul:last-child li:last-child,
ol:last-child li:last-child {
  padding-bottom: 0;
}

ul li ul,
ol li ol {
  padding: 14px 0 0 0;
}

/*= Order List
=======================================================*/
ol {
  counter-reset: item;
}

ol>li {
  counter-increment: item;
  padding-left: 35px;
}

ol>li:before {
  content: counter(item);
  width: 23px;
  height: 23px;
  float: left;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 70%;
  color: var(--secondary);
  line-height: 70%;
  text-align: center;
  background: var(--primary);
  border-radius: 9000px;
  position: absolute;
  top: 1px;
  left: 0;
}

/* #Input Styles
================================================= */
select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: 0;
}

select,
textarea,
input {
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
  -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
}

label {
  width: 100%;
  font-family: var(--defaultFont);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  padding: 0;
  margin: 0 0 10px 0;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  width: 100%;
  height: 64px;
  font-family: var(--defaultFont);
  font-weight: 400;
  font-size: 20px;
  color: var(--dark);
  line-height: 26px;
  white-space: nowrap;
  text-overflow: ellipsis;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 5px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  overflow: hidden;
  position: relative;
  padding: 15px 30px;
  margin: 0;
}

textarea {
  height: 175px;
  line-height: 30px;
  white-space: normal;
  outline: none;
  resize: none;
}

select {
  background-image: url(../img/chevron-down.svg);
  background-size: 20px auto;
  background-repeat: no-repeat;
  background-position: top 21px right 28px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-top: 0;
  padding-right: 80px;
  padding-bottom: 0;
}

select::-ms-expand {
  display: none;
}

select.colorize expand-item.def:not([disabled]),
select.colorize.empty:not([disabled]) {
  color: var(--dark);
}

::-webkit-input-placeholder,
::-webkit-textarea-placeholder {
  color: var(--dark);
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: var(--dark);
}

::-moz-placeholder {
  color: var(--dark);
}

::-ms-input-placeholder {
  color: var(--dark);
}

select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
  box-shadow: inset var(--dark) 0 0 0 1px, rgba(0, 0, 0, .35) 0 0 15px;
  outline: 0;
}

.gform_wrapper.gravity-theme .gform_footer button,
.gform_wrapper.gravity-theme .gform_footer input,
.gform_wrapper.gravity-theme .gform_page_footer button,
.gform_wrapper.gravity-theme .gform_page_footer input {
  margin: 0 auto;
}

.gform_wrapper.gravity-theme input[type=color],
.gform_wrapper.gravity-theme input[type=date],
.gform_wrapper.gravity-theme input[type=datetime-local],
.gform_wrapper.gravity-theme input[type=datetime],
.gform_wrapper.gravity-theme input[type=email],
.gform_wrapper.gravity-theme input[type=month],
.gform_wrapper.gravity-theme input[type=number],
.gform_wrapper.gravity-theme input[type=password],
.gform_wrapper.gravity-theme input[type=search],
.gform_wrapper.gravity-theme input[type=tel],
.gform_wrapper.gravity-theme input[type=text],
.gform_wrapper.gravity-theme input[type=time],
.gform_wrapper.gravity-theme input[type=url],
.gform_wrapper.gravity-theme input[type=week],
.gform_wrapper.gravity-theme select,
.gform_wrapper.gravity-theme textarea {
  padding: 5px 20px !important;
}

p.gform_required_legend {
  font-size: 90%;
  padding-bottom: 1.5em;
  opacity: 0.8;
}

@media (max-width: 767px) {
  label {
    font-size: 17px;
    line-height: 23px;
  }

  select,
  textarea,
  input[type="text"],
  input[type="password"],
  input[type="datetime"],
  input[type="datetime-local"],
  input[type="date"],
  input[type="month"],
  input[type="time"],
  input[type="week"],
  input[type="number"],
  input[type="email"],
  input[type="url"],
  input[type="search"],
  input[type="tel"],
  input[type="color"],
  .uneditable-input {
    height: 54px;
    font-size: 18px;
    line-height: 24px;
    padding: 12px 25px;
  }

  textarea {
    height: 185px;
    line-height: 28px;
  }

  select {
    background-size: 18px auto;
    background-position: top 18px right 23px;
    padding-right: 60px;
  }
}

/* Error */
.error {
  display: none;
}

.error-wrap .error {
  width: 100%;
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: #ff0000;
  line-height: 26px;
  overflow: hidden;
  padding: 0;
  margin: 7px 0 0 0;
}

@media (max-width: 767px) {
  .error-wrap .error {
    font-size: 14px;
    line-height: 24px;
  }
}

/* Form - Check */
.form-check {
  width: 100%;
  min-height: 23px;
  float: none;
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 0 0 0 35px;
  margin: 0 0 14px 0;
}

.form-check:last-child {
  margin-bottom: 0;
}

.form-check .form-check-input {
  width: 23px;
  height: 23px;
  float: none;
  display: inline-block;
  vertical-align: top;
  background: none;
  border: 1px solid var(--black);
  border-radius: 900px;
  box-shadow: none;
  outline: 0;
  position: absolute;
  top: 1px;
  left: 0;
  padding: 0;
  margin: 0;
}

.form-check .form-check-input[type="checkbox"] {
  border-radius: 0;
}

.form-check .form-check-input:focus,
.form-check .form-check-input:active {
  filter: brightness(100%);
}

.form-check .form-check-input:checked {
  background-repeat: no-repeat;
  background-image: url(../img/square-solid.svg);
  background-position: center center;
  background-size: 15px auto;
}

.form-check .form-check-input:checked[type="radio"] {
  background-image: url(../img/circle-solid.svg);
  background-size: 15px auto;
}

.form-check .form-check-label {
  text-transform: none;
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0;
}

.form-check-wrap .form-input {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 0 0 0 37px;
}

.form-check-wrap .form-input input,
.form-check-wrap .form-input textarea,
.form-check-wrap .form-input select {
  margin-top: 6px;
}

.form-check-wrap {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 12px;
}

.form-check-wrap:last-child {
  margin-bottom: 0;
}

.form-check-wrap .form-check {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .form-check .form-check-input {
    top: -1px;
  }
}

/* File - Upload */
input[type=file] {
  width: 100%;
  font-size: 16px;
  line-height: 24px;
}

input[type=file]::file-selector-button {
  font-family: var(--defaultFont);
  font-weight: 400;
  font-size: 18px;
  color: var(--white);
  line-height: 24px;
  border: 1px solid var(--primary);
  background: var(--primary);
  border-radius: 5px;
  border: none;
  cursor: pointer;
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
  outline: 0;
  padding: 19px 35px;
  margin: 0 15px 0 0;
}

input[type=file]::file-selector-button:hover {
  color: var(--primary);
  background: var(--white);
  box-shadow: inset var(--primary) 0 0 0 1px;
}

.txt-size {
  font-size: 16px;
  line-height: 24px;
  margin-top: 12px;
}

@media (max-width: 767px) {
  input[type=file]::file-selector-button {
    padding: 15px 30px;
  }

  .upload-wrap {
    overflow: hidden;
  }
}

/* #Buttons
================================================== */
/* Arrow Right */
@keyframes arrowright {
  0% {
    margin-left: 6px;
    margin-right: 0;
  }

  75% {
    margin-left: 12px;
    margin-right: -6px;
  }

  100% {
    margin-left: 6px;
    margin-right: 0;
  }
}

@-webkit-keyframes arrowright {
  0% {
    margin-left: 6px;
    margin-right: 0;
  }

  75% {
    margin-left: 12px;
    margin-right: -6px;
  }

  100% {
    margin-left: 6px;
    margin-right: 0;
  }
}

/* Arrow Left */
@keyframes arrowleft {
  0% {
    margin-right: 6px;
    margin-left: 0;
  }

  75% {
    margin-right: 12px;
    margin-left: -6px;
  }

  100% {
    margin-right: 6px;
    margin-left: 0;
  }
}

@-webkit-keyframes arrowleft {
  0% {
    margin-right: 6px;
    margin-left: 0;
  }

  75% {
    margin-right: 12px;
    margin-left: -6px;
  }

  100% {
    margin-right: 6px;
    margin-left: 0;
  }
}

/* Icon Zoom In/Out */
@keyframes zoominout {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }

  75% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes zoominout {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }

  75% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

/* Custom - Select */
button {
  background: none;
  border: none;
  box-shadow: none;
  text-decoration: none;
  white-space: normal;
  cursor: pointer;
  outline: 0;
  padding: 0;
  margin: 0;
}

button:hover,
button:focus,
button:active,
button:active:focus,
button.active,
button.active:focus {
  outline: 0;
}

.btn,
input[type="button"],
input[type="submit"] {
  width: auto;
  height: auto;
  float: none;
  display: inline-block;
  vertical-align: middle;
  font-family: var(--defaultFont);
  font-weight: 600;
  font-size: 18px;
  line-height: 1em;
  color: var(--white);
  text-align: center;
  text-decoration: none;
  white-space: normal;
  background-color: var(--primary);
  border-radius: 5px;
  box-shadow: none;
  border: 2px solid var(--primary);
  overflow: hidden;
  position: relative;
  z-index: 1;
  cursor: pointer;
  outline: 0;
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
  padding: 15px 30px;
  margin: 0;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:active:focus,
.btn.active,
.btn.active:focus,
.btn:not(:disabled):not(.disabled).active {
  color: var(--dark);
  text-decoration: none;
  background: var(--secondary);
  border: 2px solid var(--secondary);
  outline: 0;
}

.btn-blank,
input.btn-blank[type="button"],
input.btn-blank[type="submit"],
input[type="submit"] {
  color: var(--primary);
  background-color: transparent;
  border: 2px solid var(--primary);
}

.btn-blank:hover,
.btn-blank:focus,
.btn-blank:active,
.btn-blank:active:focus,
.btn-blank.active,
.btn-blank.active:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active,
input[type="button"]:active:focus,
input[type="button"].active,
input[type="button"].active:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active,
input[type="submit"]:active:focus,
input[type="submit"].active,
input[type="submit"].active:focus,
input.btn-blank[type="button"]:hover,
input.btn-blank[type="button"]:focus,
input.btn-blank[type="button"]:active,
input.btn-blank[type="button"]:active:focus,
input.btn-blank[type="button"].active,
input.btn-blank[type="button"].active:focus,
input.btn-blank[type="submit"]:hover,
input.btn-blank[type="submit"]:focus,
input.btn-blank[type="submit"]:active,
input.btn-blank[type="submit"]:active:focus,
input.btn-blank[type="submit"].active,
input.btn-blank[type="submit"].active:focus,
.btn-blank:not(:disabled):not(.disabled).active {
  color: var(--dark);
  background-color: var(--secondary);
  border: 2px solid var(--secondary);
}

.btn-white,
input.btn-white[type="button"],
input.btn-white[type="submit"] {
  color: var(--primary);
  background: var(--white);
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white:active:focus,
.btn-white.active,
.btn-white.active:focus,
input.btn-white[type="button"]:hover,
input.btn-white[type="button"]:focus,
input.btn-white[type="button"]:active,
input.btn-white[type="button"]:active:focus,
input.btn-white[type="button"].active,
input.btn-white[type="button"].active:focus,
input.btn-white[type="submit"]:hover,
input.btn-white[type="submit"]:focus,
input.btn-white[type="submit"]:active,
input.btn-white[type="submit"]:active:focus,
input.btn-white[type="submit"].active,
input.btn-white[type="submit"].active:focus,
.btn-white:not(:disabled):not(.disabled).active {
  color: var(--dark);
  background: var(--secondary);
}

.btn-blank-white,
input.btn-blank-white[type="button"],
input.btn-blank-white[type="submit"] {
  color: var(--white);
  background-color: transparent;
  border: 2px solid var(--white);
}

.btn-blank-white:hover,
.btn-blank-white:focus,
.btn-blank-white:active,
.btn-blank-white:active:focus,
.btn-blank-white.active,
.btn-blank-white.active:focus,
input.btn-blank-white[type="button"]:hover,
input.btn-blank-white[type="button"]:focus,
input.btn-blank-white[type="button"]:active,
input.btn-blank-white[type="button"]:active:focus,
input.btn-blank-white[type="button"].active,
input.btn-blank-white[type="button"].active:focus,
input.btn-blank-white[type="submit"]:hover,
input.btn-blank-white[type="submit"]:focus,
input.btn-blank-white[type="submit"]:active,
input.btn-blank-white[type="submit"]:active:focus,
input.btn-blank-white[type="submit"].active,
input.btn-blank-white[type="submit"].active:focus,
.btn-blank-white:not(:disabled):not(.disabled).active {
  color: var(--dark);
  background-color: var(--secondary);
  border: 2px solid var(--secondary);
}

.btn:focus,
input[type="button"]:focus,
input[type="submit"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: 2px;
}

.disabled {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: .65;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: .65;
}

a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}

.btn-out {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  margin-top: 18px;
}

.btn-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 18px -10px -20px -10px;
}

.btn-wrap .btn {
  float: left;
  margin: 0 10px 20px 10px;
  text-decoration: none;
}

.bg-primary .btn-blank,
.bg-dark .btn-blank {
	color: var(--white);
    background-color: transparent;
    border: 2px solid var(--white);
}
.bg-primary .btn.btn-blank:hover,
.bg-primary .btn.btn-blank:focus,
.bg-primary .btn.btn-blank:active,
.bg-dark .btn.btn-blank:hover,
.bg-dark .btn.btn-blank:active,
.bg-dark .btn.btn-blank:focus {
	color: var(--dark);
    background-color: var(--secondary);
    border: 2px solid var(--secondary);
}

@media (max-width: 1199px) {
  .btn-out,
  .btn-wrap {
    margin-top: 14px;
  }
}

@media (max-width: 767px) {
  .btn,
  input[type="button"],
  input[type="submit"] {
    padding: 15px 30px;
  }

  .btn-out,
  .btn-wrap {
    margin-top: 10px;
  }
}

/* Table */
table,
tbody,
thead,
tr,
th,
td {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  padding: 0;
  margin: 0;
}

/* Figure */
figure,
.figure {
  vertical-align: top;
}

.break-word {
  word-wrap: break-word;
}

/* #Owl-carousel
=======================================================*/
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  width: 100%;
  display: inline-block;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* Owl Carousel - Animate Plugin */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* Owl Carousel - Auto Height Plugin */
.owl-height {
  transition: height 500ms ease-in-out;
}

/* Owl Carousel - Lazy Load Plugin */
.owl-carousel .owl-item {
  /**
This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
calculation of the height of the owl-item that breaks page layouts
*/
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/* Owl Carousel - Video Plugin */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  /*background: url("owl.video.play.png") no-repeat;*/
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/* #Slider Controls
================================================== */
/* Previous and Next */
.owl-nav button {
  width: 35px;
  height: 35px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  font-weight: inherit;
  font-size: 18px;
  color: var(--primary);
  line-height: 1em;
  text-decoration: none;
  text-align: center;
  border: 2px solid var(--primary);
  background: none;
  box-shadow: none;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  overflow: hidden;
  cursor: pointer;
  z-index: 2;
  outline: 0;
  padding: 0;
  margin: 0;
}

.owl-nav button:hover,
.owl-nav button:focus,
.owl-nav button:active {
  color: var(--white);
  background: var(--black);
  outline: 0;
}

.owl-nav button.owl-prev {
  left: 0;
}

.owl-nav button.owl-next {
  right: 0;
}

.owl-nav button.disabled {
  cursor: default;
  pointer-events: none;
  opacity: .50;
}

.owl-nav.disabled {
  display: none;
}

@media (max-width: 767px) {
  .owl-nav button {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}

/* Bullets */
.owl-dots {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  line-height: .5em;
  text-align: center;
  margin: 50px 0 0 0;
}

.owl-dots button.owl-dot {
  width: 15px;
  height: 15px;
  float: none;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  background: var(--lightgrey);
  border: 1px solid var(--primary);
  box-shadow: none;
  border-radius: 360px;
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
  position: relative;
  cursor: pointer;
  padding: 0;
  margin: 0 8px;
}

.owl-dots button.owl-dot:hover,
.owl-dots button.owl-dot:focus .owl-dots button.owl-dot:active,
.owl-dots button.owl-dot.active {
  background: var(--primary);
}

.owl-dots.disabled {
  display: none;
}

@media (max-width: 767px) {
  .owl-dots {
    margin: 40px 0 0 0;
  }

  .owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
  }
}

/* #Flying focus
================================================== */
#flying-focus {
  position: absolute;
  margin: 0;
  background: transparent;
  -webkit-transition-property: left, top, width, height, opacity;
  transition-property: left, top, width, height, opacity;
  -webkit-transition-timing-function: cubic-bezier(0, 0.2, 0, 1);
  transition-timing-function: cubic-bezier(0, 0.2, 0, 1);
  visibility: hidden;
  pointer-events: none;
  box-shadow: -webkit-focus-ring-color 0 0 0 2px;
  border-radius: 0;
}

#flying-focus.flying-focus_visible {
  visibility: visible;
  z-index: 9999;
}

.flying-focus_target {
  outline: none !important;
  /* Doesn't work in Firefox :( */
}

/* http://stackoverflow.com/questions/71074/how-to-remove-firefoxs-dotted-outline-on-buttons-as-well-as-links/199319 */
.flying-focus_target::-moz-focus-inner {
  border: 0 !important;
}

/* Replace it with @supports rule when browsers catch up */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  #flying-focus {
    box-shadow: none;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -3px;
  }
}

/* Skip - Button */
.skip-btn {
  height: 50px;
  float: left;
  font-weight: 400;
  font-size: 18px;
  color: var(--white);
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  background: var(--primary);
  border-radius: 5px;
  -webkit-transition: top 1s ease-out, background 1s linear;
  transition: top 1s ease-out, background 1s linear;
  overflow: hidden;
  position: absolute;
  z-index: 1001;
  top: -54px;
  left: 3px;
  opacity: 0;
  padding: 0 30px;
  margin: 0;
}

.skip-btn:focus,
.skip-btn:active {
  top: 3px;
  color: var(--primary);
  text-decoration: none;
  background: var(--white);
  border: 2px solid var(--primary);
  -webkit-transition: top .1s ease-in, background .5s linear;
  transition: top .1s ease-in, background .5s linear;
  opacity: 1;
}

/*= Container - Main
=======================================================*/
.container-main {
  width: 100%;
  min-height: 100vh;
  float: left;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

/* Container */
.container {
  width: 100%;
  max-width: 1250px;
  padding: 0 40px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .container.max-970 {
    max-width: 1050px;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 640px;
    padding: 0 8%;
  }
}

/* Dropdown - Menu */
.dropdown-menu {
  font-size: inherit;
  z-index: 7;
}

/* Icon */
.icon {
  margin-bottom: 25px;
}

.icon:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .icon {
    margin-bottom: 20px;
  }
}

/* Figure */
.figure {
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.figure:last-child {
  margin-bottom: 0;
}

.figure img {
  width: 100%;
  vertical-align: top;
}

@media (max-width: 767px) {
  .figure {
    margin-bottom: 50px;
  }
}

/* Divider */
.divider {
  width: 100%;
  height: 2px;
  float: none;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  margin-bottom: 60px;
}

.divider span {
  width: 100%;
  height: 1px;
  float: left;
  background: #b4b4b4;
  text-indent: 99999px;
  overflow: hidden;
}

.divider:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .divider span {
    animation-delay: 1s;
  }
}

@media (max-width: 767px) {
  .divider {
    margin-bottom: 50px;
  }
}

/* Read - More */
.read-more {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  line-height: 1.2em;
  margin: 14px 0 0 0;
}

.read-more a,
.read-more .a {
  float: none;
  display: inline-block;
  vertical-align: top;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
  position: relative;
  padding-bottom: 2px;
  z-index: 1;
}

.read-more a:last-child,
.read-more .a:last-child {
  margin-bottom: 0;
}

.read-more a:before,
.read-more .a:before {
  content: "";
  width: 0;
  height: 2px;
  float: left;
  background: var(--primary);
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.read-more a em,
.read-more .a em {
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
  position: relative;
  top: 1px;
  margin: 0 0 0 6px;
  color: var(--secondary);
}

.read-more a:hover,
.read-more a:focus,
.read-more a:active,
a.box:hover .read-more .a,
a.box:focus .read-more .a,
a.box:active .read-more .a {
  text-decoration: none;
  color: var(--primary);
  border-color: var(--primary);
}

.read-more a:hover:before,
.read-more a:focus:before,
.read-more a:active:before,
a.box:hover .read-more .a:before,
a.box:focus .read-more .a:before,
a.box:active .read-more .a:before {
  width: 100%;
}

.read-more a:hover em,
.read-more a:focus em,
.read-more a:active em,
a.box:hover .read-more .a em,
a.box:focus .read-more .a em,
a.box:active .read-more .a em {
  animation: arrowright 0.5s linear 1;
  -webkit-animation-name: arrowright 0.5s linear 1;
}

@media (max-width: 767px) {
  .read-more {
    margin: 10px 0 0 0;
  }

  .read-more a,
  .read-more .a {
    margin-bottom: 20px;
  }
}

/* Blockquote */
blockquote {
	padding: 10px 40px 10px 20px; 
	border-left: 3px solid var(--primary);
	margin-left: 30px;
}

.blockquote {
  font-weight: 400;
  font-size: 25px;
  line-height: 35px;
  background: none;
  border: none;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  padding: 0;
  margin: 0 0 60px 0;
}

.blockquote p {
  position: relative;
  padding: 0 0 0 29px;
}

.blockquote p:before,
.blockquote p:after {
  content: "";
  width: 3px;
  height: 50%;
  float: left;
  background: var(--black);
  position: absolute;
  left: 0;
}

.blockquote p:before {
  top: 8px;
}

.blockquote p:after {
  bottom: 5px;
}

@media (max-width: 1199px) {
  .blockquote {
    font-size: 22px;
    line-height: 32px;
  }
}

@media (max-width: 767px) {
  .blockquote {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 50px;
  }
}

/* Social - Links */
.social-links {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 60px;
}

.social-links:last-child {
  margin-bottom: 0;
}

.social-links ul {
  float: none;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  margin: 0 -11px -20px -11px;
}

.social-links ul li {
  float: none;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  margin: 0 11px 20px 11px;
}

.social-links ul li:before {
  display: none;
}

.social-links ul li a {
  float: none;
  display: inline-block;
  vertical-align: top;
  font-size: 20px;
  color: var(--white);
  line-height: 1em;
  text-decoration: none;
}

.social-links ul li a.fa-twitter {
  width: 25px;
  height: 20px;
  background: url(../img/x.svg) no-repeat center center;
  background-size: 100% auto;
  text-indent: -99999px;
}

.social-links ul li a:hover,
.social-links ul li a:focus,
.social-links ul li a:active {
  color: var(--secondary);
  text-decoration: none;
}

.social-links ul li a.fa-twitter:hover,
.social-links ul li a.fa-twitter:focus,
.social-links ul li a.fa-twitter:active {
  background-image: url(../img/x-hover.svg);
}

@media (max-width: 767px) {
  .social-links {
    margin-bottom: 50px;
  }
}

/* Social - Links2 */
.social-links2 {
  float: none;
  display: inline-block;
  vertical-align: middle;
  margin: 0 -6px -10px -6px;
  position: relative;
  top: -10px;
}

.social-links2 a,
.social-links2 .a {
  float: none;
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  line-height: 1em;
  text-decoration: none;
  margin: 0 3px 3px 0;
}

.social-links2 a.fa-facebook-f,
.social-links2 .a.fa-facebook-f {
  font-size: 18px;
}

.social-links2 a.fa-twitter,
.social-links2 .a.fa-twitter {
  width: 22px;
  height: 20px;
  background: url(../img/x.svg) no-repeat center center;
  background-size: 100% auto;
  text-indent: -99999px;
}

.social-links2 a:hover,
.social-links2 a:focus,
.social-links2 a:active,
.social-links2 .a:hover,
.social-links2 .a:focus,
.social-links2 .a:active {
  color: #444444;
  text-decoration: none;
}

.social-links2 a.fa-twitter:hover,
.social-links2 a.fa-twitter:focus,
.social-links2 a.fa-twitter:active,
.social-links2 .a.fa-twitter:hover,
.social-links2 .a.fa-twitter:focus,
.social-links2 .a.fa-twitter:active {
  background-image: url(../img/x-hover.svg);
}

/* Heading - Txt */
.heading-txt {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  font-size: 25px;
  line-height: 35px;
  text-align: center;
  margin-bottom: 60px;
}

.heading-txt:last-child {
  margin-bottom: 0;
}

.heading-txt .aside {
  width: 100%;
  max-width: 825px;
  float: none;
  display: inline-block;
  vertical-align: top;
}

@media (max-width: 1199px) {
  .heading-txt {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 50px;
  }

  .heading-txt .aside {
    max-width: 730px;
  }
}

@media (max-width: 767px) {
  .heading-txt {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 40px;
  }
}

/* Heading - Txt2 */
.heading-txt2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 25px;
  line-height: 35px;
  padding-bottom: 60px;
  margin: 0 -20px -20px -20px;
}

.heading-txt2:last-child {
  padding-bottom: 0;
}

.heading-txt2 .left-wrap {
  width: 48%;
  float: left;
  padding: 0 20px 19px 20px;
}

.heading-txt2 .right-wrap {
  width: 52%;
  float: left;
  padding: 0 20px 19px 20px;
}

@media (max-width: 1199px) {
  .heading-txt2 {
    font-size: 22px;
    line-height: 32px;
    padding-bottom: 50px;
  }
}

@media (max-width: 991px) {
  .heading-txt2 .left-wrap {
    width: 100%;
  }

  .heading-txt2 .right-wrap {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .heading-txt2 {
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 40px;
    margin: 0 -15px -15px -15px;
  }

  .heading-txt2 .left-wrap {
    padding: 0 15px 15px 15px;
  }

  .heading-txt2 .right-wrap {
    padding: 0 15px 15px 15px;
  }
}

/* Heading - Txt3 */
.heading-txt3 {
  width: 100%;
  float: none;
  vertical-align: top;
  text-align: center;
  margin-bottom: 60px;
}

.heading-txt3:last-child {
  margin-bottom: 0;
}

.heading-txt3 .aside {
  width: 100%;
  max-width: 1000px;
  float: none;
  display: inline-block;
  vertical-align: top;
}

@media (max-width: 1199px) {
  .heading-txt3 {
    margin-bottom: 50px;
  }

  .heading-txt3 .aside {
    max-width: 730px;
  }
}

@media (max-width: 767px) {
  .heading-txt3 {
    margin-bottom: 40px;
  }
}

/* Form - Block */
.form-block {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 60px;
}

.form-block:last-child {
  margin-bottom: 0;
}

.form-block form {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  padding: 0;
  margin: 0;
}

.form-block ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 -15px -30px -15px;
}

.form-block ul li {
  width: 100%;
  float: left;
  line-height: 1em;
  padding: 0 15px;
  margin: 0 0 30px 0;
}

.form-block ul li:before {
  display: none;
}

.form-block ul li.half-width {
  width: 50%;
}

.form-block ul li.check-radio-wrap label {
  margin-bottom: 15px;
}

.form-block ul li.check-radio-wrap .form-check .form-check-label {
  margin-bottom: 0;
}

.form-block ul li.upload-wrap label {
  margin-bottom: 15px;
}

.form-block ul li.upload-wrap label:last-child {
  margin-bottom: 0;
}

.form-block .btn,
.form-block input[type="button"],
.form-block input[type="submit"] {
  min-width: 170px;
}

.form-block .btn-out {
  text-align: center;
  margin: 80px 0 40px 0;
}

.form-block .btn-out:last-child {
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .form-block .btn-out {
    margin-top: 60px;
  }
}

@media (max-width: 767px) {
  .form-block {
    margin-bottom: 50px;
  }

  .form-block ul li.half-width {
    width: 100%;
  }

  .form-block .btn-out {
    margin-top: 50px;
  }
}

/* Search - Box */
.search-box {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 60px;
}

.error404 #searchform input,
.search-no-results #searchform input,
.search-results #searchform input {
    max-width: 60%;
    margin-right: 10px;
    height: 50px;
}

.error404 #searchform input {
	margin-right: 0;
}

.search-box:last-child {
  margin-bottom: 0;
}

.search-box form {
  width: 100%;
  position: relative;
  padding: 0 74px 0 0;
  margin: 0;
}

.search-box select,
.search-box textarea,
.search-box input[type="text"],
.search-box input[type="password"],
.search-box input[type="datetime"],
.search-box input[type="datetime-local"],
.search-box input[type="date"],
.search-box input[type="month"],
.search-box input[type="time"],
.search-box input[type="week"],
.search-box input[type="number"],
.search-box input[type="email"],
.search-box input[type="url"],
.search-box input[type="search"],
.search-box input[type="tel"],
.search-box input[type="color"],
.search-box .uneditable-input {
  height: 64px;
}

.search-box .btn,
.search-box input[type="button"],
.search-box input[type="submit"] {
  min-width: inherit;
  width: 64px;
  height: 64px;
  background-image: url(../img/search-white.svg);
  background-repeat: no-repeat;
  background-size: 24px auto;
  background-position: center;
  border-radius: 5px;
  text-indent: -99999px;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  margin: 0;
  z-index: 1;
}

.search-box .btn:hover,
.search-box .btn:focus,
.search-box .btn:active,
.search-box .btn:active:focus,
.search-box .btn.active,
.search-box .btn.active:focus,
.search-box input[type="button"]:hover,
.search-box input[type="button"]:focus,
.search-box input[type="button"]:active,
.search-box input[type="button"]:active:focus,
.search-box input[type="button"].active,
.search-box input[type="button"].active:focus,
.search-box input[type="submit"]:hover,
.search-box input[type="submit"]:focus,
.search-box input[type="submit"]:active,
.search-box input[type="submit"]:active:focus,
.search-box input[type="submit"].active,
.search-box input[type="submit"].active:focus,
.search-box .btn:not(:disabled):not(.disabled).active {
  background-image: url(../img/search.svg);
  background-size: 24px auto;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 767px) {
  .search-box {
    margin-bottom: 50px;
  }

  .search-box form {
    padding: 0 64px 0 0;
  }

  .search-box select,
  .search-box textarea,
  .search-box input[type="text"],
  .search-box input[type="password"],
  .search-box input[type="datetime"],
  .search-box input[type="datetime-local"],
  .search-box input[type="date"],
  .search-box input[type="month"],
  .search-box input[type="time"],
  .search-box input[type="week"],
  .search-box input[type="number"],
  .search-box input[type="email"],
  .search-box input[type="url"],
  .search-box input[type="search"],
  .search-box input[type="tel"],
  .search-box input[type="color"],
  .search-box .uneditable-input {
    height: 54px;
  }

  .search-box .btn,
  .search-box input[type="button"],
  .search-box input[type="submit"] {
    width: 54px;
    height: 54px;
    background-size: 18px auto;
  }
}

/* Newsletter - Form */
.newsletter-form {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  margin-bottom: 60px;
}

.newsletter-form:last-child {
  margin-bottom: 0;
}

.newsletter-form h3,
.newsletter-form .h3 {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  padding-bottom: 50px;
}

.newsletter-form h3:last-child,
.newsletter-form .h3:last-child {
  padding-bottom: 0;
}

.newsletter-form .form-block {
  max-width: 400px;
}

.newsletter-form .form-block ul {
  margin-bottom: -16px;
}

.newsletter-form .form-block ul li {
  margin-bottom: 16px;
}

.newsletter-form .form-block .btn-out {
  margin-top: 25px;
}

@media (max-width: 767px) {
  .newsletter-form {
    margin-bottom: 50px;
  }

  .newsletter-form h3,
  .newsletter-form .h3 {
    padding-bottom: 40px;
  }
}

/* Accordion - Items */
.accord-items {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 60px;
}

.accord-items:last-child {
  margin-bottom: 0;
}

.accord-items .accord-item {
  width: 100%;
  float: left;
  border-bottom: 1px solid var(--black);
  padding: 14px;
}

.accord-items .accord-item:first-child {
  margin-top: -36px;
}

.accord-items .accord-item:last-child {
  border-bottom: none;
  margin-bottom: -36px;
}

.accord-items .accord-header {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
}

.accord-items .accord-header a {
  width: 100%;
  float: left;
  font-weight: 500;
  font-size: 110%;
  color: var(--black);
  line-height: 1.2em;
  text-decoration: none;
  position: relative;
  padding: 22px 70px 22px 0;
}

/*.accord-items .accord-item:hover,
.accord-items .accord-item:active,
.accord-items .accord-item:focus {
  background-color: #f1f1f1;
}*/

.accord-items .accord-header a:after {
  content: "\f068";
  font-family: var(--FontAwesome);
  font-weight: 500;
  font-size: 100%;
  line-height: 1em;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  position: absolute;
  top: 50%;
  right: 5px;
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.accord-items .accord-header a.collapsed:after {
  content: "\f067";
}

.accord-items .accord-body {
  width: 100%;
  padding: 0 70px 22px 0;
  font-size: 95%;
}

@media (max-width: 767px) {
  .accord-items {
    margin-bottom: 50px;
  }

  .accord-items .accord-item {
    padding: 5px 0;
  }

  .accord-items .accord-item:first-child {
    margin-top: -25px;
  }

  .accord-items .accord-item:last-child {
    margin-bottom: -25px;
  }

  .accord-items .accord-header a {
    font-size: 17px;
    line-height: 25px;
    padding: 20px 50px 20px 0;
  }

  .accord-items .accord-header a:after {
    right: 0;
  }

  .accord-items .accord-body {
    padding: 0 0 20px 0;
  }
}

/*
 3.) Header - Main
----------------------------------------*/
.header-main {
  width: 100%;
  height: 120px;
  float: left;
  background: var(--white);
  box-shadow: 0px 3px 6px #00000029;
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}

.header-main .top-bar {
    width: 100%;
    height: 35px;
    float: left;
    position: relative;
    z-index: 11;
}

.header-main .top-bar:before {
    content: "";
    width: 10000px;
    height: 100%;
    float: left;
    background: var(--black);
    position: absolute;
    top: 0;
    left: -5000px;
    z-index: -1;
}

.header-main .top-bar .top-menu {
    float: left;
    margin: 0 0 0 30px;
}

.header-main .top-bar .top-menu ul {
    float: left;
    padding: 0;
    margin: 0 0 0 -30px;
	list-style: none;
}

.header-main .top-bar .top-menu ul li {
    float: left;
    padding: 0;
    margin: 0 0 0 30px;
}
.header-main .top-bar .top-menu ul li:before {
	display: none; 
}

.header-main .top-bar .top-menu ul li>a {
	color: var(--white);
    font-weight: 400;
    text-decoration: none;
    text-align: center;
    position: relative;
}

.header-main .top-bar .top-menu ul li>a:hover,
.header-main .top-bar .top-menu ul li>a:focus,
.header-main .top-bar .top-menu ul li>a:active {
	text-decoration: underline;
}

.header-main .top-bar .top-inn {
    float: right;
}

.header-main .middle-bar {
    width: 100%;
    float: left;
}

.fixed-scrollup .header-main {
  position: fixed;
}

@media (min-width: 768px) {
  .header-main .container {
    max-width: 1600px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .header-main {
    height: 120px;
  }
}

/* Site - Brand */
.header-main .brand {
  height: 90px;
  float: left;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  padding: 0;
  margin: 0 -500px 0 0;
}

.header-main .brand img {
  width: 100%;
  max-width: 225px;
  display: inline-block;
  vertical-align: top;
}

@media (max-width: 767px) {
  .header-main .brand {
    height: 80px;
  }
}

/* Middle - Bar */
@media (min-width: 1200px) {
  .header-main .nav-bar {
    float: right;
  }

  .header-main .nav-bar .nav-max,
  .header-main .nav-bar .nav-inn {
    float: left;
  }

  /* Primary - Menu */
  .header-main .primary-menu {
    float: left;
  }

  .header-main .primary-menu ul {
    float: left;
    padding: 0;
    margin: 0 0 0 -50px;
  }

  .header-main .primary-menu ul li {
    height: 85px;
    float: left;
    padding: 10px 0;
    margin: 0 0 0 50px;
  }

  .header-main .primary-menu ul li:before {
    display: none;
  }

  .header-main .primary-menu ul li>a {
    height: 62px;
    float: left;
    font-weight: 600;
    font-size: 18px;
    color: var(--black);
    line-height: 62px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
  }

  .header-main .primary-menu ul li>a:before {
    content: "";
    width: 0;
    height: 2px;
    float: left;
    background: var(--primary);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
    position: absolute;
    bottom: 16px;
    left: 50%;
    margin: 0;
    opacity: 0;
  }

  .header-main .primary-menu ul li.mega-menu-item>a,
  .header-main .primary-menu ul li.menu-item-has-children>a {
    /*padding-right: 18px;*/
  }

  .header-main .primary-menu ul li.mega-menu-item>a:after,
  .header-main .primary-menu ul li.menu-item-has-children>a:after {
    content: "\f078";
    font-family: var(--FontAwesome);
    font-weight: 400;
    font-size: 80%;
    line-height: 80%;
    position: absolute;
    top: 50%;
    right: 0;
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    margin: 1px 0 0 0;display: none;
  }

  .header-main .primary-menu ul li.menu-mb {
    display: none;
  }

  .header-main .primary-menu ul li .menu-txt {
    display: none;
  }

  .header-main .primary-menu ul li:hover>a,
  .header-main .primary-menu ul li>a:focus,
  .header-main .primary-menu ul li.nav-menu-open>a,
  .header-main .primary-menu ul li.current-menu-item>a,
  .header-main .primary-menu ul li.current-menu-parent>a,
  .header-main .primary-menu ul li.current-menu-ancestor>a {
    color: var(--primary);
    text-decoration: none;
  }

  .header-main .primary-menu ul li:hover>a:before,
  .header-main .primary-menu ul li>a:focus:before {
    width: 100%;
    left: 0;
    opacity: 1;
  }

  .header-main .primary-menu ul li.mega-menu-item:hover>a:after,
  .header-main .primary-menu ul li.menu-item-has-children:hover>a:after,
  .header-main .primary-menu ul li.mega-menu-item>a:focus:after,
  .header-main .primary-menu ul li.menu-item-has-children>a:focus:after,
  .header-main .primary-menu ul li.mega-menu-item.nav-menu-open>a:after,
  .header-main .primary-menu ul li.menu-item-has-children.nav-menu-open>a:after {
    content: "\f077";
  }

  .header-main .primary-menu ul li>ul {
    min-width: 276px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background: var(--white);
    box-shadow: 0px 6px 6px #00000029;
    border-radius: 0 0 5px 5px;
    transition: all .2s ease-in-out;
    transform-origin: left top;
    transform: scaleY(0);
    visibility: hidden;
    opacity: 0;
    display: block !important;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 35px;
    margin: 0 -35px;
    z-index: 1;
  }

  .header-main .primary-menu ul li>ul:before {
    content: "";
    width: 150%;
    height: 100%;
    /*box-shadow: inset 0px 3px 6px #00000029;*/
    position: absolute;
    top: 0;
    left: -25%;
    z-index: -1;
  }

  .header-main .primary-menu ul li>a:focus+ul,
  .header-main .primary-menu ul li:hover>ul,
  .header-main .primary-menu ul li.nav-menu-open>ul {
    transform: scaleY(1);
    visibility: visible;
    opacity: 1;
  }

  .header-main .primary-menu ul li>ul li {
    width: 100%;
    height: auto;
    float: left;
    padding: 0;
    margin: 0 0 20px 0;
  }

  .header-main .primary-menu ul li>ul li:last-child {
    margin-bottom: 0;
  }

  .header-main .primary-menu ul li>ul li>a {
    height: auto;
    line-height: 24px;
    padding: 0 0 3px 0;
	font-weight: 400;
  }

  .header-main .primary-menu ul li>ul li>a:before {
    bottom: 0;
    left: 0;
  }

  .header-main .btn-header {
    float: left;
    margin: 14px 0 14px 40px;
  }

  .overlay-menu-xl {
    width: 100%;
    height: 100%;
    float: left;
    background: rgba(0, 0, 0, .50);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8;
    visibility: hidden;
    opacity: 0;
  }

  .overlay-menu-xl.show-over {
    visibility: visible;
    opacity: 1;
  }
	.header-main .primary-menu ul li.mega-menu ul.sub-menu{
		min-width: 500px; 
		overflow: visible;
		padding: 35px 35px 25px;
	}
	.header-main .primary-menu ul li.mega-menu ul.sub-menu > li ul.sub-menu:before{display: none;}
	.header-main .primary-menu ul li.mega-menu ul.sub-menu > li{width: 50%;}
	.header-main .primary-menu ul li.mega-menu > ul.sub-menu > li > a {
        color: var(--primary);
        font-weight: 600;
    }
	.header-main .primary-menu ul li.mega-menu ul.sub-menu > li > a:before, 
	.header-main .primary-menu ul li.mega-menu ul.sub-menu > li > a:after{
		/*display: none;*/
	}
	.header-main .primary-menu ul li.mega-menu ul.sub-menu > li > ul{
		visibility: visible;
		padding-right: 0;
        opacity: 1;
        transform: none;
        overflow: auto;
        box-shadow: none;
        border: none;
        min-width: 250px;
        width: 100%;
        padding-top: 20px;
        position: relative;
        padding-bottom: 0;}
	.header-main .primary-menu ul li.mega-menu ul.sub-menu > li > ul > li{
		width: 100%;
        float: left;
	}
	.header-main .primary-menu ul li.mega-menu > ul.sub-menu > li:first-child:after{
		content: '';
        width: 2px;
        height: 100%;
        display: block;
        background: var(--secondary);
        right: 40px;
        position: absolute;
        z-index: 1; 
	}
}

@media (max-width: 1199px) {
  .hiddenscroll-menu {
    overflow: hidden;
  }

  .header-main .overlay-menu {
    width: 100%;
    height: 100%;
    float: left;
    background: var(--black);
    position: fixed;
    top: 120px;
    left: 0;
    z-index: 7;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: top .15s ease-out;
    -moz-transition: top .15s ease-out;
    transition: top .15s ease-out;
    overflow: hidden;
  }

  .header-main .overlay-menu.active {
    visibility: visible;
    opacity: .70;
    -webkit-transition: opacity .2s ease-out;
    -moz-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out;
  }

  /* Nav - Bar */
  .header-main .nav-bar {
    width: 100%;
    height: 100%;
    float: right;
    overflow: hidden;
    visibility: hidden;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 9;
    padding: 130px 0 0 0;
	background: var(--white);
  }

  .header-main .nav-bar:before {
    content: "";
    width: 150%;
    height: 100%;
    box-shadow: inset 0px 3px 12px #00000029;
    position: absolute;
    top: 130px;
    left: -25%;
  }

  .header-main .nav-bar.active {
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
    visibility: visible;
    right: 0;
  }

  .header-main .nav-bar .nav-max {
    width: 100%;
    height: 100%;
    float: left;
    text-align: center;
    background: var(--white);
    overflow: auto;
    overflow-x: hidden;
  }

  .header-main .nav-bar .nav-inn {
    width: 100%;
    float: none;
    display: inline-block;
    vertical-align: top;
    text-align: left;
    padding: 17px 40px 50px 40px;
  }

  /* Primary - Menu */
  .header-main .primary-menu {
    width: 100%;
    float: left;
    margin-bottom: 45px;
  }

  .header-main .primary-menu:last-child {
    margin-bottom: 0;
  }

  .header-main .primary-menu ul {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0;
  }

  .header-main .primary-menu ul li {
    width: 100%;
    float: left;
    border-bottom: 1px solid rgba(0, 0, 0, .20);
    padding: 0;
    margin: 0;
  }

  .header-main .primary-menu ul li:before {
    display: none;
  }

  .header-main .primary-menu ul li>a {
    width: 100%;
    float: left;
    font-weight: 600;
    font-size: 18px;
    color: var(--black);
    line-height: 24px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    padding: 23px 0;
  }

  .header-main .primary-menu ul li:hover>a,
  .header-main .primary-menu ul li>a:focus,
  .header-main .primary-menu ul li.nav-menu-open>a,
  .header-main .primary-menu ul li.current-menu-item>a,
  .header-main .primary-menu ul li.current-menu-parent>a,
  .header-main .primary-menu ul li.current-menu-ancestor>a {
    color: var(--dark);
    text-decoration: none;
  }

  .header-main .primary-menu ul li .submenu-arrow {
    display: none;
  }

  .header-main .primary-menu ul li.mega-menu-item>.submenu-arrow,
  .header-main .primary-menu ul li.menu-item-has-children>.submenu-arrow {
    display: block;
    width: 100px;
    height: 70px;
    float: right;
    font-size: 18px;
    text-align: right;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
  }

  .header-main .primary-menu ul li.mega-menu-item>.submenu-arrow:after,
  .header-main .primary-menu ul li.menu-item-has-children>.submenu-arrow:after {
    content: "\f078";
    font-family: var(--FontAwesome);
    font-weight: 400;
    font-size: 130%;
    line-height: 130%;
    position: absolute;
    top: 50%;
    right: 0;
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    margin: 1px 0 0 0;
  }
	
	.header-main .primary-menu ul li.mega-menu-item .sub-menu > li .submenu-arrow, .header-main .primary-menu ul li.menu-item-has-children .sub-menu > li .submenu-arrow{height: 24px;}

  .header-main .primary-menu ul li.mega-menu-item>.submenu-arrow.active:after,
  .header-main .primary-menu ul li.menu-item-has-children>.submenu-arrow.active:after {
    content: "\f077";
  }

  .header-main .primary-menu ul li.mega-menu-item:hover>.submenu-arrow:after,
  .header-main .primary-menu ul li.menu-item-has-children:hover>.submenu-arrow:after {
    color: #444444;
  }

  .header-main .primary-menu ul li.current-menu-item>.submenu-arrow:after,
  .header-main .primary-menu ul li.current-menu-parent>.submenu-arrow:after,
  .header-main .primary-menu ul li.current-menu-ancestor>.submenu-arrow:after {
    color: #444444;
  }

  .header-main .primary-menu ul li ul {
    display: none;
    padding: 0 0 29px 0;
    margin: 0 0 -22px 0;
  }

  .header-main .primary-menu ul li ul li {
    border-bottom: none;
    margin-bottom: 22px;
  }

  .header-main .primary-menu ul li ul li a {
    padding: 0;        font-weight: 400;
  }

  .header-main .btn-header {
    width: 100%;
    float: left;
    margin: 0 0 40px 0;
  }

  .header-main .btn-header:last-child {
    margin-bottom: 0;
  }
	.header-main .primary-menu ul li.mega-menu > ul.sub-menu > li > a{width: auto; float:left; font-weight: 600;}
	.header-main .primary-menu ul li.mega-menu > ul.sub-menu > li > ul.sub-menu{display: block;padding: 15px 0 0 10px;}
	
}

@media (max-width: 767px) {
  .header-main .overlay-menu {
    top: 120px;
  }

  .header-main .nav-bar {
    padding: 120px 0 0 0;
  }

  .header-main .nav-bar:before {
    top: 120px;
  }

  .header-main .nav-bar .nav-inn {
    max-width: 640px;
    padding-left: 8%;
    padding-right: 8%;
  }
}

/* Menu - Button */
.header-main .menu-btn {
  min-width: inherit;
  height: 90px;
  float: right;
  flex-wrap: wrap;
  align-items: center;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
  position: relative;
  z-index: 10;
  padding: 0;
  margin: 0 0 0 -500px;
  display: none;
}

.header-main .menu-btn .menu-bar {
  width: 42px;
  height: 3px;
  float: left;
  background: var(--black);
  text-indent: -99999px;
  position: relative;
  margin: 11px 0;
}

.header-main .menu-btn .menu-bar:before,
.header-main .menu-btn .menu-bar:after {
  content: "";
  width: 100%;
  height: 3px;
  float: left;
  background: var(--black);
  position: absolute;
  left: 0;
}

.header-main .menu-btn .menu-bar:before {
  top: -11px;
}

.header-main .menu-btn .menu-bar:after {
  top: 11px;
}

.header-main .menu-btn.active .menu-bar {
  background: none;
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
}

.header-main .menu-btn.active .menu-bar:before,
.header-main .menu-btn.active .menu-bar:after {
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
  top: 0;
}

.header-main .menu-btn.active .menu-bar:before {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}

.header-main .menu-btn.active .menu-bar:after {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}

@media (max-width: 1199px) {
  .header-main .menu-btn {
    display: flex;
  }
}

@media (max-width: 767px) {
  .header-main .menu-btn {
    height: 80px;
  }

  .header-main .menu-btn .menu-bar {
    width: 33px;
  }
}

/*
 4.) Content - Main
----------------------------------------*/
.content-main {
  width: 100%;
  float: left;
  flex: 1 0 auto;
  padding-top: 120px;
}

/* Row */
.row-out {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 100px;
}

.row-out:last-child {
  padding-bottom: 0;
}

.row {
  padding-bottom: 80px;
  margin: 0 -30px -50px -30px;
}

.row:last-child {
  padding-bottom: 0;
}

.row>div {
  padding: 0 30px 50px 30px;
}

.row.no-gutters {
  padding: 0;
  margin: 0;
}

.row.no-gutters>div {
  padding: 0;
}

@media (max-width: 1199px) {
  .row-out {
    padding-bottom: 80px;
  }

  .row {
    padding-bottom: 60px;
    margin: 0 -20px -50px -20px;
  }

  .row>div {
    padding: 0 20px 50px 20px;
  }

  .row.no-gutters {
    padding: 0;
    margin: 0;
  }

  .row.no-gutters>div {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .row-out {
    padding-bottom: 60px;
  }

  .row {
    padding-bottom: 50px;
    margin: 0 -15px -40px -15px;
  }

  .row>div {
    padding: 0 15px 40px 15px;
  }

  .row.no-gutters {
    padding: 0;
    margin: 0;
  }

  .row.no-gutters>div {
    padding: 0;
  }
}

/* Hero - Main */
.hero-main {
  width: 100%;
  min-height: 700px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 25px;
  color: var(--white);
  line-height: 35px;
  background: var(--black);
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.hero-main .figure {
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  z-index: -1;
}

.hero-main .figure:after,
.hero-title.hero-w-image:after,
.overlay-enabled:after {
  content: "";
  width: 100%;
  height: 100%;
  float: left;
  background: #000000;
  opacity: .6;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-title.hero-w-image {
  color: var(--white);
  background-position: center;
  background-size: cover;
}

.hero-main .figure img {
  width: auto;
  max-width: none;
  max-height: none;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
}

.hero-main .aside {
  width: 100%;
  max-width: 750px;
  float: none;
  display: inline-block;
  vertical-align: top;
}

.hero-main .aside h1,
.hero-main .aside h2,
.hero-main .aside h3 {
  padding-bottom: 39px;
}

.hero-main .aside h1:last-child,
.hero-main .aside h2:last-child,
.hero-main .aside h3:last-child {
  padding-bottom: 0;
}

.hero-main .aside p {
  padding-bottom: 65px;
}

.hero-main .aside p:last-child {
  padding-bottom: 0;
}

.hero-main .aside p a {
  color: inherit;
}

.hero-main .aside .btn-out,
.hero-main .aside .btn-wrap {
  justify-content: center;
  margin-top: 0;
}

@media (max-width: 1199px) {
  .hero-main {
    min-height: 600px;
    font-size: 22px;
    line-height: 32px;
    padding: 90px 0;
  }

  .hero-main .aside {
    max-width: 550px;
  }

  .hero-main .aside h1,
  .hero-main .aside h2,
  .hero-main .aside h3 {
    padding-bottom: 40px;
  }

  .hero-main .aside p {
    padding-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .hero-main {
    min-height: 500px;
    font-size: 20px;
    line-height: 30px;
    padding: 70px 0;
  }

  .hero-main .aside h1,
  .hero-main .aside h2,
  .hero-main .aside h3 {
    padding-bottom: 30px;
  }

  .hero-main .aside p {
    padding-bottom: 40px;
  }
}

/* Hero - Main2 */
.hero-main2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  font-size: 25px;
  line-height: 35px;
  background: var(--secondary);
  overflow: hidden;
  padding: 120px 0 0 0;
}

.hero-main2 .aside {
  width: 100%;
  max-width: 600px;
  float: none;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 65px;
}

.hero-main2 .aside .aside:last-child {
  margin-bottom: 0;
}

.hero-main2 .aside h1,
.hero-main2 .aside h2,
.hero-main2 .aside h3 {
  padding-bottom: 35px;
}

.hero-main2 .aside h1:last-child,
.hero-main2 .aside h2:last-child,
.hero-main2 .aside h3:last-child {
  padding-bottom: 0;
}

.hero-main2 .aside p {
  padding-bottom: 45px;
}

.hero-main2 .aside p:last-child {
  padding-bottom: 0;
}

.hero-main2 .aside .btn-out,
.hero-main2 .aside .btn-wrap {
  justify-content: center;
  margin-top: 0;
}

.hero-main2 .figure {
  border-radius: 5px 5px 0 0;
  margin: 0;
}

@media (min-width: 768px) {
  .hero-main2 .container {
    max-width: 880px;
  }
}

@media (max-width: 1199px) {
  .hero-main2 {
    font-size: 22px;
    line-height: 32px;
    padding: 90px 0 0 0;
  }

  .hero-main2 .aside {
    max-width: 550px;
  }

  .hero-main2 .aside h1,
  .hero-main2 .aside h2,
  .hero-main2 .aside h3 {
    padding-bottom: 30px;
  }

  .hero-main2 .aside p {
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .hero-main2 {
    font-size: 20px;
    line-height: 30px;
    padding: 70px 0 0 0;
  }

  .hero-main2 .aside {
    margin-bottom: 55px;
  }

  .hero-main2 .aside h1,
  .hero-main2 .aside h2,
  .hero-main2 .aside h3 {
    padding-bottom: 25px;
  }

  .hero-main2 .aside p {
    padding-bottom: 35px;
  }
}

/* Hero - Main3 */
.hero-main3 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  font-size: 25px;
  line-height: 35px;
  overflow: hidden;
  padding: 120px 0;
}

.hero-main3 .aside {
  width: 100%;
}

.hero-main3 .aside h1,
.hero-main3 .aside .h1 {
  padding-bottom: 35px;
}

.hero-main3 .aside h1:last-child,
.hero-main3 .aside .h1:last-child {
  padding-bottom: 0;
}

.hero-main3 .aside p {
  padding-bottom: 45px;
}

.hero-main3 .aside p:last-child {
  padding-bottom: 0;
}

.hero-main3 .aside .btn-wrap {
  margin-top: 0;
}

.hero-main3 .figure {
  box-shadow: 0px 4px 4px 0px #00000040;
}

.hero-main3 .row {
  margin-bottom: -60px;
}

.hero-main3 .row>div {
  padding-bottom: 60px;
}

@media (min-width: 1200px) {
  .hero-main3 .aside {
    max-width: 490px;
  }

  .hero-main3 .row>div {
    width: 45%;
  }

  .hero-main3 .row>div:nth-child(even) {
    width: 55%;
  }
}

@media (max-width: 1199px) {
  .hero-main3 {
    font-size: 22px;
    line-height: 32px;
    padding: 90px 0;
  }

  .hero-main3 .aside h1,
  .hero-main3 .aside .h1 {
    padding-bottom: 30px;
  }

  .hero-main3 .aside p {
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .hero-main3 {
    font-size: 20px;
    line-height: 30px;
    padding: 60px 0;
  }

  .hero-main3 .aside h1,
  .hero-main3 .aside .h1 {
    padding-bottom: 25px;
  }

  .hero-main3 .aside p {
    padding-bottom: 35px;
  }

  .hero-main3 .row {
    margin-bottom: -50px;
  }

  .hero-main3 .row>div {
    padding-bottom: 50px;
  }
}

/* Logos - Content */
.logos-cont {
  width: 100%;
  text-align: center;
  overflow: hidden;
  padding: 70px 0;
}

.logos-cont .item {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
}

.logos-cont .item img {
  width: auto;
  max-width: 100%;
}

.logos-cont .owl-carousel {
  padding: 0 60px;
}

.logos-cont .owl-stage {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto;
}

@media (max-width: 1199px) {
  .logos-cont .owl-carousel {
    padding: 0 35px;
  }

  .logos-cont .owl-nav button.owl-prev {
    left: -20px;
  }

  .logos-cont .owl-nav button.owl-next {
    right: -20px;
  }
}

@media (max-width: 767px) {
  .logos-cont {
    padding: 60px 0;
  }

  .logos-cont .owl-carousel {
    padding: 0 6%;
  }

  .logos-cont .owl-nav button.owl-prev {
    left: -6%;
  }

  .logos-cont .owl-nav button.owl-next {
    right: -6%;
  }
}

/* Two Column - Content */
.two-col-cont {
  width: 100%;
  overflow: hidden;
  padding: 120px 0;
}

.two-col-cont .heading-row {
  text-align: center;
  padding: 50px 0;
}

.two-col-cont .row {
  padding: 0 0 120px 0;
  margin: 0;
}

.two-col-cont .row:last-child {
  padding-bottom: 0;
}

.two-col-cont .row>div {
  padding: 0;
  margin: 0;
}

.two-col-cont .row.bg-white:before {
  background-color: var(--white);
}

.two-col-cont .row.bg-primary:before {
  background-color: var(--primary);
}

.two-col-cont .row.bg-dark:before {
  background-color: var(--dark);
}

.two-col-cont .row.bg-grey:before {
  background-color: var(--lightgrey);
}

.two-col-cont .row.bg-dark .btn.btn-blank {
  color: var(--white);
  border-color: var(--white);
}

.two-col-cont .row.bg-dark .btn.btn-blank:hover,
.two-col-cont .row.bg-dark .btn.btn-blank:focus,
.two-col-cont .row.bg-dark .btn.btn-blank:active {
  color: var(--dark);
  background: var(--secondary);
  border-color: var(--secondary);
}

.two-col-cont .row>div p.txt-14,
.two-col-cont .row>div p.txt-16 {
  margin-top: 15px;
}

.two-col-cont .row img {
	border-radius: 3px;
}

.two-col-cont .row>div .btn-out,
.two-col-cont .row>div .btn-wrap,
.two-col-cont .row>div .read-more {
  margin-top: 20px;
}

.two-col-cont .row>div .aside {
  width: 100%;
}

.two-col-cont .row>div .figure {
  width: 100%;
  margin: 0;
}

.two-col-cont .boxshadow {
	color: var(--primary);
	position: absolute;
    content: " ";
    height: 100%;
    width: 65%;
}
.two-col-cont .boxshadow.secondary {
	color: var(--secondary);
}
.two-col-cont .col-reverse .row:nth-child(odd)>div .boxshadow,
.two-col-cont .row:nth-child(even)>div .boxshadow {
    box-shadow: -30px 30px 0 0px;
    -moz-box-shadow: -30px 30px 0 0px;
  	-webkit-box-shadow: -30px 30px 0 0px;
}
.two-col-cont .col-reverse .row:nth-child(even)>div .boxshadow,
.two-col-cont .row:nth-child(odd)>div .boxshadow {
    box-shadow: 220px 30px 0 0px;
    -moz-box-shadow: 220px 30px 0 0px;
  	-webkit-box-shadow: 220px 30px 0 0px;
}
	
@media (min-width: 1200px) {
  .two-col-cont .row {
    align-items: center;
  }
}

@media (min-width: 991px) {
  .two-col-cont .row>div {
    width: 50%;
    position: relative;
  }
  .two-col-cont .row>div:nth-child(even) {
    width: 50%;
  }
	
  .two-col-cont .row>div .aside {
    max-width: 605px;
    padding-right: 70px;
  }
  .two-col-cont .row:nth-child(even)>div h1,
  .two-col-cont .row:nth-child(even)>div h2,
  .two-col-cont .row:nth-child(even)>div h3,
  .two-col-cont .row:nth-child(even)>div p {
    width: 100%;
    max-width: 520px;
  }
  .two-col-cont .row:nth-child(even)>div .aside {
    float: right;
    padding-left: 70px;
    padding-right: 0;
  }
  .two-col-cont .row:nth-child(even)>div:first-child {
    left: 50%;
  }

  .two-col-cont .row:nth-child(even)>div:nth-child(even) {
    left: -50%;
  }

  .two-col-cont .row:nth-child(even)>div.fadeInLeft {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
  }

  .two-col-cont .row:nth-child(even)>div.fadeInRight {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
  }
	
  /* Column - Reverse */
  .two-col-cont .col-reverse .row>div h1,
  .two-col-cont .col-reverse .row>div h2,
  .two-col-cont .col-reverse .row>div h3,
  .two-col-cont .col-reverse .row>div p {
    width: 100%;
    max-width: 520px;
  }

  .two-col-cont .col-reverse .row>div .aside {
    float: right;
    padding-left: 70px;
    padding-right: 0;
  }

  .two-col-cont .col-reverse .row>div:first-child {
    left: 50%;
  }

  .two-col-cont .col-reverse .row>div:nth-child(even) {
    left: -50%;
  }

  .two-col-cont .col-reverse .row>div.fadeInLeft {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
  }

  .two-col-cont .col-reverse .row>div.fadeInRight {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
  }

  .two-col-cont .col-reverse .row:nth-child(even)>div h1,
  .two-col-cont .col-reverse .row:nth-child(even)>div h2,
  .two-col-cont .col-reverse .row:nth-child(even)>div h3,
  .two-col-cont .col-reverse .row:nth-child(even)>div p {
    max-width: inherit;
  }

  .two-col-cont .col-reverse .row:nth-child(even)>div .aside {
    float: left;
    padding-left: 0;
    padding-right: 70px;
  }

  .two-col-cont .col-reverse .row:nth-child(even)>div:first-child {
    left: 0;
  }

  .two-col-cont .col-reverse .row:nth-child(even)>div:nth-child(even) {
    left: 0;
  }

  .two-col-cont .col-reverse .row:nth-child(even)>div.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
  }

  .two-col-cont .col-reverse .row:nth-child(even)>div.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
  }
}

@media (max-width: 1199px) {
  .two-col-cont {
    padding: 90px 0;
  }

  .two-col-cont .row {
    padding-bottom: 90px;
  }

  .two-col-cont .row>div p.txt-14,
  .two-col-cont .row>div p.txt-16 {
    margin-top: 10px;
  }

  .two-col-cont .row>div .btn-out,
  .two-col-cont .row>div .btn-wrap,
  .two-col-cont .row>div .read-more {
    margin-top: 15px;
  }
}

@media (max-width: 991px) {
  .two-col-cont {
    padding: 60px 0 70px 0;
  }

  .two-col-cont .row {
    padding-bottom: 70px;
  }

  .two-col-cont .row>div {
    padding-bottom: 40px;
  }

  .two-col-cont .row>div:nth-child(even) {
    padding-bottom: 0;
  }

  .two-col-cont .row>div p.txt-14,
  .two-col-cont .row>div p.txt-16 {
    margin-top: 6px;
  }

  .two-col-cont .row>div .btn-out,
  .two-col-cont .row>div .btn-wrap,
  .two-col-cont .row>div .read-more {
    margin-top: 10px;
  }
}

/* Two Column - Content */
.two-col-cont.alt {
  background: none;
  padding: 0;
  margin: 0;
}

.two-col-cont.alt .row {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.two-col-cont.alt .row:before {
  content: "";
  width: 10000px;
  height: 100%;
  float: left;
  position: absolute;
  top: 0;
  left: -5000px;
  z-index: -1;
}

.two-col-cont.alt .row.bg-white+.row.bg-white {
  padding-top: 0px;
}

@media (max-width: 1199px) {
  .two-col-cont.alt .row {
    padding: 95px 0;
  }
}

@media (max-width: 767px) {
  .two-col-cont.alt .row {
    padding: 60px 0 70px 0;
  }
}

/* Latest - Articles */
.latest-articles {
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
  background: var(--lightgrey);
}

.latest-articles .heading-row {
	padding-bottom: 2em; 
}

.latest-articles .row {
  padding: 0;
  margin: 0 -16px -36px -16px;
}

.latest-articles .row>div {
  padding: 0 16px 36px 16px;
  margin: 0;
}

.latest-articles .row>div .box {
  width: 100%;
  height: 100%;
  float: left;
  font-weight: inherit;
  color: inherit;
  text-decoration: none;
  background-color: var(--white);
  overflow: hidden;
  position: relative;
  padding: 45px 65px 100px 45px;
}

.latest-articles .row>div .box .bx-title {
  font-family: var(--headingFont);
  color: var(--black);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.4em;
  margin-bottom: 17px;
}

.latest-articles .row>div .box .bx-title:last-child {
  margin-bottom: 0;
}

.latest-articles .row>div .box .txt {
  padding-bottom: 0;
  margin-bottom: 0;
}

.latest-articles .row>div .box .read-more {
  position: absolute;
  bottom: 45px;
  left: 0;
  padding: 0 45px;
  margin: 0;
}

.latest-articles .row>div .box:hover .bx-title,
.latest-articles .row>div .box:focus .bx-title,
.latest-articles .row>div .box:active .bx-title {
  text-decoration: underline;
}

.latest-articles .row>div .box-featured {
  width: 100%;
  height: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  font-weight: inherit;
  text-decoration: none;
  background-color: var(--white);
  overflow: hidden;
  position: relative;
}

.latest-articles .row>div .box-featured .figure {
  width: 34.5%;
  min-height: 370px;
  float: left;
  padding: 0;
  margin: 0;
}

.latest-articles .row>div .box-featured .figure img {
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
}

.latest-articles .row>div .box-featured .aside {
  width: 65.5%;
  float: left;
  position: relative;
  padding: 75px 100px 75px 80px;
  margin: 0;
}

.latest-articles .row>div .aside .post-meta,
.latest-articles .row>div .box .post-meta,
.latest-articles .row>div .txt .category-name,
.latest-articles2 .row>div .box .category-name {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 15px;
  text-transform: uppercase; 
  font-weight: 600;
  color: var(--primary);
}

.latest-articles .row>div .aside .post-meta:last-child {
  margin-bottom: 0;
}

.latest-articles .row>div .aside .bx-title {
  font-family: var(--headingFont);
  color: var(--black);
  font-weight: 400;
  font-size: 45px;
  line-height: 1.35em;
}

.latest-articles .row>div .aside .bx-title:last-child {
  margin-bottom: 0;
}

.latest-articles .row>div .aside .bx-title.h2 {
  margin-bottom: 1em;
}

.latest-articles .row>div .box-featured .aside .txt {
  padding-bottom: 0;
  margin-bottom: 0;
}

.latest-articles .row>div .aside .read-more {
  position: absolute;
  bottom: 58px;
  left: 0;
  padding: 0 80px;
  margin: 0;
}

.latest-articles .row>div .box-featured:hover .read-more .a:before,
.latest-articles .row>div .box-featured:focus .read-more .a:before,
.latest-articles .row>div .box-featured:active .read-more .a:before {
  width: 100%;
}

.latest-articles .row>div .box-featured:hover .read-more .a em,
.latest-articles .row>div .box-featured:focus .read-more .a em,
.latest-articles .row>div .box-featured:active .read-more .a em {
  animation: arrowright 0.5s linear 1;
  -webkit-animation-name: arrowright 0.5s linear 1;
}

.latest-articles .btn-wrap .btn {
	margin: 55px auto 0 auto;
}

@media (min-width: 768px) {
  .latest-articles .row>div .box-featured .figure img {
    width: auto;
    max-width: none;
    max-height: none;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0;
  }

  .latest-articles .row>div .box-featured:hover .figure img,
  .latest-articles .row>div .box-featured:focus .figure img,
  .latest-articles .row>div .box-featured:active .figure img {
    -ms-transform: translate(-50%, -50%) scale(1.1);
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    -moz-transform: translate(-50%, -50%) scale(1.1);
    -o-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@media (max-width: 1199px) {
  .latest-articles .row>div .box {
    padding: 30px 30px 90px 30px;
  }

  .latest-articles .row>div .box .read-more {
    bottom: 35px;
    padding: 0 30px;
  }

  .latest-articles .row>div .box-featured .aside {
    padding: 50px 60px 130px 60px;
  }

  .latest-articles .row>div .box-featured .aside .bx-title {
    font-size: 44px;
    line-height: 54px;
  }

  .latest-articles .row>div .box-featured .aside .read-more {
    bottom: 50px;
    padding: 0 60px;
  }
}

@media (max-width: 991px) {
  .latest-articles .row>div .box .bx-title {
    font-size: 22px;
    line-height: 30px;
  }

  .latest-articles .row>div .box-featured .figure {
    width: 45%;
  }

  .latest-articles .row>div .box-featured .aside {
    width: 55%;
    padding: 40px 40px 130px 40px;
  }

  .latest-articles .row>div .box-featured .aside .bx-title {
    font-size: 40px;
    line-height: 50px;
  }

  .latest-articles .row>div .box-featured .aside .read-more {
    bottom: 40px;
    padding: 0 40px;
  }
}

@media (max-width: 767px) {
  .latest-articles {
    padding: 60px 0;
  }

  .latest-articles .row>div .box {
    padding: 10% 8%;
  }

  .latest-articles .row>div .box .read-more {
    position: relative;
    bottom: 0;
    left: 0;
    padding: 0;
    margin: 30px 0 0 0;
  }

  .latest-articles .row>div .box-featured .figure {
    width: 100%;
    min-height: inherit;
  }

  .latest-articles .row>div .box-featured .aside {
    width: 100%;
    padding: 40px 8%;
  }

  .latest-articles .row>div .box-featured .aside .bx-title {
    font-size: 36px;
    line-height: 46px;
  }

  .latest-articles .row>div .box-featured .aside .read-more {
    position: relative;
    bottom: 0;
    left: 0;
    padding: 0;
    margin: 30px 0 0 0;
  }

  .latest-articles .row>div a.box-featured:hover .figure img,
  .latest-articles .row>div a.box-featured:focus .figure img,
  .latest-articles .row>div a.box-featured:active .figure img {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
}

/* Latest - Articles2 */
.latest-articles2 {
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
  background: var(--lightgrey);
}

.latest-articles2 .heading-row {
	padding-bottom: 2em; 
}

.latest-articles2 .row {
  position: relative;
  padding: 0;
  margin: 0 -6px -12px -6px;
}

.latest-articles2 .row>div {
  padding: 0 6px 12px 6px;
  margin: 0;
}

.latest-articles2 .row>div .box {
  width: 100%;
  height: 100%;
  float: left;
  font-weight: inherit;
  color: inherit;
  text-decoration: none;
  background-color: var(--white);
  overflow: hidden;
  position: relative;
  padding: 10% 12%;
}

.latest-articles2 .row>div .box .bx-title {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 17px;
}

.latest-articles2 .row>div .box .bx-title:last-child {
  margin-bottom: 0;
}

.latest-articles2 .row>div .box:hover .bx-title,
.latest-articles2 .row>div .box:focus .bx-title,
.latest-articles2 .row>div .box:active .bx-title {
  text-decoration: underline;
}

.latest-articles2 .row>div .box-featured {
  width: 100%;
  height: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  font-weight: inherit;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  position: relative;
}

.latest-articles2 .row>div .box-featured .bx-title-wrap {
  width: 50%;
  height: 100%;
  float: left;
  overflow: hidden;
  padding: 0 6px 0 0;
}

.latest-articles2 .row>div .box-featured .bx-title-wrap .bx-title {
  width: 100%;
  height: 100%;
  float: left;
  font-weight: 400;
  font-size: 56px;
  line-height: 66px;
  background: var(--white);
  overflow: hidden;
  padding: 15% 11%;
}

.latest-articles2 .row>div .box-featured .aside-wrap {
  width: 50%;
  height: 100%;
  float: left;
  overflow: hidden;
  padding: 0 0 0 6px;
}

.latest-articles2 .row>div .box-featured .aside {
  width: 100%;
  height: 100%;
  float: left;
  font-size: 24px;
  line-height: 32px;
  background: #888888;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 25px;
}

.latest-articles2 .row>div .box-featured .aside p {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
  padding: 25px 24px;
}

.latest-articles2 .row>div .box-featured .aside .category-name {
  float: none;
  display: inline-block;
  vertical-align: top;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  line-height: 20px;
  background: var(--black);
  overflow: hidden;
  padding: 10px 24px;
  margin-bottom: 15px;
}

.latest-articles2 .row>div .box-featured .aside .category-name:last-child {
  margin-bottom: 0;
}

.latest-articles2 .row>div .box-featured .aside .figure {
  width: 100%;
  height: 100%;
  float: left;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  z-index: -1;
}

.latest-articles2 .row>div .box-featured .aside .figure:after {
  content: "";
  width: 100%;
  height: 100%;
  float: left;
  background: #0000008D;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .60;
  z-index: 1;
}

.latest-articles2 .row>div .box-featured .aside .figure img {
  width: auto;
  max-width: none;
  max-height: none;
  min-width: 100%;
  min-height: 100%;
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
}

.latest-articles2 .row>div .box-featured:hover .aside .figure img,
.latest-articles2 .row>div .box-featured:focus .aside .figure img,
.latest-articles2 .row>div .box-featured:active .aside .figure img {
  -ms-transform: translate(-50%, -50%) scale(1.1);
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -moz-transform: translate(-50%, -50%) scale(1.1);
  -o-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}

.latest-articles2 .btn-wrap .btn {
	margin: 55px auto 0 auto;
}

@media (min-width: 992px) {
  .latest-articles2 .row {
    padding: 0;
    margin: 0;
  }

  .latest-articles2 .row>div {
    padding: 0;
    margin: 0;
  }

  .latest-articles2 .row>div:nth-child(1) {
    width: 68%;
    min-height: 550px;
    padding-right: 12px;
  }

  .latest-articles2 .row>div:nth-child(2),
  .latest-articles2 .row>div:nth-child(3) {
    width: 32%;
    height: 50%;
    position: absolute;
    right: 0;
  }

  .latest-articles2 .row>div:nth-child(2) {
    top: 0;
    padding-bottom: 6px;
  }

  .latest-articles2 .row>div:nth-child(3) {
    bottom: 0;
    padding-top: 6px;
  }
}

@media (min-width: 1200px) {
  .latest-articles2 .row>div:nth-child(1) {
    width: 65%;
    min-height: 600px;
  }

  .latest-articles2 .row>div:nth-child(2),
  .latest-articles2 .row>div:nth-child(3) {
    width: 35%;
  }
}

@media (max-width: 1199px) {
  .latest-articles2 .row>div .box .bx-title {
    font-size: 22px;
    line-height: 30px;
  }

  .latest-articles2 .row>div .box-featured .bx-title-wrap .bx-title {
    font-size: 46px;
    line-height: 56px;
  }

  .latest-articles2 .row>div .box-featured .aside {
    font-size: 22px;
    line-height: 30px;
  }
}

@media (max-width: 767px) {
  .latest-articles2 {
    padding: 60px 0;
  }

  .latest-articles2 .row>div .box {
    padding: 10% 8%;
  }

  .latest-articles2 .row>div .box-featured .bx-title-wrap {
    width: 100%;
    height: auto;
    padding: 0;
  }

  .latest-articles2 .row>div .box-featured .bx-title-wrap .bx-title {
    font-size: 38px;
    line-height: 48px;
    padding: 10% 8%;
  }

  .latest-articles2 .row>div .box-featured .aside-wrap {
    width: 100%;
    height: auto;
    padding: 0;
  }

  .latest-articles2 .row>div .box-featured .aside {
    padding: 10% 8%;
  }
}

/* Testimonials - Content */
.testimonials-cont {
  width: 100%;
  text-align: center;
  overflow: hidden;
  padding: 120px 0;
}

.testimonials-cont .item {
  width: 100%;
  max-width: 990px;
  float: none;
  display: inline-block;
  vertical-align: top;
  font-size: 24px;
  line-height: 34px;
}

.testimonials-cont .item p {
  padding-bottom: 20px;
}

.testimonials-cont .item p:last-child {
  padding-bottom: 0;
}

.testimonials-cont .item .figure {
  width: 40px;
  height: 40px;
  float: none;
  display: inline-block;
  vertical-align: top;
  border-radius: 900px;
  margin-bottom: 20px;
}

.testimonials-cont .item .figure:last-child {
  margin-bottom: 0;
}

.testimonials-cont .item .name {
  font-size: 14px;
  line-height: 24px;
}

.testimonials-cont2 .owl-dots,
.testimonials-cont .owl-dots {
	display: none;
}

.testimonials-cont2 .btn-wrap {
	margin-top: 55px;
}

.testimonials-cont2 .btn-wrap .btn,
.testimonials-cont .btn-wrap .btn {
	margin: 0 auto;
}

@media (max-width: 1199px) {
  .testimonials-cont {
    padding: 90px 0;
  }

  .testimonials-cont .item {
    font-size: 22px;
    line-height: 32px;
  }
}

@media (max-width: 767px) {
  .testimonials-cont {
    padding: 70px 0;
  }

  .testimonials-cont .item {
    font-size: 20px;
    line-height: 30px;
  }
}

/* Testimonials - Content2 */
.testimonials-cont2 {
  width: 100%;
  overflow: hidden;
  padding: 120px 0;
}

.testimonials-cont2 .heading-txt {
  margin-bottom: 50px;
}

.testimonials-cont2 .heading-txt:last-child {
  margin-bottom: 0;
}

.testimonials-cont2 .item {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  background: var(--lightgrey);
  overflow: hidden;
  padding: 48px 95px;
  text-align: center;
}

.testimonials-cont2 .item p {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  font-size: 28px;
  line-height: 1.5em;
  position: relative;
  padding: 55px 45px 0 45px;
  margin: 0 0 60px 0;
}

.testimonials-cont2 .item p:last-child {
  margin-bottom: 0;
}

.testimonials-cont2 .item p:before,
.testimonials-cont2 .item p:after {
	font-family: var(--headingFont); 
	color: var(--primary);
  	font-weight: 600;
  	font-size: 100px;
  	line-height: 1em;
  	position: absolute;
}

.testimonials-cont2 .item p:before {
  content: "\201C";
  top: 0;
  left: 0;
}

.testimonials-cont2 .item p:after {
  content: "\201D";
  bottom: -80px;
  right: 5px;
}

.testimonials-cont2 .item .logo,
.testimonials-cont2 .item .cite {
  padding-left: 45px;
  padding-right: 45px;
}

.testimonials-cont2 .item .cite {
  padding-top: 10px;
  font-size: 0.9em;
  font-weight: 500;
}

.testimonials-cont2 .item .cite .name {
	font-size: 30px; 
	line-height: 1.1em; 
	color: var(--primary); 
	font-weight: 600;
}

.testimonials-cont2 .item .logo img {
  width: auto;
  max-width: 180px; 
  padding: 1em 1em 0 1em;
}

.testimonials-cont2 .owl-carousel {
  padding: 0 80px;
}

.testimonials-cont2 .owl-nav button {
  margin-top: -32.5px;
}

@media (max-width: 1199px) {
  .testimonials-cont2 {
    padding: 90px 0;
  }
	
	.testimonials-cont2 .item {
		padding: 5%;
	}

  .testimonials-cont2 .item p {
    font-size: 24px;
    margin: 0 0 50px 0;
  }

	.testimonials-cont2 .item p:after {
		bottom: -100px;
		right: 0;
	}

  .testimonials-cont2 .owl-carousel {
    padding: 0 35px;
  }

  .testimonials-cont2 .owl-nav button.owl-prev {
    left: -20px;
  }

  .testimonials-cont2 .owl-nav button.owl-next {
    right: -20px;
  }
}

@media (max-width: 767px) {
  .testimonials-cont2 {
    padding: 70px 0;
  }

  .testimonials-cont2 .heading-txt {
    margin-bottom: 40px;
  }

  .testimonials-cont2 .item {
    padding: 8% 8% 12% 8%;
  }

  .testimonials-cont2 .item p {
    font-size: 18px;
    padding: 45px 0 0 0;
    margin: 0 0 35px 0;
  }

	.testimonials-cont2 .item .logo img {
		max-width: 100%;
	}

  .testimonials-cont2 .owl-carousel {
    padding: 0 6%;
  }

  .testimonials-cont2 .owl-nav button {
    margin-top: -27.5px;
  }

  .testimonials-cont2 .owl-nav button.owl-prev {
    left: -6%;
  }

  .testimonials-cont2 .owl-nav button.owl-next {
    right: -6%;
  }
}

/* Testimonials Grid */
.testimonials-grid {
  width: 100%;
  overflow: hidden;
  padding: 120px 0;
}

.testimonials-grid .heading-txt {
  margin-bottom: 0;
}

.testimonials-grid .heading-txt:last-child {
  margin-bottom: 0;
}

.testimonials-grid .item {
  float: none; 
  width: 47.5%;
  display: inline-block;
  vertical-align: top;
  background: var(--lightgrey);
  overflow: hidden;
  padding: 5%;
  margin: 1%;
  text-align: center;
}

.testimonials-grid .item p {
  float: none;
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin: 0 0 40px 0;
  padding: 0 3%;
}

.testimonials-grid .item p:last-child {
  margin-bottom: 0;
}

.testimonials-grid .item p:before,
.testimonials-grid .item p:after {
  font-family: var(--headingFont);
  color: var(--primary);
  font-weight: 600;
  font-size: 100px;
  line-height: 1em;
  position: absolute;
}

.testimonials-grid .item p:before {
  content: "\201C";
  top: -20px;
  left: -30px;
}

.testimonials-grid .item p:after {
  content: "\201D";
  bottom: -80px;
  right: -27px;
}

.testimonials-grid .item .logo,
.testimonials-grid .item .cite {
  padding-left: 45px;
  padding-right: 45px;
}

.testimonials-grid .item .cite {
  padding-top: 10px;
  font-size: 0.9em;
  font-weight: 500;
}

.testimonials-grid .item .cite .name {
  font-size: 30px;
  line-height: 1.1em;
  color: var(--primary);
  font-weight: 600;
}

.testimonials-grid .item .logo img {
  width: auto;
  max-width: 160px;
  padding-top: 1em;
}

.testimonials-grid .btn-wrap .btn {
	margin: 0 auto;
}

@media (max-width: 991px) {
	.testimonials-grid {
		padding: 60px 0;
	}
	.testimonials-grid .item {
		width: 100%;
		padding: 10% 5%;
		margin-bottom: 1em;
	}
	.testimonials-grid .item p {
		font-size: 18px; 
		line-height: 1.2em;
		margin-bottom: 30px;
		padding-bottom: 0px;
	}
	.testimonials-grid .item p:before,
	.testimonials-grid .item p:after {
		font-size: 75px;
	}
	.testimonials-grid .item p:before {
		left: -10px;
		top: -30px;
	}
	.testimonials-grid .item p:after {
		bottom: -55px;
		right: -10px;
	}
	.testimonials-grid .item .cite .name {
		font-size: 20px;
	}
}

/* CTA - Content */
.cta-cont {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 65px 0;
}

.cta-cont.bg-img {
  color: var(--white);
}

/*.cta-cont.bg-img * {
  color: inherit;
}*/

.cta-cont.bg-img .figure {
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  z-index: -1;
}

.cta-cont.bg-img .figure:after {
  content: "";
  width: 100%;
  height: 100%;
  float: left;
  background: #000000;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .65;
  z-index: 1;
}

.cta-cont.bg-img.no-overlay .figure:after {
	display: none;
}

.cta-cont.bg-img .figure img {
  width: auto;
  max-width: none;
  max-height: none;
  min-width: 101%;
  min-height: 101%;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
}

.cta-cont.bg-img input.btn-blank[type="button"],
.cta-cont.bg-img input.btn-blank[type="submit"],
.cta-cont.bg-img input[type="submit"],
.cta-cont.bg-img .btn.btn-blank {
  color: var(--white);
  border: 2px solid var(--white);
}

.cta-cont.bg-img input.btn-blank[type="button"]:hover,
.cta-cont.bg-img input.btn-blank[type="button"]:focus,
.cta-cont.bg-img input.btn-blank[type="button"]:active,
.cta-cont.bg-img input.btn-blank[type="submit"]:hover,
.cta-cont.bg-img input.btn-blank[type="submit"]:focus,
.cta-cont.bg-img input.btn-blank[type="submit"]:active,
.cta-cont.bg-img input[type="submit"]:hover,
.cta-cont.bg-img input[type="submit"]:focus,
.cta-cont.bg-img input[type="submit"]:active,
.cta-cont.bg-img .btn.btn-blank:hover,
.cta-cont.bg-img .btn.btn-blank:focus,
.cta-cont.bg-img .btn.btn-blank:active {
  background: var(--secondary);
  color: var(--dark);
  border: 2px solid var(--secondary) !important;
}

.cta-cont .aside {
  width: 100%;
  max-width: 750px;
  float: none;
  display: inline-block;
  vertical-align: top;
}

.cta-cont .aside h1,
.cta-cont .aside h2,
.cta-cont .aside h3 {
  padding-bottom: 35px;
}

.cta-cont .aside h1:last-child,
.cta-cont .aside h2:last-child,
.cta-cont .aside h3:last-child {
  padding-bottom: 0;
}

.cta-cont .aside p {
  padding-bottom: 45px;
}

.cta-cont .aside .btn-out,
.cta-cont .aside .btn-wrap {
  justify-content: center;
  margin-top: 0;
}

@media (max-width: 1199px) {
  .cta-cont {
    padding: 90px 0;
  }

  .cta-cont .aside h1,
  .cta-cont .aside h2,
  .cta-cont .aside h3 {
    padding-bottom: 30px;
  }

  .cta-cont .aside p {
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .cta-cont {
    font-size: 18px;
    line-height: 28px;
    padding: 70px 0;
  }

  .cta-cont .aside h1,
  .cta-cont .aside h2,
  .cta-cont .aside h3 {
    padding-bottom: 25px;
  }

  .cta-cont .aside p {
    padding-bottom: 35px;
  }
}

/* CTA - Content2 */

.cta-cont2 {
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.cta-cont2.bg-img {
  color: var(--white);
}
/*.cta-cont2.bg-img * {
  color: inherit;
}*/

.cta-cont2.bg-img .figure {
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  z-index: -1;
}

.cta-cont2.bg-img .figure:after {
  content: "";
  width: 100%;
  height: 100%;
  float: left;
  background: #0000004D;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.cta-cont2.bg-img .figure img {
  width: auto;
  max-width: none;
  max-height: none;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
}

.cta-cont2 .aside {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.cta-cont2 .txt-wrap {
  width: 55%;
  float: left;
  padding-right: 40px;
}

.cta-cont2 .btn-wrap {
  width: 45%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 0 0 -20px 0;
}

.cta-cont2 .btn-wrap .btn {
  margin: 0 0 20px 20px;
}

.cta-cont2.bg-img input.btn-blank[type="button"],
.cta-cont2.bg-img input.btn-blank[type="submit"],
.cta-cont2.bg-img input[type="submit"],
.cta-cont2.bg-img .btn.btn-blank {
  color: var(--white);
  border: 2px solid var(--white);
}

.cta-cont2.bg-img input.btn-blank[type="button"]:hover,
.cta-cont2.bg-img input.btn-blank[type="button"]:focus,
.cta-cont2.bg-img input.btn-blank[type="button"]:active,
.cta-cont2.bg-img input.btn-blank[type="submit"]:hover,
.cta-cont2.bg-img input.btn-blank[type="submit"]:focus,
.cta-cont2.bg-img input.btn-blank[type="submit"]:active,
.cta-cont2.bg-img input[type="submit"]:hover,
.cta-cont2.bg-img input[type="submit"]:focus,
.cta-cont2.bg-img input[type="submit"]:active,
.cta-cont2.bg-img .btn.btn-blank:hover,
.cta-cont2.bg-img .btn.btn-blank:focus,
.cta-cont2.bg-img .btn.btn-blank:active {
  background: var(--secondary);
  color: var(--dark);
  border: 2px solid var(--secondary) !important;
}

@media (max-width: 1199px) {
  .cta-cont2 {
    padding: 70px 0;
  }
}

@media (max-width: 991px) {
  .cta-cont2 .txt-wrap {
    width: 51%;
  }

  .cta-cont2 .btn-wrap {
    width: 49%;
  }
}

@media (max-width: 767px) {
  .cta-cont2 {
    text-align: center;
    padding: 60px 0;
  }

  .cta-cont2 .txt-wrap {
    width: 100%;
    padding-right: 0;
  }

  .cta-cont2 .btn-wrap {
    width: 104%;
    justify-content: center;
    margin: 30px -2% -20px -2%;
  }

  .cta-cont2 .btn-wrap .btn {
    margin: 0 10px 20px 10px;
  }
}

/*
 5.) Footer - Main
----------------------------------------*/
.footer-main {
  width: 100%;
  float: left;
  flex-shrink: 0;
  font-size: 14px;
  line-height: 20px;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
  position: relative;
  z-index: 8;
  padding: 100px 0 100px 0;
}

.footer-main .pre-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 40px;
  margin: 0 -15px -40px -15px;
}

.footer-main .pre-footer:last-child {
  padding-bottom: 0;
}

.footer-main .pre-footer .aside-cont {
  width: 17%;
  float: left;
  padding: 0 15px 40px 15px;
}

.footer-main .pre-footer .aside-cont:nth-child(1) {
  width: 34%;
}

.footer-main .pre-footer .aside-cont:nth-child(5) {
  width: 15%;
}

.footer-main .pre-footer h2,
.footer-main .pre-footer a h2  {
  font-weight: 700; 
  font-family: var(--bodyFont);
  font-size: inherit;
  color: var(--white);
  line-height: inherit;
  margin-bottom: 20px;
}

.footer-main .pre-footer a:hover h2,
.footer-main .pre-footer a:focus h2,
.footer-main .pre-footer a:active h2  {
	color: var(--secondary);
	border-bottom-color: var(--secondary);
}

.footer-main .pre-footer p {
  width: 100%;
  max-width: 300px;
  padding-bottom: 40px;
}

.footer-main .pre-footer p:last-child {
  padding-bottom: 0;
}

.footer-main .pre-footer .brand {
  margin-bottom: 40px;
}

.footer-main .pre-footer .brand:last-child {
  margin-bottom: 0;
}

.footer-main .pre-footer .brand img {
  width: 100%;
  max-width: 270px;
  display: inline-block;
  vertical-align: top;
}

.footer-main .pre-footer .foot-links {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
}

.footer-main .pre-footer .foot-links ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 -10px -16px -10px;
}

.footer-main .pre-footer .foot-links ul li {
  width: 100%;
  float: left;
  padding: 0 10px;
  margin: 0 0 16px 0;
}

.footer-main .pre-footer .foot-links ul li:before {
  display: none;
}

.footer-main .pre-footer .foot-links ul li a {
  font-weight: inherit;
  color: inherit;
  text-decoration: none;
}

.footer-main .pre-footer .foot-links ul li>a:hover,
.footer-main .pre-footer .foot-links ul li>a:focus,
.footer-main .pre-footer .foot-links ul li>a:active,
.footer-main .pre-footer .foot-links ul li.current-menu-item>a,
.footer-main .pre-footer .foot-links ul li.current-menu-parent>a,
.footer-main .pre-footer .foot-links ul li.current-menu-ancestor>a {
  color: var(--secondary);
  text-decoration: underline;
}

.footer-main .copy-rights {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  border-top: 1px solid #b4b4b4;
  padding: 35px 0 0 0;
}

.footer-main .copy-rights .inn-wrap {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding: 0 0 0 35px;
}

.footer-main .copy-rights p {
  float: none;
  display: inline-block;
  vertical-align: middle;
  padding: 0 10px 0 0;
  margin: 0;
}

/* .footer-main .copy-rights p .icon-logo {
  width: 22px;
  height: 22px;
  float: left;
  background: url(../img/3mw-logo.png) no-repeat center center;
  background-size: 100% auto;
  text-indent: -99999px;
  position: absolute;
  top: 50%;
  left: 0;
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  opacity: .70;
} */

.web_logo {
    float: left;
    margin-top: -1px;
    margin-right: 10px;
    font-size: 0;
    opacity: 0.4;
    width: 20px;
    height: 20px;
    display: block;
    background:url('https://www.3mediaweb.com/wp-content/uploads/2022/02/logo-3mw.png') no-repeat center;
    background-size: 100%;
}


.footer-main .copy-rights .foot-links {
  float: none;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}

.footer-main .copy-rights .foot-links ul {
  float: none;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  padding: 0;
  margin: 0 -20px 0 -5px;
}

.footer-main .copy-rights .foot-links ul li {
  float: none;
  display: inline-block;
  vertical-align: top;
  padding: 0 20px 0 5px;
  margin: 0;
}

.footer-main .copy-rights .foot-links ul li:before {
  content: "";
  width: 10px;
  height: 1px;
  background: var(--white);
  top: 50%;
  left: auto;
  right: 0;
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin: 0;
}

.footer-main .copy-rights .foot-links ul li:last-child:before {
  display: none;
}

.footer-main .copy-rights .foot-links ul li a {
  font-weight: inherit;
  color: inherit;
  text-decoration: none;
}

.footer-main .copy-rights .foot-links ul li>a:hover,
.footer-main .copy-rights .foot-links ul li>a:focus,
.footer-main .copy-rights .foot-links ul li>a:active,
.footer-main .copy-rights .foot-links ul li.current-menu-item>a,
.footer-main .copy-rights .foot-links ul li.current-menu-parent>a,
.footer-main .copy-rights .foot-links ul li.current-menu-ancestor>a {
  color: var(--secondary);
  text-decoration: underline;
}

@media (max-width: 991px) {
  .footer-main .pre-footer .aside-cont {
    width: 25%;
  }

  .footer-main .pre-footer .aside-cont:nth-child(1) {
    width: 100%;
  }

  .footer-main .pre-footer .aside-cont:nth-child(5) {
    width: 25%;
  }
}

@media (max-width: 767px) {
  .footer-main {
    padding: 50px 0 40px 0;
  }

  .footer-main .pre-footer .aside-cont {
    width: 50%;
  }

  .footer-main .pre-footer .aside-cont:nth-child(1) {
    width: 100%;
  }

  .footer-main .pre-footer .aside-cont:nth-child(5) {
    width: 50%;
  }

  .footer-main .pre-footer p {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .footer-main .copy-rights {
    text-align: center;
  }

  .footer-main .copy-rights .inn-wrap {
    padding: 35px 0 0 0;
    margin: 0;
  }

  .footer-main .copy-rights p {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  /* .footer-main .copy-rights p .icon-logo {
    width: 22px;
    height: 22px;
    top: 0;
    left: 50%;
    -ms-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  } */

  .footer-main .copy-rights .foot-links {
    overflow: hidden;
    margin-top: 10px;
  }
}

/*
 6.) Inner - Pages
----------------------------------------*/
/* Hero - Title */
.hero-title {
  width: 100%;
  min-height: 325px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  overflow: hidden;
  padding: 60px 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background: var(--primary);
}

.hero-title .aside {
  width: 100%;
  max-width: 1010px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1199px) {
  .hero-title {
    min-height: 280px;
  }

  .hero-title .aside {
    max-width: 800px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    min-height: 200px;
    padding: 50px 0;
  }
}

/* Split - Content */
.split-cont {
  width: 100%;
  overflow: hidden;
}

.split-cont .heading-row {
  text-align: center;
  padding: 50px 0;
}

.split-cont .row {
  padding: 0;
  margin: 0;
}

.split-cont .row>div {
  font-size: 20px;
  line-height: 30px;
  padding: 0;
  margin: 0;
}

.split-cont .row>div .aside {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  padding: 120px 0;
}

/*.split-cont .row.bg-dark .btn.btn-blank {
  color: var(--white);
  border: 2px solid var(--white);
}
.split-cont .row.bg-dark .btn.btn-blank:hover,
.split-cont .row.bg-dark .btn.btn-blank:active,
.split-cont .row.bg-dark .btn.btn-blank:focus {
  color: var(--primary);
  background: var(--white);
  border: 2px solid var(--primary);
}*/

@media (min-width: 768px) {
  .split-cont .row {
    margin: 0 -20px;
  }

  .split-cont .row>div {
    min-height: 500px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    padding: 0;
  }

  .split-cont .row>div .figure {
    height: 100%;
  }

  .split-cont .row>div .figure img {
    width: auto;
    max-width: none;
    max-height: none;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0;
  }

  .split-cont .row>div .aside {
    max-width: 605px;
    float: left;
    padding-right: 40px;
  }

  .split-cont .row>div .txt-max {
    width: 100%;
    max-width: 460px;
    float: right;
  }

  .split-cont .row:nth-child(even)>div {
    justify-content: flex-end;
  }

  .split-cont .row:nth-child(even)>div:nth-child(1) {
    left: 50%;
  }

  .split-cont .row:nth-child(even)>div:nth-child(2) {
    left: -50%;
  }

  .split-cont .row:nth-child(even)>div .aside {
    float: right;
    padding-left: 40px;
    padding-right: 0;
  }

  .split-cont .row:nth-child(even)>div .txt-max {
    float: left;
  }

  .split-cont .row:nth-child(even)>div.fadeInLeft {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
  }

  .split-cont .row:nth-child(even)>div.fadeInRight {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
  }

  /* Column - Reverse */
  .split-cont.col-reverse .row>div {
    justify-content: flex-end;
  }

  .split-cont.col-reverse .row>div:nth-child(1) {
    left: 50%;
  }

  .split-cont.col-reverse .row>div:nth-child(2) {
    left: -50%;
  }

  .split-cont.col-reverse .row>div .aside {
    float: right;
    padding-left: 40px;
    padding-right: 0;
  }

  .split-cont.col-reverse .row>div .txt-max {
    float: left;
  }

  .split-cont.col-reverse .row>div.fadeInLeft {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
  }

  .split-cont.col-reverse .row>div.fadeInRight {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
  }

  .split-cont.col-reverse .row:nth-child(even)>div {
    justify-content: flex-start;
  }

  .split-cont.col-reverse .row:nth-child(even)>div:nth-child(1) {
    left: 0;
  }

  .split-cont.col-reverse .row:nth-child(even)>div:nth-child(2) {
    left: 0;
  }

  .split-cont.col-reverse .row:nth-child(even)>div .aside {
    float: left;
    padding-left: 0;
    padding-right: 40px;
  }

  .split-cont.col-reverse .row:nth-child(even)>div .txt-max {
    float: right;
  }

  .split-cont.col-reverse .row:nth-child(even)>div.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
  }

  .split-cont.col-reverse .row:nth-child(even)>div.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
  }
}

@media (min-width: 1200px) {
  .split-cont .row>div {
    min-height: 600px;
  }
}

@media (max-width: 1199px) {
  .split-cont .row>div {
    font-size: 18px;
    line-height: 28px;
  }

  .split-cont .row>div .aside {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

@media (max-width: 767px) {
  .split-cont .row>div {
    text-align: center;
  }

  .split-cont .row>div .btn {
    min-width: 190px;
  }

  .split-cont .row>div .aside {
    max-width: 640px;
    text-align: left;
    padding: 70px 8%;
  }
}

/* Featured - Content Icons */
.featured-cont-icons {
  width: 100%;
  overflow: hidden;
  padding: 120px 0;
}

.featured-cont-icons .row {
  align-items: center;
}

.featured-cont-icons .row>div .aside {
  width: 100%;
  max-width: 470px;
  font-size: 20px;
  line-height: 30px;
}

.featured-cont-icons .row>div .aside h1,
.featured-cont-icons .row>div .aside h2,
.featured-cont-icons .row>div .aside h3 {
  padding-bottom: 30px;
}

.featured-cont-icons .row>div .aside h1:last-child,
.featured-cont-icons .row>div .aside h2:last-child,
.featured-cont-icons .row>div .aside h3:last-child {
  padding-bottom: 0;
}

.featured-cont-icons .row>div .aside p {
  padding-bottom: 40px;
}

.featured-cont-icons .row>div .aside p:last-child {
  padding-bottom: 0;
}

.featured-cont-icons .row>div .aside .btn-wrap {
  margin-top: 0;
}

.featured-cont-icons .row>div .box {
  width: 100%;
  height: 100%;
  float: left;
  font-weight: inherit;
  font-size: 16px;
  color: inherit;
  line-height: 26px;
  text-decoration: none;
  position: relative;
}

.featured-cont-icons .row>div .box h3 {
	padding-bottom: 10px;
}

.featured-cont-icons .row>div .box .icon img {
  max-height: 50px;
}

.featured-cont-icons .row>div .box .icon i {
  color: var(--primary);
  font-size: 50px;
  font-weight: 300;
}

.featured-cont-icons .row>div .box .icon {
  	height: auto;
  	line-height: 1em;
    background: var(--lightgrey);
    border-radius: 100%;
    width: 90px;
    height: 90px;
	display: flex;
    justify-content: space-around;
    align-items: center;
}

.featured-cont-icons .row>div .row {
  align-items: flex-start;
}

@media (max-width: 1199px) {
  .featured-cont-icons {
    padding: 90px 0;
  }

  .featured-cont-icons .row>div .aside {
    max-width: 100%;
    font-size: 18px;
    line-height: 28px;
  }

  .featured-cont-icons .row>div .aside h1,
  .featured-cont-icons .row>div .aside h2,
  .featured-cont-icons .row>div .aside h3 {
    padding-bottom: 25px;
  }

  .featured-cont-icons .row>div .aside p {
    padding-bottom: 35px;
  }

  .featured-cont-icons .row>div .box .icon {
    height: 66px;
	max-height: 66px;
	width: 66px;
    line-height: 66px;
  }
}

@media (max-width: 991px) {
  .featured-cont-icons .row {
    margin-bottom: -65px;
  }

  .featured-cont-icons .row>div {
    padding-bottom: 65px;
  }

  .featured-cont-icons .row>div .row {
    margin-bottom: -50px;
  }

  .featured-cont-icons .row>div .row>div {
    padding-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .featured-cont-icons {
    padding: 70px 0;
  }

  .featured-cont-icons .row {
    margin-bottom: -55px;
  }

  .featured-cont-icons .row>div {
    padding-bottom: 55px;
  }

  .featured-cont-icons .row>div .row {
    margin-bottom: -40px;
  }

  .featured-cont-icons .row>div .row>div {
    padding-bottom: 40px;
  }

  .featured-cont-icons .row>div .aside h1,
  .featured-cont-icons .row>div .aside h2,
  .featured-cont-icons .row>div .aside h3 {
    padding-bottom: 20px;
  }

  .featured-cont-icons .row>div .aside p {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .featured-cont-icons .row>div .box {
    padding: 0 0 0 85px;
  }

  .featured-cont-icons .row>div .box .icon {
    width: 50px;
    height: auto;
    line-height: 1em;
    position: absolute;
    top: 2px;
    left: 0;
    margin: 0;
  }

  .featured-cont-icons .row>div .box .read-more {
    position: relative;
    margin-top: 25px;
  }
}

/* Icons - List */
.icons-list {
  width: 100%;
  overflow: hidden;
  padding: 55px 0 140px 0;
}

.icons-list .heading-txt,
.icons-list .heading-txt2,
.icons-list .heading-txt3 {
  margin-bottom: 80px;
}

.icons-list .heading-txt:last-child,
.icons-list .heading-txt2:last-child,
.icons-list .heading-txt3:last-child {
  margin-bottom: 0;
}

.icons-list .row>div {
    padding: 0 30px 20px 30px;
}

.icons-list .row>div .box {
  width: 100%;
  height: 100%;
  float: left;
  font-weight: inherit;
  font-size: 16px;
  color: inherit;
  line-height: 26px;
  text-decoration: none;
  position: relative;
  padding-bottom: 1em;
  text-align: center;
}

.icons-list .row>div .box h3 {
	padding-bottom: 10px;
}

.icons-list .row>div .box .icon i {
  color: var(--primary);
  font-size: 40px;
  font-weight: 400;
}

.icons-list .row>div .box .icon {
  	height: auto;
  	line-height: 1em;
    background: var(--lightgrey);
    border-radius: 100%;
    width: 80px;
    height: 80px;
	display: flex;
    justify-content: space-around;
    align-items: center;
	margin: 0 auto 10px auto;
}

.icons-list .btn-wrap .btn {
  margin: 0 auto;
}

.icons-list .row>div .box .icon img {
  max-height: 50px;
  width: auto; 
}

.icons-list .row>div .box p {
  padding-bottom: 0;
}

.icons-list .row>div .box .read-more {
  position: relative;
  bottom: 0;
  left: 0;
  margin-top: 20px;
}

@media (max-width: 1199px) {
  .icons-list {
    padding: 90px 0;
  }

  .icons-list .heading-txt,
  .icons-list .heading-txt2,
  .icons-list .heading-txt3 {
    margin-bottom: 65px;
  }

  .icons-list .row>div .box .icon {
    height: 66px;
	width: 66px;
    line-height: 66px;
  }
	.icons-list .row>div .box .icon img,
	.featured-cont-icons .row>div .box .icon img {
		max-height: 35px;
		max-width: 35px;
	}
}

@media (max-width: 767px) {
  .icons-list {
    padding: 70px 0;
  }

  .icons-list .heading-txt,
  .icons-list .heading-txt2,
  .icons-list .heading-txt3 {
    margin-bottom: 50px;
  }
}

@media (max-width: 575px) {
  .icons-list .row>div .box {
    padding: 0;
    text-align: center;
  }

  .icons-list .row>div .box .icon,
  .featured-cont-icons .row>div .box .icon {
    width: 70px;
    height: 70px;
    line-height: 1em;
    top: 2px;
    left: 0;
    margin: 0 auto 1rem;
  }

  .icons-list .row>div .box .read-more {
    position: relative;
    margin-top: 25px;
  }
}

/* Team - List */
.team-list {
  width: 100%;
  overflow: hidden;
  padding: 120px 0;
}

.team-list .heading-txt3 {
  margin-bottom: 65px;
}

.team-list .row {
  padding: 0;
  margin: 0 -15px -40px -15px;
}

.team-list .row>div {
  padding: 0 15px 40px 15px;
  margin: 0;
}

.team-list .row>div .box {
  width: 100%;
  height: 100%;
  float: left;
  font-weight: inherit;
  color: inherit;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.team-list .row>div .figure {
  margin: 0;
}

.team-list .row>div .box .figure,
.team-list .row>div .figure {
  margin: 0;
}

.team-list .row>div .figure:after {
  display: none;
}

.team-list .row>div .box .figure:after {
  width: 42px;
  height: 42px;
  float: right;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  content: "\f067";
  font-family: var(--FontAwesome);
  font-weight: 400;
  font-size: 24px;
  line-height: 1em;
  background-color: var(--white);
  color: var(--primary);
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
	border-width: 2px 0px 0px 2px;
    border-style: solid;
    border-color: var(--secondary);
}

.team-list .row>div .box .figure img,
.team-list .row>div .figure img {
  height: 270px;
  object-fit: cover;
  object-position: top;
  border: 1px solid #ebebeb;
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
}

.team-list .row>div .box .aside,
.team-list .row>div .aside {
  width: 100%;
  float: left;
  margin: 28px 0 0 0;
}

.team-list .row>div .box .aside .name,
.team-list .row>div .aside .name {
  font-family: var(--headingFont);
  font-size: 28px;
  line-height: 32px;
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
  margin-bottom: 5px;
}

.team-list .row>div .box .aside .name:last-child,
.team-list .row>div .aside .name:last-child {
  margin-bottom: 0;
}

.team-list .row>div .box .aside .position,
.team-list .row>div .aside .position {
  margin-bottom: 28px;
}

.team-list .row>div .box .aside .position:last-child,
.team-list .row>div .aside .position:last-child {
  margin-bottom: 0;
}

.team-list .row>div .box:hover .figure:after,
.team-list .row>div .box:focus .figure:after,
.team-list .row>div .box:active .figure:after {
  color: var(--white);
  background: var(--primary);
}

.team-list .row>div .box:hover .figure img,
.team-list .row>div .box:focus .figure img,
.team-list .row>div .box:active .figure img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
}

.team-list .row>div .box:hover .aside .name,
.team-list .row>div .box:focus .aside .name,
.team-list .row>div .box:active .aside .name {
  text-decoration: underline;
}

.team-list .btn-wrap .btn {
	margin: 4em auto 0 auto;
}



@media (max-width: 1199px) {
  .team-list {
    padding: 90px 0;
  }

  .team-list .row>div .box,
  .team-list .row>div {
  }

  .team-list .row>div .box .aside,
  .team-list .row>div .aside {
    margin: 24px 0 0 0;
  }

  .team-list .row>div .box .aside .name,
  .team-list .row>div .aside .name {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 15px;
  }

  .team-list .row>div .box .aside .position,
  .team-list .row>div .aside .position {
    margin-bottom: 24px;
  }

  .team-list .row>div .box .figure img,
  .team-list .row>div .figure img {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .team-list {
    padding: 70px 0;
  }

  .team-list .row>div {
    text-align: center;
  }

  .team-list .row>div .box .aside,
  .team-list .row>div .aside {
    margin-top: 18px;
  }

  .team-list .row>div .box .aside .name,
  .team-list .row>div .aside .name {
    font-size: 20px;
    line-height: 24px;
  }

  .team-list .row>div .box .figure img,
  .team-list .row>div .figure img {
    width: 100%;
    height: 250px;
  }
	.team-list .row+.row{margin-top: 40px;}
}

@media (min-width:768px) {
  .team-list .team-grid {
    row-gap: 4rem;justify-content: center;
  }
	.team-list .row>div.col-lg-6 .box .figure img, .team-list .row>div.col-lg-6 .figure img{height: auto;}
	.team-list .row>div.col-lg-6 .box{padding: 0 4em 3em;}
	
}

/* Filter - Bar */
.filter-bar {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 40px;
  margin-bottom: 60px;
}

.filter-bar:last-child {
  margin-bottom: 0;
}

.filter-bar .filter-links {
  width: 100%;
  float: left;
  padding: 0 285px 0 0;
}

.filter-bar .filter-links ul {
  float: left;
  padding: 0;
  margin: 0 -50px 0 0;
}

.filter-bar .filter-links ul li {
  float: left;
  padding: 0;
  margin: 0 50px 0 0;
}

.filter-bar .filter-links ul li:before {
  display: none;
}

.filter-bar .filter-links ul li a {
  height: 40px;
  float: left;
  font-weight: 700;
  font-size: 20px;
  color: var(--black);
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.filter-bar .filter-links ul li a:after {
  content: "";
  width: 0;
  height: 2px;
  float: left;
  background: var(--secondary);
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 1;
}

.filter-bar .filter-links ul li:hover>a,
.filter-bar .filter-links ul li>a:focus,
.filter-bar .filter-links ul li.nav-menu-open>a,
.filter-bar .filter-links ul li.current-menu-item>a,
.filter-bar .filter-links ul li.current-menu-parent>a,
.filter-bar .filter-links ul li.current-menu-ancestor>a {
  color: var(--primary);
}

.filter-bar .filter-links ul li:hover>a:after,
.filter-bar .filter-links ul li>a:focus:after,
.filter-bar .filter-links ul li.current-menu-item>a:after,
.filter-bar .filter-links ul li.current-menu-parent>a:after,
.filter-bar .filter-links ul li.current-menu-ancestor>a:after {
  width: 100%;
  opacity: 1;
}

.filter-bar .search-box {
  width: 245px;
  float: right;
  margin: 0 0 0 -245px;
}

.filter-bar .search-box form {
  padding: 0;
  margin: 0;
}

.filter-bar .search-box select,
.filter-bar .search-box textarea,
.filter-bar .search-box input[type="text"],
.filter-bar .search-box input[type="password"],
.filter-bar .search-box input[type="datetime"],
.filter-bar .search-box input[type="datetime-local"],
.filter-bar .search-box input[type="date"],
.filter-bar .search-box input[type="month"],
.filter-bar .search-box input[type="time"],
.filter-bar .search-box input[type="week"],
.filter-bar .search-box input[type="number"],
.filter-bar .search-box input[type="search"]
.filter-bar .search-box input[type="email"],
.filter-bar .search-box input[type="url"],
.filter-bar .search-box input[type="tel"],
.filter-bar .search-box input[type="color"],
.filter-bar .search-box .uneditable-input {
  height: 40px;
  background: var(--white);
  border-width: 0px 0px 1px 0px;
  border-bottom: 1px solid var(--black);
  box-shadow: none;
  border-radius: 0;
  padding: 10px 40px 10px 0;
}

.filter-bar .search-box .btn,
.filter-bar .search-box input[type="button"],
.filter-bar .search-box input[type="submit"] {
  min-width: inherit;
  width: 18px;
  height: 40px;
  border: 0;
  box-shadow: none;
  background-color: transparent;
  background-image: url(../img/search.svg);
  background-size: 100% auto;
  border-radius: 0;
}

.filter-bar .search-box .btn:hover,
.filter-bar .search-box .btn:focus,
.filter-bar .search-box .btn:active,
.filter-bar .search-box .btn:active:focus,
.filter-bar .search-box .btn.active,
.filter-bar .search-box .btn.active:focus,
.filter-bar .search-box input[type="button"]:hover,
.filter-bar .search-box input[type="button"]:focus,
.filter-bar .search-box input[type="button"]:active,
.filter-bar .search-box input[type="button"]:active:focus,
.filter-bar .search-box input[type="button"].active,
.filter-bar .search-box input[type="button"].active:focus,
.filter-bar .search-box input[type="submit"]:hover,
.filter-bar .search-box input[type="submit"]:focus,
.filter-bar .search-box input[type="submit"]:active,
.filter-bar .search-box input[type="submit"]:active:focus,
.filter-bar .search-box input[type="submit"].active,
.filter-bar .search-box input[type="submit"].active:focus,
.filter-bar .search-box .btn:not(:disabled):not(.disabled).active {
  background-image: url(../img/search.svg);
  background-size: 100% auto;
  border: 0;
  box-shadow: none;
}

@media (min-width: 768px) {
  .filter-bar .search-box .dropdown-toggle {
    display: none;
  }

  .filter-bar .search-box .dropdown-menu {
    min-width: inherit;
    width: auto;
    float: left;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    transform: translate(0) !important;
    position: static !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    display: block !important;
    padding: 0;
    margin: 0;
  }
}

@media (min-width: 1200px) {
  .filter-bar .filter-links .dropdown-toggle {
    display: none;
  }

  .filter-bar .filter-links .dropdown-menu {
    min-width: inherit;
    width: auto;
    float: left;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    transform: translate(0) !important;
    position: static !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    display: block !important;
    padding: 0;
    margin: 0;
  }
}

@media (max-width: 1199px) {
  .filter-bar {
    margin-bottom: 70px;
  }

  .filter-bar .filter-links {
    position: relative;
    padding: 0;
  }

  .filter-bar .filter-links .dropdown-toggle {
    height: 40px;
    float: left;
    font-weight: 700;
    font-size: 18px;
    color: var(--black);
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    padding: 0 0 0 30px;
    margin: 0;
  }

  .filter-bar .filter-links .dropdown-toggle:before {
    content: "\f1de";
    font-family: var(--FontAwesome);
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 0;
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }

  .filter-bar .filter-links .dropdown-toggle.show:before {
    content: "\f00d";
    font-weight: 400;
    color: #b8084a;
  }

  .filter-bar .filter-links .dropdown-toggle:after {
    display: none;
  }

  .filter-bar .filter-links .dropdown-menu {
    min-width: 100%;
    width: 100%;
    float: left;
    background: var(--white);
    border: none;
    box-shadow: 0px 25px 25px #00000029;
    border-radius: 0 0 5px 5px;
    transform: translate(0) !important;
    position: absolute;
    top: 40px !important;
    left: 0 !important;
    right: auto !important;
    padding: 30px;
    margin: 0;
  }

  .filter-bar .filter-links ul {
    width: 100%;
    padding: 0;
    margin: 0 0 -20px 0;
  }

  .filter-bar .filter-links ul li {
    width: 100%;
    padding: 0;
    margin: 0 0 20px 0;
  }

  .filter-bar .filter-links ul li a {
    height: auto;
    font-size: 18px;
    line-height: 24px;
    padding-bottom: 3px;
  }
}

@media (max-width: 767px) {
  .filter-bar {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 50px;
  }

  .filter-bar .search-box {
    width: 18px;
    position: static;
    margin: 0 0 0 -18px;
  }

  .filter-bar .search-box .dropdown-toggle {
    width: 18px;
    height: 40px;
    float: right;
    font-size: 18px;
    color: var(--black);
    line-height: 40px;
    text-align: center;
    box-shadow: none;
    border-radius: 0;
    position: relative;
    padding: 0;
    margin: 0;
  }

  .filter-bar .search-box .dropdown-toggle:after {
    width: 100%;
    height: 100%;
    content: "\f00d";
    font-family: var(--FontAwesome);
    font-weight: 400;
    color: #ff0000;
    background: none;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
    display: none;
  }

  .filter-bar .search-box .dropdown-toggle.show em {
    opacity: 0;
  }

  .filter-bar .search-box .dropdown-toggle.show:after {
    display: block;
  }

  .filter-bar .search-box .dropdown-menu {
    width: 100%;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    box-shadow: none;
    transform: translate(0) !important;
    position: absolute !important;
    top: 40px !important;
    left: auto !important;
    right: 0 !important;
    padding: 0;
    margin: 0;
  }
}

/* Articles - List */
.articles-list {
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
}

.articles-list + .articles-list {
	padding-top: 0px;
}

.articles-list .row {
  overflow: hidden;
  padding: 0;
  margin: 0 -14px -38px -14px;
}

.articles-list .row>div {
  padding: 0 14px 38px 14px;
  margin: 0;
}

.articles-list .row>div .box {
  width: 100%;
  height: 100%;
  float: left;
  font-weight: inherit;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  background: var(--lightgrey);
}

.articles-list .row>div .box .figure {
  margin: 0;
}

.articles-list .row>div .box .figure img {
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
  height: 270px;
  object-fit: cover;
}

.articles-list .row>div .aside .post-meta {
  float: none;
  display: inline-block;
  vertical-align: top;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  line-height: 20px;
  overflow: hidden;
  margin-bottom: 25px;
}

.articles-list .row>div .box-featured .figure {
  width: 34.5%;
  min-height: 370px;
  float: left;
  padding: 0;
  margin: 0;
}

.articles-list .row>div .box-featured .figure img {
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
}

.articles-list .row>div .box-featured .figure .post-meta, .latest-articles .row>div .box-featured .figure .post-meta{float: none;
    display: inline-block;
    vertical-align: top;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
    line-height: 20px;
    overflow: hidden;
    margin-bottom: 15px;
    position: absolute;
    left: 0;
    background: #FFF;
    z-index: 2;
    padding: 12px 60px 12px 35px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    top: 20px;
    text-align: left;}

.articles-list .row>div .box .aside {
  width: 100%;
  min-height: 166px;
  float: left;
  padding: 24px 25px 85px 25px;
}

.articles-list .row>div .box-featured .aside {
  width: 65.5%;
  float: left;
  position: relative;
  padding: 75px 100px 75px 80px;
  padding-bottom: 0;
  margin-bottom: 0;
}

.articles-list .row>div .box .aside .bx-title {
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 15px;
}

.articles-list .row>div .box .aside .bx-title:last-child {
  margin-bottom: 0;
}

.articles-list .row>div .box .read-more {
  position: absolute;
  bottom: 21px;
  left: 0;
  padding: 0 25px;
  margin: 0;
}

.articles-list .row>div .box-featured .aside .read-more {
  position: absolute;
  bottom: -40px;
  left: 0;
  padding: 0 80px;
  margin: 0;
}

.articles-list .row>div .box-featured:hover .read-more .a:before,
.articles-list .row>div .box-featured:focus .read-more .a:before,
.articles-list .row>div .box-featured:active .read-more .a:before {
  width: 100%;
}

.articles-list .row>div .box-featured:hover .read-more .a em,
.articles-list .row>div .box-featured:focus .read-more .a em,
.articles-list .row>div .box-featured:active .read-more .a em {
  animation: arrowright 0.5s linear 1;
  -webkit-animation-name: arrowright 0.5s linear 1;
}

.articles-list .row>div a.box:hover .figure img,
.articles-list .row>div a.box:focus .figure img,
.articles-list .row>div a.box:active .figure img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
}

@media (min-width: 768px) {
  .articles-list .row>div .box-featured .figure img {
    width: auto;
    max-width: none;
    max-height: none;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    left: 0;
    margin: 0;
  }

  .articles-list .row>div .box-featured:hover .figure img,
  .articles-list .row>div .box-featured:focus .figure img,
  .articles-list .row>div .box-featured:active .figure img {
    -ms-transform: translate(-50%, -50%) scale(1.1);
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    -moz-transform: translate(-50%, -50%) scale(1.1);
    -o-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@media (max-width: 1199px) {
  .articles-list {
    padding: 90px 0;
  }

  .articles-list .row {
    margin: 0 -10px -30px -10px;
  }

  .articles-list .row>div {
    padding: 0 10px 30px 10px;
  }
	
  .articles-list .row>div .box-featured .aside {
    padding: 50px 60px 130px 60px;
  }

  .articles-list .row>div .box-featured .aside .read-more {
    bottom: 50px;
    padding: 0 60px;
  }
}

@media (min-width: 576px) and (max-width: 1199px) {
  .articles-list .row>div .box {
    font-size: 17px;
    line-height: 25px;
  }

  .articles-list .row>div .box .aside {
    min-height: 140px;
    padding: 20px 20px 80px 20px;
  }

  .articles-list .row>div .box .aside .bx-title {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 991px) {
  .articles-list .row>div .box-featured .figure {
    width: 45%;
  }

  .articles-list .row>div .box-featured .aside {
    width: 55%;
    padding: 40px 40px 130px 40px;
  }

  .articles-list .row>div .box-featured .aside .bx-title {
    font-size: 40px;
    line-height: 50px;
  }

  .articles-list .row>div .box-featured .aside .read-more {
    bottom: 40px;
    padding: 0 40px;
  }
}

@media (max-width: 767px) {
  .articles-list {
    padding: 70px 0;
  }

  .articles-list .row>div .box .aside {
    min-height: inherit;
  }
	
  .articles-list .row>div .box-featured .figure {
    width: 100%;
    min-height: inherit;
  }

  .articles-list .row>div .box-featured .aside {
    width: 100%;
    padding: 40px 8%;
  }

  .articles-list .row>div .box-featured .aside .bx-title {
    font-size: 36px;
    line-height: 46px;
  }

  .articles-list .row>div .box-featured .aside .read-more {
    position: relative;
    bottom: 0;
    left: 0;
    padding: 0;
    margin: 30px 0 0 0;
  }

  .articles-list .row>div a.box-featured:hover .figure img,
  .articles-list .row>div a.box-featured:focus .figure img,
  .articles-list .row>div a.box-featured:active .figure img {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
}

/* Pagination */
.pagination-out {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  margin-top: 75px;
}

.pagination-out nav {
  padding: 0;
  margin: 0;
}

.pagination-out nav ul {
  width: auto;
  float: none;
  display: inline-block;
  vertical-align: top;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
}

.pagination-out nav ul li {
  height: 24px;
  float: left;
  padding: 0;
  margin: 0;
}

.pagination-out nav ul li:before {
  display: none;
}

.pagination-out nav ul li.page-item.active .page-link {
  z-index: inherit;
}

.pagination-out nav ul li a,
.pagination-out nav ul li span {
  min-width: inherit;
  height: 24px;
  float: left;
  font-weight: 400;
  font-size: 20px;
  color: var(--black) !important;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  border: none;
  background: none !important;
  box-shadow: none;
  border-radius: 0;
  position: relative;
  z-index: 1;
  padding: 0 8px;
  margin: 0;
}

.pagination-out nav ul li a:hover,
.pagination-out nav ul li a:focus,
.pagination-out nav ul li a:active,
.pagination-out nav ul li.active a,
.pagination-out nav ul li span.current {
  font-weight: 800;
  color: var(--black) !important;
}

.pagination-out nav ul li .dotted {
  font-size: 24px;
  line-height: 6px;
  position: relative;
  top: -6px;
  margin: 0 7px;
}

.pagination-out nav ul li.previous {
  border: none;
  margin-right: 15px;
}

.pagination-out nav ul li.next {
  border: none;
  margin-left: 15px;
}

.pagination-out nav ul li.previous a,
.pagination-out nav ul li.next a {
  width: 10px;
  height: 24px;
  padding: 0;
  margin: 0;
}

.pagination-out nav ul li.previous a:before,
.pagination-out nav ul li.next a:before {
  font-family: var(--FontAwesome);
  font-weight: 400;
  font-size: 85%;
  line-height: 85%;
  position: absolute;
  top: 50%;
  left: 0;
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.pagination-out nav ul li.previous a:before {
  content: "\f060";
}

.pagination-out nav ul li.next a:before {
  content: "\f061";
}

.pagination-out nav ul li.disabled a {
  cursor: default;
  opacity: .50;
}

@media (max-width: 767px) {
  .pagination-out {
    margin-top: 65px;
  }
}

@media (max-width: 767px) {
  .pagination-out {
    margin-top: 55px;
  }

  .pagination-out nav ul li a {
    font-size: 18px;
  }
}

/* Content - Max */
.cont-max {
  width: 100%;
  max-width: 923px;
}

.cont-max p,
.cont-max ul,
.cont-max ol {
	padding-bottom: 40px;
}

.cont-max p + ul,
.cont-max p + ol {
	margin-top: -20px;
}

@media (max-width: 767px) {
	.cont-max p,
	.cont-max ul,
	.cont-max ol {
		padding-bottom: 30px;
	}

	.cont-max p + ul,
	.cont-max p + ol {
		margin-top: -20px;
	}
}

/* Content - Max2 */
.cont-max2 {
  width: 100%;
  max-width: 923px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.cont-max2 h1,
.cont-max2 h2,
.cont-max2 h3 {
  padding-bottom: 40px;
}

.cont-max2 h1:last-child,
.cont-max2 h2:last-child,
.cont-max2 h3:last-child {
  padding-bottom: 0;
}

.cont-max2 p {
  padding-bottom: 45px;
}

.cont-max2 p:last-child {
  padding-bottom: 0;
}

.cont-max2 .figure {
  margin-bottom: 45px;
}

.cont-max2 .figure:last-child {
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .cont-max2 h1,
  .cont-max2 h2,
  .cont-max2 h3 {
    padding-bottom: 35px;
  }

  .cont-max2 p {
    padding-bottom: 40px;
  }

  .cont-max2 .figure {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .cont-max2 h1,
  .cont-max2 h2,
  .cont-max2 h3 {
    padding-bottom: 30px;
  }

  .cont-max2 p {
    padding-bottom: 35px;
  }

  .cont-max2 .figure {
    margin-bottom: 35px;
  }
}

/* Row - Content */
.row-cont {
  width: 100%;
  overflow: hidden;
  padding: 120px 0;
}

.row-cont .txt-20 {
  z-index: 2;
  position: relative;
}

.row-cont.overlay-enabled .txt-20 h2,
.row-cont.overlay-enabled .txt-20 h3,
.row-cont.overlay-enabled .txt-20 h4 {
  color: inherit;
}

@media (max-width: 1199px) {
  .row-cont {
    padding: 90px 0;
  }
}

@media (max-width: 767px) {
  .row-cont {
    padding: 70px 0;
  }
}

/* Content - Inner */
.content-inner {
  width: 100%;
  overflow: hidden;
  padding: 70px 0 120px 0;
}

@media (max-width: 1199px) {
  .content-inner {
    padding: 60px 0 90px 0;
  }
}

@media (max-width: 767px) {
  .content-inner {
    padding: 50px 0 70px 0;
  }
}

/* Top - Tight */
.p-top-tight {
  padding-top: 50px;
}

@media (max-width: 767px) {
  .p-top-tight {
    padding-top: 40px;
  }
}

/* Animation - Delay */
@media (min-width: 992px) {
  .delay-1 {
    animation-delay: 0.1s;
  }

  .delay-2 {
    animation-delay: 0.4s;
  }

  .delay-3 {
    animation-delay: 0.7s;
  }

  .delay-4 {
    animation-delay: 1.1s;
  }

  .delay-5 {
    animation-delay: 1.4s;
  }

  .delay-6 {
    animation-delay: 1.7s;
  }

  .delay-7 {
    animation-delay: 2s;
  }

  .delay-8 {
    animation-delay: 2.3s;
  }

  .delay-9 {
    animation-delay: 2.6s;
  }

  .delay-10 {
    animation-delay: 2.9s;
  }
}

/*
 7.) Modals
----------------------------------------*/
.wow {
  visibility: hidden;
  opacity: 0;
}

@media (max-width: 991px) {

  .zoomIn,
  .fadeInUp,
  .fadeInDown,
  .fadeInLeft,
  .fadeInRight {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
  }
}

/* Bootstrap - Modal */
.modal-backdrop.show {
  background: var(--black);
  opacity: .50;
}

.modal-open .container-main {
  filter: blur(5px);
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 1210px;
  }
}

@media (max-width: 1199px) {
  .modal-dialog {
    margin-left: 40px;
    margin-right: 40px;
  }
}

@media (max-width: 767px) {
  .modal-dialog {
    margin: 10px;
  }
}

/* Modal - Content */
.modal-content {
  font-size: 14px;
  line-height: 24px;
  background: var(--white);
  box-shadow: 3px 3px 20px 0px #00000026;
  border-radius: 0;
  border: none;
  padding: 40px;
  margin: 0;
}

.modal-content .name-wrap {
  width: 100%;
  max-width: 80%;
  float: none;
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding-right: 100px;
  margin-bottom: 10px;
}

.modal-content .name-wrap:last-child {
  margin-bottom: 0;
}

.modal-content .name-wrap .social-links2 {
  position: absolute;
  top: 2px;
  right: 0;
}

.modal-content .name {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 10px;
}

.modal-content .name:last-child {
  margin-bottom: 0;
}

.modal-content .position {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 15px;
}

.modal-content .position:last-child {
  margin-bottom: 0;
}

.modal-content .col-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: flex-start;
}

.modal-content .figure {
  width: 38%;
  float: left;
  background: var(--white);
  padding: 0;
  margin: 0;
}

.modal-content .aside {
  width: 62%;
  float: left;
  padding: 10px 0 0 60px;
  margin: 0;
}

.modal-content .aside p {
  width: 100%;
  max-width: 540px;
  line-height: 1.4em;
}

.modal-content .icon-close {
  font-weight: 400;
  font-size: 35px;
  line-height: 1em;
  position: absolute;
  top: 15px;
  right: 20px;
}

@media (max-width: 1199px) {
  .modal-content .figure {
    width: 30%;
  }

  .modal-content .aside {
    width: 70%;
    padding: 10px 20px 0 40px;
  }

  .modal-content .icon-close {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .modal-content {
    padding: 30px;
  }

  .modal-content .name-wrap {
    margin-bottom: 14px;
  }

  .modal-content .name-wrap .social-links2 {
    top: 0;
  }

  .modal-content .name {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 14px;
  }

  .modal-content .position {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 20px;
  }

  .modal-content .figure {
    width: 30%;
  }

  .modal-content .aside {
    width: 70%;
    padding: 10px 0 0 30px;
  }

  .modal-content .icon-close {
    font-size: 26px;
    top: 10px;
    right: 15px;
  }
}

@media (max-width: 575px) {
  .modal-content .figure {
    width: 100%;
    margin-bottom: 30px;
  }

  .modal-content .aside {
    width: 100%;
    padding: 0;
  }

  .modal-content .icon-close {
    font-size: 24px;
    top: 8px;
    right: 10px;
  }
}

/*
 8.) Text - Colors / Wordpress Cores
------------------------------------------------------*/
.txt-14 {
  font-size: 14px;
  line-height: 24px;
}

.txt-16 {
  font-size: 16px;
  line-height: 26px;
}

.txt-20 {
  font-size: 20px;
  line-height: 30px;
}

.txt-22 {
  font-size: 22px;
  line-height: 32px;
}

.txt-25 {
  font-size: 25px;
  line-height: 35px;
}

@media (max-width: 1199px) {
  .txt-20 {
    font-size: 18px;
    line-height: 28px;
  }

  .txt-25 {
    font-size: 22px;
    line-height: 32px;
  }
}

@media (max-width: 767px) {
  .txt-25 {
    font-size: 20px;
    line-height: 30px;
  }
}

/* Font - Weights */
.light {
  font-weight: 300 !important;
}

.regular {
  font-weight: 400 !important;
}

.medium {
  font-weight: 500 !important;
}

.semi-bold {
  font-weight: 600 !important;
}

.bold {
  font-weight: 700 !important;
}

.extra-bold {
  font-weight: 800 !important;
}

.black-bold {
  font-weight: 900 !important;
}

/* Text - Positions */
.upper-case {
  text-transform: uppercase;
}

.lower-case {
  text-transform: none;
}

.underline {
  text-decoration: underline;
}

.center-align {
  text-align: center;
  justify-content: center;
}

.vertical-align {
  align-items: center;
}

.left-align {
  text-align: left;
}

.right-align {
  text-align: right;
}

/* Padding/Margin - None */
.p-top-none {
  padding-top: 0 !important;
}

.p-bottom-none {
  padding-bottom: 0 !important;
}

.m-top-none {
  margin-top: 0 !important;
}

.m-bottom-none {
  margin-bottom: 0 !important;
}

/* Text - Colors */
.black {
  color: #000000 !important;
}

.gray-88 {
  color: #888888 !important;
}

.gray-cc {
  color: #cccccc !important;
}

.gray-d9 {
  color: #d9d9d9 !important;
}

.gray-f2 {
  color: #f2f2f2 !important;
}

.white {
  color: #ffffff !important;
}

/* Background - Colors */
.black-bg {
  background-color: #000000 !important;
}

.gray-88-bg {
  background-color: #888888 !important;
}

.gray-cc-bg {
  background-color: #cccccc !important;
}

.gray-d9-bg {
  background-color: #d9d9d9 !important;
}

.gray-f2-bg {
  background-color: #f2f2f2 !important;
}

.white-bg {
  background-color: #ffffff !important;
}

/* Toolkit Page - Title - (Notes) */
.notes-title {
  width: 100%;
  overflow: hidden;
  padding: 120px 0 25px 0;
}

.notes-title p {
  font-weight: 400;
  font-size: 25px;
  line-height: 35px;
  padding: 0 0 15px 0;
}

.notes-title p:last-child {
  padding-bottom: 0;
}

/* Contact Form */
.contact.row-cont .aside {
  max-width: 750px;
  margin: 0 auto;
}

/* ---------------------------- Begin WordPress Core ---------------------------- */
.alignnone {
  margin: 10px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
  text-align: center;
}

.alignright {
  float: right;
  margin: 10px 0 10px 25px;
  text-align: right;
}

.alignleft {
  float: left;
  margin: 10px 25px 10px 0;
  text-align: left;
}

a img.alignright {
  float: right;
  margin: 10px 0 10px 25px;
}

a img.alignnone {
  margin: 10px 25px 10px 0;
}

a img.alignleft {
  float: left;
  margin: 10px 25px 10px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto
}

.figure img.alignnone,
.figure img.alignleft,
.figure img.alignright,
.figure img.aligncenter {
  margin: 0;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}
.two-col-cont .row>div .figure:before{    width: 70%;
    height: calc(100%);
    top: 30px;
    position: absolute;
    content: '';
    display: block;
    right: -30px;
    background: var(--primary);
    z-index: 1;}
.two-col-cont .row>div .figure.secondary:before{background: var(--secondary);}
.two-col-cont .row>div .figure{overflow: visible;}
.two-col-cont .row>div .figure img{position: relative; z-index:2;}
.two-col-cont .boxshadow{opacity:0;}

.two-col-cont .col-reverse .row:nth-child(odd)>div .figure:before{left: -30px;}
.two-col-cont .col-reverse .row:nth-child(even)>div .figure:before{right: -30px;    left: auto;}

.two-col-cont .row:nth-child(odd)>div .figure:before{} 
.two-col-cont .row:nth-child(even)>div .figure:before{left: -30px;}


@media (max-width: 991px){
	.two-col-cont .row>div .figure:before{    top: 20px; right: -20px; width: 80%;}
	.two-col-cont .row:nth-child(even)>div .figure:before {left: -20px;}
	.two-col-cont .col-reverse .row:nth-child(odd)>div .figure:before {left: -20px;}
	.two-col-cont .col-reverse .row:nth-child(even)>div .figure:before{right: -20px ;left: auto;}
	
}

@media (min-width: 768px) and (max-width: 991px) {

  .alignleft,
  .alignright,
  a img.alignright,
  a img.alignleft {
    max-width: 350px;
  }
}

@media (min-width: 601px) and (max-width: 767px) {

  .alignleft,
  .alignright,
  a img.alignright,
  a img.alignleft {
    max-width: 250px;
  }
}

@media (max-width: 600px) {

  .alignleft,
  .alignright,
  .aligncenter,
  .alignnone,
  a img.alignright,
  a img.alignleft,
  a img.alignnone,
  a img.aligncenter {
    float: none;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 20px;
    display: block;
  }
}

/* ---------------------------- Text meant only for screen readers ---------------------------- */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar */
}

:focus-visible {
  outline: 2px dashed var(--primary);
}

/* ---------------------------- End WordPress Core ---------------------------- */

/* ---------------------------- Print CSS Styling ---------------------------- */
@media print {
  @page {
    size: auto;
    margin-top: 2cm;
    margin-bottom: 2cm;
    margin-left: 2cm;
    margin-right: 2cm;
  }

  header {
    box-shadow: none;
    padding: 0;
  }

  body {
    background: var(--white);
    color: var(--black);
    line-height: 150%;
    margin: 0px;
  }

  body *,
  .wow {
    -o-transition-property: none !important;
    -moz-transition-property: none !important;
    -ms-transition-property: none !important;
    -webkit-transition-property: none !important;
    transition-property: none !important;
    transition: none;
    -moz-transition: none;
    -webkit-transition: none;
  }

  .perfmatters-lazy,
  .wow {
    animation: none !important;
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    visibility: visible !important;
  }

  .container {
    max-width: 100%;
  }

  .figure {
    max-width: 50%;
  }

  .header-main {
    box-shadow: none;
  }

  hr {
    color: #ccc;
    background-color: #ccc;
  }

  h1,
  h2,
  h3,
  h4 {
    page-break-after: avoid;
  }

  ul,
  img,
  table,
  figure,
  p {
    page-break-inside: avoid;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  code,
  pre,
  p,
  a:link,
  a:visited,
  blockquote,
  .read-more .a,
  .two-col-cont .row.bg-dark *,
  .latest-articles .row>div .box-featured *,
  .latest-articles2 .row>div .box-featured .bx-title-wrap .bx-title {
    color: var(--black) !important;
  }

  select {
    border: 1px solid #000;
  }

  blockquote {
    background-image: none;
  }

  a:link,
  a:visited {
    text-decoration: underline;
  }

  .btn,
  .btn.btn-blank {
    border: 1px solid #000 !important;
  }

  .collapse {
    display: block !important;
    height: auto !important;
  }
  .top-bar,
  .skip-btn,
  .do-not-print,
  .menu-btn,
  .nav-bar,
  .cta-cont.bg-img .figure:after,
  .cta-cont.bg-img .figure img,
  .hero-main .figure img {
    display: none;
  }
	.testimonials-cont2 .item {
		display: block; 
		width: 100%; 
	}
}

/* ---------------------------- End Print CSS Styling ---------------------------- */

/* Gravity Form Elements */
.gform_wrapper.gravity-theme .ginput_container_checkbox .gfield-choice-input {
  transform: scale(1.4);
  accent-color: var(--primary);
  margin-right: .4rem;
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.gform_wrapper.gravity-theme .ginput_container_checkbox label {
  position: relative;
  cursor: pointer;
}

.gform_wrapper.gravity-theme .ginput_container_checkbox label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid var(--primary);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 7px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}

.gform_wrapper.gravity-theme .ginput_container_checkbox .gfield-choice-input:checked+label:after {
  content: '';
  display: block;
  position: absolute;
  top: 8px;
  left: 4px;
  width: 10px;
  height: 10px;
  background: var(--secondary);
}

.gform_wrapper.gravity-theme .gfield_description {
	padding: 0 0 10px 0 !important;
    margin: -10px 0 0 0 !important;
}

.gform_wrapper.gravity-theme .gfield_description p {
	padding: 0 !important;
}

.gform_wrapper.gravity-theme .gform_fileupload_rules {
	padding: unset !important; 
	margin: unset !important;
}

.gform_wrapper .gfield_description.validation_message.gfield_validation_message,
.gform_wrapper .gfield_description.instruction.validation_message {
    padding: 10px !important;
    margin: 0 !important;
}

/* Customising the radio button */
.gfield_radio .gfield-choice-input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  left: 0;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
}

.gfield_radio .gchoice {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  user-select: none;
}

.gfield_radio .gchoice:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 2px solid var(--primary);
}

.gform_wrapper.gravity-theme .gfield-choice-input+label {
  margin-bottom: 10px !important;
}

.gfield_radio .gfield-choice-input[type="radio"]:checked+label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;

  border-color: var(--primary);
}

.gfield_radio .gfield-choice-input[type="radio"]:checked+label:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--secondary);
}

/* WYSIWYG */
.wysiwyg.overlay-enabled a {
  color: inherit;
}


/* Image Gallery - Items */
.image-gallery {
	margin: -30px 0 0 0;
}
.gallery-items {
	display: table;
	margin: 0 -.85% -1.7% -.85%;
}

.gallery-items .figure {
	border-radius: 3px; 
}

.gallery-items .item {
	width: 100%;
	float: left;
	padding: 0 .85% 1.7% .85%;
}

.gallery-items .item:first-child {
	padding-bottom: 0px;
}

.gallery-items .item:first-child .figure img {
	margin-bottom: -8px;
}

.gallery-items .item:last-child {
	padding-bottom: 0;
}

@media (min-width: 576px) {
	.gallery-items .item {
		width: 50%;
	}
}

@media (max-width: 767px) {
	.gallery-items {
		padding-bottom: 50px;
		margin: 0 -2% -4% -2%;
	}
	.gallery-items .item {
		padding: 0 2% 4% 2%;
	}
}

/* Video Band */
.video-band {
	padding: 120px 0;
}
.video-band .video-block {
	margin-top: 55px;
}

.video-band .video-block .video-wrap .figure {
	border-radius: 3px; 
}

.video-band .video-block .video-wrap .figure a:after {
	content: "";
    width: 51px;
    height: 59px;
    float: left;
    background: url(../img/play.svg) no-repeat center center;
    background-size: 100% auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.video-band .video-block .video-wrap .figure img {
  object-fit: cover;
  object-position: top;
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
}

.video-band .video-block .video-wrap:hover .figure img,
.video-band .video-block .video-wrap:focus .figure img,
.video-band .video-block .video-wrap:active .figure img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
}

.video-band .btn-wrap {
	margin-top: 55px;
}

.video-band .btn-wrap .btn {
	margin: 0 auto;
}

/* Single Posts */
.single-post p img {
	border-radius: 3px;
}

/* Search & Results */
.search-results h1, .search-no-results h1, .error404 h1 { color: var(--white); }