@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Lexend:wght@400;500;600;700&display=swap");
:root {
  --vsm-white: 255, 255, 255;
  --vsm-black: 9, 9, 9;
  --vsm-body-copy-colour: 109, 119, 125;
  --vsm-accent-colour: 111, 90, 240;
  --vsm-primary-colour: 76, 147, 84;
  --vsm-secondary-colour: 245, 173, 3;
  --vsm-tertiary-colour: 103, 184, 195;
  --vsm-quaternary-colour: 70, 29, 101;
  --vsm-quinary-colour: 214, 218, 213;
}

:root {
  --vsm-mobile-padding-top: 30px;
  --vsm-mobile-padding-bottom: 30px;
  --vsm-tablet-padding-top: 50px;
  --vsm-tablet-padding-bottom: 50px;
  --vsm-desktop-padding-top: 80px;
  --vsm-desktop-padding-bottom: 80px;
}

/* **** EXTRA WIDE CONTAINER **** */
.container.wide {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .container.wide {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container.wide {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container.wide {
    width: 100%;
    max-width: 90%;
  }
}

/* NO GUTTERS */
.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.row.no-gutters > [class^="col-"],
.row.no-gutters > [class*=" col-"] {
  padding-right: 0;
  padding-left: 0;
}

/* ------------------------------
Icons
--------------------------------*/
/* ------------------------------
Typography
--------------------------------*/
html,
body {
  height: 100% !important;
  font-family: "Lexend", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  font-size: 12px;
}

@media (min-width: 768px) {
  html,
  body {
    font-size: 14px;
  }
}

@media (min-width: 1024px) {
  html,
  body {
    font-size: 16px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  color: #213e50;
}

.primary {
  color: #4c9354;
}

.secondary {
  color: #f5ad03;
}

.tertiary {
  color: #67b8c3;
}

p {
  font-family: "Lexend", sans-serif;
}

ul,
ol,
dd {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
}

ul strong,
ol strong,
dd strong {
  font-weight: 600;
}

a {
  color: #6f5af0;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
  color: #6f5af0;
  opacity: 0.7;
}

h1,
.heading {
  font-size: 48px;
  font-size: 3rem;
}

h2,
.md-heading {
  font-size: 39px;
  font-size: 2.4375rem;
}

h3,
.sm-heading {
  font-size: 31px;
  font-size: 1.9375rem;
}

h4,
.xs-heading {
  font-size: 25px;
  font-size: 1.5625rem;
}

h5,
.xxs-heading {
  font-size: 20px;
  font-size: 1.25rem;
  text-transform: capitalize;
}

h6,
.xxxs-heading {
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: capitalize;
}

.sub-heading {
  font-size: 20px;
  font-size: 1.25rem;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.sub-line {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: capitalize;
  display: flex;
  align-items: center;
}

.sub-line::after {
  content: "";
  flex: 1;
  margin-left: 1rem;
  height: 1.5px;
  background-color: #6d777d;
  opacity: 0.2;
}

/* ------------------------------
Buttons
--------------------------------*/
.btn {
  background: #213e50;
  border: 1px solid #213e50;
  color: #ffffff;
}

.btn:hover {
  color: #ffffff;
  background: #213e50;
  opacity: 0.8;
  border: 1px solid #213e50;
}

.back-to-link {
  color: #6d777d;
}

.back-to-link::before {
  content: "\f060";
  position: relative;
  display: inline-block;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  left: 0px;
  margin-right: 0.625rem;
}

.text-link {
  font-weight: 600;
  color: #6f5af0;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  color: #6f5af0;
}

.btn-link {
  font-weight: 600;
  color: #6f5af0;
  text-decoration: none;
  text-transform: capitalize;
}

.btn-link:hover {
  text-decoration: underline;
  color: #6f5af0;
}

.btn-link-no-hover {
  font-weight: 600;
  color: #6f5af0;
  text-decoration: none;
  text-transform: capitalize;
}

.btn-secondary {
  border: 1px solid #67b8c3 !important;
  background: #67b8c3 !important;
}

.btn-secondary:hover {
  border: 1px solid #67b8c3 !important;
  background: #67b8c3 !important;
  opacity: 0.8;
}

.btn-tertiary {
  border: 1px solid #6f5af0;
  background: #6f5af0 !important;
}

.btn-tertiary:hover {
  border: 1px solid #6f5af0;
  background: #6f5af0;
  opacity: 0.8;
}

.btn-ghost-dark {
  background: transparent;
  border: 1px solid #213e50;
  color: #213e50;
}

.btn-ghost-dark span {
  color: #213e50;
}

.btn-ghost-dark:hover {
  color: #213e50;
  border: 1px solid #213e50;
  background: transparent;
}

.btn-ghost-dark:hover span {
  color: #213e50;
  text-decoration: underline;
}

/* ------------------------------
Forms
--------------------------------*/

form.green .btn {
  background: rgba(var(--vsm-primary-colour), 1);
  border: 1px solid #4c9354;
  color: #ffffff;
}

form.green .btn:hover {
  color: #ffffff;
  background: rgba(var(--vsm-primary-colour), 0.8);
  border: 1px solid #4c9354;
}

form.green .element.checkbox label a {
  color: #4c9354;
}

form.green label span {
  color: #4c9354;
}

form.green .icheck-primary > input:first-child:checked + input[type="hidden"] + label::before,
form.green .icheck-primary > input:first-child:checked + label::before {
  background-color: rgba(var(--vsm-primary-colour), 0.2);
  border: 0.063rem solid rgba(var(--vsm-primary-colour), 0.1);
}

form.green .icheck-primary > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before,
form.green .icheck-primary > input:first-child:not(:checked):not(:disabled):hover + label::before {
  border: 0.063rem solid rgba(var(--vsm-primary-colour), 0.5);
}

form.green [class*="icheck-"] > input:first-child:checked + input[type="hidden"] + label::after,
form.green [class*="icheck-"] > input:first-child:checked + label::after {
  border-color: rgba(var(--vsm-primary-colour), 1);
  border-width: 0.188rem;
}

form.green .form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 1em;
  padding: 2rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #f7f8f9;
  background-clip: padding-box;
  border: 1px solid #e3e4e5;
  border-radius: 0rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (min-width: 1024px) {
  form.green .form-control {
    padding: 1.475rem 0.75rem;
  }
}

form.green .input-group > .custom-file,
form.green .input-group > .custom-select,
form.green .input-group > .form-control,
form.green .input-group > .form-control-plaintext {
  box-shadow: none;
}

form.green .input-group > .form-control:hover {
  box-shadow: none;
  border: 1px solid #4c9354;
}

form.green .form-group > .custom-file,
form.green .form-group > .custom-select,
form.green .form-group > .form-control,
form.green .form-group > .form-control-plaintext {
  box-shadow: 1px solid #e3e4e5;
}

form.green .form-group > .form-control:hover {
  box-shadow: none;
  border: 1px solid #4c9354;
}

form.green label {
  font-size: 14px;
  color: #213e50;
}

form.green label span {
  color: #4c9354;
}

form.green .element {
  margin-bottom: 10px;
  width: 100%;
  /*
                input {
                    position: absolute;
                    opacity: 0;
                    width: 100%;
                    height: 100%;
                    top: 0;
                    left: 0;
                    z-index: 1;
                }*/
}

form.green .element.file input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

form.green .element.file .field {
  background-color: #f7f8f9;
  position: relative;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 1.475rem 0.75rem;
  line-height: 0px;
  color: #495057;
  background-clip: padding-box;
  border: 1px solid #e3e4e5;
  border-radius: 0rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

form.green .element.file .browse-btn {
  width: 50px;
  height: 100%;
  position: absolute;
  bottom: 0px;
  right: 0px;
  background-color: #f7f8f9;
  border-radius: none;
  text-decoration: none;
  border: 0;
  border-left: 1px solid #e3e4e5;
}

form.green .element.file .browse-btn::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background-image: url("../img/icons/upload.svg");
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-size: 100%;
  opacity: 1;
  z-index: 0;
}

form.green .element.select select {
  background-color: #ffffff;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  outline: none;
}

form.green .element.textarea textarea::placeholder {
  opacity: 1 !important;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.5;
  color: #6c757d;
}

form.green .element.textarea textarea::placeholder {
  opacity: 1 !important;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.5;
  color: #6c757d;
}

form.green .element.textarea textarea .placeholder {
  opacity: 1 !important;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.5;
  color: #6c757d;
}

form.green .element.textarea .field textarea {
  background-color: #f7f8f9;
  min-height: 230px;
}

form.green .element.textarea .field textarea:hover {
  box-shadow: none;
  border: 1px solid #4c9354;
}

form.green .element.textarea .field textarea:active {
  border: 1px solid #4c9354;
  outline: none;
}

form.green .element .placeholder {
  opacity: 1 !important;
  font-size: 0.78rem;
  font-weight: 400;
  color: #6c757d;
}

form.purple .btn {
  background: rgba(var(--vsm-accent-colour), 1);
  border: 1px solid #6f5af0;
  color: #ffffff;
}

form.purple .btn:hover {
  color: #ffffff;
  background: rgba(var(--vsm-accent-colour), 0.8);
  border: 1px solid #6f5af0;
}

form.purple .element.checkbox label a {
  color: #6f5af0;
}

form.purple label span {
  color: rgba(var(--vsm-accent-colour), 1);
}

form.purple .icheck-primary > input:first-child:checked + input[type="hidden"] + label::before,
form.purple .icheck-primary > input:first-child:checked + label::before {
  background-color: rgba(var(--vsm-accent-colour), 0.2);
  border: 0.063rem solid rgba(var(--vsm-accent-colour), 0.1);
}

form.purple .icheck-primary > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before,
form.purple .icheck-primary > input:first-child:not(:checked):not(:disabled):hover + label::before {
  border: 0.063rem solid rgba(var(--vsm-accent-colour), 0.5);
}

form.purple [class*="icheck-"] > input:first-child:checked + input[type="hidden"] + label::after,
form.purple [class*="icheck-"] > input:first-child:checked + label::after {
  border-color: rgba(var(--vsm-accent-colour), 1);
  border-width: 0.188rem;
}

form.purple .form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 1em;
  padding: 2rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #f7f8f9;
  background-clip: padding-box;
  border: 1px solid #e3e4e5;
  border-radius: 0rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (min-width: 1024px) {
  form.purple .form-control {
    padding: 1.475rem 0.75rem;
  }
}

form.purple .input-group > .custom-file,
form.purple .input-group > .custom-select,
form.purple .input-group > .form-control,
form.purple .input-group > .form-control-plaintext {
  box-shadow: none;
}

form.purple .input-group > .form-control:hover {
  box-shadow: none;
  border: 1px solid #6f5af0;
}

form.purple .form-group > .custom-file,
form.purple .form-group > .custom-select,
form.purple .form-group > .form-control,
form.purple .form-group > .form-control-plaintext {
  box-shadow: 1px solid #e3e4e5;
}

form.purple .form-group > .form-control:hover {
  box-shadow: none;
  border: 1px solid #6f5af0;
}

form.purple label {
  font-size: 14px;
  color: #213e50;
}

form.purple label span {
  color: #6f5af0;
}

form.purple .element {
  margin-bottom: 10px;
  width: 100%;
  /*
                input {
                    position: absolute;
                    opacity: 0;
                    width: 100%;
                    height: 100%;
                    top: 0;
                    left: 0;
                    z-index: 1;
                }*/
}

form.purple .element.file input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

form.purple .element.file .field {
  background-color: #f7f8f9;
  position: relative;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 2rem 0.75rem;
  line-height: 0px;
  color: #495057;
  background-clip: padding-box;
  border: 1px solid #e3e4e5;
  border-radius: 0rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (min-width: 1024px) {
  form.purple .element.file .field {
    padding: 1.475rem 0.75rem;
  }
}

form.purple .element.file .browse-btn {
  width: 50px;
  height: 100%;
  position: absolute;
  bottom: 0px;
  right: 0px;
  background-color: #f7f8f9;
  border-radius: none;
  text-decoration: none;
  border: 0;
  border-left: 1px solid #e3e4e5;
}

form.purple .element.file .browse-btn::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background-image: url("../img/icons/upload.svg");
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-size: 100%;
  opacity: 1;
  z-index: 0;
}

form.purple .element.select select {
  background-color: #ffffff;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  outline: none;
}

form.purple .element.textarea textarea::placeholder {
  opacity: 1 !important;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.5;
  color: #6c757d;
}

form.purple .element.textarea textarea::placeholder {
  opacity: 1 !important;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.5;
  color: #6c757d;
}

form.purple .element.textarea textarea .placeholder {
  opacity: 1 !important;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.5;
  color: #6c757d;
}

form.purple .element.textarea .field textarea {
  color: #6c757d;
  font-size: 0.78rem;
  background-color: #f7f8f9;
  min-height: 230px;
}

form.purple .element.textarea .field textarea:hover {
  box-shadow: none;
  border: 1px solid #6f5af0;
}

form.purple .element.textarea .field textarea:active {
  border: 1px solid #6f5af0;
  outline: none;
}

form.purple .element .placeholder {
  opacity: 1 !important;
  font-size: 0.78rem;
  font-weight: 400;
  color: #6c757d;
}

/* ***** FORM VALIDATION MESSAGES ****** */

.error,
.required_message {
    display:none; 
    font-size: 14px; 
    font-family: 'Lexend', sans-serif; 
    font-weight: 300; 
    color: red;
}

.field-validation-error,
.field-validation-valid,
.validation-summary-errors {
  /* DEFAULT STYLES FOR VALIDATION MESSAGES - CLASS BASED ON DEV REQUIREMENTS */
}

.filter {
  /* -------- Custom checkbox-------- */
}

.filter label {
  font-size: 12px;
  font-size: 0.75rem;
  color: #6d777d;
  margin-bottom: 5px;
}

.filter .form-select {
  height: calc(1.5em + 0.75rem + 2px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #ffffff;
  background-clip: padding-box;
  border-radius: 0rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border: 1px solid #6f5af0;
  box-sizing: border-box;
  backdrop-filter: blur(30px);
  /* Note: backdrop-filter has minimal browser support */
  position: relative;
  overflow: hidden;
}

.filter .form-select option {
  font-size: 0.75rem;
}

.filter .form-select select {
  font-size: 0.75rem;
  position: relative;
  appearance: none;
  outline: none;
  z-index: 2;
  height: 100%;
  width: 100%;
  border: none;
  background: none;
  padding-left: 1em;
  opacity: 1;
  color: #6d777d;
}

.filter .form-select::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 50px;
  border-left: 1px solid #6f5af0;
  border-radius: 0px;
  background-image: url("../img/icons/chevron-down.svg");
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.filter .form-check {
  padding: 0;
}

.filter .form-check .checkbox-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}

.filter .form-check .checkbox-container:hover input ~ .checkmark {
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.12s;
}

.filter .form-check .checkbox-container .checkbox-label {
  order: 2;
  font-size: 14px;
  font-size: 0.875rem;
  color: #ffffff;
  font-family: "Lexend", sans-serif;
  font-weight: 400;
}

.filter .form-check .checkbox-container .checkbox-label .counter {
  opacity: 0.4;
}

.filter .form-check .checkbox-container .checkbox-label a {
  color: #4c9354;
}

.filter .form-check .checkbox-container .checkbox-label a:hover {
  text-decoration: none;
  color: #ffffff;
}

.filter .form-check .checkbox-container .checkmark {
  position: relative;
  order: 1;
  height: 25px;
  width: 25px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #b3aeae;
  border-radius: 0px;
  margin-right: 10px;
  transition: all 0.12s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter .form-check .checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
  transition: all 0.12s;
}

.filter .form-check .checkbox-container .checkmark img {
  opacity: 0;
  height: 16px;
  width: 25px;
  z-index: 2;
}

.filter .form-check .checkbox-container input {
  position: relative;
  opacity: 0;
  display: none;
  cursor: pointer;
  height: 0;
  width: 0;
}

.filter .form-check .checkbox-container input:checked ~ .checkmark {
  border-color: #4c9354;
}

.filter .form-check .checkbox-container input:checked ~ .checkmark:after {
  opacity: 1;
  transition: all 0.12s;
  background: rgba(255, 255, 255, 0.02);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.12s;
}

.filter .form-check .checkbox-container input:checked ~ .checkmark img {
  opacity: 1;
}

.filter .form-check {
  padding: 0;
}

.filter .form-check .checkbox-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  overflow: hidden;
  margin: 0;
}

.filter .form-check .checkbox-container:hover input ~ .checkmark {
  background: #f1eefa;
  transition: all 0.12s;
}

.filter .form-check .checkbox-container .checkbox-label {
  order: 2;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 13px;
  color: #727785;
  font-weight: 500;
}

.filter .form-check .checkbox-container .checkbox-label .total-label {
  display: inline-block;
  margin-left: 3px;
  opacity: 0.4;
  font-size: 12px;
  font-size: 0.75rem;
}

.filter .form-check .checkbox-container .checkbox-label a {
  color: #2db0a9;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.12s;
}

.filter .form-check .checkbox-container .checkbox-label a:hover {
  border-bottom: 1px solid #2db0a9;
  transition: border-bottom 0.12s;
}

.filter .form-check .checkbox-container .checkmark {
  position: relative;
  order: 1;
  height: 24px;
  width: 24px;
  background-color: #ffffff;
  border: 1px solid #d5cff2;
  border-radius: 6px;
  margin-right: 6px;
  transition: all 0.12s;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.filter .form-check .checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
  transition: all 0.12s;
}

.filter .form-check .checkbox-container .checkmark i {
  opacity: 0;
  color: #563bcc;
  font-size: 16px;
  font-size: 1rem;
  z-index: 2;
}

.filter .form-check .checkbox-container input {
  position: relative;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.filter .form-check .checkbox-container input:checked ~ .checkmark {
  border-color: #563bcc;
}

.filter .form-check .checkbox-container input:checked ~ .checkmark:after {
  opacity: 1;
  transition: all 0.12s;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.12s;
}

.filter .form-check .checkbox-container input:checked ~ .checkmark i {
  opacity: 1;
}

.filter .form-check.radio .checkbox-container .checkmark {
  border-radius: 100%;
}

.filter .form-check.radio .checkbox-container .checkmark i {
  font-size: 16px;
  font-size: 1rem;
  margin-right: -1px;
}

.filter .form-check.tag {
  margin-bottom: 0 !important;
  display: inline-flex;
}

.filter .form-check.tag .checkbox-label {
  display: inline-block;
  padding: 6px 9px;
  background: #e9e4ff;
  border-radius: 3px;
  color: #563bcc;
  font-size: 12px;
  font-size: 0.75rem;
  transition: all 0.09s ease-in-out;
}

.filter .form-check.tag input:checked ~ .checkbox-label {
  background-color: #563bcc;
  color: #ffffff;
  transition: all 0.09s ease-in-out;
}

/* ------------------------------
Theme
--------------------------------*/
html {
  max-width: 100%;
  overflow-x: hidden;
}

/*-------------------------------
Backgrounds
---------------------------------*/
.bg-mobile {
  position: relative;
}

.bg-mobile::before {
  max-width: 720px;
  width: 100%;
  height: 400px;
  overflow-y: hidden;
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  display: block;
  background-image: url(../img/bg-elements/bg-2.svg);
  background-repeat: repeat;
}

@media (min-width: 768px) {
    .bg-green-block {
      position: relative;
    }
  .bg-green-block::before {
    width: 60%;
    height: calc(100% + 45px);
    content: "";
    position: absolute;
    z-index: -2;
    right: 40%;
    top: -45px;
    display: inline-block;
    background-color: #dbe9dd;
    border-top-right-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
  }
   .bg-blue-block {
      position: relative;
   }
  .bg-blue-block::before {
    width: 60%;
    height: calc(100% + 45px);
    content: "";
    position: absolute;
    z-index: -2;
    right: 40%;
    top: -45px;
    display: inline-block;
    background-color: #e1f1f3;
    border-top-right-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
  }
    .bg-yellow-block {
      position: relative;
    }
  .bg-yellow-block::before {
    width: 60%;
    height: calc(100% + 45px);
    content: "";
    position: absolute;
    z-index: -2;
    right: 40%;
    top: -45px;
    display: inline-block;
    background-color: #f5ad03;
    border-top-right-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
  }
  .bg-1 {
    position: relative;
  }
  .bg-1::before {
    max-width: 720px;
    width: 100%;
    height: 1163px;
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    top: -300px;
    display: inline-block;
    background-image: url(../img/bg-elements/homebg.png);
  }
  .bg-2 {
    position: relative;
  }
  .bg-2::before {
    max-width: 720px;
    width: 100%;
    height: 443px;
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    top: 0;
    display: inline-block;
    background-image: url(../img/bg-elements/bg-2.svg);
    background-repeat: no-repeat;
  }
  .bg-2::after {
    max-width: 720px;
    width: 100%;
    height: 443px;
    content: "";
    position: absolute;
    z-index: -2;
    right: 0;
    bottom: 0;
    display: inline-block;
    background-image: url(../img/bg-elements/bg-2.svg);
    background-repeat: no-repeat;
  }
  .bg-3 {
    position: relative;
  }
  .bg-3::before {
    width: 100%;
    height: 107%;
    content: "";
    position: absolute;
    z-index: -2;
    right: 56%;
    top: -2em;
    display: inline-block;
    background-color: #e1f1f3;
    border-top-right-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
  }
  .bg-4 {
    position: relative;
  }
  .bg-4::before {
    width: 100%;
    height: 103%;
    content: "";
    position: absolute;
    z-index: -2;
    left: 80%;
    top: -2em;
    display: inline-block;
    border-top-left-radius: 0.5em;
    border-bottom-left-radius: 0.5em;
    background-color: #dbe9dd;
  }
  .bg-5 {
    position: relative;
  }
  .bg-5::before {
    width: 100%;
    height: 307px;
    content: "";
    position: absolute;
    z-index: -2;
    right: 30%;
    top: 0;
    display: inline-block;
    background-color: #f1f1f1;
    border-top-right-radius: 0.5em;
  }
  .bg-6 {
    position: relative;
  }
  .bg-6::after {
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    z-index: -2;
    left: 50%;
    top: -110px;
    display: inline-block;
    background-image: url(../img/bg-elements/bg-right.svg);
    background-repeat: repeat;
  }
  .bg-7 {
    position: relative;
  }
  .bg-7::after {
    width: 100%;
    height: 750px;
    content: "";
    position: absolute;
    z-index: -1;
    right: 50%;
    top: -110px;
    display: inline-block;
    background-image: url(../img/bg-elements/map-2-dark-1.png);
  }
  .bg-8 {
    position: relative;
  }
  .bg-8::before {
    width: 100%;
    height: 307px;
    content: "";
    position: absolute;
    z-index: -2;
    right: 30%;
    top: -60px;
    display: inline-block;
    background-color: #e1f1f3;
    border-top-right-radius: 0.5em;
  }
  .bg-9 {
    position: relative;
  }
  .bg-9::before {
    width: 100%;
    height: 880px;
    content: "";
    position: absolute;
    z-index: -2;
    right: 30%;
    top: -60px;
    display: inline-block;
    background-color: #dbe9dd;
    border-top-right-radius: 0.5em;
  }
  .bg-10 {
    position: relative;
    padding-top: 150px;
  }
  .bg-10::before {
    width: 30vw;
    height: 120%;
    content: "";
    position: absolute;
    z-index: -3;
    left: 70vw;
    top: 0px;
    display: block;
    background-color: #dbe9dd;
    border-top-left-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
    overflow: hidden;
  }
  .bg-10 .container {
    position: relative;
  }
  .bg-10 .container::after {
    width: 90%;
    height: 125%;
    content: "";
    position: absolute;
    z-index: -2;
    right: 0;
    top: -60px;
    display: block;
    background-color: #ffffff;
    border-radius: 0.5em;
    box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.03);
  }
  .bg-blue-left {
    position: relative;
  }
  .bg-blue-left::before {
    width: 100%;
    height: 751px;
    content: "";
    position: absolute;
    z-index: -2;
    right: 60%;
    top: 3em;
    display: inline-block;
    background-color: #e1f1f3;
    border-top-right-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
  }
  .bg-11 {
    position: relative;
  }
  .bg-11::after {
    width: 100%;
    height: 900px;
    content: "";
    position: absolute;
    z-index: -2;
    left: 70%;
    bottom: -100px;
    display: inline-block;
    background-image: url(../img/bg-elements/tweetsbg.svg);
    background-repeat: repeat;
  }
  .bg-12 {
    position: relative;
  }
  .bg-12::after {
    width: 100%;
    height: 900px;
    content: "";
    position: absolute;
    z-index: -2;
    left: 70%;
    top: -200px;
    display: inline-block;
    background-image: url(../img/bg-elements/tweetsbg.svg);
    background-repeat: repeat;
  }
  .bg-13 {
    position: relative;
  }
  .bg-13::before {
    width: 100%;
    height: calc(100% + 180px);
    content: "";
    position: absolute;
    z-index: -2;
    left: 80%;
    top: -90px;
    display: inline-block;
    background-color: #dbe9dd;
    border-top-left-radius: 0.5em;
    border-bottom-left-radius: 0.5em;
  }
  .bg-14 {
    position: relative;
  }
  .bg-14::before {
    width: 100%;
    height: 707px;
    content: "";
    position: absolute;
    z-index: -2;
    left: 80%;
    top: -110px;
    background-image: url(../img/bg-elements/contact-bg-rhs.svg);
    background-repeat: repeat;
    opacity: 1;
  }
}

@media (min-width: 768px) and (min-width: 1400px) {
  .bg-14::before {
    left: 70%;
  }
}

body {
  background-color: #f9fbfb;
}

/*-------------------------------
vsm top
---------------------------------*/
.vsm-top .signed-in-bar {
  background: #213e50;
  color: #ffffff;
}

.vsm-top .signed-in-bar .media[data-initials]::before {
  background: #ffffff;
  color: #213e50;
  opacity: 1;
}

.vsm-top .signed-in-bar .sign-out-btn {
  background: #ffffff;
  color: #213e50;
}

.vsm-top .signed-in-bar .sign-out-btn i {
  color: #213e50;
}

.vsm-top .navigation .brand img {
  height: 3rem;
}

@media (min-width: 1024px) {
  .vsm-top .navigation .brand img {
    height: 2rem;
  }
}

.vsm-top.fixed .navigation .more-nav ul li a {
  text-decoration: none;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  color: #6f5af0;
}

.vsm-top.fixed .navigation .more-nav ul li a:hover {
  text-decoration: underline;
  color: rgba(var(--vsm-accent-colour), 1);
}

.vsm-top .navigation .more-nav ul li a {
  text-decoration: none;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  color: #6f5af0;
}

.vsm-top .navigation .more-nav ul li a:hover {
  text-decoration: underline;
  color: rgba(var(--vsm-accent-colour), 1);
}

.vsm-top .navigation .primary-nav ul li a {
  display: block;
  padding: 0.875rem 0.7rem;
  text-decoration: none;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  color: #213e50 !important;
}

/*Navigation Sub Nav*/
.vsm-top .primary-nav nav ul li:hover ul {
  z-index: 1;
  display: block;
}

.vsm-top .primary-nav nav ul li:hover ul li {
  padding-top: 0px;
}

.vsm-top .primary-nav nav ul li:hover ul li:first-child {
  padding-top: 0px;
}

.vsm-top .primary-nav nav ul li:hover ul li span {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 12px;
  font-weight: 700;
  display: inline;
  color: #17100a;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
}

.vsm-top .primary-nav nav ul li:hover ul li a {
  font-weight: 400;
  color: #17100a;
}
.vsm-top .navigation .primary-nav ul li.dropdown:hover > a{
 cursor: text;   
}

.vsm-top .primary-nav nav ul li ul {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0.3em;
  padding: 15px 15px;
  position: absolute;
  list-style: none;
  display: none;
  width: auto;
  min-width:11em;
  margin: 0;
  left: 0px;
  text-align: left;
}

.vsm-top .primary-nav nav ul li ul li {
  display: block;
  margin: 0;
}

.vsm-top .primary-nav nav ul li ul li a {
  background: transparent;
  display: block;
  transition: 0.5s all ease;
      white-space: nowrap;

}
/*End Navigation Sub Nav*/

.bg-white {
  background-color: #ffffff;
}

.vsm-aligned-title-intro-text .bg {
  background-color: white;
  padding-top: 90px;
  padding-bottom: 60px;
}

.vsm-aligned-title-intro-text .xs-heading {
  color: #4c9354;
  font-size: 14px;
  font-weight: 600;
}

.vsm-aligned-title-intro-text .rte p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}

@media (min-width: 1024px) {
  .vsm-aligned-title-intro-text .col-10 {
    width: 80%;
  }
}

.vsm-default-signoff {
  overflow-x: hidden;
  background: #edeff0;
  font-family: "DM Sans", sans-serif;
  color: #6d777d;
  font-size: 0.875rem;
}

.vsm-default-signoff a {
  color: #6d777d;
  text-decoration: none;
  font-size: 0.875rem;
}

/*---------------------
mobile burger menu overrides
---------------------------*/
.vsm-top .navigation .burger-menu span {
  background: #213e50 !important;
}

.vsm-top .navigation .burger-menu span::before {
  background: #213e50 !important;
}

.vsm-top .navigation .burger-menu span::after {
  background: #213e50 !important;
}

.vsm-top .navigation .burger-menu span:hover {
  color: #6f5af0 !important;
  background-color: #213e50 !important;
}

.slide-menu ul li {
  color: #6f5af0;
}
.slide-menu ul li:last-of-type ul li a {
    border-bottom: none;
}
.slide-menu ul li:hover {
  color: #6f5af0 !important;
}

.slide-menu ul li a {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  text-decoration: none;
  color: #213e50;
  border-bottom: 3px solid transparent;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
}

.slide-menu ul li a:hover {
  color: #6f5af0 !important;
}

/* ------------------------------
vsm-content-image-50-50
--------------------------------*/

.vsm-content-image-50-50.home::before {
  z-index: 0;
  width: 300px;
  height: 300px;
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  background-image: url(../img/bg-elements/G.svg);
  background-repeat: no-repeat;
  opacity: 0.03;
}

@media (min-width: 1400px) {
  .vsm-content-image-50-50.home::before {
    left: 5%;
  }
}

.vsm-content-image-50-50.home .content {
  position: relative;
  z-index: 1;
  padding: 3rem !important;
}

.vsm-content-image-50-50.home .bg {
  background-color: #ffffff;
  box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.03);
  /*
        padding-top: var(--vsm-mobile-padding-top);

        @media (min-width: 768px) {
            padding-top: var(--vsm-tablet-padding-top);
        }

        @media (min-width: 1024px) {
            padding-top: var(--vsm-desktop-padding-top);
        }

        padding-bottom: var(--vsm-mobile-padding-bottom);
        @media (min-width: 768px) {
            padding-bottom: var(--vsm-tablet-padding-bottom);
        }
        @media (min-width: 1024px) {
            padding-bottom: var(--vsm-desktop-padding-bottom);
        }*/
}

.vsm-content-image-50-50.home .md-heading {
  background: linear-gradient(to left bottom, #4c9354, #461d65);
  background-clip: border-box;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: initial;
}

.vsm-content-image-50-50.home .xs-heading {
  color: #6d777d;
  display: flex;
  align-items: center;
}

.vsm-content-image-50-50.home .xs-heading::after {
  content: "";
  flex: 1;
  margin-left: 1rem;
  height: 1.5px;
  background-color: #6d777d;
  opacity: 0.2;
}

@media (min-width: 1024px) {
  .vsm-content-image-50-50.home .media {
    right: -15%;
  }
}

@media (min-width: 768px) {
  .vsm-content-image-50-50.home .media::after {
    width: 33%;
    height: 101%;
    content: "";
    position: absolute;
    left: -1px;
    top: -1px;
    display: block;
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
  }
}

/* ------------------------------
End vsm-content-image-50-50
--------------------------------*/
/* ------------------------------
vsm-content-image-50-50 services
--------------------------------*/
@media (min-width: 768px) {
  .vsm-content-image-50-50.services .bg {
    position: relative;
  }
  .vsm-content-image-50-50.services .bg::before {
    width: 20%;
    height: calc(100% + 180px);
    content: "";
    position: absolute;
    z-index: -2;
    left: 80%;
    top: -90px;
    display: inline-block;
    background-color: #dbe9dd;
    border-top-left-radius: 0.5em;
    border-bottom-left-radius: 0.5em;
  }
  
.vsm-content-image-50-50.services .media {
  overflow: visible;
}
}


.vsm-content-image-50-50.services .content {
  position: relative;
  z-index: 1;
  padding: 0rem;
}

.vsm-content-image-50-50.services .content .btn {
  background: #4c9354;
  border: 1px solid #4c9354;
  color: #ffffff !important;
}

.vsm-content-image-50-50.services .content .btn:hover {
  color: #ffffff;
  background: #4c9354;
  opacity: 0.8;
  border: 1px solid #4c9354;
}

/* ------------------------------
End vsm-content-image-50-50 services
--------------------------------*/
/* ------------------------------
vsm-content-image-50-50 medias
--------------------------------*/
.vsm-content-image-50-50.medias {
  background-color: red;
  position: relative;
}
/*
.vsm-content-image-50-50.medias::before {
  width: 100%;
  height: 646px;
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  top: 30px;
  display: inline-block;
  background-image: url(../img/bg-elements/bgLHS.svg);
  background-repeat: no-repeat;
  transform: rotateY(180deg);
}*/
.vsm-content-image-50-50.medias::before:nth-child(even) {
  width: 100%;
  height: 646px;
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 30px;
  display: inline-block;
  background-image: url(../img/bg-elements/bgLHS.svg);
  background-repeat: no-repeat;
}

.vsm-content-image-50-50.medias::before:nth-child(odd) {
  width: 100%;
  height: 646px;
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  top: 30px;
  display: inline-block;
  background-image: url(../img/bg-elements/bgLHS.svg);
  background-repeat: no-repeat;
}

.vsm-content-image-50-50.medias .media {
  overflow: visible;
}

.vsm-content-image-50-50.medias .bg {
  position: relative;
}

.vsm-content-image-50-50.medias .content {
  position: relative;
  z-index: 1;
  padding: 0rem;
}

.vsm-content-image-50-50.medias .content .xs-heading,
.vsm-content-image-50-50.medias .content h5 {
  color: #4c9354;
  display: flex;
  align-items: center;
}

.vsm-content-image-50-50.medias .content .xs-heading::after,
.vsm-content-image-50-50.medias .content h5::after {
  content: "";
  flex: 1;
  margin-left: 1rem;
  height: 1.5px;
  background-color: #6d777d;
  opacity: 0.2;
}

.vsm-content-image-50-50.medias .content .btn {
  background: #4c9354;
  border: 1px solid #4c9354;
  color: #ffffff !important;
}

.vsm-content-image-50-50.medias .content .btn:hover {
  color: #ffffff;
  background: #4c9354;
  opacity: 0.8;
  border: 1px solid #4c9354;
}

.vsm-content-image-50-50.medias-rhs {
  background-color: #ffffff;
  position: relative;
}


.vsm-content-image-50-50.medias-rhs:nth-child(even)::before {
  width: 100%;
  height: 646px;
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 30px;
  display: inline-block;
  background-image: url(../img/bg-elements/bgLHS.svg);
  background-repeat: no-repeat;
}

.vsm-content-image-50-50.medias-rhs:nth-child(odd)::before {
  width: 100%;
  height: 646px;
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  top: 30px;
  display: inline-block;
  background-image: url(../img/bg-elements/bgRHS.svg);
  background-repeat: no-repeat;
}

.vsm-content-image-50-50.medias-rhs .media {
  overflow: visible;
}

.vsm-content-image-50-50.medias-rhs .bg {
  position: relative;
}

.vsm-content-image-50-50.medias-rhs .content {
  position: relative;
  z-index: 1;
 /* padding: 1rem;*/
}

.vsm-content-image-50-50.medias-rhs .content .xs-heading,
.vsm-content-image-50-50.medias-rhs .content h5 {
  color: #4c9354;
  display: flex;
  align-items: center;
}

.vsm-content-image-50-50.medias-rhs .content .xs-heading::after,
.vsm-content-image-50-50.medias-rhs .content h5::after {
  content: "";
  flex: 1;
  margin-left: 1rem;
  height: 1.5px;
  background-color: #6d777d;
  opacity: 0.2;
}

.vsm-content-image-50-50.medias-rhs .content .btn {
  background: #4c9354;
  border: 1px solid #4c9354;
  color: #ffffff !important;
}

.vsm-content-image-50-50.medias-rhs .content .btn:hover {
  color: #ffffff;
  background: #4c9354;
  opacity: 0.8;
  border: 1px solid #4c9354;
}

/* ------------------------------
End vsm-content-image-50-50 medias
--------------------------------*/
/* ------------------------------
vsm-small-boxes
--------------------------------*/
.vsm-small-boxes .content .xs-heading {
  text-align: left;
  margin-bottom: 0px;
  text-shadow: 0px 3px 3px rgba(33, 62, 80, 0.12);
}
.vsm-small-boxes .content .details a {
  color: #ffffff;
}

.vsm-small-boxes .sm-heading {
  display: inline-block;
  margin-right: 1em;
}

.vsm-small-boxes .media::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, #213e50 100%);
}

.vsm-small-boxes .col {
  position: relative;
  flex: 1 0 100%;
  justify-items: center;
  align-items: center;
}

.vsm-small-boxes .box-height {
  min-height: 244px;
}

@media (min-width: 768px) {
  .vsm-small-boxes .col {
    flex: 1 0 33%;
    max-width: 33%;
  }
}

/* ------------------------------
End vsm-small-boxes
--------------------------------*/
/* ------------------------------
vsm-stats-count-up
--------------------------------*/
.vsm-stats-count-up {
  position: relative;
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  .vsm-stats-count-up {
    padding-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .vsm-stats-count-up {
    padding-bottom: 60px;
  }
}

.vsm-stats-count-up .bg {
  position: relative;
}

.vsm-stats-count-up .bg::before {
  width: 100%;
  height: 156px;
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  bottom: -40px;
  display: inline-block;
  background-image: url(../img/bg-elements/full-width-map.png);
}

.vsm-stats-count-up .stat .description {
  text-align: left;
  color: #213e50;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
}

.vsm-stats-count-up .stat .count {
  text-align: left;
}

.vsm-stats-count-up .stat::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-right: none !important;
  width: 100%;
  height: 100%;
}


.vsm-stats-count-up .col:nth-child(1) .purecounter, .vsm-stats-count-up .col:nth-child(1) .symbol {
  color: #4c9354;
}

.vsm-stats-count-up .col:nth-child(2) .purecounter, .vsm-stats-count-up .col:nth-child(2) .symbol {
  color: #f5ad03;
}

.vsm-stats-count-up .col:nth-child(3) .purecounter, .vsm-stats-count-up .col:nth-child(3) .symbol {
  color: #67b8c3;
}

.vsm-stats-count-up .col:nth-child(4) .purecounter, .vsm-stats-count-up .col:nth-child(4) .symbol {
  color: #6f5af0;
}


/* ------------------------------
End vsm-stats-count-up
--------------------------------*/
/* ------------------------------
vsm-media-hub
--------------------------------*/
/* ------------------------------
VSM download Article
--------------------------------*/
.vsm-download-article .back-to-btn {
  color: #6d777d;
  border: 1px solid #6d777d;
  padding: 0.7rem;
  display: block;
  position: relative;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
}

.vsm-download-article .back-to-btn:hover:before {
  left: -0.625rem;
  animation: backwardMovement 800ms infinite;
}

.vsm-download-article .back-to-btn::before {
  content: "\f060";
  position: relative;
  display: inline-block;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  left: 0px;
  margin-right: 0.625rem;
}

.vsm-download-article .share-vertical {
  flex-direction: column;
  float: left;
}

.vsm-download-article .share-vertical dl {
  flex-direction: column;
  float: left;
  margin-bottom: 0;
}

.vsm-download-article .share-vertical dl dt {
  color: #213e50;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
}

.vsm-download-article .share-vertical dl dd {
  margin: 0.975rem;
}

.vsm-download-article .share-vertical dl dd a {
  color: rgba(var(--vsm-accent-colour), 1);
}

.vsm-download-article .share-vertical dl dd a:hover {
  color: rgba(var(--vsm-accent-colour), 1);
}

.vsm-download-article .share-vertical dl dd:last-child {
  margin-right: 0;
}

.vsm-download-article .article-tags {
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.vsm-download-article .media.featured {
  margin-bottom: 1.875rem;
}

.vsm-download-article .media.featured img {
  width: 100%;
}

.vsm-download-article .related-posts {
  margin-top: 1.875rem;
}

.vsm-download-article .related-posts .related-heading {
  font-size: 30px;
  font-size: 1.875rem;
  margin-bottom: 1.875rem;
}

.vsm-download-article .hero-bg {
  margin-bottom: 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1.875rem 0 1.875rem 0;
  position: relative;
  height: 450px;
}

.vsm-download-article .hero-bg::before {
  content: "";
  background: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
}

.vsm-download-article .hero-bg .position-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.vsm-download-article .hero-bg .position-bottom::before {
  width: 100%;
  height: 100px;
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 0;
  display: inline-block;
  background: linear-gradient(#efefef, white);
  backdrop-filter: blur(10px);
}

.vsm-download-article .hero-bg .position-bottom .content {
  padding: 2rem;
  width: 100%;
  position: absolute;
  z-index: 1;
  display: flex;
  justify-content: left;
  align-items: flex-end;
}

.vsm-download-article .hero-bg .position-bottom .content h4 {
  display: none;
}

@media (min-width: 768px) {
  .vsm-download-article .hero-bg .position-bottom .content h4 {
    display: block;
    color: #4c9354;
  }
}

.vsm-download-article .hero-bg .position-bottom .content .btn {
  position: absolute;
  right: 2rem;
  border: #4c9354;
  background-color: #4c9354;
  color: #ffffff;
}

.vsm-download-article .hero-bg .position-bottom .poster-img {
  margin-right: 1rem;
  width: auto;
  height: auto;
  z-index: 1;
}

.vsm-download-article .hero-bg .position-bottom .poster-img img {
  border-radius: 6px;
  box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.2);
  width: 120px;
  height: 154px;
  object-fit: cover;
}

.vsm-download-article .hero-bg .container {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .vsm-download-article .hero-bg .container > .row {
    justify-content: flex-end;
  }
  .vsm-download-article .hero-bg .container > .row > .col {
    flex: 0 0 auto;
    width: 50%;
  }
}

.vsm-download-article .register-btn {
  margin: 3.75rem 0;
}

.vsm-download-article .register-btn .btn {
  width: 100%;
}

@media (min-width: 768px) {
  .vsm-download-article .register-btn {
    max-width: 70%;
    margin: 3.75rem 15%;
  }
  .vsm-download-article .register-btn .btn {
    width: 100%;
  }
}

.vsm-download-article .speakers-info {
  border-top: 0;
  border-bottom: 0.063rem solid rgba(0, 0, 0, 0.1);
  padding: 1rem 0 0 0;
  margin: 1rem 0 1rem 0;
}

.vsm-download-article .speakers {
  display: flex;
  margin: 0;
  flex-wrap: wrap;
}

.vsm-download-article .speakers .author {
  width: 50%;
  flex: 1 0 50%;
}

.vsm-download-article .event-box {
  background: rgba(var(--vsm-white), 0.9);
  border-radius: 0.313rem;
  padding: 1.875rem;
}

.vsm-download-article .event-box .btn {
  width: 100%;
}

.vsm-download-article .event-box .event-date {
  color: rgba(var(--vsm-black), 1);
  margin-bottom: 1.25rem;
}

.vsm-download-article .event-box .event-date strong {
  font-size: 64px;
  font-size: 4rem;
  line-height: 1;
}

.vsm-download-article .event-box .event-date span {
  font-size: 18px;
  font-size: 1.125rem;
  display: block;
  font-weight: 600;
}

.vsm-download-article .date-time-location {
  margin-top: 1.875rem;
  border-bottom: 0.063rem solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1.875rem;
}

.vsm-download-article .date-time-location .date-time {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 1.875rem 0 0 0;
}

.vsm-download-article .date-time-location .date-time .date-info {
  margin-right: 1.25rem;
  flex: 1 0 auto;
  border: 0.063rem solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  overflow: hidden;
  width: 100%;
  max-width: 6.875rem;
  margin-bottom: 1.875rem;
}

.vsm-download-article .date-time-location .date-time .date-info span {
  display: block;
  text-align: center;
  padding: 0.188rem 0.313rem;
}

.vsm-download-article .date-time-location .date-time .date-info span.day {
  background: rgba(var(--vsm-primary-colour), 1);
  color: rgba(var(--vsm-white), 1);
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.vsm-download-article .date-time-location .date-time .date-info span.date {
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.125rem 0.313rem;
}

.vsm-download-article .date-time-location .date-time .date-info span.month-year {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  padding-bottom: 0.625rem;
}

.vsm-download-article .date-time-location .date-time .time-info {
  flex: 1 0 auto;
  margin-bottom: 1.875rem;
}

.vsm-download-article .date-time-location .date-time .time-info strong {
  display: block;
  color: rgba(var(--vsm-black), 1);
}

.vsm-download-article .date-time-location .date-time .time-info span {
  display: block;
}

.vsm-download-article .date-time-location .location-info {
  margin: 1.25rem 0 0 0;
}

/* ------------------------------
VSM Event Article
--------------------------------*/
.vsm-event-article .hero-bg {
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1.875rem 0 1.875rem 0;
  position: relative;
  height: 450px;
}

.vsm-event-article .hero-bg::before {
  content: "";
  background: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
}

.vsm-event-article .hero-bg .container > .row {
  justify-content: flex-start;
}

.vsm-event-article .hero-bg .container {
  position: relative;
  top: 40px;
}

@media (min-width: 1024px) {
  .vsm-event-article .hero-bg {
    margin-bottom: 140px;
  }
}

.vsm-event-article .event-box .event-date span {
  color: #6d777d;
}

.vsm-event-article .event-box {
  border-radius: 0.313rem;
  padding: 1.875rem;
  /* Note: backdrop-filter has minimal browser support */
  backdrop-filter: blur(10px);
  background-color: rgba(var(--vsm-white), 0.7);
  box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.2);
}

@-moz-document url-prefix() {
  .vsm-event-article .event-box {
    box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.2);
    background: linear-gradient(180deg, rgba(var(--vsm-white), 0.8) 0%, #ffffff 100%);
  }
}

.vsm-media-hub .author .author-details .title {
  color: #213e50;
}

.vsm-media-hub .author .author-details .title a:hover {
  color: #6f5af0;
}

.vsm-media-hub .btn.btn-primary {
  border: 0.063rem solid rgba(var(--vsm-accent-colour), 1);
  background-color: rgba(var(--vsm-accent-colour), 1);
}

.vsm-media-hub .btn.btn-primary:hover {
  border: 0.063rem solid rgba(var(--vsm-accent-colour), 1);
  background-color: rgba(var(--vsm-accent-colour), 1);
}

.vsm-media-hub .author .author-details .title a {
  color: #213e50;
}

.vsm-event-article .event-box .event-date strong {
  font-size: 3rem;
  color: #213e50;
}

.rte blockquote {
  left: -36px;
  width: calc(100% + 36px);
  color: #090909;
  font-weight: 500;
  font-size: 28px;
  position: relative;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .rte blockquote {
    position: relative;
    left: 0px;
  }
}

.rte q {
  font-family: "Lexend", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  text-align: left;
  font-weight: bold;
  color: #213e50;
  position: relative;
  display: block;
  font-style: normal;
  margin-bottom: 15px;
  padding-left: 25px;
}

@media (min-width: 768px) {
  .rte q {
    padding-left: 25px;
  }
  .rte q:before {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 32px;
  }
  .rte q:after {
    display: none;
    /*
                position: absolute;
                padding-left: 10px;
                @include font-size(32px);
                line-height: 32px;*/
  }
}

.vsm-event-article .date-time-location .date-time .date-info {
  border-radius: 0px;
  background: #ffffff;
}

.vsm-event-article .date-time-location .sm-heading {
  font-size: 1.25rem;
  font-size: 20px;
}

.vsm-event-article .date-time-location .date-time .date-info span.day {
  background: #213e50;
}

.vsm-event-article .date-time-location .date-time .date-info span {
  color: #213e50;
}

.vsm-event-article .date-time-location .date-time .time-info strong {
  color: #213e50;
  font-size: 18px;
  font-size: 1.125rem;
}

.vsm-event-article .date-time-location .date-time .time-info strong span {
  color: #6d777d;
}

.vsm-event-article .register-btn {
  max-width: 40%;
  margin: 0;
}

/* ---------------------------
podcasts
------------------------------*/
.vsm-podcast-article .container-fluid {
  padding-left: 0px;
  padding-right: 0px;
}

.vsm-podcast-article .hero-bg {
  background-color: #e8ebed;
  padding: 1.875rem;
  margin-bottom: 30px;
}

@media (min-width: 1024px) {
  .vsm-podcast-article .hero-bg {
    padding: 9.375rem 0 1.875rem 0;
    height: 442px;
  }
}

.vsm-podcast-article .hero-bg::before {
  background: none;
}

.vsm-podcast-article .speakers {
  display: flex;
  margin: 1.875rem 0;
  flex-wrap: wrap;
}

.vsm-podcast-article .speakers .author {
  width: 50%;
  flex: 1 0 50%;
}

.vsm-podcast-article .share-vertical {
  flex-direction: column;
  float: left;
}

.vsm-podcast-article .share-vertical dl {
  flex-direction: column;
  float: left;
  margin-bottom: 0;
}

.vsm-podcast-article .share-vertical dl dt {
  color: #213e50;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
}

.vsm-podcast-article .share-vertical dl dd {
  margin: 0.975rem;
}

.vsm-podcast-article .share-vertical dl dd a {
  color: rgba(var(--vsm-accent-colour), 1);
}

.vsm-podcast-article .share-vertical dl dd a:hover {
  color: rgba(var(--vsm-accent-colour), 1);
}

.vsm-podcast-article .share-vertical dl dd:last-child {
  margin-right: 0;
}

.vsm-podcast-article .back-to-btn {
  color: #6d777d;
  border: 1px solid #6d777d;
  padding: 0.7rem;
  display: block;
  position: relative;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
}

.vsm-podcast-article .back-to-btn:hover:before {
  left: -0.625rem;
  animation: backwardMovement 800ms infinite;
}

.vsm-podcast-article .back-to-btn::before {
  content: "\f060";
  position: relative;
  display: inline-block;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  left: 0px;
  margin-right: 0.625rem;
}

/*-------------------------------
Videos
--------------------------------*/
.vsm-video-article .container-fluid {
  padding-left: 0px;
  padding-right: 0px;
}

.vsm-video-article .hero-bg {
  background: #e8ebed;
  margin-bottom: 30px;
}

.vsm-video-article .hero-bg::before {
  background: none;
}

.vsm-video-article .speakers {
  display: flex;
  margin: 1.875rem 0;
  flex-wrap: wrap;
}

.vsm-video-article .speakers .author {
  width: 50%;
  flex: 1 0 50%;
}

.vsm-video-article .share-vertical {
  flex-direction: column;
  float: left;
}

.vsm-video-article .share-vertical dl {
  flex-direction: column;
  float: left;
  margin-bottom: 0;
}

.vsm-video-article .share-vertical dl dt {
  color: #213e50;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
}

.vsm-video-article .share-vertical dl dd {
  margin: 0.975rem;
}

.vsm-video-article .share-vertical dl dd a {
  color: rgba(var(--vsm-accent-colour), 1);
}

.vsm-video-article .share-vertical dl dd a:hover {
  color: rgba(var(--vsm-accent-colour), 1);
}

.vsm-video-article .share-vertical dl dd:last-child {
  margin-right: 0;
}

.vsm-video-article .share-vertical {
  flex-direction: column;
  float: left;
}

.vsm-video-article .share-vertical dl {
  flex-direction: column;
  float: left;
  margin-bottom: 0;
}

.vsm-video-article .share-vertical dl dt {
  color: #213e50;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
}

.vsm-video-article .share-vertical dl dd {
  margin: 0.975rem;
}

.vsm-video-article .share-vertical dl dd a {
  color: rgba(var(--vsm-accent-colour), 1);
}

.vsm-video-article .share-vertical dl dd a:hover {
  color: rgba(var(--vsm-accent-colour), 1);
}

.vsm-video-article .share-vertical dl dd:last-child {
  margin-right: 0;
}

.vsm-video-article .back-to-btn {
  color: #6d777d;
  border: 1px solid #6d777d;
  padding: 0.7rem;
  display: block;
  position: relative;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
}

.vsm-video-article .back-to-btn:hover:before {
  left: -0.625rem;
  animation: backwardMovement 800ms infinite;
}

.vsm-video-article .back-to-btn::before {
  content: "\f060";
  position: relative;
  display: inline-block;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  left: 0px;
  margin-right: 0.625rem;
}

/*-------------------------------
listing
--------------------------------*/
.vsm-listing-article .container-fluid {
  padding-left: 0px;
  padding-right: 0px;
}

.vsm-listing-article .hero-bg {
  margin-bottom: 40px;
  background: #e8ebed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1.875rem 0 1.875rem 0;
  position: relative;
  width:100%;
  min-height:300px;
  height: auto;
}

.vsm-listing-article .hero-bg::before {
  content: "";
  background: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
}

.vsm-listing-article .hero-bg .container {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .vsm-listing-article .hero-bg .container > .row {
    justify-content: flex-end;
  }
  .vsm-listing-article .hero-bg .container > .row > .col {
    flex: 0 0 auto;
    width: 50%;
  }
}

.vsm-listing-article .speakers {
  display: flex;
  margin: 1.875rem 0;
  flex-wrap: wrap;
}

.vsm-listing-article .speakers .author {
  width: 50%;
  flex: 1 0 50%;
}

.vsm-listing-article .share-vertical {
  flex-direction: column;
  float: left;
}

.vsm-listing-article .share-vertical dl {
  flex-direction: column;
  float: left;
  margin-bottom: 0;
}

.vsm-listing-article .share-vertical dl dt {
  color: #213e50;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
}

.vsm-listing-article .share-vertical dl dd {
  margin: 0.975rem;
}

.vsm-listing-article .share-vertical dl dd a {
  color: rgba(var(--vsm-accent-colour), 1);
}

.vsm-listing-article .share-vertical dl dd a:hover {
  color: rgba(var(--vsm-accent-colour), 1);
}

.vsm-listing-article .share-vertical dl dd:last-child {
  margin-right: 0;
}

.vsm-listing-article .back-to-btn {
  color: #6d777d;
  border: 1px solid #6d777d;
  padding: 0.7rem;
  display: block;
  position: relative;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
}

.vsm-listing-article .back-to-btn:hover:before {
  left: -0.625rem;
  animation: backwardMovement 800ms infinite;
}

.vsm-listing-article .back-to-btn::before {
  content: "\f060";
  position: relative;
  display: inline-block;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  left: 0px;
  margin-right: 0.625rem;
}

/* ------------------------------
End vsm-media-hub
--------------------------------*/
/* ------------------------------
featured
--------------------------------*/
.featured {
  position: relative;
  padding-top: 20px;
}

@media (min-width: 768px) {
  .featured {
    padding-top: 40px;
  }
}

@media (min-width: 1024px) {
  .featured {
    padding-top: 80px;
  }
}

.featured h3,
.featured .sm-heading {
  color: #213e50;
  display: flex;
  align-items: center;
}

.featured h3::after,
.featured .sm-heading::after {
  content: "";
  flex: 1;
  margin-left: 1rem;
  height: 1.5px;
  background-color: #6d777d;
  opacity: 0.2;
}

.featured .btn-wide-arrow {
  color: #4c9354;
  display: inline-block;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-self: center;
  justify-content: space-between;
  border-radius: 0em;
  padding: 0px;
  text-decoration: none;
  border: 0;
  text-transform: capitalize;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 28px;
}

.featured .btn-wide-arrow::after {
  content: "\f30b";
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 16px;
  color: inherit;
  transition: all 250ms ease-in-out;
}

.featured .btn-wide-arrow:hover {
  opacity: 0.6;
}

.featured .flex-container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}

.featured .case-study {
  position: relative;
  height: auto;
  width: 100%;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .featured .case-study {
    width: 48%;
  }
}

@media (min-width: 1024px) {
  .featured .case-study {
    width: 31%;
    padding-bottom: 60px;
  }
}

.featured .case-study label {
  font-size: small;
  margin-bottom: 1em;
}

.content-in-image-100 .content-in-image-small .content .xxs-heading.green-text-colour {
     color: #4c9354;
}
.content-in-image-100 .content-in-image-small .content .xxs-heading.blue-text-colour {
  color: #67b8c3;
}
.content-in-image-100 .content-in-image-small .content .xxs-heading.yellow-text-colour {
   color: #f5ad03;
}

.featured .case-study .green-text-colour {
  color: #4c9354;
}

.featured .case-study .blue-text-colour {
  color: #67b8c3;
}

.featured .case-study .yellow-text-colour {
   color: #f5ad03;
}
/*
.featured .case-study:nth-child(1) .primary {
  color: #4c9354;
}

.featured .case-study:nth-child(2) .primary {
  color: #67b8c3;
}

.featured .case-study:nth-child(3) .primary {
   color: #f5ad03;
}*/

.featured .case-study .buttons {
  width: 100%;
  position: absolute;
  bottom: 0;
}

.featured .case-study .img-container {
  position: relative;
  height: 210px;
  width: 100%;
}

.featured .case-study .img-container .img {
  width: 50%;
  /* height: 100%; */
  overflow: hidden;
}

.featured .case-study .img-container .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 800ms all ease-in;
  transform: scale(1);
}

.featured .case-study .img-container .bg-img {
  top: 0px;
  left: 0px;
  z-index: 1;
  opacity: 1;
  width: 100%;
  max-height: 210px;
  overflow: hidden;
}

.featured .case-study .img-container .bg-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: 800ms all ease-in;
  transform: scale(1);
}

.featured .case-study .img-container .bg-img img:hover {
  transition: 800ms all ease-in;
  transform: scale(1.1);
}

.featured .case-study .img-container .logo-img {
  position: absolute;
  top: 6em;
  left: 2em;
  z-index: 1;
  opacity: 1;
  width: auto;
  max-height: 30px;
}

.featured .case-study .img-container .logo-img img {
  width: 115px;
  object-fit: cover;
}

.featured .case-study .img-container .icon-img {
  position: absolute;
  bottom: 0em;
  right: 0em;
  z-index: 1;
  opacity: 1;
  width: auto;
  max-height: 30px;
}

.featured .case-study .img-container .icon-img img {
  width: 30px;
  height: 30px;
  object-fit: cover;
}

.featured .case-study .img-container .person-img {
  left: 40%;
  position: absolute;
  top: 6.5em;
  z-index: 9999;
  opacity: 1;
  width: 90px;
  max-height: 90px;
}

@media (min-width: 320px) {
  .featured .case-study .img-container .person-img {
    left: 35%;
  }
}

.featured .case-study .img-container .person-img img {
  background-color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 100%;
  width: 90px;
  object-fit: cover;
}

.featured .case-study .top {
  width: 100%;
  height: 210px;
  top: 0;
  position: absolute;
}

.featured .case-study .middle {
  box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.03);
  width: calc(100% - 30px);
  height: calc(100% - 154px);
  margin-top: 150px;
  padding-bottom: 70px;
  position: relative;
  z-index: 2;
}

.featured .case-study .middle::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  z-index: 1;
  left: -1px;
  top: 0;
  display: block;
  /* Note: backdrop-filter has minimal browser support */
  backdrop-filter: blur(10px);
  background-color: rgba(var(--vsm-white), 0.7);
}


@media (max-width: 767px) {
  .featured .case-study .middle {
    background: linear-gradient(#efefef, white);
}
    
}
@-moz-document url-prefix() {
  .featured .case-study .middle {
    width: calc(100% - 30px);
    height: calc(100% - 154px);
    margin-top: 150px;
    padding-bottom: 70px;
    position: relative;
    z-index: 2;
    background: linear-gradient(#efefef, white);
  }
}

.featured .case-study .buttons {
  padding-left: 2em;
  padding-right: 2em;
  width: 100%;
  height: 30px;
  bottom: 1em;
  position: absolute;
  z-index: 9999;
}

.featured .case-study .copy {
  width: calc(100% - 30px);
  position: relative;
  z-index: 3;
  padding-top: 2em;
  padding-left: 2em;
}

/* ------------------------------
Custom Footer
--------------------------------*/
.custom-footer {
  font-family: "Lexend", sans-serif;
  background: #f2f4f9;
  color: #213e50;
  padding: 3.75rem 0;
}

.custom-footer .xxs-heading {
  color: #6d777d;
  margin: 0.938rem 0;
  font-size: 10px;
  font-size: 0.63rem;
  text-transform: capitalize;
}

.custom-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-footer ul li a {
  color: #213e50;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.custom-footer ul li a:hover {
  color: rgba(33, 62, 80, 0.7);
}

footer .contact-info {
  display: flex;
  flex-wrap: wrap;
}

footer .contact-info div {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #213e50;
  font-weight: 600;
}

footer .contact-info div a {
  text-decoration: none;
  color: #213e50;
  font-weight: 600;
}

footer .contact-info div a:hover {
  color: rgba(33, 62, 80, 0.7);
}


footer .contact-tel {
  margin-top:1em;
  display: block;
  font-size: 0.875rem;
  color: #213e50;
  font-weight: 600;
}
footer .contact-tel ul {
  font-size: 0.875rem;
  color: #213e50;
  font-weight: 600;
}

footer .contact-tel span{
    width: 110px;
    display: inline-block;
}
footer .contact-tel a {
  text-decoration: none;
  color: #213e50;
  font-weight: 600;
}

footer .contact-tel a:hover {
  color: rgba(33, 62, 80, 0.7);
}

.custom-footer .social {
  margin-top: 1em;
  margin-bottom: 1em;
  list-style: none;
  display: flex;
  flex-direction: row;
}

.custom-footer .social li {
  margin-right: 1.25rem;
}

.custom-footer .social li a {
  font-size: 16px;
  font-size: 1rem;
}

.custom-footer .social li a i {
  font-size: 20px;
  font-size: 1.25rem;
}

.custom-footer .general-contact-details li {
  margin-bottom: 0.75rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 300;
}

.custom-footer .general-contact-details li a {
  font-size: 24px;
  font-size: 1.5rem;
  color: rgba(var(--vsm-white), 1);
  font-weight: 500;
}

/* ------------------------------
End custom Footer
--------------------------------*/
/* ------------------------------
team-slider
--------------------------------*/
.team-slider {
  padding-top: 30px;
}

@media (min-width: 768px) {
  .team-slider {
    padding-top: 75px;
  }
}

@media (min-width: 1024px) {
  .team-slider {
    padding-top: 150px;
  }
}

.team-slider .content {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.03);
  /* Note: backdrop-filter has minimal browser support */
  backdrop-filter: blur(10px);
}

.team-slider .content .xs-heading {
  color: #6d777d;
  display: flex;
  align-items: center;
}

.team-slider .content .xs-heading::after {
  content: "";
  flex: 1;
  margin-left: 1rem;
  height: 1.5px;
  background-color: #6d777d;
  opacity: 0.2;
}

.team-slider .slider-spacing {
  padding-top: 50px;
}

.team-slider .container-fluid {
  position: relative;
}

@media (min-width: 1024px) {
  .team-slider .container-fluid .overlap {
    position: absolute;
    width: 45%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
    z-index: 2;
  }
}

@media (min-width: 1024px) and (min-width: 1024px) {
  .team-slider .container-fluid .overlap {
    left: 5%;
  }
}

@media (min-width: 1024px) and (min-width: 1400px) {
  .team-slider .container-fluid .overlap {
    left: 10%;
  }
}

.team-slider .swiper-wrapper {
  width: 100%;
}

.team-slider .swiper-slide {
  opacity: 0.15;
}

.team-slider .swiper-slide a {
  text-decoration: none !important;
  color: inherit;
}

.team-slider .swiper-slide a:hover {
  color: #6f5af0;
}

.team-slider .swiper-slide-active {
  opacity: 1;
}

.team-slider .team .swiper-slide-next {
  opacity: 1;
}

.team-slider .team-person {
  padding-bottom: 60px;
  position: relative;
  height: 290px;
  min-width: 255px;
  /*background-color: #ffffff;
  
    box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.03);*/
}

.team-slider .team-person .img-container {
  position: relative;
  height: 210px;
  width: 100% !important;
  z-index: 2;
}

.team-slider .team-person .img-container .bg-img {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  opacity: 1;
  width: 100% !important;
  max-height: 132px;
}

.team-slider .team-person .img-container .bg-img img {
  width: 100% !important;
  height: 132px;
  object-fit: cover;
}

.team-slider .team-person .top {
  width: 100%;
  height: auto;
  top: 0;
  position: absolute;
}

.team-slider .team-person .middle {
  width: calc(100% - 30px);
  height: 100%;
  background-color: #ffffff;
  top: 100px;
  padding-bottom: 70px;
  position: relative;
  z-index: 2;
}

.team-slider .team-person .middle .person-img {
  left: 40%;
  position: absolute;
  top: -1em;
  z-index: 9999;
  opacity: 1;
  width: 90px;
  max-height: 90px;
}

@media (min-width: 320px) {
  .team-slider .team-person .middle .person-img {
    left: 35%;
  }
}

.team-slider .team-person .middle .person-img img {
  background-color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 100%;
  width: 90px;
  height: 90px;
  object-fit: cover;
}

.team-slider .team-person .middle::before {
  width: 100%;
  height: 100px;
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  display: inline-block;
  background: linear-gradient(#efefef, white);
  backdrop-filter: blur(10px);
}

.team-slider .team-person .copy {
  text-align: center;
  width: calc(100%);
  position: relative;
  z-index: 3;
  left: 0;
  top: 90px;
  padding-left: 1em;
  padding-right: 1em;
}

.team-slider .team-person .copy p {
  font-size: small;
}

/* ------------------------------
End team-slider
--------------------------------*/
/*------------------------------
Hero
--------------------------------*/
.hero.home {
  position: relative;
  padding-bottom: 60px;
  height: 500px;
  width: 100%;
  text-align: left;
  justify-content: start;
}

@media (min-width: 768px) {
  .hero.home {
    height: 600px;
  }

}
@media (min-width: 992px){
       .content-in-image-100.green-bg::before {
    width: 15%;
    height: calc(100% + 95px);
    content: "";
    position: absolute;
    z-index: 0;
    left: 85%;
    top: -110px;
    display: block;
    background-color: #4c9354;
    opacity: 0.1;
  }

   .content-in-image-100.blue-bg::before {
    width: 15%;
    height: calc(100% + 95px);
    content: "";
    position: absolute;
    z-index: 0;
    left: 85%;
    top: -110px;
    display: block;
    background-color: #67b8c3;
    opacity: 0.2;
  }
   .content-in-image-100.yellow-bg::before {
    width: 15%;
    height: calc(100% + 95px);
    content: "";
    position: absolute;
    z-index: 0;
    left: 85%;
    top: -110px;
    display: block;
    background-color: #f5ad03;
    opacity: 0.2;
  }
} 
@media (min-width: 1024px) {
  /*.hero.home::before {
    width: 100%;
    height:100%;
    background-color: #dbe9dd;
  }*/
 .hero.home.green-bg::before {
    width: 100%;
    height: calc(100% + 95px);
    content: "";
    position: absolute;
    z-index: 1;
    left: 80%;
    top: -110px;
    display: block;
 background-color: #4c9354;
    opacity: 0.1;
  }

   .hero.home.blue-bg::before {
    width: 100%;
    height: calc(100% + 95px);
    content: "";
    position: absolute;
    z-index: 1;
    left: 80%;
    top: -110px;
    display: block;
    background-color: #67b8c3;
    opacity: 0.2;
  }
   .hero.home.yellow-bg::before {
    width: 100%;
    height: calc(100% + 95px);
    content: "";
    position: absolute;
    z-index: 1;
    left: 80%;
    top: -110px;
    display: block;
    background-color: #f5ad03;
     opacity: 0.2;
  }/*
  .green-bg::before {
    width: 20%;
    height: calc(100% + 95px);
    content: "";
    position: absolute;
    z-index: 1;
    left: 80%;
    top: -110px;
    display: block;
    background-color: #dbe9dd;
    opacity: 0.3;
  }

   .blue-bg::before {
    width: 100%;
    height: calc(100% + 95px);
    content: "";
    position: absolute;
    z-index: 1;
    left: 80%;
    top: -110px;
    display: block;
    background-color: #67b8c3;
    
  }
   .yellow-bg::before {
    width: 100%;
    height: calc(100% + 95px);
    content: "";
    position: absolute;
    z-index: 1;
    left: 80%;
    top: -110px;
    display: block;
    background-color: #f5ad03;
        opacity: 0.5;
  }*/
}

@media (min-width: 1200px) {
  .hero.home {
    min-height: 650px;
  }
  
  .content-in-image-100.green-bg::before {
    width: 25%;
    height: calc(100% + 110px);
    content: "";
    position: absolute;
    z-index: 0;
    left: 75%;
    top: -110px;
    display: block;
 background-color: #4c9354;
    opacity: 0.1;
  }
   .content-in-image-100.blue-bg::before {
    width: 25%;
    height: calc(100% + 110px);
    content: "";
    position: absolute;
    z-index: 0;
    left: 75%;
    top: -110px;
    display: block;
    background-color: #67b8c3;
    opacity: 0.2;
  }
   .content-in-image-100.yellow-bg::before {
    width: 25%;
    height: calc(100% + 110px);
    content: "";
    position: absolute;
    z-index: 0;
    left: 75%;
    top: -110px;
    display: block;
    background-color: #f5ad03;
    opacity: 0.2;
  }
}

.hero.home .swiper-container {
  width: auto;
  height: auto;
  margin-left: 0px;
  margin-right: auto;
}

.hero.home .swiper-slide {
  background-size: cover;
  background-position: center;
}

.hero.home .swiper-nav-container {
  position: relative;
  bottom: 0;
  left: 0;
  text-align: left;
  z-index: 10;
  margin-top: 1em;
}

.hero.home .swiper-pagination {
  position: absolute;
  top: 0;
  left: 2.5em;
  text-align: left;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  margin: 0px auto;
  padding: 0px;
}

.hero.home .swiper-pagination-fraction {
  width: auto;
}

.hero.home .swiper-pagination-hidden {
  opacity: 0;
}

.hero.home .swiper-pagination-bullets {
  text-align: center;
}

.hero.home .swiper-pagination-bullet {
  margin: 5px 5px 0px 5px;
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
  color: #4c9354;
  background-color: #6f5af0 !important;
  border-radius: 0px !important;
  width: 6px;
  height: 6px;
  opacity: 0.3;
}

.hero.home .swiper-pagination-bullet-active {
  opacity: 1;
  width: 6px;
  height: 6px;
  color: #6f5af0 !important;
  background-color: #6f5af0 !important;
  border-radius: none !important;
}

.hero.home .swiper-button-prev {
  left: 0;
  bottom: 0;
  position: relative;
  width: 50px;
  height: 50px;
  display: inline-block;
  padding: 0;
}

.hero.home .swiper-button-prev.swiper-button-disabled {
  opacity: 0.5;
}

.hero.home .swiper-button-prev:after {
  content: "\f060";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #6f5af0;
  transition: all 250ms ease-in-out;
}

.hero.home .swiper-button-prev:focus {
  outline: none;
}

.hero.home .swiper-button-next {
  text-align: left;
  position: relative;
  width: 50px;
  height: 50px;
  display: inline-block;
  left: 3em;
  padding: 0;
}

.hero.home .swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
}

.hero.home .swiper-button-next:after {
  content: "\f061";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #6f5af0;
  transition: all 250ms ease-in-out;
}

.hero.home .swiper-button-next:focus {
  outline: none;
}

.hero.home .gallery-top {
  height: 100%;
  display: flex;
  justify-content: start;
}

@media (min-width: 1024px) {
  .hero.home .gallery-top {
    width: 90%;
  }
}

.hero.home .gallery-top .overlay::before {
  width: 100%;
  height: 100vh;
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  display: inline-block;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.35) 65.81%, rgba(0, 0, 0, 0) 100%);
}

.hero.home .gallery-top .content {
  padding: 3em 2em;
  z-index: 9999;
}

@media (min-width: 768px) {
  .hero.home .gallery-top .content {
    padding-bottom: 6em;
    padding-left: 4em;
  }
}

.hero.home .gallery-top .content label,
.hero.home .gallery-top .content .date {
  font-size: small;
  color: #ffffff;
}

.hero.home .gallery-top .content p {
  font-size: small;
  color: #ffffff;
}

.hero.home .gallery-top .content .date {
  opacity: 0.6;
}

.hero.home .gallery-top .content .heading {
  color: #ffffff;
}

.hero.home .gallery-top .content .heading a {
  font-size: inherit;
  text-decoration: none;
}

.hero.home .gallery-top .content .heading a:hover {
  text-decoration: underline;
}
.hero.home .gallery-top .content a.blue {
    color: #67b8c3;
}
.hero.home .gallery-top .content a.green {
    color: #4c9354;
}
.hero.home .gallery-top .content a.yellow {
    color: #f5ad03;
}
.hero.home .gallery-top .content a {
  color: #ffffff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.hero.home .gallery-top .content a:hover {
  text-decoration: underline;
}

.hero.home .gallery-top .content a i {
  margin-left: 10px;
  color: #4c9354;
}

.hero.home .controller {
  position: absolute;
  right: 0;
  height: auto;
  z-index: 1;
  width: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .hero.home .controller {
    top: 5;
  }
}

@media (min-width: 1024px) {
  .hero.home .controller {
    top: 6.25em;
  }
}

.hero.home .controller .gallery-thumbs {
  justify-content: center;
  align-items: center;
  display: block;
  padding: 0px 0;
}

.hero.home .controller .gallery-thumbs .swiper-wrapper {
  display: block;
}

.hero.home .controller .gallery-thumbs .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px !important;
  cursor: pointer;
  background: rgba(237, 237, 236, 0.7);
  box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.03);
}
.hero.home .controller .gallery-thumbs .swiper-slide::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  display: block;
  /* Note: backdrop-filter has minimal browser support */
  backdrop-filter: blur(10px);
}

.hero.home .controller .gallery-thumbs .swiper-slide:hover {
  background: #ededec;
  box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.03);
}

.hero.home .controller .gallery-thumbs .swiper-slide-thumb-active {
  background: #ededec;
  box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.03);
}

.hero.home .controller .gallery-thumbs .snippet {
  backdrop-filter: none;
  padding-left: 1em;
  padding-right: 1em;
  font-family: "Lexend", sans-serif;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: none;
  color: #213e50;
}

@media (min-width: 768px) {
  .hero.home .controller .gallery-thumbs .snippet {
    display: block;
  }
}

.hero.home .controller .gallery-thumbs .snippet label {
  font-size: small;
  color: #6f5af0;
}

.hero.home .controller .gallery-thumbs .snippet .date {
  font-size: small;
  color: #6d777d;
  opacity: 0.6;
}

.hero.home .controller .gallery-thumbs .snippet p {
  color: #213e50;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0px;
}

.hero.home .controller .gallery-thumbs .img {
  width: 90px;
  height: 120px;
}

.hero.home .controller .gallery-thumbs .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero.home .controller .swiper-button.disabled {
  display: none;
}

.hero.feature {
  position: relative;
  padding-bottom: 60px;
  height: 500px;
  width: 100%;
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .hero.feature {
    height: 600px;
  }
}

@media (min-width: 1200px) {
  .hero.feature {
    min-height: 650px;
  }
}

.hero.feature h3,
.hero.feature .sm-heading {
  color: #213e50;
  display: flex;
  align-items: center;
}

.hero.feature h3::after,
.hero.feature .sm-heading::after {
  content: "";
  flex: 1;
  margin-left: 1rem;
  height: 1.5px;
  background-color: #6d777d;
  opacity: 0.2;
}

.hero.feature .swiper-container {
  width: auto;
  height: auto;
  margin-left: 0px;
  margin-right: auto;
}

.hero.feature .swiper-slide {
  background-size: cover;
  background-position: center;
}

.hero.feature .swiper-nav-container {
  position: relative;
  bottom: 0;
  left: 0;
  text-align: left;
  z-index: 10;
  margin-top: 1em;
}

.hero.feature .swiper-pagination {
  position: absolute;
  top: 0;
  left: 2.5em;
  text-align: left;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  margin: 0px auto;
  padding: 0px;
}

.hero.feature .swiper-pagination-fraction {
  width: auto;
}

.hero.feature .swiper-pagination-hidden {
  opacity: 0;
}

.hero.feature .swiper-pagination-bullets {
  text-align: center;
}

.hero.feature .swiper-pagination-bullet {
  margin: 5px 5px 0px 5px;
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
  color: #4c9354;
  background-color: #6f5af0 !important;
  border-radius: 0px !important;
  width: 6px;
  height: 6px;
  opacity: 0.3;
}

.hero.feature .swiper-pagination-bullet-active {
  opacity: 1;
  width: 6px;
  height: 6px;
  color: #6f5af0 !important;
  background-color: #6f5af0 !important;
  border-radius: none !important;
}

.hero.feature .swiper-button-prev {
  left: 0;
  bottom: 0;
  position: relative;
  width: 50px;
  height: 50px;
  display: inline-block;
  padding: 0;
}

.hero.feature .swiper-button-prev.swiper-button-disabled {
  opacity: 0.5;
}

.hero.feature .swiper-button-prev:after {
  content: "\f060";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #6f5af0;
  transition: all 250ms ease-in-out;
}

.hero.feature .swiper-button-prev:focus {
  outline: none;
}

.hero.feature .swiper-button-next {
  text-align: left;
  position: relative;
  width: 50px;
  height: 50px;
  display: inline-block;
  left: 3em;
  padding: 0;
}

.hero.feature .swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
}

.hero.feature .swiper-button-next:after {
  content: "\f061";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #6f5af0;
  transition: all 250ms ease-in-out;
}

.hero.feature .swiper-button-next:focus {
  outline: none;
}

.hero.feature .gallery-top {
  height: 100%;
  display: flex;
  justify-content: start;
}

@media (min-width: 1024px) {
  .hero.feature .gallery-top {
    width: 90%;
    left: 10%;
  }
}

.hero.feature .gallery-top .overlay::before {
  width: 100%;
  height: 100vh;
  content: "";
  position: absolute;
  z-index: -2;
  right: 0;
  top: 0;
  display: inline-block;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.35) 65.81%, rgba(0, 0, 0, 0) 100%);
}

.hero.feature .gallery-top .content {
  padding: 3em 2em;
  z-index: 9999;
}

@media (min-width: 768px) {
  .hero.feature .gallery-top .content {
    padding-bottom: 6em;
    padding-left: 4em;
  }
}

.hero.feature .gallery-top .content label,
.hero.feature .gallery-top .content .date {
  font-size: small;
  color: #ffffff;
}

.hero.feature .gallery-top .content p {
  font-size: small;
  color: #ffffff;
}

.hero.feature .gallery-top .content .date {
  opacity: 0.6;
}

.hero.feature .gallery-top .content .heading {
  color: #ffffff;
}

.hero.feature .gallery-top .content .heading a {
  font-size: inherit;
  text-decoration: none;
}

.hero.feature .gallery-top .content .heading a:hover {
  text-decoration: underline;
}

.hero.feature .gallery-top .content a {
  color: #ffffff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.hero.feature .gallery-top .content a:hover {
  text-decoration: underline;
}

.hero.feature .gallery-top .content a i {
  margin-left: 10px;
  color: #4c9354;
}

.hero.feature .controller {
  position: absolute;
  left: 0;
  height: auto;
  z-index: 1;
  width: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .hero.feature .controller {
    top: 5;
  }
}

@media (min-width: 1024px) {
  .hero.feature .controller {
    top: 6.25em;
  }
}

.hero.feature .controller .gallery-thumbs {
  justify-content: center;
  align-items: center;
  display: block;
  padding: 0px 0;
}

.hero.feature .controller .gallery-thumbs .swiper-wrapper {
  display: block;
}

.hero.feature .controller .gallery-thumbs .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px !important;
  cursor: pointer;
  background: rgba(237, 237, 236, 0.7);
  box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.03);
}

.hero.feature .controller .gallery-thumbs .swiper-slide::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  display: block;
  /* Note: backdrop-filter has minimal browser support */
  backdrop-filter: blur(10px);
}

.hero.feature .controller .gallery-thumbs .swiper-slide:hover {
  background: #ededec;
  box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.03);
}

.hero.feature .controller .gallery-thumbs .swiper-slide-thumb-active {
  background: #ededec;
  box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.03);
}

.hero.feature .controller .gallery-thumbs .snippet {
  backdrop-filter: none;
  padding-left: 1em;
  padding-right: 1em;
  font-family: "Lexend", sans-serif;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: none;
  color: #213e50;
}

@media (min-width: 768px) {
  .hero.feature .controller .gallery-thumbs .snippet {
    display: block;
  }
}

.hero.feature .controller .gallery-thumbs .snippet label {
  font-size: small;
  color: #6f5af0;
}

.hero.feature .controller .gallery-thumbs .snippet .date {
  font-size: small;
  color: #6d777d;
  opacity: 0.6;
}

.hero.feature .controller .gallery-thumbs .snippet p {
  color: #213e50;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0px;
}

.hero.feature .controller .gallery-thumbs .img {
  width: 90px;
  height: 120px;
}

.hero.feature .controller .gallery-thumbs .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero.feature .controller .swiper-button.disabled {
  display: none;
}

/* ------------------------------
End hero
--------------------------------*/
/* ------------------------------
content-in-image-100
--------------------------------*/
.content-in-image-100 {
  position: relative;

}

.content-in-image-100 .col {
  position: relative;
  flex: 1 0 100%;
  justify-items: center;
  align-items: center;
  margin-bottom: 90px;
}

.content-in-image-100 .content-in-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: flex-end;
  overflow: visible;
  margin-bottom: 1.875rem;
}

.content-in-image-100 .content-in-image .content {
  position: relative;
  /* Note: backdrop-filter has minimal browser support */
  backdrop-filter: blur(30px);
  background-color: rgba(var(--vsm-white), 0.7);
  left: 0;
  bottom: -90px;
  z-index: 1;
  padding: 2.875rem;
}
@media (max-width: 767px) {
  .content-in-image-100 .content-in-image .content {
      background: linear-gradient(#dedede, white);  
}
    
}
@-moz-document url-prefix() {
  .content-in-image-100 .content-in-image .content {
    background: linear-gradient(#dedede, white);
  }
}

.content-in-image-100 .content-in-image .content .xxs-heading {
  font-size: 14px;
}

.content-in-image-100 .content-in-image .content .md-heading {
  color: #213e50;
}

.content-in-image-100 .content-in-image .content .secondary {
  color: #f5ad03;
}

.content-in-image-100 .content-in-image .media {
  position: absolute;
  top: 0;
  overflow: hidden;
  transform: scale(1);
  transition: all 300ms ease-in-out;
  width: 100%;
  height: 100%;
  /*
            &::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;
                width: 100%;
                height: 100%;
                background: #fff;
                background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#000));
                background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #000 100%);
                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#000000", GradientType=1);
            }*/
}

.content-in-image-100 .content-in-image .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-in-image-100 .content-in-image-small {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: visible;
  margin-bottom: 1.875rem;
}

.content-in-image-100 .content-in-image-small .content {
  position: relative;
  /* Note: backdrop-filter has minimal browser support */
  backdrop-filter: blur(30px);
  background-color: rgba(var(--vsm-white), 0.7);
  left: 0;
  bottom: -90px;
  z-index: 1;
  padding: 2.875rem;
}

@media (min-width: 1024px) {
  .content-in-image-100 .content-in-image-small .content {
    padding: 2.875rem 4.875rem 2.875rem 2.875rem;
  }
}
@media (max-width: 767px) {
      .content-in-image-100 .content-in-image-small .content {
      background: linear-gradient(#dedede, white);  
}
    
}
@-moz-document url-prefix() {
  .content-in-image-100 .content-in-image-small .content {
    background: linear-gradient(#dedede, white);
  }
}

.content-in-image-100 .content-in-image-small .content .xxs-heading {
  font-size: 14px;
}

.content-in-image-100 .content-in-image-small .content .md-heading {
  color: #213e50;
}

.content-in-image-100 .content-in-image-small .content .secondary {
  color: #f5ad03;
}

.content-in-image-100 .content-in-image-small .media {
  position: absolute;
  top: 0;
  overflow: hidden;
  transform: scale(1);
  transition: all 300ms ease-in-out;
  width: 100%;
  height: 100%;
  /*
            &::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;
                width: 100%;
                height: 100%;
                background: #fff;
                background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#000));
                background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #000 100%);
                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#000000", GradientType=1);
            }*/
}

.content-in-image-100 .content-in-image-small .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-in-image-100 .content-in-image:hover .media {
  transform: scale(0.98);
}

/* ------------------------------
end content-in-image-100
--------------------------------*/
/* ------------------------------
content-in-image-profile
--------------------------------*/
.content-in-image-profile {
  position: relative;
  height: auto;
}

.content-in-image-profile .col {
  position: relative;
  flex: 1 0 100%;
  justify-items: center;
  align-items: center;
}

.content-in-image-profile .content-in-image-small {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  overflow: visible;
  margin-bottom: 270px;
}

@media (min-width: 1024px) {
  .content-in-image-profile .content-in-image-small {
    margin-bottom: 310px;
  }
}

.content-in-image-profile .content-in-image-small .content {
  box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.03);
  position: relative;
  /* Note: backdrop-filter has minimal browser support 
  backdrop-filter: blur(30px);*/
  background-color: rgba(var(--vsm-white), 0.7);
  top: 210px;
  z-index: 1;
  padding: 1.75rem;
  position: relative;
  background-color: #ffffff;
}

@media (min-width: 1024px) {
  .content-in-image-profile .content-in-image-small .content {
    top: 240px;
  }
}

@-moz-document url-prefix() {
  .content-in-image-profile .content-in-image-small .content {
    background: linear-gradient(#dedede, white);
  }
}

.content-in-image-profile .content-in-image-small .content .xs-heading {
  color: #213e50;
}

.content-in-image-profile .content-in-image-small .content .job-title {
  font-size: 16px;
  font-weight: 500;
  font-family: "Lexend", sans-serif;
  color: #6d777d;
  margin-bottom: 0px;
}

.content-in-image-profile .content-in-image-small .content .profile-text {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .content-in-image-profile .content-in-image-small .content .profile-text {
    margin-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .content-in-image-profile .content-in-image-small .content .profile-text {
    margin-bottom: 90px;
  }
}

.content-in-image-profile .content-in-image-small .content .profile-list {
  font-family: "DM Sans", sans-serif;
  color: #6d777d;
  list-style-type: none;
  line-height: 26px;
  margin: 0px;
  padding-top: 1em;
  padding-left: 0px;
}

.content-in-image-profile .content-in-image-small .content .profile-list i {
  margin-right: 1em;
  width: 20px;
}

.content-in-image-profile .content-in-image-small .content .social-links {
  z-index: 9999;
  width: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 5px 0;
  margin: 0px;
  list-style: none;
}

@media (min-width: 768px) {
  .content-in-image-profile .content-in-image-small .content .social-links {
    justify-content: flex-end;
  }
}

.content-in-image-profile .content-in-image-small .content .social-links li .btn {
  color: #ffffff !important;
}

.content-in-image-profile .content-in-image-small .content .social-links li .btn a {
  color: #ffffff !important;
}

.content-in-image-profile .content-in-image-small .content .social-links a {
  display: block;
  width: auto;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1;
  margin-right: 10px;
  opacity: 1;
  color: #213e50;
}

@media (min-width: 768px) {
  .content-in-image-profile .content-in-image-small .content .social-links a {
    margin-right: 15px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.content-in-image-profile .content-in-image-small .content .social-links li:last-child a {
  margin-right: 0;
}

.content-in-image-profile .content-in-image-small .content .img {
  position: absolute;
  top: -145px;
  z-index: 1;
  opacity: 1;
  width: auto;
  vertical-align: top;
  margin: 0px auto;
  display: flex;
}

@media (min-width: 768px) {
  .content-in-image-profile .content-in-image-small .content .img {
    top: -60px;
  }
}

.content-in-image-profile .content-in-image-small .content .img img {
  border-radius: 100%;
  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 768px) {
  .content-in-image-profile .content-in-image-small .content .img img {
    width: 120px;
    height: 120px;
    object-fit: cover;
  }
}

.content-in-image-profile .content-in-image-small .media {
  position: absolute;
  top: 0;
  overflow: hidden;
  transform: scale(1);
  transition: all 300ms ease-in-out;
  width: 100%;
  height: 100%;
  /*
            &::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;
                width: 100%;
                height: 100%;
                background: #fff;
                background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#000));
                background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #000 100%);
                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#000000", GradientType=1);
            }*/
}

.content-in-image-profile .content-in-image-small .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-in-image-profile .content-in-image-small:hover .media {
  transform: scale(0.98);
}

/* ------------------------------
end content-in-image-profile
--------------------------------*/

.hero-md {
  height: 470px;
  width: 100%;
  aspect-ratio: 16/5;
  object-fit: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 0;
}

@media (min-width: 768px) {
  .hero-md {
    height: 350px;
  }
}

@media (min-width: 1200px) {
  .hero-md {
    height: 470px;
  }
}

.hero-md::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(-180deg, rgba(0, 0, 0, 0.7), rgba(126, 130, 122, 0.1) 70.71%);
  z-index: 2;
}

.hero-md .content {
  width: 80%;
  background: rgba(var(--vsm-white), 0.7);
  position: absolute;
  bottom: -90px;
  z-index: 9999;
}

@media (min-width: 1024px) {
  .hero-md .content {
    left: 90px;
  }
}

.hero-md .content h1 {
  color: #ffffff;
}

.hero-md .content h2 {
  color: #ffffff;
  text-transform: capitalize;
}

/*------------------------------
End hero-md
--------------------------------*/
/*------------------------------
podcasts
--------------------------------*/
.podcasts {
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .podcasts {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .podcasts {
    margin-top: 90px;
    margin-bottom: 90px;
  }
}

.podcasts .poster-img {
  width: 100%;
  height: auto;
  margin-bottom: 1em;
}

.podcasts .poster-img img {
  box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.2);
  width: 100%;
  height: min-255px;
  object-fit: cover;
}

.podcasts ul {
  margin-left: 0px;
  padding-left: 0px;
  margin-top: 1em;
  margin-bottom: 1em;
  list-style: none;
  display: -ms-flexbox;
  display: column;
  flex-direction: row;
}

.podcasts ul li {
  margin-left: 0px;
  padding-left: 0px;
  height: 2.5em;
}

.podcasts ul li a {
  text-decoration: none;
  color: #6f5af0;
  font-size: 14px;
  font-size: 1rem;
  font-weight: 700;
}

.podcasts ul li a i {
  width: 2em;
  color: #213e50;
  font-size: 20px;
  font-size: 1.25rem;
}

.podcasts .xs-heading {
  display: inline;
  margin-right: 1em;
}

.podcasts .podcast-controller {
  margin-top: 1em;
  margin-bottom: 1em;
  background-color: #ffffff;
  border: 1px solid #e8ebed;
  box-shadow: 0px 3px 30px 0px #213e5008;
}

.podcasts .podcast-controller label {
  font-size: small;
  color: #213e50;
  margin-right: 1em;
}

.podcasts .podcast-controller .date,
.podcasts .podcast-controller .time {
  font-size: small;
  color: #6d777d;
  opacity: 0.6;

}
.podcasts .podcast-controller a{
   text-decoration:none;   
}
.podcasts .podcast-controller a:hover{
   text-decoration: underline;   
}
.podcasts .podcast-controller p {
  color: #213e50;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2;

}

.podcasts .playpause {
  position: relative;
  z-index: 1;
}

.podcasts .playpause::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 1.875rem;
  height: 1.875rem;
  content: "";
  background-color: #213e50;
  border-radius: 100%;
}

.podcasts .playpause label {
  z-index: 2;
  position: relative;
  top: 0.25em;
  left: 0.8em;
  width: 0;
  height: 10px;
  border-color: transparent transparent transparent #ffffff;
  transition: 100ms all ease;
  cursor: pointer;
  border-style: solid;
  border-width: 6.5px 0 6.5px 10px;
}

.podcasts .playpause input[type="checkbox"] {
  position: absolute;
  left: -9999px;
}

.podcasts .playpause input[type="checkbox"]:checked + label {
  border-style: double;
  border-width: 0px 0 0px 10px;
}

.podcasts .playpause input[type="checkbox"]:focus + label {
  box-shadow: 0 0 0px lightblue;
}

.podcasts tag {
  color: #213e50;
  background-color: rgba(33, 62, 80, 0.16);
  font-size: small;
  padding: 5px 15px;
  line-height: 30px;
}

/*------------------------------
End podcasts
--------------------------------*/
/* ------------------------------
listing
--------------------------------*/
.listing {
  padding-top: 30px;
}

.listing .content {
  width: 100%;
  height: 100%;
  /* Note: backdrop-filter has minimal browser support */
  backdrop-filter: blur(10px);
}

.listing .content .xs-heading {
  color: #6d777d;
  display: flex;
  align-items: center;
}

.listing .content .xs-heading::after {
  content: "";
  flex: 1;
  margin-left: 1rem;
  height: 1.5px;
  background-color: #6d777d;
  opacity: 0.2;
}

.listing .slider-spacing {
  position: relative;
  padding-top: 10px;
}

.listing .slider-spacing .swiper-nav-container {
  position: relative;
  bottom: 0;
  right: 0;
  text-align: left;
  z-index: 10;
  margin-top: 1em;
}

.listing .swiper-wrapper {
  width: 100%;
}

.listing .swiper-slide {
  opacity: 0.15;
}

.listing .swiper-slide a {
  text-decoration: none !important;
  color: inherit;
}

.listing .swiper-slide a:hover {
  color: #6f5af0;
}

.listing .swiper-slide-active {
  opacity: 1;
}

.listing .team .swiper-slide-next {
  opacity: 1;
}

.listing .team-person {
  padding-bottom: 60px;
  position: relative;
  height: 255px;
  min-width: 255px;
}

.listing .team-person .img-container {
  position: relative;
  height: 210px;
  width: 100% !important;
  z-index: 2;
}

.listing .team-person .img-container .bg-img {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  opacity: 1;
  width: 100% !important;
  max-height: 132px;
}

.listing .team-person .img-container .bg-img img {
  width: 100% !important;
  height: 132px;
  object-fit: cover;
}

.listing .team-person .top {
  width: 100%;
  height: auto;
  top: 0;
  position: absolute;
}

.listing .team-person .middle {
  position: absolute;
  width: calc(100% - 30px);
  height: 100%;
  background-color: #ffffff;
  top: 100px;
  padding-bottom: 70px;
  position: relative;
  z-index: 2;
}

.listing .team-person .middle .person-img {
  left: 40%;
  position: absolute;
  top: -1em;
  z-index: 9999;
  opacity: 1;
  width: 90px;
  max-height: 90px;
}

@media (min-width: 320px) {
  .listing .team-person .middle .person-img {
    left: 35%;
  }
}

.listing .team-person .middle .person-img img {
  background-color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 100%;
  width: 90px;
  object-fit: cover;
}

.listing .team-person .bottom {
  position: absolute;
}

.listing .team-person .bottom::before {
  width: 100%;
  height: 100px;
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  display: inline-block;
  background: linear-gradient(#efefef, white);
  backdrop-filter: blur(10px);
}

.listing .team-person .copy {
  box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.03);
  text-align: center;
  width: calc(100%);
  position: relative;
  z-index: 3;
  left: 0;
  top: 90px;
  padding-left: 1em;
  padding-right: 1em;
}

.listing .team-person .copy p {
  font-size: small;
}

.listings {
  padding-top: 30px;
  position: relative;
}

.listings .profile-list {
  font-family: "DM Sans", sans-serif;
  color: #6d777d;
  list-style-type: none;
  line-height: 26px;
  margin: 0px;
  padding-top: 1em;
  padding-left: 0px;
}

.listings .profile-list i {
  margin-right: 1em;
  width: 20px;
}

@media (min-width: 1024px) {
  .listings .swiper-container {
    overflow: visible;
  }
}

.listings .swiper-slide {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.listings .swiper-slide-visible {
  opacity: 1;
}

.listings .swiper-wrapper {
  width: 100%;
  height: auto;
}

.listings .swiper-nav-container {
  position: relative;
  float: right;
  width: 80px;
  height: 50px;
  bottom: 0;
  right: 0;
  z-index: 10;
}

.listings .swiper-nav-container .swiper-button-prev {
  position: absolute;
  width: auto;
  height: 50px;
  display: inline-block;
  padding: 0;
}

.listings .swiper-nav-container .swiper-button-prev.swiper-button-disabled {
  opacity: 0.5;
}

.listings .swiper-nav-container .swiper-button-prev:after {
  content: "\f060";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #6f5af0;
  transition: all 250ms ease-in-out;
}

.listings .swiper-nav-container .swiper-button-prev:focus {
  outline: none;
}

.listings .swiper-nav-container .swiper-button-next {
  position: absolute;
  width: auto;
  height: 50px;
  display: inline-block;
  padding: 0;
}

.listings .swiper-nav-container .swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
}

.listings .swiper-nav-container .swiper-button-next:after {
  content: "\f061";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #6f5af0;
  transition: all 250ms ease-in-out;
}

.listings .swiper-nav-container .swiper-button-next:focus {
  outline: none;
}

.listings .swiper-nav-container .swiper-button-next-two,
.listings .swiper-nav-container .swiper-container-rtl .swiper-button-prev-two,
.listings .swiper-nav-container .swiper-button-next-three,
.listings .swiper-nav-container .swiper-container-rtl .swiper-button-prev-three {
  right: 10px;
  left: auto;
}

.listings .swiper-nav-container .swiper-button-next-two,
.listings .swiper-nav-container .swiper-button-prev-two,
.listings .swiper-nav-container .swiper-button-next-three,
.listings .swiper-nav-container .swiper-button-prev-three {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.listings .swiper-nav-container .swiper-button-prev-two {
  position: absolute;
  width: auto;
  height: 50px;
  display: inline-block;
  padding: 0;
}

.listings .swiper-nav-container .swiper-button-prev-two.swiper-button-disabled {
  opacity: 0.5;
}

.listings .swiper-nav-container .swiper-button-prev-two:after {
  content: "\f060";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #6f5af0;
  transition: all 250ms ease-in-out;
}

.listings .swiper-nav-container .swiper-button-prev-two:focus {
  outline: none;
}

.listings .swiper-nav-container .swiper-button-next-two {
  position: absolute;
  width: auto;
  height: 50px;
  display: inline-block;
  padding: 0;
}

.listings .swiper-nav-container .swiper-button-next-two.swiper-button-disabled {
  opacity: 0.5;
}

.listings .swiper-nav-container .swiper-button-next-two:after {
  content: "\f061";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #6f5af0;
  transition: all 250ms ease-in-out;
}

.listings .swiper-nav-container .swiper-button-next-two:focus {
  outline: none;
}

.listings .swiper-nav-container .swiper-button-prev-three {
  position: absolute;
  width: auto;
  height: 50px;
  display: inline-block;
  padding: 0;
}

.listings .swiper-nav-container .swiper-button-prev-three.swiper-button-disabled {
  opacity: 0.5;
}

.listings .swiper-nav-container .swiper-button-prev-three:after {
  content: "\f060";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #6f5af0;
  transition: all 250ms ease-in-out;
}

.listings .swiper-nav-container .swiper-button-prev-three:focus {
  outline: none;
}

.listings .swiper-nav-container .swiper-button-next-three {
  position: absolute;
  width: auto;
  height: 50px;
  display: inline-block;
  padding: 0;
}

.listings .swiper-nav-container .swiper-button-next-three.swiper-button-disabled {
  opacity: 0.5;
}

.listings .swiper-nav-container .swiper-button-next-three:after {
  content: "\f061";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #6f5af0;
  transition: all 250ms ease-in-out;
}

.listings .swiper-nav-container .swiper-button-next-three:focus {
  outline: none;
}

@media (min-width: 1200px) {
  .listings .swiper-button-disabled {
    display: none;
  }
}

.listings .people {
  position: relative;
  height: 100%;
  width: 100%;
  padding-bottom: 30px;
}

@media (min-width: 1024px) {
  .listings .people {
    padding-bottom: 60px;
  }
}

.listings .people .img-container {
  position: relative;
  height: 210px;
  width: 100%;
}

.listings .people .img-container .bg-img {
  top: 0px;
  left: 0px;
  z-index: 1;
  opacity: 1;
  width: 100%;
  max-height: 210px;
}

.listings .people .img-container .bg-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.listings .people .img-container .logo-img {
  position: absolute;
  top: 6em;
  left: 2em;
  z-index: 1;
  opacity: 1;
  width: auto;
  max-height: 30px;
}

.listings .people .img-container .logo-img img {
  width: 115px;
  object-fit: cover;
}

.listings .people .img-container .icon-img {
  position: absolute;
  bottom: 0em;
  right: 0em;
  z-index: 1;
  opacity: 1;
  width: auto;
  max-height: 30px;
}

.listings .people .img-container .icon-img img {
  width: 30px;
  height: 30px;
  object-fit: cover;
}

.listings .people .img-container .person-img {
  left: 40%;
  position: absolute;
  top: 6.5em;
  z-index: 9999;
  opacity: 1;
  width: 90px;
  max-height: 90px;
}

@media (min-width: 320px) {
  .listings .people .img-container .person-img {
    left: 35%;
  }
}

.listings .people .img-container .person-img img {
  background-color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 100%;
  width: 90px;
  height: 90px;
  object-fit: cover;
}

.listings .people .top {
  width: 100%;
  height: 150px;
  top: 0;
  position: relative;
}

.listings .people .middle {
  box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.03);
  width: calc(100% - 30px);
  height: calc(100% - 154px);
  margin-top: 0px;
  padding-bottom: 70px;
  position: relative;
  z-index: 2;
}

.listings .people .middle::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  z-index: 1;
  left: -1px;
  top: 0;
  display: block;
  /* Note: backdrop-filter has minimal browser support */
  backdrop-filter: blur(10px);
  background-color: rgba(var(--vsm-white), 0.7);
}

@-moz-document url-prefix() {
  .listings .people .middle {
    width: calc(100% - 30px);
    height: calc(100% - 154px);
    margin-top: 0px;
    padding-bottom: 70px;
    position: relative;
    z-index: 2;
    background: linear-gradient(#efefef, white);
  }
}

.listings .people .buttons {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  padding-left: 2em;
  padding-right: 2em;
  bottom: 2em;
  z-index: 9999;
}

.listings .people .buttons .btn {
  padding: 0.3125rem 0.9375rem;
}

@media (min-width: 1400px) {
  .listings .people .buttons .btn {
    padding: 0.625rem 1.875rem;
  }
}

.listings .people .copy {
  width: calc(100% - 30px);
  position: relative;
  z-index: 3;
  padding-top: 4em;
  padding-left: 2em;
  padding-bottom: 3em;
}

/* ------------------------------
End listing
--------------------------------*/
/*-------------------------------
Timeline slider
-------------------------*/
/* Transitions
*************************************/
.timeline-slider .timeline-button-next,
.timeline-slider .timeline-button-prev {
  transition: all 0.2s ease-in-out;
}

.timeline-slider .timeline-dates .swiper-slide:after,
.timeline-slider .timeline-dates .swiper-slide div {
  transition: all 0.3s ease-in-out;
}

.timeline-slider .timeline {
  position: relative;
  padding-bottom: 80px;
  overflow: visible;
  /* Arrows */
}

.timeline-slider .timeline .timeline-buttons-container {
  position: absolute;
  z-index: 1;
  bottom: 0px;
  left: 0;
}

.timeline-slider .timeline .timeline-button-prev {
  left: 0;
  bottom: 0;
  position: absolute;
  width: 50px;
  height: 50px;
  display: inline-block;
  padding: 0;
}

.timeline-slider .timeline .timeline-button-prev.swiper-button-disabled {
  opacity: 0.5;
}

.timeline-slider .timeline .timeline-button-prev:after {
  content: "\f060";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #67b8c3;
  transition: all 250ms ease-in-out;
}

.timeline-slider .timeline .timeline-button-prev:focus {
  outline: none;
}

.timeline-slider .timeline .timeline-button-next {
  text-align: left;
  position: absolute;
  width: 50px;
  height: 50px;
  display: inline-block;
  left: 3em;
  bottom: 0;
  padding: 0;
}

.timeline-slider .timeline .timeline-button-next.swiper-button-disabled {
  opacity: 0.5;
}

.timeline-slider .timeline .timeline-button-next:after {
  content: "\f061";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #67b8c3;
  transition: all 250ms ease-in-out;
}

.timeline-slider .timeline .timeline-button-next:focus {
  outline: none;
}

.timeline-slider .timeline .timeline-thumbs {
  padding: 0.5rem 0;
  box-sizing: border-box;
  margin: 3rem 0 2rem;
  overflow: hidden;
}
@media (min-width: 768px) {
 .timeline-slider .timeline .timeline-thumbs {
  padding: 0.5rem 0;
  box-sizing: border-box;
  margin: 3rem 0 2rem;
  overflow: visible;
}   
}
.timeline-slider .timeline .timeline-thumbs .swiper-slide {
  color: #fff;
  cursor: pointer;
  font-family: "Times New Roman", serif;
  font-weight: bold;
  font-style: italic;
  min-height: 37px;
  width: 100%;
  height: auto;
}

.timeline-slider .timeline .timeline-thumbs .swiper-slide img {
  width: 100% !important;
  margin-bottom: 2em;
  height: 225px;
  object-fit: cover;
}

.timeline-slider .timeline .timeline-thumbs .swiper-slide div {
  scale: 0.8;
  opacity: 0.7;
  top: 0;
  transform: scale(0.8);
}

.timeline-slider .timeline .timeline-thumbs .swiper-slide-prev {
  opacity: 0 !important;
  overflow-x: hidden;
  top: 0;
}
.timeline-slider .timeline .timeline-thumbs.swiper-container:after {
  content: "";
  width: 100vw;
  height: 2px;
  position: absolute;
  bottom: 0rem;
  opacity: 0.5;
  border-bottom: 2px solid #213e50;
}

@media (min-width: 768px) {
.timeline-slider .timeline .timeline-thumbs.swiper-container:after {
  content: "";
  width: 100vw;
  height: 2px;
  position: absolute;
  bottom: -0.2rem;
  opacity: 0.5;
  border-bottom: 2px solid #213e50;
}
}

.timeline-slider .timeline .timeline-thumbs .swiper-slide:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: 0;
  background-color: #213e50;
  border-radius: 100%;
  left: 48.5%;
  margin-right: -50%;
  transform: translateY(-50%);
}

.timeline-slider .timeline .timeline-thumbs .swiper-slide-active:after {
  background-color: #67b8c3;
}

.timeline-slider .timeline .timeline-thumbs .swiper-slide:before {
  opacity: 0.5;
  content: "";
  width: 1px;
  height: 20px;
  position: absolute;
  bottom: -20px;
  background-color: #213e50;
  border-radius: 0%;
  left: 50%;
  margin-right: -50%;
  transform: translateY(-50%);
}

.timeline-slider .timeline .timeline-thumbs .swiper-slide-before:after {
  background-color: #67b8c3;
}

.timeline-slider .timeline .timeline-thumbs .swiper-slide-thumb-active div {
  scale: 1;
   transform: scale(1);
  opacity: 1;

}
/*
.timeline-slider .timeline .timeline-dates {
  padding: 0.5rem 0;
  box-sizing: border-box;
  margin: 3rem 0 2rem;
  overflow: visible;
}

.timeline-slider .timeline .timeline-dates .swiper-slide {
  color: #fff;
  cursor: pointer;
  font-family: "Times New Roman", serif;
  font-weight: bold;
  font-style: italic;
  min-height: 37px;
  width: 100%;
  height: auto;
}

.timeline-slider .timeline .timeline-dates .swiper-slide img {
  width: 100% !important;
  margin-bottom: 2em;
      height: 240px;
    object-fit: cover;
}

.timeline-slider .timeline .timeline-dates .swiper-slide div {
  transform: scale(0.8);
  opacity: 0.7;
  top: 0;
}

.timeline-slider .timeline .timeline-dates .swiper-slide-active div {
  transform: scale(1);
  opacity: 1;
  top: 0;
}


.timeline-slider .timeline .timeline-dates.swiper-container:after {
  content: "";
  width: 100vw;
  height: 2px;
  position: absolute;
  bottom: -0.2rem;
  opacity: 0.5;
  border-bottom: 2px solid #213e50;
}

.timeline-slider .timeline .timeline-dates .swiper-slide:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: 0;
  background-color: #213e50;
  border-radius: 100%;
  left: 49%;
  margin-right: -50%;
  transform: translateY(-50%);
}

.timeline-slider .timeline .timeline-dates .swiper-slide-active:after {
  background-color: #67b8c3;
}

.timeline-slider .timeline .timeline-dates .swiper-slide:before {
  opacity: 0.5;
  content: "";
  width: 1px;
  height: 20px;
  position: absolute;
  bottom: -20px;
  background-color: #213e50;
  border-radius: 0%;
  left: 50%;
  margin-right: -50%;
  transform: translateY(-50%);
}

.timeline-slider .timeline .timeline-dates .swiper-slide-before:after {
  background-color: #67b8c3;
}*/

.timeline-slider .timeline .timeline-contents h6,
.timeline-slider .timeline .timeline-contents .xxs-heading {
  color: #67b8c3;
}

.timeline-slider .timeline .timeline-contents .swiper-slide {
  opacity: 0.2;
  padding: 3rem;
}

.timeline-slider .timeline .timeline-contents .swiper-slide-active {
  background-color: #ffffff;
  border-radius: 0.75rem;
  opacity: 1;
  padding: 3rem;
}

/*------------------------------------
End timeline slider
--------------------------------*/
/*----------------------------------
mosaic
----------------------------------*/
.mosaic .img-container {
  position: relative;
  display: inline-block;
  z-index: 1;
  width: 100%;
  vertical-align: top;
  margin: 0px auto;
}

.mosaic .img-container img {
  height: 290px;
  width: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .mosaic .img-container img {
    height: 610px;
  }
}

.mosaic .img-small-container {
  position: relative;
  display: inline-block;
  z-index: 1;
  width: 100%;
  height: auto;
  vertical-align: top;
  margin: 0px auto;
}

.mosaic .img-small-container img {
  width: 100%;
  height: 292px;
  object-fit: cover;
}

/*----------------------------------
end mosaic
----------------------------------*/
/*----------------------------------
mosaic 2
----------------------------------*/
.mosaic-2 .img-container {
  position: relative;
  display: inline-block;
  z-index: 1;
  width: 100%;
  vertical-align: top;
  margin: 0px auto;
}

.mosaic-2 .img-container img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .mosaic-2 .img-container img {
    height: 441px;
  }
}

.mosaic-2 .img-small-container {
  position: relative;
  display: inline-block;
  z-index: 1;
  width: 100%;
  height: auto;
  vertical-align: top;
  margin: 0px auto;
}

.mosaic-2 .img-small-container img {
  width: 100%;
  height: 209px;
  object-fit: cover;
}

/*----------------------------------
end mosaic 2
----------------------------------*/
/*----------------------------------
locations
----------------------------------*/
.locations {
  padding-top: 30px;
  position: relative;
}

.locations .sm-heading {
  display: inline-block;
  margin-right: 1em;
}
.locations .swiper-container-autoheight, 
.swiper-container-autoheight .swiper-slide {
    height: 100%;
    overflow: hidden;
}

.locations .swiper-wrapper {
  width: 100%;
  height: auto;
}

.locations .swiper-slide {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  height: 100%;
}

.locations .swiper-button-prev {
  left: 0;
  bottom: 0;
  position: relative;
  width: auto;
  height: 50px;
  display: inline-block;
  padding: 0;
}

.locations .swiper-button-prev.swiper-button-disabled {
  opacity: 0.5;
}

.locations .swiper-button-prev:after {
  content: "\f060";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #6f5af0;
  transition: all 250ms ease-in-out;
}

.locations .swiper-button-prev:focus {
  outline: none;
}

.locations .swiper-button-next {
  text-align: left;
  position: relative;
  width: auto;
  height: 50px;
  display: inline-block;
  right: 0em;
  padding: 0;
}

.locations .swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
}

.locations .swiper-button-next:after {
  content: "\f061";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #6f5af0;
  transition: all 250ms ease-in-out;
}

.locations .swiper-button-next:focus {
  outline: none;
}

.locations .swiper-nav-container {
  width: auto;
  margin-top: 1em;
  position: relative;
}

.locations .swiper-nav-container .swiper-pagination {
  position: relative;
  display: inline-block;
  top: 0;
  left: 0em;
  text-align: left;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  width: auto;
  padding: 0em 1em 0em 1em;
}

.locations .swiper-nav-container .swiper-pagination-bullets {
  text-align: center;
}

.locations .swiper-nav-container .swiper-pagination-bullet {
  margin: 5px 5px 0px 5px;
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
  color: #4c9354;
  background-color: #6f5af0 !important;
  border-radius: 0px;
  width: 6px;
  height: 6px;
  opacity: 0.3;
}

.locations .swiper-nav-container .swiper-pagination-bullet-active {
  opacity: 1;
  width: 26px;
  border-radius: 20px;
  height: 6px;
  color: #6f5af0 !important;
  background-color: #6f5af0 !important;
  border-radius: none !important;
}

@media (min-width: 1200px) {
  .locations .swiper-button-disabled {
    opacity: 0.7;
  }
    .locations .swiper-nav-container {
    opacity: 0;
  }
}

.locations .places {
  position: relative;
  height: 100%;
  width: 100%;
  padding-bottom: 30px;
}

@media (min-width: 1024px) {
  .locations .places {
    padding-bottom: 60px;
  }
}

.locations .places .img-container {
  position: relative;
  height: 222px;
  width: 100%;
}

.locations .places .img-container .bg-img {
  top: 0px;
  left: 0px;
  z-index: 1;
  opacity: 1;
  width: 100%;
  max-height: 210px;
}

.locations .places .img-container .bg-img img {
  width: 100%;
  height: 222px;
  object-fit: cover;
}

.locations .places .img-container .logo-img {
  position: absolute;
  top: 6em;
  left: 2em;
  z-index: 1;
  opacity: 1;
  width: auto;
  max-height: 30px;
}

.locations .places .img-container .logo-img img {
  width: 115px;
  object-fit: cover;
}

.locations .places .img-container .icon-img {
  position: absolute;
  bottom: 0em;
  right: 0em;
  z-index: 1;
  opacity: 1;
  width: auto;
  max-height: 30px;
}

.locations .places .img-container .icon-img img {
  width: 30px;
  height: 30px;
  object-fit: cover;
}

.locations .places .top {
  width: 100%;
  height: 190px;
  top: 0;
  position: relative;
}

.locations .places .middle {
  box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.03);
  width: calc(100% - 30px);
  height: calc(100% - 210px);
  margin-top: 0px;
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
      .locations .places .middle{
     background: linear-gradient(#efefef, white);  }
}
.locations .places .middle::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  z-index: 1;
  left: -1px;
  top: 0;
  display: block;
  /* Note: backdrop-filter has minimal browser support */
  backdrop-filter: blur(10px);
  background-color: rgba(var(--vsm-white), 0.7);
}

@-moz-document url-prefix() {
  .locations .places .middle {
    width: calc(100% - 30px);
    height: calc(100% - 210px);
    margin-top: 0px;
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
    background: linear-gradient(#efefef, white);
  }
}

.locations .places .buttons {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  padding-left: 2em;
  padding-right: 2em;
  bottom: 2em;
  z-index: 9999;
}

.locations .places .buttons .btn {
  padding: 0.3125rem 0.9375rem;
}

@media (min-width: 1024px) {
  .locations .places .buttons .btn {
    padding: 0.625rem 1.875rem;
  }
}

.locations .places .copy {
  width: calc(100% - 30px);
  position: relative;
  z-index: 3;
  padding-top: 2em;
  padding-left: 2em;
  padding-bottom: 3em;
}

/*---------------------------------
end locations
----------------------------------*/
/*----------------------------
Intro with split text
-----------------------------*/
.intro-with-split-text {
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
  left: 0;
  z-index: 1;
  padding: 2.875rem;
}

@media (min-width: 768px) {
  .intro-with-split-text {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .intro-with-split-text {
    margin-top: 90px;
    margin-bottom: 90px;
  }
}

.intro-with-split-text .md-heading {
  color: #213e50;
}

.intro-with-split-text .primary {
  color: #4c9354;
}

.intro-with-split-text .img {
  max-width: 280px;
  height: auto;
}

.intro-with-split-text .img img {
  filter: grayscale(1);
  opacity: 0.7;
  width: auto;
  height: 60px;
  object-fit: cover;
  object-position: center;
}

.intro-with-split-text .img img:hover {
  opacity: 1 !important;
  filter: grayscale(0);
}

/*----------------------------
end intro with split text
-----------------------------*/
/*------------------------------
cta-content-image-40-60 
--------------------------------*/
.cta-content-image-40-60 {
  position: relative;
  margin-top: 30px;
}

.cta-content-image-40-60 .bg {
  background-color: #ffffff;
}

@media (min-width: 768px) {
  .cta-content-image-40-60 {
    margin-top: 60px;
  }
}

@media (min-width: 1024px) {
  .cta-content-image-40-60 {
    margin-top: 90px;
  }
}

.cta-content-image-40-60 .content {
  padding-top: 30px;
}

@media (min-width: 768px) {
  .cta-content-image-40-60 .content {
    padding-top: 0px;
  }
}

.cta-content-image-40-60 .xs-heading {
  color: #6f5af0;
  font-size: 14px;
  font-weight: 600;
}

.cta-content-image-40-60 .media {
  margin-bottom: 30px;
  border-radius: 0px;
  overflow: hidden;
  top: 0px;
  margin-top: 2em;
}

.cta-content-image-40-60 .media img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .cta-content-image-40-60 .media img {
    margin-bottom: 0px;
    top: -60px;
    width: 100%;
    height: 352px;
  }
}

@media (min-width: 768px) {
  .cta-content-image-40-60 .media {
    top: -60px;
  }
}

@media (min-width: 1400px) {
  .cta-content-image-40-60 .media {
    top: -90px;
  }
}

/*-------------------------------
end cta content image 40 /60 
---------------------------------*/
/*------------------------------
Intro text
--------------------------------*/
.intro-text {
  position: relative;
  margin-top: 20px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .intro-text {
    margin-top: 30px;
    margin-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .intro-text {
    margin-top: 60px;
    margin-bottom: 90px;
  }
}

.intro-text-alt {
  position: relative;
  margin-top: 20px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .intro-text-alt {
    margin-top: 30px;
    margin-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .intro-text-alt {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

.intro-text-fifty-fifty-images .media {
  height: 15.938rem;
  width: 100%;
}

.intro-text-fifty-fifty-images .media img {
  width: 100%;
}

/*--------------------------------
end intro text
---------------------------------*/
/*------------------------------
benefit-overlay
--------------------------------*/
.benefit-overlay {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .benefit-overlay {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .benefit-overlay {
    margin-top: 70px;
    margin-bottom: 70px;
  }
}

.benefit-overlay .col-md-4:nth-child(1) .xs-heading {
  color: #4c9354;
}

.benefit-overlay .col-md-4:nth-child(2) .xs-heading {
  color: #f5ad03;
}

.benefit-overlay .col-md-4:nth-child(3) .xs-heading {
  color: #67b8c3;
}

.benefit-overlay .col-md-4 .content {
  margin-bottom: 1rem;
  padding: 4rem 2rem 3rem 2rem;
  background-color: #ffffff;
  box-shadow: 0px -3px 30px rgba(33, 62, 80, 0.03);
}

@media (min-width: 768px) {
  .benefit-overlay .col-md-4 .content {
    margin-bottom: 0rem;
    height: 340px;
  }
}

/*-----------------------------
End benefit-overlay
------------------------------*/
/*------------------------------
benefits
--------------------------------*/
.benefits {
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .benefits {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .benefits {
    padding-top: 60px;
    margin-top: 90px;
    margin-bottom: 90px;
  }
}

.benefits .flex-container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1.5rem;
}

.benefits .benefit {
  margin-top: 40px;
  position: relative;
  background-color: rgba(var(--vsm-white), 1);
  box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.03);
  width: 100%;
}

@media (min-width: 768px) {
  .benefits .benefit {
    width: 48%;
  }
}

@media (min-width: 1024px) {
  .benefits .benefit {
    width: 31%;
  }
}

.benefits .content .toptext {
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .benefits .content .toptext {
    margin-top: 1.5rem;
  }
}

.benefits .content .toptext p {
  font-family: "DM Sans", sans-serif;
}

@media (min-width: 768px) {
  .benefits .content .job-title {
    min-height: 50px;
  }
}

.benefits .content .img {
  background-color: #dbe9dd;
  position: absolute;
  top: -30px;
  z-index: 1;
  opacity: 1;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits .content .img img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

/*------------------------------
End benefits 
--------------------------------*/
/*------------------------------
apply 
--------------------------------*/
.apply {
  position: relative;
}

.apply::before {
  z-index: 0;
  width: 300px;
  height: 300px;
  content: "";
  position: absolute;
  left: 70%;
  bottom: 5px;
  background-image: url(../img/bg-elements/G.svg);
  background-repeat: no-repeat;
  opacity: 0.03;
}

.apply .bg-white {
  background-color: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .apply .bg-white {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .apply .bg-white {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

.apply .bg-none {
  background-color: transparent;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .apply .bg-none {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .apply .bg-none {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

.apply .content {
  padding-top: 30px;
}

@media (min-width: 768px) {
  .apply .content {
    padding-top: 0px;
  }
}

.apply .xs-heading {
  color: #6f5af0;
  font-size: 14px;
  font-weight: 600;
}

/*------------------------------
End apply 
--------------------------------*/
/*------------------------------
contact 
--------------------------------*/
.contact {
  position: relative;
}


@media (min-width: 1024px) {
  .contact::before {
    z-index: 0;
    width: 300px;
    height: 300px;
    content: "";
    position: absolute;
    left: 70%;
    bottom: 5px;
    background-image: url(../img/bg-elements/G.svg);
    background-repeat: no-repeat;
    opacity: 0.03;
  }
}

.contact .bg {
  background-color: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .contact .bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .contact .bg {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

.contact .content {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .contact .content {
    padding-top: 0px;
    padding-bottom:0px;
  }
}

.contact .xs-heading {
  font-size: 14px;
  font-weight: 600;
}

.contact .xs-heading.primary {
  color: #4c9354;
}

.contact .xs-heading.secondary {
  color: #6f5af0;
}

.contact .xs-heading.tertiary {
  color: #67b8c3;
}

.contact .social-links {
  width: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 5px 0;
  margin: 0px;
  list-style: none;
}

.contact .social-links li a {
  display: block;
  width: auto;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1;
  margin-right: 30px;
  opacity: 1;
  color: #213e50;
}

.contact .social-links li a:hover {
  opacity: 0.6;
}

@media (min-width: 768px) {
  .contact .social-links li a {
    margin-right: 15px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.contact .social-links li:last-child a {
  margin-right: 0;
}
/*------------------------------
End contact 
--------------------------------*/
/*------------------------------
contact-alt 
--------------------------------*/
.contact-alt {
  position: relative;
}

.contact-alt .bg-g::before {
  z-index: 0;
  width: 300px;
  height: 300px;
  content: "";
  position: absolute;
  left: 70%;
  bottom: 5px;
  background-image: url(../img/bg-elements/G.svg);
  background-repeat: no-repeat;
  opacity: 0.03;
}

.contact-alt .bg {
  background-color: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .contact-alt .bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .contact-alt .bg {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

.contact-alt .bg-none {
  background-color: transparent;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .contact-alt .bg-none {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .contact-alt .bg-none {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

.contact-alt .xs-heading {
  font-size: 14px;
  font-weight: 600;
}

.contact-alt .xs-heading.primary {
  color: #4c9354;
}

.contact-alt .xs-heading.secondary {
  color: #6f5af0;
}

.contact-alt .xs-heading.tertiary {
  color: #67b8c3;
}

.contact-alt .email a {
  color: #213e50 !important;
  text-decoration: none;
}

.contact-alt .email a:hover {
  text-decoration: underline;
}

.contact-alt .social {
  display: block;
  width: 100%;
  margin-bottom: 0 !important;
}

.contact-alt .social-links {
  width: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 5px 0;
  margin: 0px;
  list-style: none;
}

.contact-alt .social-links li a {
  display: block;
  width: auto;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1;
  margin-right: 30px;
  opacity: 1;
  color: #213e50;
}

.contact-alt .social-links li a:hover {
  opacity: 0.6;
}

@media (min-width: 768px) {
  .contact-alt .social-links li a {
    margin-right: 15px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.contact-alt .social-links li:last-child a {
  margin-right: 0;
}

.contact-alt .content {
  padding-top: 30px;
}

@media (min-width: 768px) {
  .contact-alt .content {
    padding-top: 0px;
  }
}

.contact-alt .xs-heading {
  color: #4c9354;
  font-size: 14px;
  font-weight: 600;
}

.contact-alt .pb {
  padding-top: 3.75rem;
  /*60px;*/
  padding-bottom: 1rem;
  /*60px;*/
}

@media (min-width: 768px) {
  .contact-alt .pb {
    padding-top: 0rem;
    /*60px;*/
    padding-bottom: 3.75rem;
    /*60px;*/
  }
}

/*------------------------------
End contact 
--------------------------------*/
/*------------------------------
testimonial 
--------------------------------*/
.testimonial {
  position: relative;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .testimonial {
    padding-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .testimonial {
    padding-bottom: 90px;
  }
}

.testimonial::after {
  width: 50vw;
  height: 750px;
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: -200px;
  display: inline-block;
  background-image: url(../img/bg-elements/map-2-dark-1.svg);
}

.testimonial .img-container {
  filter: drop-shadow(0px 6px 30px rgba(33, 62, 80, 0.12));
}

.testimonial .img-container img {
  width: 100%;
  max-height: 445px;
  object-fit: cover;
}
.testimonial blockquote {
  position: relative;
  font-family: "DM Sans", sans-serif;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: left;
  color: #213e50;
  margin-top: 3rem;
  margin-bottom: 4rem;
  display: block;
  padding-left: 0;
}

@media (min-width: 768px) {
.testimonial blockquote {
  position: relative;
  font-family: "DM Sans", sans-serif;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: left;
  color: #213e50;
  margin-top: 3rem;
  margin-bottom: 4rem;
  display: block;
  padding-left: 0;
}
}


.testimonial blockquote:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -2rem;
  height: 100%;
  width: 100%;
  width: 26px;
  line-height: 100%;
  background-image: url("/img/icons/quote.svg");
  background-repeat: no-repeat;
}

.testimonial .name {
  font-family: "Lexend", sans-serif;
  font-size: 18px;
  color: #213e50;
  font-weight: 600;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.testimonial .job-title {
  margin-right: 1em;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.testimonial .job-title,
.testimonial .location {
  display: inline-block;
  font-family: "Lexend", sans-serif;
  font-size: 16px;
  color: #213e50;
  font-weight: 500;
}

/*--------------------------------
end testimonials
--------------------------------*/
/*--------------------------------
content in image with logo
---------------------------------*/
.content-in-image-50-50-with-logo header {
  text-align: left;
}

.content-in-image-50-50-with-logo .inner-body {
  margin-top: 35px;
}

.content-in-image-50-50-with-logo .col {
  position: relative;
  flex: 1 0 100%;
  justify-items: center;
  align-items: center;
}

@media (min-width: 768px) {
  .content-in-image-50-50-with-logo .col {
    flex: 1 0 50%;
  }
}

.content-in-image-50-50-with-logo .content-in-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: 1.875rem;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.content-in-image-50-50-with-logo .content-in-image .media {
  position: absolute;
  top: 0;
  overflow: hidden;
  transform: scale(1.1);
  transition: all 300ms ease-in-out;
  width: 100%;
  height: 100%;
}

.content-in-image-50-50-with-logo .content-in-image .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-in-image-50-50-with-logo .content-in-image .media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  background: linear-gradient(180deg, rgba(33, 62, 80, 0) 0%, #213e50 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#213E50", GradientType=1);
}

.content-in-image-50-50-with-logo .content-in-image .content {
  position: relative;
  z-index: 1;
  padding: 3rem;
}

.content-in-image-50-50-with-logo .content-in-image .content .logo {
  max-height: 55px;
  margin-bottom: 1rem;
  position: relative;
}

.content-in-image-50-50-with-logo .content-in-image .content .logo img {
  width: auto;
  max-height: 55px;
  object-fit: cover;
}

.content-in-image-50-50-with-logo .content-in-image .content .btn-link {
  color: #ffffff;
}

.content-in-image-50-50-with-logo .content-in-image .content .md-heading {
  margin-bottom: 1rem;
  color: #ffffff;
}

.content-in-image-50-50-with-logo .content-in-image .content .rte {
  color: #ffffff;
}

.content-in-image-50-50-with-logo .content-in-image .content .rte p,
.content-in-image-50-50-with-logo .content-in-image .content .rte li,
.content-in-image-50-50-with-logo .content-in-image .content .rte dd {
  color: #fff;
}

.content-in-image-50-50-with-logo .content-in-image:hover .media {
  transform: scale(1);
}

/*--------------------------------
case-studies
---------------------------------*/
.case-studies {
  margin-bottom: 3em;
}

.case-studies .flex-container {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.case-studies .study {
  position: relative;
  box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.03);
  background-color: #ffffff;
  flex: auto;
}

@media (min-width: 768px) {
  .case-studies .study {
    flex: 0 0 48%;
  }
}

@media (min-width: 1024px) {
  .case-studies .study {
    flex: 0 0 31%;
  }
}

@media (min-width: 1400px) {
  .case-studies .study {
    flex: 0 0 23%;
  }
}

.case-studies .img {
  top: 0px;
  left: 0px;
  z-index: 1;
  opacity: 1;
  width: 100%;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-studies .img img {
  width: 195px;
  height: 75px;
  object-fit: contain;
}

.case-studies .content {
  padding: 0px 1rem 5rem 1rem;
}

.case-studies .content .toptext {
  border-top: 2px solid #e5e7e9;
  padding-top: 1.5rem;
}

.case-studies .content .button {
  position: absolute;
  bottom: 1em;
}

/*---------------------------------
end case studies
----------------------------------*/
/*--------------------------------
case-studies-alt
---------------------------------*/
.case-studies-alt .flex-container {
  margin-top: 6em;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.case-studies-alt .study {
  position: relative;
  box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.03);
  background-color: #ffffff;
  flex: auto;
}

@media (min-width: 768px) {
  .case-studies-alt .study {
    flex: 0 0 48%;
  }
}

@media (min-width: 1024px) {
  .case-studies-alt .study {
    flex: 0 0 31%;
  }
}

@media (min-width: 1400px) {
  .case-studies-alt .study {
    flex: 0 0 31%;
  }
}

.case-studies-alt .img {
  top: 0px;
  left: 0px;
  z-index: 1;
  opacity: 1;
  width: 100%;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-studies-alt .img img {
  width: 195px;
  height: 75px;
  object-fit: contain;
}

.case-studies-alt .content {
  padding: 0px 1rem 2rem 1rem;
}

.case-studies-alt .content .toptext label {
  font-size: 10px;
  font-size: 0.625rem;
}

.case-studies-alt .content .button {
  position: absolute;
  bottom: 1em;
}

/*---------------------------------
end case studies
----------------------------------*/
/*----------------------------
text-left-logo-right
-----------------------------*/
.text-left-logo-right {
  position: relative;
  margin-top: 20px;
  margin-bottom: 30px;
  left: 0;
  z-index: 1;
  padding: 0rem;
}

@media (min-width: 768px) {
  .text-left-logo-right {
    margin-top: 40px;
    margin-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .text-left-logo-right {
    margin-top: 60px;
    margin-bottom: 90px;
  }
}

.text-left-logo-right .md-heading {
  color: #213e50;
}

.text-left-logo-right .primary {
  color: #4c9354;
}

.text-left-logo-right .content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.text-left-logo-right .content .img {
  max-width: 270px;
  height: auto;
  padding-top: 2em;
  padding-bottom: 2em;
}

.text-left-logo-right .content .img img {
  width: auto;
  height: 100px;
  object-fit: contain;
}

/*------------------------------
end text left logo right
------------------------------*/
/*----------------------------
split-content-50-50
-----------------------------*/
.split-content-50-50 {
  position: relative;
  margin-top: 20px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .split-content-50-50 {
    margin-top: 40px;
    margin-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .split-content-50-50 {
    margin-top: 60px;
    margin-bottom: 90px;
  }
}

/*----------------------------
end split content 50 50
-----------------------------*/
/*----------------------------
results
-----------------------------*/
.results {
  /*Line
    .timeline > li::before {
        content: "";
        position: absolute;
        width: 1px;
        background-color: $primary-colour;

        top: 0;
        bottom: 0;
        left: -19px;
    }*/
  /*Circle*/
  /*Content*/
}

.results .bg {
  background-color: #ffffff;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  .results .bg {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .results .bg {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.results .sub-heading {
  color: #67b8c3;
}

.results .xxs-heading {
  margin-bottom: 1.5em;
}

.results .timeline {
  position: relative;
  z-index: 1;
}

.results .timeline p {
  margin-bottom: 1.5em;
  text-align: left;
  color: #6d777d;
  font-weight: 100;
}

.results .timeline > li::after {
  text-align: center;
  z-index: 10;
  content: counters(name, ".", decimal);
  position: absolute;
  width: 50px;
  height: 30px;
  border-right: 1px solid #67b8c3;
  top: 0;
  left: -43px;
}

.results .timeline > li {
  counter-increment: name;
  padding: 0px 30px;
  margin-left: 0px;
  min-height: 70px;
  position: relative;
  list-style: none;
  font-weight: 600;
  color: #67b8c3;
}

.results .timeline > li:nth-last-child(1)::before {
  width: 0px;
}

/*----------------------------
end results
-----------------------------*/
/*----------------------------
container-cta
-----------------------------*/
/*----------------------------
container-cta
-----------------------------*/
.container-cta {
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .container-cta {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .container-cta {
    margin-top: 90px;
    margin-bottom: 90px;
  }
}

.container-cta .call-to-action .bg {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(var(--vsm-tertiary-colour), 0.8);
}

.container-cta .call-to-action .bg img::after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: inline-block;
  background-image: inherit;
  background-repeat: repeat;
  background: rgba(103, 184, 195, 0.8);
  filter: blur(30px);
}

.container-cta .call-to-action .content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  padding: 5rem;
}

.container-cta .call-to-action .person {
  display: flex;
  align-items: center;
}

.container-cta .call-to-action .person .img {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 100em;
}

.container-cta .call-to-action .person .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container-cta .call-to-action .person p {
  margin: 0px;
  padding: 0px;
  color: #ffffff;
}

.container-cta .call-to-action .person .name {
  font-size: 20px;
  font-size: 1.25rem;
  text-transform: capitalize;
}

.container-cta .call-to-action .person .job-title {
  font-size: 16px;
  font-size: 1rem;
  text-transform: capitalize;
}

.container-cta .call-to-action q {
  position: relative;
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0em;
  text-align: left;
  color: #ffffff;
  margin-bottom: 3rem;
  display: block;
  padding-left: 25px;
  font-size: 18px;
  font-size: 1.125rem;
}

.container-cta .call-to-action q::after {
  position: absolute;
 right: -1rem;
bottom: 0;
  font-size: 34px;
  font-size: 2.125rem;
  line-height: 32px;
}

.container-cta .call-to-action q::before {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 34px;
  font-size: 2.125rem;
  line-height: 32px;
}

/*----------------------------
end container-cta
/*----------------------------
end container-cta
-----------------------------*/
/*------------------------------
sector-areas
--------------------------------*/
.sector-areas {
  position: relative;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .sector-areas {
    margin-top: 60px;
  }
}

@media (min-width: 1024px) {
  .sector-areas {
    padding-top: 60px;
    margin-top: 90px;
  }
}

.sector-areas .flex-container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: start;
  gap: 1.5rem;
}

.sector-areas .area {
  margin-top: 40px;
  border-radius: 5px;
  position: relative;
  background-color: rgba(var(--vsm-white), 1);
  box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.03);
  width: 100%;
}

@media (min-width: 768px) {
  .sector-areas .area {
    width: 48%;
  }
}

@media (min-width: 1024px) {
  .sector-areas .area {
    width: 31%;
  }
}

.sector-areas .content .toptext {
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .sector-areas .content .toptext {
    margin-top: 1.5rem;
  }
}

.sector-areas .content .toptext p {
  font-family: "DM Sans", sans-serif;
}
/*
@media (min-width: 768px) {
  .sector-areas .content .job-title {
    min-height: 60px;
  }
}
*/
.sector-areas .content .img {
  background-color: #b7d4bb;
  position: absolute;
  top: -30px;
  z-index: 1;
  opacity: 1;
  width: 60px;
  height: 60px;
  border-radius: 5px;
   /* Safari 3-4, iOS 1-3.2, Android 1.6- */
  -webkit-border-radius: 5px;
  /* Firefox 1-3.6 */
  -moz-border-radius: 5px;
  
  display: flex;
  align-items: center;
  justify-content: center;
}

.sector-areas .content .img img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

/*------------------------------
End sector-areas 
--------------------------------*/
/* ------------------------------
featured-insights
--------------------------------*/
.featured-insights {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  .featured-insights {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .featured-insights {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.featured-insights .insight-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.featured-insights .insight-container .top {
  position: relative;
  top: 0;
}

.featured-insights .insight-container .middle {
  position: relative;
  height: auto;
  top: 0;
 /* padding-bottom: 1.5em;*/
}
/*
@media (min-width: 768px) {
  .featured-insights .insight-container .middle {
    height: 210px;
  }
}

@media (min-width: 1024px) {
  .featured-insights .insight-container .middle {
    height: 160px;
  }
}
*/
.featured-insights .insight-container .bottom {
  position: relative;
  bottom: 0;
  padding-bottom: 1.5em;
}

@media (min-width: 1024px) {
  .featured-insights .insight-container .bottom {
    padding-bottom: 0em;
  }
}

.featured-insights .bg-white {
  background-color: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .featured-insights .bg-white {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .featured-insights .bg-white {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

.featured-insights.purple-accent label {
  font-size: small;
  color: #6f5af0;
}

.featured-insights.purple-accent li {
  border-bottom: 1px solid rgba(33, 62, 80, 0.2);
  margin-bottom: 1.5em;
  margin-top: 0.5em;
}

.featured-insights.purple-accent li:last-child {
  border-bottom: 0px solid rgba(33, 62, 80, 0.2);
}

.featured-insights.purple-accent li label {
  font-size: small;
  color: #6f5af0;
}

.featured-insights.purple-accent li .date {
  font-size: small;
  opacity: 0.5;
}

.featured-insights.purple-accent .btn-link {
  color: #6f5af0;
  text-decoration: none;
}

.featured-insights.purple-accent .btn-link:hover {
  text-decoration: underline;
}

.featured-insights h3,
.featured-insights .sm-heading {
  color: #213e50;
  display: flex;
  align-items: center;
}

.featured-insights h3::after,
.featured-insights .sm-heading::after {
  content: "";
  flex: 1;
  margin-left: 1rem;
  height: 1.5px;
  background-color: #6d777d;
  opacity: 0.2;
}

.featured-insights .btn-link {
  color: #4c9354;
  text-decoration: none;
}

.featured-insights .btn-link:hover {
  text-decoration: underline;
}

.featured-insights ul {
  list-style-type: none;
  margin-left: 0px;
  padding-left: 0px;
}

.featured-insights li {
  border-bottom: 1px solid rgba(33, 62, 80, 0.2);
  margin-bottom: 1.5em;
  margin-top: 0.5em;
}

.featured-insights li:last-child {
  border-bottom: 0px solid rgba(33, 62, 80, 0.2);
}

.featured-insights li .title {
  margin-bottom: 1em;
  color: #213e50;
  font-size: 18px;
  font-weight: 600;
  min-height: auto;
}

.featured-insights li .title a {
  color: #213e50;
  text-decoration: none;
}

.featured-insights li .title a:hover {
  text-decoration: underline;
}

.featured-insights li label {
  font-size: small;
  color: #4c9354;
}

.featured-insights li .date {
  font-size: small;
  opacity: 0.5;
}

.featured-insights .title {
  color: #213e50;
  font-size: 24px;
  font-weight: 600;
  min-height: 50px;
}

@media (min-width: 768px) {
  .featured-insights .title {
    min-height: 115px;
  }
}

@media (min-width: 1024px) {
  .featured-insights .title {
    min-height: 80px;
  }
}

.featured-insights .title a {
  color: #213e50;
  text-decoration: none;
}

.featured-insights .title a:hover {
  text-decoration: underline;
}

.featured-insights label {
  font-size: small;
  color: #4c9354;
}

.featured-insights .date {
  font-size: small;
  opacity: 0.5;
}

.featured-insights .img-container {
  position: relative;
  display: inline-block;
  z-index: 1;
  width: 100%;
  vertical-align: top;
  margin: 0px auto;
}

.featured-insights .img-container img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .featured-insights .img-container img {
    height: 262px;
  }
}

/*------------------------------
end featured-insights
--------------------------------*/
/*----------------------------------
featured-casestudies
----------------------------------*/
.featured-casestudies {
  padding-top: 33px;
  position: relative;
}

@media (min-width: 768px) {
  .featured-casestudies {
    padding-top: 66px;
  }
}

@media (min-width: 1024px) {
  .featured-casestudies {
    padding-top: 100px;
  }
}

.featured-casestudies .content {
  margin-bottom: 1em;
}

.featured-casestudies .sm-heading {
  display: inline-block;
  margin-right: 1em;
}

.featured-casestudies .places {
  position: relative;
  height: auto;
  width: 100%;
}

.featured-casestudies .places .img-container {
  position: relative;
  height: 353px;
  width: 100%;
}

.featured-casestudies .places .img-container .bg-img {
  position: relative;
  border-radius: 0px;
  z-index: 1;
  opacity: 1;
  width: 100%;
  max-height: 353px;
  overflow: hidden;
  transform: scale(1);
  transition: all 300ms ease-in-out;
}

.featured-casestudies .places .img-container .bg-img img {
  width: 100%;
  height: 353px;
  object-fit: cover;
}

.featured-casestudies .places .img-container .bg-img:hover {
  transform: scale(1.1);
}

.featured-casestudies .places .top {
  width: 100%;
  height: 275px;
  top: 0;
  position: relative;
}

.featured-casestudies .places .middle {
  box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.03);
  width: calc(100% - 30px);
  height: calc(100% - 210px);
  margin-top: 0px;
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
}

.featured-casestudies .places .middle::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  z-index: 1;
  left: -1px;
  top: 0;
  display: block;
  /* Note: backdrop-filter has minimal browser support */
  backdrop-filter: blur(10px);
  background-color: rgba(var(--vsm-white), 0.7);
}

@-moz-document url-prefix() {
  .featured-casestudies .places .middle {
    width: calc(100% - 30px);
    height: calc(100% - 210px);
    margin-top: 0px;
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
    background: linear-gradient(#efefef, white);
  }
}

.featured-casestudies .places .buttons {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  padding-left: 2em;
  padding-right: 2em;
  bottom: 2em;
  z-index: 9999;
}

.featured-casestudies .places .buttons .btn {
  padding: 0.3125rem 0.9375rem;
}

@media (min-width: 1024px) {
  .featured-casestudies .places .buttons .btn {
    padding: 0.625rem 1.875rem;
  }
}

.featured-casestudies .places .copy {
  width: calc(100% - 30px);
  position: relative;
  z-index: 3;
  padding-top: 2em;
  padding-left: 2em;
  padding-bottom: 3em;
}

.featured-casestudies .places .copy .logo-img {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-bottom: 1em;
  z-index: 1;
  opacity: 1;
  width: auto;
  height: 75px;
}

.featured-casestudies .places .copy .logo-img img {
  width: auto;
  max-height: 60px;
  object-fit: cover;
}

/*---------------------------------
end featured-casestudies
----------------------------------*/
/*------------------------------
featured-brands
--------------------------------*/
.featured-brands {
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .featured-brands {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .featured-brands {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.featured-brands .brands__item img[src$=".jpg"],
.featured-brands .brands__item img[src$=".png"] {
  mix-blend-mode: multiply;
}

.featured-brands .swiper-navigation {
  position: relative;
  width: 100%;
  height: 60px;
  text-align: center;
  z-index: 9999;
  margin-top: 1em;
}

.featured-brands .swiper-button-prev {
  position: relative;
  width: auto;
  height: auto;
  display: inline-block;
  padding: 0;
  top: 0;
}

.featured-brands .swiper-button-prev.swiper-button-disabled {
  opacity: 0.5;
}

.featured-brands .swiper-button-prev:after {
  content: "\f060";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #67b8c3;
  transition: all 250ms ease-in-out;
}

.featured-brands .swiper-button-prev:focus {
  outline: none;
}

.featured-brands .swiper-button-next {
  position: relative;
  width: 50px;
  height: auto;
  display: inline-block;
  top: 0;
  padding: 0;
}

.featured-brands .swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
}

.featured-brands .swiper-button-next:after {
  content: "\f061";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #67b8c3;
  transition: all 250ms ease-in-out;
}

.featured-brands .swiper-button-next:focus {
  outline: none;
}

.featured-brands .brands {
  margin: 0px;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-content: space-between;
  gap: 1rem;
}

.featured-brands .brands__item {
  background-color: #ffffff;
  box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.03);
  flex: 0 0 48%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 230px;
}

.featured-brands .brands__item img {
  display: block;
  /* Make sure max-width is added */
  max-width: 100%;
  width: 150px;
  height: 80px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

@media (min-width: 768px) {
  .featured-brands .brands__item {
    flex: 0 0 31.33%;
  }
}

@media (min-width: 992px) {
  .featured-brands .brands__item {
    flex: 0 0 18%;
  }
}

/*------------------------------
end featured-brands
--------------------------------*/
/*------------------------------
downloads
--------------------------------*/
.download-spacing {
  height: 100px;
}

.downloads {
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .downloads {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .downloads {
    margin-top: 90px;
    margin-bottom: 90px;
  }
}

.downloads .xxs-heading {
  color: #4c9354;
}

.downloads label span {
  color: #4c9354;
}

.downloads .poster-img {
  width: 100%;
  height: auto;
  margin-bottom: 1em;
}

.downloads .poster-img img {
  box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.3);
  width: 100%;
  min-height: 255px;
  object-fit: cover;
  border-radius: 6px;
}

.downloads ul {
  margin-left: 0px;
  padding-left: 0px;
  margin-top: 1em;
  margin-bottom: 1em;
  list-style: none;
  display: -ms-flexbox;
  display: column;
  flex-direction: row;
}

.downloads ul li {
  margin-left: 0px;
  padding-left: 0px;
  height: 2.5em;
}

.downloads ul li a {
  text-decoration: none;
  color: #6f5af0;
  font-size: 14px;
  font-size: 1rem;
  font-weight: 700;
}

.downloads ul li a i {
  width: 2em;
  color: #213e50;
  font-size: 20px;
  font-size: 1.25rem;
}

.downloads .xs-heading {
  display: inline;
  margin-right: 1em;
}

.downloads .podcast-controller {
  margin-top: 1em;
  margin-bottom: 1em;
  background-color: #ffffff;
  border: 1px solid #e8ebed;
  box-shadow: 0px 3px 30px 0px #213e5008;
}

.downloads .podcast-controller label {
  font-size: small;
  color: #213e50;
  margin-right: 1em;
}

.downloads .podcast-controller .date,
.downloads .podcast-controller .time {
  font-size: small;
  color: #6d777d;
  opacity: 0.6;
}

.downloads .podcast-controller p {
  color: #213e50;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2;
}

.downloads .playpause {
  position: relative;
  z-index: 9999;
}

.downloads .playpause::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 60px;
  height: 60px;
  content: "";
  background-color: #213e50;
  border-radius: 100%;
}

.downloads .playpause label {
  z-index: 9999;
  position: relative;
  top: 1.45em;
  left: 1.7em;
  width: 0;
  height: 20px;
  border-color: transparent transparent transparent #ffffff;
  transition: 100ms all ease;
  cursor: pointer;
  border-style: solid;
  border-width: 10.5px 0 10.5px 20px;
}

.downloads .playpause input[type="checkbox"] {
  position: absolute;
  left: -9999px;
}

.downloads .playpause input[type="checkbox"]:checked + label {
  border-style: double;
  border-width: 0px 0 0px 20px;
}

.downloads .playpause input[type="checkbox"]:focus + label {
  box-shadow: 0 0 0px lightblue;
}

/*------------------------------
End downloads
--------------------------------*/
/*------------------------------
grid-content
--------------------------------*/
.grid-content {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .grid-content {
    margin-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .grid-content {
    margin-bottom: 90px;
  }
}

.grid-content .img-icon {
  background-color: #b7d4bb;
  z-index: 1;
  opacity: 1;
  width: 60px;
  height: 60px;
  border-radius: 0px;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-content .img-icon img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.grid-content .sm-grid {
  display: flex;
  flex-flow: row;
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-content .sm-grid .img {
  width: 50%;
   height: 100%; 

  overflow: hidden;
    object-fit: cover;
}

.grid-content .sm-grid .img img {
  width: 100%;
   height: 300px;
  object-fit: cover;
  transition: 800ms all ease-in;
  transform: scale(1);
}

.grid-content .sm-grid:hover .img img {
  transition: 800ms all ease-in;
  transform: scale(1.1);
}

.grid-content .sm-grid .content {
  justify-content: center;
  align-items: center;
  padding: 1% 5% 0 5%;
  width: 50%;
  position: relative;
  bottom: 0;
  right: 0;
}

.grid-content .sm-grid .content p {
  color: #6d777d;
}

@media screen and (max-width: 1199px) {
  .grid-content .sm-grid .content p {
    font-size: 12px;
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
}

/*------------------------------
end grid-content
--------------------------------*/
/*------------------------------
person-bio
--------------------------------*/
.person-bio .social-links {
  display: flex;
  align-items: flex-end;
  justify-self: flex-end;
  padding: 5px 0;
  margin: 0px;
  list-style: none;
}

.person-bio .social-links li a {
  display: block;
  width: auto;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1;
  margin-right: 30px;
  opacity: 1;
  color: #6f5af0;
}

@media (min-width: 768px) {
  .person-bio .social-links li a {
    margin-right: 15px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.person-bio .social-links li a:hover {
  opacity: 0.5;
}

.person-bio .social-links li:last-child a {
  margin-right: 0;
}

.person-bio h3,
.person-bio .sm-heading {
  padding-bottom: 0.5em;
  color: #213e50;
}

.person-bio .content {
  position: relative;
}

.person-bio .content .toptext {
  background-color: #ffffff;
  box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.03);
}

.person-bio .content .img {
  z-index: 1;
  opacity: 1;
  vertical-align: top;
  margin: 0px auto;
  display: flex;
}

@media (min-width: 768px) {
  .person-bio .content .img {
    width: 115%;
  }
}

.person-bio .content .img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top center;
}

@media (min-width: 768px) {
  .person-bio .content .img img {
    width: 100%;
    min-height: 440px;
    object-fit: cover;
  }
}

.person-bio .content .xs-heading {
  color: #213e50;
  margin-bottom: 0px;
}

.person-bio .content .job-title {
  font-weight: 700;
  font-family: "Lexend", sans-serif;
  color: #6d777d;
  margin-bottom: 0px;
}

.person-bio .content p {
  font-family: "DM Sans", sans-serif;
  padding-right: 1em;
  margin-bottom: 0px;
}

/*------------------------------
end person-bio
--------------------------------*/
/*------------------------------
triple-boxes
--------------------------------*/
.triple-boxes .col {
  position: relative;
  flex: 1 0 100%;
  justify-items: center;
  align-items: center;
}

@media (min-width: 768px) {
  .triple-boxes .col {
    flex: 1 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1024px) {
  .triple-boxes .col {
    flex: 1 0 33%;
    max-width: 33%;
  }
}

.triple-boxes .small-box-card {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: 0.938rem;
}

.triple-boxes .small-box-card:hover .media {
  transform: scale(1);
}

.triple-boxes .small-box-card:hover .content .details {
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.triple-boxes .media {
  position: absolute;
  top: 0;
  overflow: hidden;
  transform: scale(1.1);
  transition: all 300ms ease-in-out;
  width: 100%;
  height: 100%;
}

.triple-boxes .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.triple-boxes .small-box-card:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: darken;
  background: rgba(0, 0, 0, 0.3);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#000000", GradientType=1);
}

.triple-boxes .content {
  position: relative;
  z-index: 1;
  padding: 1.875rem;
  width: 100%;
}

.triple-boxes .content .details a{
    color: #fff;  
    text-shadow: 1px 2px 3px rgba(33, 62, 80, 0.6);
}
.triple-boxes .content .details {
  visibility: hidden;
  height: 0;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s linear;
  color: #fff;
}

.triple-boxes .content .media {
  position: relative;
  width: 1.875rem;
  height: 1.875rem;
  margin-bottom: 0.5rem;
}

.triple-boxes .content .media::after {
  display: none;
}

.triple-boxes .content .media .content .xs-heading {
  color: #fff;
}

.triple-boxes .content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.triple-boxes .content .xs-heading {
  color: #fff;
  text-decoration: none;
  text-shadow: 0px 2px 3px rgba(33, 62, 80, 0.4);
}

/*------------------------------
person-bio
--------------------------------*/
/*----------------------------------
offices
----------------------------------*/
.offices {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}

@media (min-width: 768px) {
  .offices {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .offices {
    padding-top: 30px;
    padding-bottom: 90px;
  }
}

.offices a {
  text-decoration: none;
  word-wrap: break-word;
}

.offices a:hover {
  text-decoration: underline;
}

.offices .sm-heading {
  display: inline-block;
  margin-right: 1em;
}

.offices .office-locations {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.offices .places {
  position: relative;
  height: auto;
  flex: 0 0 100%;
}

@media (min-width: 768px) {
  .offices .places {
    flex: 0 0 48%;
  }
}

@media (min-width: 1024px) {
  .offices .places {
    flex: 0 0 31%;
  }
}

.offices .places .img-container {
  position: relative;
  height: 222px;
  width: 100%;
}

.offices .places .img-container .bg-img {
  top: 0px;
  left: 0px;
  z-index: 1;
  opacity: 1;
  width: 100%;
  max-height: 222px;
}

.offices .places .img-container .bg-img img {
  width: 100%;
  height: 222px;
  object-fit: cover;
}

.offices .places .top {
  width: 100%;
  height: auto;
  top: 0;
  position: relative;
  height: 190px;
}

@-moz-document url-prefix() {
  .offices .places .middle {
    background: linear-gradient(#efefef, white);
  }
}

.offices .places .middle {
  /* Note: backdrop-filter has minimal browser support */
  backdrop-filter: blur(10px);
  background-color: rgba(var(--vsm-white), 0.7);
  box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.03);
  width: calc(100% - 30px);
  height: calc(100% - 210px);
  margin-top: 0px;
  position: relative;
  z-index: 2;
}

.offices .places .copy {
  width: calc(100% - 30px);
  position: relative;
  z-index: 3;
  padding-top: 2em;
  padding-left: 2em;
  padding-bottom: 2em;
}

.offices .places .copy .rte address,
.offices .places .copy .rte .address {
  color: #213e50 !important;
}

/*---------------------------------
end offices
----------------------------------*/
/* ------------------------------
profile-related
--------------------------------*/
.profile-related h5 {
  line-height: 30px;
}

.profile-related .swiper-wrapper {
  width: 100%;
}

.profile-related a {
  text-decoration: none !important;
  color: inherit;
}

.profile-related a:hover {
  color: #6f5af0;
}

.profile-related .swiper-slide-active {
  opacity: 1;
}

.profile-related .team .swiper-slide-next {
  opacity: 1;
}

.profile-related .team-person {
  margin-bottom: 2em;
  padding-bottom: 60px;
  position: relative;
  min-height: 255px;
  width: 100%;
}

.profile-related .team-person .img-container {
  position: relative;
  height: 210px;
  width: 100% !important;
  z-index: 2;
}

.profile-related .team-person .img-container .bg-img {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  opacity: 1;
  width: 100% !important;
  max-height: 132px;
}

.profile-related .team-person .img-container .bg-img img {
  width: 100% !important;
  height: 132px;
  object-fit: cover;
}

.profile-related .team-person .top {
  width: 100%;
  height: auto;
  top: 0;
  position: absolute;
}

.profile-related .team-person .middle {
  width: calc(100% - 30px);
  height: 100%;
  background-color: #ffffff;
  top: 100px;
  padding-bottom: 100px;
  position: relative;
  z-index: 2;
}

.profile-related .team-person .middle .person-img {
  /* @include mobile {
                    left: 35%;
                }*/
  left: 40%;
  position: absolute;
  top: -1em;
  z-index: 9999;
  opacity: 1;
  width: 90px;
  max-height: 90px;
}

.profile-related .team-person .middle .person-img img {
  background-color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 100%;
  width: 90px;
    height: 90px;
  object-fit: cover;
}

.profile-related .team-person .middle::before {
  width: 100%;
  height: 100px;
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  display: inline-block;
  background: linear-gradient(#efefef, white);
  backdrop-filter: blur(10px);
}

.profile-related .team-person .copy {
  box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.03);
  text-align: center;
  width: calc(100%);
  position: relative;
  z-index: 3;
  left: 0;
  top: 90px;
  padding-left: 1em;
  padding-right: 1em;
}

.profile-related .team-person .copy p {
  font-size: small;
}

/* ------------------------------
End team-slider
--------------------------------*/
/* ------------------------------
Tweets
--------------------------------*/
.tweets {
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .tweets {
    margin-top: 90px;
    margin-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .tweets {
    margin-top: 120px;
    margin-bottom: 90px;
  }
}

.tweets h3,
.tweets .sm-heading {
  color: #213e50;
  display: flex;
  align-items: center;
}

.tweets h3::after,
.tweets .sm-heading::after {
  content: "";
  flex: 1;
  margin-left: 1rem;
  height: 1.5px;
  background-color: #6d777d;
  opacity: 0.2;
}

.tweets .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tweets .author {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
  flex-direction: column;
}

.tweets .author .author-details {
  text-align: center;
}

.tweets .author .author-details .title {
  font-weight: 600;
  margin-bottom: 0.188rem;
  margin-top: 1.188rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #213e50;
}

.tweets .author .author-details .handle {
  color: #6d777d;
  font-weight: 400;
  margin-bottom: 1.188rem;
  font-size: 14px;
  font-size: 0.875rem;
}

.tweets .author .media {
  width: 3.75rem;
  height: 3.75rem;
  overflow: hidden;
  border-radius: 100em;
}

.tweets .author .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tweets .author .media[data-initials]:before {
  width: 9.6885rem;
  height: 9.688rem;
  min-width: 9.688rem;
  line-height: 9.688rem;
  font-size: 16px;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .tweets .author {
    flex-direction: row;
  }
  .tweets .author .author-details {
    text-align: left;
  }
  .tweets .author .author-details .title {
    margin-top: 0rem;
    margin-bottom: 0.188rem;
  }
  .tweets .author .author-details .handle {
    margin-bottom: 0px;
  }
  .tweets .author .media {
    margin-right: 1.825rem;
  }
}

.tweets .social {
  width: auto;
  float: right;
  justify-content: flex-end;
}

.tweets .social dt {
  display: inline-flex;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(var(--vsm-primary-colour), 1);
}

.tweets .social dd {
  display: -ms-inline-flexbox;
  display: flex;
  justify-self: end;
  margin: 0 10px;
}

.tweets .social dd a {
  color: #2da1f2;
}

.tweets .social dd a:hover {
  opacity: 0.5;
}

.description .time {
  font-size: 0.875rem;
  font-size: 14px;
  margin-right: 1em;
  display: inline-block;
}

.description .date {
  font-size: 0.875rem;
  font-size: 14px;
  display: inline-block;
}

/* ------------------------------
End Tweets
--------------------------------*/
/* ------------------------------
salary-survey
--------------------------------*/
.salary-survey .bg-white {
  box-shadow: 0px 3px 30px rgba(33, 62, 80, 0.03);
}

.salary-survey .swiper-navigation {
  position: relative;
  bottom: 0;
  right: 0;
  text-align: left;
  z-index: 9999;
  margin-top: 1em;
}

.salary-survey .swiper-pagination {
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  margin: 0px auto;
  padding: 0px;
  display: inline-block;
}

.salary-survey .swiper-pagination-fraction {
  width: auto;
}

.salary-survey .swiper-pagination-hidden {
  opacity: 0;
}

.salary-survey .swiper-button-prev {
  left: 3.5em;
  position: relative;
  width: auto;
  height: auto;
  display: inline-block;
  padding: 0;
  top: 0;
}

.salary-survey .swiper-button-prev.swiper-button-disabled {
  opacity: 0.5;
}

.salary-survey .swiper-button-prev:after {
  content: "\f060";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #67b8c3;
  transition: all 250ms ease-in-out;
}

.salary-survey .swiper-button-prev:focus {
  outline: none;
}

.salary-survey .swiper-button-next {
  text-align: left;
  position: relative;
  width: 50px;
  height: auto;
  display: inline-block;
  left: 4.5em;
  top: 0;
  padding: 0;
}

.salary-survey .swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
}

.salary-survey .swiper-button-next:after {
  content: "\f061";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #67b8c3;
  transition: all 250ms ease-in-out;
}

.salary-survey .swiper-button-next:focus {
  outline: none;
}

/* ------------------------------
End salary-survey
--------------------------------*/
/* ------------------------------
full-width-bg-img
--------------------------------*/
  .full-width-bg-img {

  width: 100%;
  height: auto;
  position: relative;
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .full-width-bg-img {
    height:36rem;
  }

}

@media (min-width: 1024px) {
  .full-width-bg-img {
   /* top: -7.5rem;*/
    /*120px; */
    height: 38.125rem;
  }
}

@media (min-width: 1400px) {
  .full-width-bg-img {
    /*top: -7.5rem;
    120px; */
    height: 36.125rem;
  }
}

.full-width-bg-img .swiper-container {
  overflow: hidden;
  background-color: #ffffff;
}

.full-width-bg-img .swiper-navigation {
  position: relative;
  bottom: 0;
  right: 1em;
  text-align: right;
  z-index: 9999;
}

.full-width-bg-img .swiper-pagination {
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  margin: 0px auto;
  padding: 0px;
  display: inline-block;
}

.full-width-bg-img .swiper-pagination-hidden {
  opacity: 0;
}

.full-width-bg-img .swiper-pagination-bullet-active {
  opacity: 1 !important;
  width: 30px !important;
  height: 3px;
  border-radius: 8px !important;
  background: #213e50 !important;
}

.full-width-bg-img .swiper-pagination-bullet {
  width: 3px;
  height: 3px;
  display: inline-block;
  border-radius: 50%;
  background: #6d777d;
  opacity: 0.2;
  margin-right: 3px;
}

.full-width-bg-img .swiper-button-prev {
  left: 3.5em;
  position: relative;
  width: auto;
  height: auto;
  display: inline-block;
  padding: 0;
  top: 0;
}

.full-width-bg-img .swiper-button-prev.swiper-button-disabled {
  opacity: 0.5;
}

.full-width-bg-img .swiper-button-prev:after {
  content: "\f060";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #6f5af0;
  transition: all 250ms ease-in-out;
}

.full-width-bg-img .swiper-button-prev:focus {
  outline: none;
}

.full-width-bg-img .swiper-button-next {
  text-align: left;
  position: relative;
  width: 50px;
  height: auto;
  display: inline-block;
  left: 4.5em;
  top: 0;
  padding: 0;
}

.full-width-bg-img .swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
}

.full-width-bg-img .swiper-button-next:after {
  content: "\f061";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #6f5af0;
  transition: all 250ms ease-in-out;
}

.full-width-bg-img .swiper-button-next:focus {
  outline: none;
}

.full-width-bg-img .content {
  z-index: 9999;
}

.full-width-bg-img .content .person {
  margin-left: 0em;
}

@media (min-width: 768px) {
  .full-width-bg-img .content .person {
    margin-left: 2.5em;
  }
}

.full-width-bg-img .content .text q {
  font-family: "Lexend", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: left;
  color: #213e50;
  display: block;
  margin-bottom: 15px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .full-width-bg-img .content .text q {
    font-size: 18px;
    font-size: 1.125rem;
    padding-left: 45px;
    overflow: hidden;
  }
  .full-width-bg-img .content .text q:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0.5em;
    left: 0em;
    height: 100%;
    width: 100%;
    width: 22px;
    line-height: 100%;
    background-image: url("/img/icons/smallquote.svg");
    background-repeat: no-repeat;
    overflow: hidden;
  }
}

.full-width-bg-img .content .name {
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  color: #213e50;
  margin-bottom: 0px;
  text-align: left;
}

.full-width-bg-img .content .job-title {
  font-family: "Lexend", sans-serif;
  color: #6d777d;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 200;
  text-align: left;
  margin-bottom: 0px;
}

.full-width-bg-img .content .img {
  z-index: 1;
  opacity: 1;
  width: 100%;
  vertical-align: top;
  margin: 0px auto;
  display: flex;
}

.full-width-bg-img .content .img img {
  border-radius: 50%;
  width: 51px;
  height: 51px;
  object-fit: cover;
}

.full-width-bg-img .content p {
  margin-bottom: 2em;
}

/* ------------------------------
End full-width-bg-img
--------------------------------*/
/* ------------------------------
twoacross-images
--------------------------------*/
.twoacross-images .swiper-wrapper {
  margin-bottom: 1em;
}

.twoacross-images .swiper-navigation {
  position: relative;
  bottom: 0;
  z-index: 9999;
  padding-top: 1em;
}

.twoacross-images .swiper-pagination {
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  margin: 0px auto;
  padding: 0px;
  display: inline-block;
}

.twoacross-images .swiper-pagination-hidden {
  opacity: 0;
}

.twoacross-images .swiper-pagination-bullet-active {
  opacity: 1 !important;
  width: 50px !important;
  height: 6px;
  border-radius: 8px !important;
  background: #213e50 !important;
}

.twoacross-images .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  display: inline-block;
  border-radius: 50%;
  background: #6d777d;
  opacity: 0.2;
  margin-right: 6px;
}

.twoacross-images .swiper-button-prev {
  text-align: left;
  position: relative;
  width: auto;
  height: auto;
  display: inline-block;
  left: 1rem;
  top: 0;
  padding: 0;
}

.twoacross-images .swiper-button-prev.swiper-button-disabled {
  opacity: 0.5;
}

@media (min-width: 768px) {
  .twoacross-images .swiper-button-prev {
    left: 0;
  }
}

.twoacross-images .swiper-button-prev:after {
  content: "\f060";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.6;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 26px;
  color: #6f5af0;
  transition: all 250ms ease-in-out;
}

.twoacross-images .swiper-button-prev:focus {
  outline: none;
}

.twoacross-images .swiper-button-next {
  text-align: right;
  position: absolute;
  width: auto;
  height: auto;
  display: inline-block;
  right: 1rem;
  padding: 0;
}

.twoacross-images .swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
}

@media (min-width: 768px) {
  .twoacross-images .swiper-button-next {
    right: 0;
  }
}

.twoacross-images .swiper-button-next:after {
  content: "\f061";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.6;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 26px;
  color: #6f5af0;
  transition: all 250ms ease-in-out;
}

.twoacross-images .swiper-button-next:focus {
  outline: none;
}

.twoacross-images .content {
  z-index: 9999;
}

.twoacross-images .content .img {
  background-color: #e8ebed;
  z-index: 1;
  mix-blend-mode: overlay;
  opacity: 1;
  width: 100%;
  vertical-align: top;
  margin: 0px auto;
  display: flex;
}

.twoacross-images .content .img img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .twoacross-images .content .img img {
    height: 540px;
  }
}

/* ------------------------------
End twoacross-images
--------------------------------*/
/* ------------------------------
listing-media-hub-more-row
--------------------------------*/
.listing-media-hub-more-row {
  position: relative;
}

.listing-media-hub-more-row .bg {
  background-color: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .listing-media-hub-more-row .bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .listing-media-hub-more-row .bg {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

.listing-media-hub-more-row h3,
.listing-media-hub-more-row .sm-heading {
  color: #213e50;
  display: flex;
  align-items: center;
}

.listing-media-hub-more-row h3::after,
.listing-media-hub-more-row .sm-heading::after {
  content: "";
  flex: 1;
  margin-left: 1rem;
  height: 1.5px;
  background-color: #6d777d;
  opacity: 0.2;
}

.listing-media-hub-more-row .post .media {
  width: 100%;
}

.listing-media-hub-more-row .post .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-media-hub-more-row .post a.tag {
  font-weight: 600;
  color: #6d777d;
  margin-top: 0.938rem;
  font-size: 12px;
  font-size: 0.75rem;
  text-decoration: none;
}

.listing-media-hub-more-row .post a {
  display: inline-flex;
}

.listing-media-hub-more-row .post a.post-title {
  height: 6.5rem;
  font-weight: 600;
  color: #213e50;
  margin-top: 0.238rem;
  font-size: 1.25rem;
  text-decoration: none;
  font-size: 20px;
  font-size: 1.25rem;
  text-transform: capitalize;
}

.listing-media-hub-more-row .post a.post-title:hover {
  color: rgba(var(--vsm-accent-colour), 1);
}

.listing-media-hub-more-row .post a.post-title-h2 {
  font-weight: 600;
  color: #213e50;
  margin-top: 0.238rem;
  font-size: 1.25rem;
  text-decoration: none;
  font-size: 39px;
  font-size: 2.4375rem;
  font-size: 2.438rem;
}

.listing-media-hub-more-row .post a.post-title-h2:hover {
  color: rgba(var(--vsm-accent-colour), 1);
}

.listing-media-hub-more-row .post-date {
  display: inline-flex;
  margin-left: 1rem;
  color: #6d777d;
  opacity: 0.7;
  font-size: 12px;
  font-size: 0.75rem;
}

.listing-media-hub-more-row .btn-link {
  margin-top: 0.938rem;
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

/* ------------------------------
end listing-media-hub-more-row
--------------------------------*/
/* ------------------------------
listing-media-hub-all
--------------------------------*/
.listing-media-hub-all .bg {
  background-color: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .listing-media-hub-all .bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  .listing-media-hub-all .bg {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

.listing-media-hub-all h3,
.listing-media-hub-all .sm-heading {
  color: #213e50;
  display: flex;
  align-items: center;
}

.listing-media-hub-all h3::after,
.listing-media-hub-all .sm-heading::after {
  content: "";
  flex: 1;
  margin-left: 1rem;
  height: 1.5px;
  background-color: #6d777d;
  opacity: 0.2;
}

.listing-media-hub-all .post .media {
  width: 100%;
}

.listing-media-hub-all .col-md-6 .post .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.listing-media-hub-all .post .media img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}
.listing-media-hub-all .post a.tag {
  font-weight: 600;
  color: #6d777d;
  margin-top: 0.938rem;
  font-size: 12px;
  font-size: 0.75rem;
  text-decoration: none;
}

.listing-media-hub-all .post a {
  display: inline-flex;
}

.listing-media-hub-all .col-6 .post a.post-title {
    width:100%;
  height: 8.5rem;
  font-weight: 600;
  color: #213e50;
  margin-top: 0.238rem;
  font-size: 1.25rem;
  text-decoration: none;
  font-size: 20px;
  font-size: 1.25rem;
  text-transform: capitalize;
}
@media (min-width: 768px) {
    .listing-media-hub-all .col-6 .post a.post-title {
    width:100%;
  height: 12.5rem;
  font-weight: 600;
  color: #213e50;
  margin-top: 0.238rem;
  font-size: 1.25rem;
  text-decoration: none;
  font-size: 20px;
  font-size: 1.25rem;
  text-transform: capitalize;
}
.listing-media-hub-all .post a.post-title {
    width:100%;
  height: 6.5rem;
  font-weight: 600;
  color: #213e50;
  margin-top: 0.238rem;
  font-size: 1.25rem;
  text-decoration: none;
  font-size: 20px;
  font-size: 1.25rem;
  text-transform: capitalize;
}
}
@media (min-width: 1200px) {
    .listing-media-hub-all .col-6 .post a.post-title {
    width:100%;
  height: 9.5rem;
  font-weight: 600;
  color: #213e50;
  margin-top: 0.238rem;
  font-size: 1.25rem;
  text-decoration: none;
  font-size: 20px;
  font-size: 1.25rem;
  text-transform: capitalize;
}
.listing-media-hub-all .post a.post-title {
    width:100%;
  height: 6.5rem;
  font-weight: 600;
  color: #213e50;
  margin-top: 0.238rem;
  font-size: 1.25rem;
  text-decoration: none;
  font-size: 20px;
  font-size: 1.25rem;
  text-transform: capitalize;
}
}
@media (min-width: 1400px) {
    .listing-media-hub-all .col-6 .post a.post-title {
    width:100%;
  height: 8.5rem;
  font-weight: 600;
  color: #213e50;
  margin-top: 0.238rem;
  font-size: 1.25rem;
  text-decoration: none;
  font-size: 20px;
  font-size: 1.25rem;
  text-transform: capitalize;
}
.listing-media-hub-all .post a.post-title {
    width:100%;
  height: 6.5rem;
  font-weight: 600;
  color: #213e50;
  margin-top: 0.238rem;
  font-size: 1.25rem;
  text-decoration: none;
  font-size: 20px;
  font-size: 1.25rem;
  text-transform: capitalize;
}
}
.listing-media-hub-all .post a.post-title:hover {
  color: rgba(var(--vsm-accent-colour), 1);
}

.listing-media-hub-all .post a.post-title-h2 {
  font-weight: 600;
  color: #213e50;
  margin-top: 0.238rem;
  font-size: 1.25rem;
  text-decoration: none;
  font-size: 39px;
  font-size: 2.4375rem;
  font-size: 2.438rem;
}

.listing-media-hub-all .post a.post-title-h2:hover {
  color: rgba(var(--vsm-accent-colour), 1);
}

.listing-media-hub-all .post-date {
  display: inline-flex;
  margin-left: 1rem;
  color: #6d777d;
  opacity: 0.7;
  font-size: 12px;
  font-size: 0.75rem;
}

.listing-media-hub-all .btn-link {
  margin-top: 0.938rem;
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

/* ------------------------------
End listing-media-hub-all
--------------------------------*/
/* ------------------------------
related-insights 
--------------------------------*/
.related-insights .img-container {
  height: 230px;
  width: 100%;
  overflow: hidden;
}

.related-insights .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 800ms all ease-in;
  transform: scale(1);
}

.related-insights .img-container img:hover {
  transition: 800ms all ease-in;
  transform: scale(1.1);
}

.related-insights .details-container .post-details a.tag {
  font-weight: 600;
  color: #6f5af0;
  margin-top: 0.938rem;
  font-size: 10px;
  font-size: 0.625rem;
  text-decoration: none;
}

.related-insights .details-container .post-details a {
  display: inline-flex;
}

.related-insights .details-container .post-details .post-date {
  display: inline-flex;
  margin-left: 1rem;
  font-weight: 600;
  color: #6d777d;
  margin-top: 0.938rem;
  font-size: 10px;
  font-size: 0.625rem;
  text-decoration: none;
}

.related-insights .details-container a.post-title {
  height: 5.5rem;
  font-weight: 600;
  color: #213e50;
  margin-top: 0.238rem;
  font-size: 1.25rem;
  text-decoration: none;
  font-size: 20px;
  font-size: 1.25rem;
  text-transform: capitalize;
}

.related-insights .details-container a.post-title:hover {
  color: rgba(var(--vsm-accent-colour), 1);
}

/* ------------------------------
End related-insights
--------------------------------*/
.article-tags {
  margin-top: 1.25rem;
  margin-bottom: 0;
  line-height: 1;
}

.article-tags a {
  text-decoration: none;
}

.article-tags dt {
  display: inline-flex;
}

.article-tags dd {
  display: inline-flex;
  position: relative;
  margin-bottom: 0.25rem;
  color: #213e50;
  background-color: rgba(111, 90, 240, 0.16);
  padding: 5px 15px;
  /*
        &::after {
            content: ",";
        }*/
}

.tagsandsharing {
  display: flex;
  justify-content: flex-start;
  margin: 1.25rem 0;
}

.tagsandsharing .col-md-10 {
  padding: 1.25rem 0 1.25rem 0;
  border-top: 0.063rem solid rgba(0, 0, 0, 0.1);
  border-bottom: 0.063rem solid rgba(0, 0, 0, 0.1);
}

.tagsandsharing .article-tags {
  margin-top: 0rem;
  margin-bottom: 0;
  line-height: 1;
}

.tagsandsharing .article-tags a {
  text-decoration: none;
}

.tagsandsharing .article-tags dt {
  display: inline-flex;
}

.tagsandsharing .article-tags dd {
  display: inline-flex;
  position: relative;
  margin-bottom: 0.25rem;
  color: #213e50;
  background-color: rgba(111, 90, 240, 0.16);
  padding: 5px 15px;
  /*
            &::after {
                content: ",";
            }*/
}

.tagsandsharing .share {
  display: flex;
  justify-content: flex-end;
  align-content: center;
}

.tagsandsharing .share dl {
  display: flex;
  margin-bottom: 0;
}

.tagsandsharing .share dl dt {
  color: #213e50;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
}

.tagsandsharing .share dl dd {
  margin: 0 0.625rem;
}

.tagsandsharing .share dl dd a {
  color: rgba(var(--vsm-accent-colour), 1);
}

.tagsandsharing .share dl dd a:hover {
  color: rgba(var(--vsm-accent-colour), 1);
}

.tagsandsharing .share dl dd:last-child {
  margin-right: 0;
}

.author-details .col-md-10 {
  padding: 1.25rem 0 1.25rem 0;
  border-bottom: 0.063rem solid rgba(0, 0, 0, 0.1);
}

.author-details .btn {
  margin-right: 1em;
}

.author-details .btn-link {
  text-decoration: none !important;
}

.author-details .btn-link:hover {
  text-decoration: underline;
}

.author-details .author .author-details {
  margin: 10px 0;
}

.author-details .author .author-details .title {
  margin-bottom: 0;
}

.author-details .author .author-details .title a {
  text-decoration: none !important;
  font-weight: 600;
  color: #213e50;
  margin-bottom: 0.188rem;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 24px;
}

.author-details .author .author-details .title a:hover {
  text-decoration: underline;
}

.author-details .author .author-details .subtitle {
  font-weight: 600;
  color: rgba(var(--vsm-body-copy-colour), 1);
  margin-bottom: 0px;
  font-size: 16px;
  font-size: 1rem;
}

.author-details .author .media[data-initials]::before {
  background: rgba(var(--vsm-primary-colour), 1);
  color: rgba(var(--vsm-white), 1);
  opacity: 1;
  content: attr(data-initials);
  display: inline-block;
  font-weight: 600;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 0;
  width: 5.625rem;
  height: 5.625rem;
  line-height: 5.625rem;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}

.author-details .author .media {
  width: 5.625rem;
  height: 5.625rem;
  min-width: 5.625rem;
  overflow: hidden;
  border-radius: 100em;
  margin-right: 0.625rem;
}

.author-details .author .media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 50%;
  overflow: hidden;
}

.content-wrapper {
  position: relative;
}

.content-wrapper .back-to-top {
  position: absolute;
  z-index: 9999;
  left: 1em;
  bottom: 70px;
  cursor: pointer;
}

.content-wrapper .back-to-top::after {
  padding: 7px 12px;
  background: #213e50;
  border-radius: 100px;
  width: 40px;
  height: 40px;
  content: "\f062";
  display: inline-block;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.4;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: white;
  transition: all 250ms ease-in-out;
}

@media (min-width: 1024px) {
  .back-to-top {
    display: none;
  }
}

.profile-text h4,
.profile-text .xs-heading {
  color: #213e50;
  display: flex;
  align-items: center;
}

.profile-text h4::after,
.profile-text .xs-heading::after {
  content: "";
  flex: 1;
  margin-left: 1rem;
  height: 1.5px;
  background-color: #6d777d;
  opacity: 0.2;
}

.vsm-top .navigation {
    padding: 30px 0;
}
/*--------------------------------
Video-content
----------------------------------*/
section.video-content{
    padding-top:1rem;
    padding-bottom:1rem;
}
.video-content .content .xs-heading,
.video-content .content h5 {
    
  color: #4c9354;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
   .video-content .content .xs-heading,
.video-content .content h5 {
    margin-top: 2rem;
} 
}
.video-content .content .xs-heading::after,
.video-content .content h5::after {
  content: "";
  flex: 1;
  margin-left: 1rem;
  height: 1.5px;
  background-color: #6d777d;
  opacity: 0.2;
}

/*# sourceMappingURL=theme.css.map */