@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&family=Open+Sans:wght@300;400;600;700&display=swap");
:root {
  --vsm-white:  255, 255, 255;
  --vsm-black:  9, 9, 9;
  --vsm-body-copy-colour:  95, 99, 104;
  --vsm-accent-colour:  255, 211, 68;
  --vsm-primary-colour:  213, 165, 255;
  --vsm-secondary-colour:  23, 155, 158;
  --vsm-tertiary-colour:  25, 24, 75;
  --vsm-quaternary-colour:  214, 218, 213;
  --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: "Noto Sans", 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: "Noto Sans", sans-serif;
  font-weight: 600;
  color: #19184b;
}

ul,
ol,
dd,
p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
}

ul strong,
ol strong,
dd strong,
p strong {
  font-weight: 600;
}

a {
  color: #d5a5ff;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
  color: #FFD344;
}

.heading {
  font-size: 70px;
  font-size: 4.375rem;
}

.md-heading {
  font-size: 40px;
  font-size: 2.5rem;
}

.sm-heading {
  font-size: 30px;
  font-size: 1.875rem;
}

.xs-heading {
  font-size: 18px;
  font-size: 1.125rem;
}

.xxs-heading {
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sub-heading {
  font-size: 20px;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ------------------------------
Buttons
--------------------------------*/
.btn {
  border-radius: 30rem;
  background: #19184b;
}

/* ------------------------------
Forms
--------------------------------*/
/* ***** FORM VALIDATION MESSAGES ****** */
.field-validation-error,
.field-validation-valid,
.validation-summary-errors {
  /* DEFAULT STYLES FOR VALIDATION MESSAGES - CLASS BASED ON DEV REQUIREMENTS */
}

/* ------------------------------
Theme */
/* panel styles */
.panel {
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}

/* colours */
.color-white {
  background-color: #ffffff;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}

.color-violet {
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}

.color-indigo {
  background-color: #4332CF;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}

.color-indigo h1, .color-indigo h2, .color-indigo h3, .color-indigo h4, .color-indigo h5, .color-indigo h6, .color-indigo p, .color-indigo li {
  color: #ffffff;
}

.color-blue {
  background-color: #2F8FED;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}

.color-blue h1, .color-blue h2, .color-blue h3, .color-blue h4, .color-blue h5, .color-blue h6, .color-blue p, .color-blue li {
  color: #ffffff;
}

.color-green {
  background-color: #4DCF42;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}

.color-green h1, .color-green h2, .color-green h3, .color-green h4, .color-green h5, .color-green h6, .color-green p, .color-green li {
  color: #ffffff;
}

.color-yellow {
  background-color: #FAEB33;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}

.color-yellow h1, .color-yellow h2, .color-yellow h3, .color-yellow h4, .color-yellow h5, .color-yellow h6, .color-yellow p, .color-yellow li {
  color: #ffffff;
}

.color-orange {
  background-color: #F19031;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}

.color-orange h1, .color-orange h2, .color-orange h3, .color-orange h4, .color-orange h5, .color-orange h6, .color-orange p, .color-orange li {
  color: #ffffff;
}

.color-red {
  background-color: #F2293A;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}

.color-red h1, .color-red h2, .color-red h3, .color-red h4, .color-red h5, .color-red h6, .color-red p, .color-red li {
  color: #ffffff;
}

.color-black {
  background-color: #000;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}

.color-black h1, .color-black h2, .color-black h3, .color-black h4, .color-black h5, .color-black h6, .color-black p, .color-black li {
  color: #ffffff;
}

.vsm-top.fixed {
  background: rgba(255, 255, 255, 0.9);
}

.media {
  border-radius: 8px;
}

.vsm-hero-slider .md-heading span {
  color: #d5a5ff;
}

.vsm-hero-slider .btn {
  display: inline-block;
  background: none;
  padding: 0;
  border: 0;
}

.vsm-hero-slider .btn span {
  position: relative;
}

.vsm-hero-slider .btn span:after {
  content: "\f30b";
  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: 0.625rem;
}

.vsm-hero-slider .btn:hover {
  border: 0;
}

.vsm-hero-slider .bg {
  height: 80vh;
  padding-top: 10%;
  min-height: 50rem;
}

@media (min-width: 768px) {
  .vsm-hero-slider .bg {
    min-height: 43.75rem;
  }
}

.vsm-hero-slider .bg:before {
  background: rgba(0, 0, 0, 0.1);
}

.vsm-short-content-33-33-33.negative-top {
  -webkit-transform: translateY(-25%);
          transform: translateY(-25%);
  margin-bottom: -5%;
  position: relative;
  z-index: 9;
}

@media (min-width: 768px) {
  .vsm-short-content-33-33-33.negative-top {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-bottom: 0;
  }
}

.vsm-short-content-33-33-33.negative-top .vsm-body {
  background: #ffffff;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.09);
  padding: 30px 15px;
}

.vsm-default-internal-hero .search-bar input {
  border-radius: 30rem;
  padding-left: 1rem;
}

.vsm-default-internal-hero .search-bar .input-group {
  border-radius: 30rem;
}

.vsm-default-internal-hero .search-bar .input-group .input-group-text {
  border-top-left-radius: 30rem;
  border-bottom-left-radius: 30rem;
}

.vsm-default-internal-hero .search-bar .input-group .text input {
  border-top-left-radius: 30rem;
  border-bottom-left-radius: 30rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.vsm-default-internal-hero .search-bar .input-group .select select {
  border-top-right-radius: 30rem;
  border-bottom-right-radius: 30rem;
}

.vsm-default-internal-hero .search-bar .btn {
  background: #d5a5ff;
}

footer.vsm-default-footer .newsletter-signup input {
  border-top-left-radius: 30rem;
  border-bottom-left-radius: 30rem;
  padding-left: 1.2rem;
}

.vsm-content-layout-1 {
  overflow: hidden;
}

.vsm-content-layout-1 .vsm-body {
  position: relative;
}

.vsm-content-layout-1 .vsm-body::before {
  content: "";
  background: rgba(23, 155, 158, 0.1);
  width: 34.375rem;
  height: 34.375rem;
  border-radius: 100rem;
  position: absolute;
  top: 80px;
  margin: 0 auto;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.vsm-content-layout-1 .vsm-body .overlap-wrapper:after {
  content: "";
  background-image: url("/uploads/square-patterns.svg");
  background-repeat: no-repeat;
  width: 123px;
  height: 167px;
  position: absolute;
  top: -20px;
  right: -40px;
}

.vsm-short-content-33-33-33 .component-wrapper .col {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 15px;
}

.vsm-short-content-33-33-33 .component-wrapper .col:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0);
}

.vsm-short-content-33-33-33 .component-wrapper .col:last-child .content {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .vsm-short-content-33-33-33 .component-wrapper .col {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .vsm-short-content-33-33-33 .component-wrapper .col:nth-child(1), .vsm-short-content-33-33-33 .component-wrapper .col:nth-child(2) {
    border-top: 1px solid rgba(0, 0, 0, 0);
  }
  .vsm-short-content-33-33-33 .component-wrapper .col:nth-child(odd) {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }
  .vsm-short-content-33-33-33 .component-wrapper .col:last-child {
    border-right: 1px solid rgba(0, 0, 0, 0);
  }
}

@media (min-width: 1024px) {
  .vsm-short-content-33-33-33 .component-wrapper .col {
    border-bottom: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .vsm-short-content-33-33-33 .component-wrapper .col .content {
    margin-bottom: 0;
  }
  .vsm-short-content-33-33-33 .component-wrapper .col:nth-child(1) {
    border-top: 0px solid rgba(0, 0, 0, 0);
  }
  .vsm-short-content-33-33-33 .component-wrapper .col:nth-child(2) {
    border-top: 0px solid rgba(0, 0, 0, 0);
  }
  .vsm-short-content-33-33-33 .component-wrapper .col:nth-child(3) {
    border-top: 0px solid rgba(0, 0, 0, 0);
  }
  .vsm-short-content-33-33-33 .component-wrapper .col:nth-child(3n) {
    border-right: 1px solid rgba(0, 0, 0, 0);
  }
  .vsm-short-content-33-33-33 .component-wrapper .col:last-child {
    border-right: 1px solid rgba(0, 0, 0, 0);
  }
  .vsm-short-content-33-33-33 .component-wrapper .col:last-child .content {
    margin-bottom: 0;
  }
}

.vsm-short-content-33-33-33 .component-wrapper .content .feature .media {
  background: none;
  padding: 0;
}

.vsm-short-content-33-33-33 .component-wrapper .content .feature .media img {
  max-width: 50%;
}

.vsm-content-layout-4 .left-col {
  position: relative;
}

.vsm-content-layout-4 .left-col:after {
  content: "";
  background-image: url("/uploads/square-patterns.svg");
  background-repeat: no-repeat;
  width: 123px;
  height: 167px;
  position: absolute;
  top: 50%;
  right: -60px;
}

.vsm-content-layout-4 .right-col {
  position: relative;
}

.vsm-content-layout-4 .right-col .media {
  position: relative;
  overflow: visible;
}

.vsm-content-layout-4 .right-col .media img {
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

@media (min-width: 768px) {
  .vsm-content-layout-4 .right-col .media img {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }
}

.vsm-content-layout-4 .right-col .media::before {
  content: "";
  background: rgba(213, 165, 255, 0.1);
  width: 34.375rem;
  height: 34.375rem;
  border-radius: 100rem;
  position: absolute;
  top: -50px;
  margin: 0 auto;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.vsm-content-layout-4 .right-col .media:after {
  content: "";
  background-image: url("/uploads/square-patterns.svg");
  background-repeat: no-repeat;
  width: 123px;
  height: 167px;
  position: absolute;
  top: -40px;
  right: 40px;
}

.vsm-content-image-50-50.left .order-md-2 {
  position: relative;
}

.vsm-content-image-50-50.left .order-md-2:after {
  content: "";
  background-image: url("/uploads/square-patterns.svg");
  background-repeat: no-repeat;
  width: 123px;
  height: 167px;
  position: absolute;
  bottom: -40px;
  right: 40px;
}

.vsm-accordion-mixed-content-50-50 {
  overflow: hidden;
}

.vsm-accordion-mixed-content-50-50 .accordion-header {
  -webkit-appearance: none;
}

.vsm-accordion-mixed-content-50-50 .accordion-item {
  background: none;
}

.vsm-accordion-mixed-content-50-50 .media {
  position: relative;
  overflow: visible;
}

.vsm-accordion-mixed-content-50-50 .media img {
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

@media (min-width: 768px) {
  .vsm-accordion-mixed-content-50-50 .media img {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }
}

.vsm-accordion-mixed-content-50-50 .media::before {
  content: "";
  background: rgba(213, 165, 255, 0.1);
  width: 34.375rem;
  height: 34.375rem;
  border-radius: 100rem;
  position: absolute;
  top: -50px;
  margin: 0 auto;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.vsm-accordion-mixed-content-50-50 .media:after {
  content: "";
  background-image: url("/uploads/square-patterns.svg");
  background-repeat: no-repeat;
  width: 123px;
  height: 167px;
  position: absolute;
  top: -40px;
  right: 40px;
}

.vsm-stats-count-up .stat .count {
  color: #19184b;
}

.vsm-content-carousel .vsm-header {
  display: none;
}

.vsm-content-carousel .vsm-body .media img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.vsm-the-team .vsm-body > .row:first-child {
  margin: 40px 0 0 0;
}

.vsm-latest-featured-alt .content-card {
  overflow: hidden;
  border-radius: 8px;
}

.vsm-content-layout-6 .overlay-content .box {
  overflow: hidden;
  border-radius: 8px;
  text-align: left;
  background: white;
}

.vsm-content-layout-6 .overlay-content .box .btn {
  display: inline-block;
  background: none;
  padding: 0;
  border: 0;
}

.vsm-content-layout-6 .overlay-content .box .btn span {
  position: relative;
  color: #d5a5ff;
}

.vsm-content-layout-6 .overlay-content .box .btn span:after {
  content: "\f30b";
  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: 0.625rem;
}

.vsm-content-layout-6 .overlay-content .box .btn:hover {
  border: 0;
}

.vsm-small-boxes .vsm-header {
  text-align: center;
  margin-bottom: 40px;
}

.vsm-small-boxes .vsm-header .row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.vsm-small-boxes .small-box-card {
  border-radius: 8px;
  overflow: hidden;
}

.vsm-small-boxes .small-box-card .content .media {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .vsm-small-boxes .col {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 33.33333%;
            flex: 1 0 33.33333%;
    max-width: 33.33333%;
  }
}

.vsm-timeline-horizontal .bg {
  background: #3322ff;
  background: linear-gradient(58deg, rgba(51, 34, 255, 0.15) 0%, rgba(213, 165, 255, 0.15) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3322ff",endColorstr="#d5a5ff",GradientType=1);
}

.vsm-split-image-row-50-50 .bg {
  padding: 6.25rem 0;
  background: #2d0d69;
  background: linear-gradient(58deg, rgba(45, 13, 105, 0.15) 0%, rgba(23, 155, 158, 0.15) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2d0d69",endColorstr="#179b9e",GradientType=1);
}

.vsm-double-accordion .component-wrapper {
  padding: 6.25rem 0;
  background: #2d0d69;
  background: linear-gradient(58deg, rgba(45, 13, 105, 0.15) 0%, rgba(23, 155, 158, 0.15) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2d0d69",endColorstr="#179b9e",GradientType=1);
}

.vsm-double-accordion .vsm-header {
  margin-bottom: 40px;
}

.vsm-double-accordion .vsm-header .md-heading {
  color: #179b9e;
  margin-bottom: 40px;
}

.vsm-double-accordion .vsm-header .col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 66.6666666667%;
          flex: 1 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.vsm-double-accordion .accordion .accordion-item {
  background: #179b9e;
}

.vsm-double-accordion .accordion .accordion-item .accordion-header {
  color: #ffffff;
}

.vsm-double-accordion .accordion .accordion-item .content {
  color: #ffffff;
}

.vsm-job-carousel .bg {
  padding: 6.25rem 0 0 0;
  background: #3322ff;
  background: linear-gradient(58deg, rgba(51, 34, 255, 0.15) 0%, rgba(213, 165, 255, 0.15) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3322ff",endColorstr="#d5a5ff",GradientType=1);
}

.vsm-job-carousel .swiper-slide {
  background: #ffffff;
}

.vsm-job-carousel .swiper-slide i:before {
  color: #19184b;
}

.vsm-drop-off-your-cv .bg {
  background: #19184b;
  background: linear-gradient(163deg, #19184b 0%, #401369 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#19184b",endColorstr="#401369",GradientType=1);
}

.vsm-latest-featured .media {
  border-radius: 0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.vsm-latest-featured .content-card {
  border-radius: 8px;
  background: #19184b;
  background: linear-gradient(163deg, #19184b 0%, #401369 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#19184b",endColorstr="#401369",GradientType=1);
}

.vsm-latest-featured .content-card .content {
  padding: 1.875rem;
  color: #ffffff;
}

.vsm-latest-featured .content-card .content .subtitle {
  margin-bottom: 0.975rem;
  color: #ffffff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
}

.vsm-latest-featured .content-card .content .xs-heading {
  color: #ffffff;
}

footer.vsm-default-footer {
  background: #19184B;
}

.vsm-default-signoff {
  background: #19184B;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vsm-the-team .btn {
  background: #d5a5ff;
  border: 0;
}

.vsm-the-team .btn:hover {
  background: #090909;
  border: 0;
}

.vsm-content-layout-2 .abs-left::before {
  content: "";
  background: rgba(23, 155, 158, 0.1);
  width: 34.375rem;
  height: 34.375rem;
  border-radius: 100rem;
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
}

.vsm-content-layout-2 .abs-left:after {
  content: "";
  background-image: url("/uploads/square-patterns.svg");
  background-repeat: no-repeat;
  width: 123px;
  height: 167px;
  position: absolute;
  bottom: -40px;
  left: 30%;
}

.vsm-content-layout-2 .col-md-6 .row .col-md-8 .media {
  position: relative;
  overflow: visible;
}

.vsm-content-layout-2 .col-md-6 .row .col-md-8 .media img {
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.vsm-content-layout-2 .col-md-6 .row .col-md-8 .media::before {
  content: "";
  background: rgba(213, 165, 255, 0.1);
  width: 26.25rem;
  height: 26.25rem;
  border-radius: 100rem;
  position: absolute;
  top: -4rem;
  display: block;
  left: -2rem;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.vsm-content-layout-2 .col-md-6 .row .col-md-8 .media:after {
  content: "";
  background-image: url("/uploads/square-patterns.svg");
  background-repeat: no-repeat;
  width: 123px;
  height: 167px;
  position: absolute;
  top: -60px;
  right: 10%;
}

.vsm-intro-content-40-60 .bg {
  padding: 2.5rem 0 0 0;
  background: rgba(213, 165, 255, 0.15);
}

.vsm-intro-content-40-60 + .vsm-short-content-33-33-33 .bg {
  padding: 0 0 2.5rem 0;
  background: rgba(213, 165, 255, 0.15);
}

.vsm-intro-content-40-60 + .vsm-short-content-33-33-33 .component-wrapper .content .feature .media {
  background: rgba(213, 165, 255, 0.3);
  padding: 1rem;
}

.vsm-full-width-testimonial-carousel.clients .testimonial-data .media:before {
  display: none;
}

.vsm-full-width-testimonial-carousel.clients .testimonial-data .media img {
  -o-object-fit: contain;
     object-fit: contain;
}

.vsm-split-grid-images-content-features .grid {
  position: relative;
}

.vsm-split-grid-images-content-features .grid::before {
  content: "";
  background: rgba(213, 165, 255, 0.3);
  width: 32.25rem;
  height: 32.25rem;
  border-radius: 100rem;
  position: absolute;
  top: -1.5rem;
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
  pointer-events: none;
}

.vsm-split-grid-images-content-features .grid:after {
  content: "";
  background-image: url("/uploads/square-patterns.svg");
  background-repeat: no-repeat;
  width: 123px;
  height: 167px;
  position: absolute;
  top: -1rem;
  left: -1.5rem;
}

.vsm-media-hub .article-tags dt {
  font-size: 12px;
  font-size: 0.75rem;
}

.vsm-media-hub .article-tags dd {
  font-size: 12px;
  font-size: 0.75rem;
}

.vsm-media-hub .article-tags dd a {
  font-size: 12px;
  font-size: 0.75rem;
}

.vsm-media-hub .article-tags dd a:after {
  font-size: 12px;
  font-size: 0.75rem;
}

.client-logo .brand {
  width: 80px;
}

.client-logo .brand img {
  width: 100% !important;
}

body.sign-in .brand {
  margin: 0 auto;
}


/* CM The Team Carousel */
.cm-the-team-carousel {
  overflow: hidden;
}

.cm-the-team-carousel.primary-bg .bg {
  padding: 3.75rem 0;
  background: #e36565;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(227, 101, 101, 0.05)), to(rgba(255, 255, 255, 0.05)));
  background: linear-gradient(180deg, rgba(227, 101, 101, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.cm-the-team-carousel.secondary-bg .bg {
  padding: 3.75rem 0;
  background: #7f9f90;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(127, 159, 144, 0.15)), to(rgba(255, 255, 255, 0.15)));
  background: linear-gradient(180deg, rgba(127, 159, 144, 0.15) 0%, rgba(255, 255, 255, 0.15) 100%);
}

.cm-the-team-carousel.tertiary-bg .bg {
  padding: 3.75rem 0;
  background: #d3ae8b;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(211, 174, 139, 0.15)), to(rgba(255, 255, 255, 0.15)));
  background: linear-gradient(180deg, rgba(211, 174, 139, 0.15) 0%, rgba(255, 255, 255, 0.15) 100%);
}

.cm-the-team-carousel.exec-bg .bg {
  padding: 3.75rem 0;
  background: #1c1c1c;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(28, 28, 28, 0.15)), to(rgba(255, 255, 255, 0.15)));
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.15) 0%, rgba(255, 255, 255, 0.15) 100%);
}

.cm-the-team-carousel.exec-bg .cm-body > .row:nth-child(2) .btn {
  border: 0.0625rem solid #090909;
  color: #090909;
}

.cm-the-team-carousel.exec-bg .cm-body > .row:nth-child(2) .btn span {
  color: #090909;
}

.cm-the-team-carousel.exec-bg .cm-body > .row:nth-child(2) .btn:hover {
  background: #090909;
  color: white;
}

.cm-the-team-carousel.exec-bg .cm-body > .row:nth-child(2) .btn:hover span {
  color: white;
}

.cm-the-team-carousel.exec-bg .cm-body .profile .media:after {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(255, 255, 255, 0)), to(#000000));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, #000000 100%);
}

.cm-the-team-carousel .swiper-container {
  overflow: visible;
}

.cm-the-team-carousel .swiper-pagination {
  display: none;
}

.cm-the-team-carousel .swiper-navigation {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 40%;
  width: 100%;
  left: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cm-the-team-carousel .swiper-navigation div {
  margin: 0 1.875rem;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 100em;
  width: 55px;
  height: 55px;
}

.cm-the-team-carousel .swiper-navigation div:hover {
  background: white;
}

.cm-the-team-carousel .swiper-navigation div.swiper-button-disabled {
  opacity: 0;
}

.cm-the-team-carousel .swiper-button-prev {
  left: 0.938rem;
  font-size: 30px;
  font-size: 1.875rem;
  color: rgba(var(--vsm-primary-colour), 1);
  position: relative;
  top: 0;
}

.cm-the-team-carousel .swiper-button-prev:after {
  content: "";
}

.cm-the-team-carousel .swiper-button-next {
  right: 0.938rem;
  font-size: 30px;
  font-size: 1.875rem;
  color: rgba(var(--vsm-primary-colour), 1);
  position: relative;
  top: 0;
}

.cm-the-team-carousel .swiper-button-next:after {
  content: "";
}

.cm-the-team-carousel .content {
  text-align: center;
}

.cm-the-team-carousel .col {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .cm-the-team-carousel .col {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 33%;
            flex: 1 0 33%;
  }
}

.cm-the-team-carousel .bg {
  padding: 3.75rem 0;
}

.cm-the-team-carousel .cm-header .md-heading {
  font-weight: 600;
  font-size: 40px;
  font-size: 2.5rem;
  margin-bottom: 1.875rem;
}

.cm-the-team-carousel .cm-body .profile {
  overflow: hidden;
  height: 22.5rem;
  max-width: 19rem;
  margin-bottom: 1.875rem;
  position: relative;
}

.cm-the-team-carousel .cm-body .profile .btn {
  background: rgba(255, 255, 255, 0);
  border: 0.0625rem solid white;
}

.cm-the-team-carousel .cm-body .profile .btn span {
  color: white;
}

.cm-the-team-carousel .cm-body .profile .btn:hover {
  background: white;
}

.cm-the-team-carousel .cm-body .profile .btn:hover span {
  color: #e36565;
}

.cm-the-team-carousel .cm-body .profile .media[data-initials]:before {
  border-radius: 0;
  width: 100%;
  height: 100%;
}

.cm-the-team-carousel .cm-body .profile .media {
  border-radius: 0.5rem;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
}

.cm-the-team-carousel .cm-body .profile .media img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cm-the-team-carousel .cm-body .profile .media:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  background: white;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(255, 255, 255, 0)), to(#c6726c));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, #c6726c 100%);
  z-index: 1;
  mix-blend-mode: multiply;
}

.cm-the-team-carousel .cm-body .profile .content {
  position: relative;
  z-index: 1;
  color: white;
  top: 80%;
  -webkit-transition: 800ms all ease-in-out;
  transition: 800ms all ease-in-out;
}

.cm-the-team-carousel .cm-body .profile .content .social {
  list-style: none;
  padding: 0;
  margin: 0.938rem auto 0 auto;
  text-align: center;
}

.cm-the-team-carousel .cm-body .profile .content .social li {
  display: inline-block;
  margin: 0 0.625rem;
}

.cm-the-team-carousel .cm-body .profile .content h4 {
  color: inherit;
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 0.3125rem;
}

.cm-the-team-carousel .cm-body .profile .content .rte {
  display: none;
  font-size: 16px;
  font-size: 1rem;
}

.cm-the-team-carousel .cm-body .profile .content .btn {
  opacity: 0;
  -webkit-transition: 800ms all ease-in-out;
  transition: 800ms all ease-in-out;
}

.cm-the-team-carousel .cm-body .profile .content .social {
  opacity: 0;
  -webkit-transition: 800ms all ease-in-out;
  transition: 800ms all ease-in-out;
}

.cm-the-team-carousel .cm-body .profile .content .social li a {
  color: white;
}

.cm-the-team-carousel .cm-body .profile:hover .content {
  top: 50%;
}

.cm-the-team-carousel .cm-body .profile:hover .content > p {
  display: none;
}

.cm-the-team-carousel .cm-body .profile:hover .content .rte {
  display: block;
}

.cm-the-team-carousel .cm-body .profile:hover .content .rte p {
  display: block;
}

.cm-the-team-carousel .cm-body .profile:hover .content .btn,
.cm-the-team-carousel .cm-body .profile:hover .content .social {
  opacity: 1;
}

.cm-the-team-carousel .cm-body .btn {
  background: rgba(0, 0, 0, 0);
  border: 0.0625rem solid white;
}

.cm-the-team-carousel .cm-body .btn:hover {
  border: 0.0625rem solid #e36565;
}

.cm-the-team-carousel .cm-body .btn:hover span {
  color: #e36565;
}

.cm-the-team-carousel .cm-body > .row:nth-child(2) .btn {
  border: 0.0625rem solid #e36565;
  color: #e36565;
}

.cm-the-team-carousel .cm-body > .row:nth-child(2) .btn span {
  color: #e36565;
}

.cm-the-team-carousel .cm-body > .row:nth-child(2) .btn:hover {
  background: #e36565;
  color: white;
}

.cm-the-team-carousel .cm-body > .row:nth-child(2) .btn:hover span {
  color: white;
}
/* CM The Team Carousel */

/* VSM Profile Cards Carousel */
.vsm-profile-cards.carousel {
  overflow: hidden;
}

.vsm-profile-cards.carousel .vsm-body {
  overflow: visible;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
}

.vsm-profile-cards.carousel .swiper-container {
  overflow: visible;
}

.vsm-profile-cards.carousel .swiper-pagination {
  display: none;
  position: relative;
  margin: 1.875rem 0 0 0;
}

.vsm-profile-cards.carousel .swiper-pagination .swiper-pagination-bullet {
  margin: 00.25rem;
  width: 0.625rem;
  height: 0.625rem;
  background: rgba(var(--vsm-primary-colour), 0.5);
}

.vsm-profile-cards.carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgba(var(--vsm-primary-colour), 1);
}

.vsm-profile-cards.carousel .swiper-navigation {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.vsm-profile-cards.carousel .swiper-navigation div {
  margin: 0 0 0 1.875rem;
  left: 0;
  right: 0;
}

.vsm-profile-cards.carousel .swiper-button-prev {
  font-size: 30px;
  font-size: 1.875rem;
  color: rgba(var(--vsm-primary-colour), 1);
  position: relative;
  top: 0;
}

.vsm-profile-cards.carousel .swiper-button-prev:after {
  content: "";
}

.vsm-profile-cards.carousel .swiper-button-next {
  font-size: 30px;
  font-size: 1.875rem;
  color: rgba(var(--vsm-primary-colour), 1);
  position: relative;
  top: 0;
}

.vsm-profile-cards.carousel .swiper-button-next:after {
  content: "";
}

.vsm-top .navigation .primary-nav .mega-menu {
  background: rgba(var(--vsm-white), 1);
  max-height: 31.25rem;
  overflow: auto;
  height: 80vh;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 {
  display: flex;
  flex-direction: row;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 h4,
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .faux-title {
  color: rgba(var(--vsm-black), 1);
  margin-bottom: 1.25rem;
  font-size: 20px;
  font-size: 1.25rem;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .list,
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .sub-list {
  display: flex;
  flex-direction: column;
  flex: 0 0 50%;
  overflow: hidden;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .list:hover h4:after,
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .list:hover .faux-title:after,
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .sub-list:hover h4:after,
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .sub-list:hover .faux-title:after {
  width: 100%;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .list h4,
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .list div.faux-title,
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .sub-list h4,
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .sub-list div.faux-title {
  position: relative;
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "proxima-nova", sans-serif;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .list h4:before,
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .list div.faux-title:before,
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .sub-list h4:before,
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .sub-list div.faux-title:before {
  content: "";
  background: rgba(var(--vsm-body-copy-colour), 0.2);
  width: 100%;
  height: 0.0625rem;
  display: block;
  margin-top: 0.625rem;
  position: absolute;
  bottom: 0.0625rem;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .list h4:after,
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .list div.faux-title:after,
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .sub-list h4:after,
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .sub-list div.faux-title:after {
  content: "";
  background: rgba(var(--vsm-primary-colour), 1);
  width: 100%;
  height: 0.1875rem;
  display: block;
  margin-top: 0.625rem;
  position: relative;
  z-index: 1;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .list h4 a,
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .list div.faux-title a,
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .sub-list h4 a,
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .sub-list div.faux-title a {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .list nav,
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .sub-list nav {
  display: flex;
  flex-direction: column;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .list nav a,
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .sub-list nav a {
  padding: 0;
  margin-bottom: 0.625rem;
  font-weight: 400;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .list {
  max-width: calc(50% - 30px);
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .list nav a {
  display: flex;
  justify-content: space-between;
  border-bottom: 0.0625rem solid rgba(var(--vsm-white), 0.2);
  margin-bottom: 0;
  padding: 0.3125rem 0;
  align-items: center;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .list nav a:hover {
  background: none;
  color: rgba(var(--vsm-primary-colour), 1);
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .list nav a.active {
  color: rgba(var(--vsm-primary-colour), 1);
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .list nav a.active::after {
  color: rgba(var(--vsm-primary-colour), 1);
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .list nav a.has-child:after {
  content: "\f0da";
  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;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .sub-list {
  margin-left: 1.875rem;
  display: none;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .sub-list nav a {
  margin-bottom: 0;
  padding: 0.3125rem 0;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .sub-list nav a:hover {
  background: none;
  text-decoration: none;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts h4,
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts div.faux-title {
  position: relative;
  padding-right: 5rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "proxima-nova", sans-serif;
  padding: 0;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts h4 a,
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts div.faux-title a {
  position: absolute;
  right: 0;
  top: 0;
  font-size: inherit;
  padding: 0;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts h4 a:hover,
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts div.faux-title a:hover {
  color: rgba(var(--vsm-primary-colour), 1);
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts h4:before,
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts div.faux-title:before {
  content: "";
  background: rgba(var(--vsm-body-copy-colour), 0.2);
  width: 100%;
  height: 0.0625rem;
  display: block;
  margin-top: 0.625rem;
  position: absolute;
  bottom: 0.0625rem;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts h4:after,
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts div.faux-title:after {
  content: "";
  background: rgba(var(--vsm-primary-colour), 1);
  width: 9.375rem;
  height: 0.1875rem;
  display: block;
  margin-top: 0.625rem;
  transition: width 1s ease-in-out;
  position: relative;
  z-index: 1;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts .col {
  border: 0;
  flex: 1 0 50%;
  padding-right: 0;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts .insert {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 18.75rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts .insert:hover h5:after,
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts .insert:hover div.faux-title:after {
  width: 100%;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts .insert h5,
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts .insert div.faux-title {
  position: relative;
  color: rgba(var(--vsm-white), 1);
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "proxima-nova", sans-serif;
  padding-right: 0;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts .insert h5:before,
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts .insert div.faux-title:before {
  content: "";
  background: rgba(var(--vsm-white), 0.2);
  width: 100%;
  height: 0.0625rem;
  display: block;
  margin-top: 0.625rem;
  position: absolute;
  bottom: 0.0625rem;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts .insert h5:after,
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts .insert div.faux-title:after {
  content: "";
  background: rgba(var(--vsm-primary-colour), 1);
  width: 100%;
  height: 0.1875rem;
  display: block;
  margin-top: 0.625rem;
  position: relative;
  z-index: 1;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts .insert .faux-link {
  font-family: "proxima-nova", sans-serif;
  font-weight: 700;
  color: rgba(var(--vsm-primary-colour), 1);
  position: relative;
  text-decoration: none;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts .insert .faux-link:after {
  content: "\f30b";
  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: 0.625rem;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts .insert .faux-link:hover {
  color: rgba(var(--vsm-white), 1);
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts .insert .faux-link:hover:after {
  left: 1.25rem;
  animation: forwardMovement 800ms infinite;
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts .insert::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0rem;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}
.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts:hover h4.div:after {
  width: 100%;
}

.meganav.expanded-items .mega-menu > .container > .row .col .title i{margin-left:10px; font-size: 14px;}


.meganav.expanded-items .mega-menu{}
.meganav.expanded-items .mega-menu .container .row .col{flex:1 0 auto; width: auto; min-width:33.33%; max-width:50%;}
.meganav.expanded-items .mega-menu >.container >.row .col .title a{color:rgba(var(--vsm-primary-colour), 1); margin:0; padding:0 0 20px 0; border-bottom:1px solid rgba(255, 255, 255, 0.5);}
.meganav.expanded-items .mega-menu >.container >.row .col .title strong{color:rgba(var(--vsm-primary-colour), 1); margin:0; padding:0 0 20px 0; display:block; border-bottom:1px solid rgba(255, 255, 255, 0.5); font-size: 1rem; font-weight: 600;}
.meganav.expanded-items .mega-menu >.container >.row .col .title a:hover{color:rgba(var(--vsm-primary-colour), 1); border-bottom:1px solid rgba(var(--vsm-primary-colour), 1);}
.meganav.expanded-items .mega-menu >.container >.row .col ul{display: block; position: relative; margin-bottom: 30px;}
.meganav.expanded-items .mega-menu >.container >.row .col ul li{}
.meganav.expanded-items .mega-menu >.container >.row .col ul li a{color:rgba(var(--vsm-primary-colour), 1); padding:0; margin:0 0 0px 0; font-weight: 300; font-size:0.875rem;}
.meganav.expanded-items .mega-menu >.container >.row .col ul li a:hover{color:rgba(var(--vsm-primary-colour), 1);}
.meganav.expanded-items .mega-menu >.container >.row .col .title a i{margin-left:10px; font-size: 14px;}
/* VSM Profile Cards Carousel */