@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');
:root {
  --vsm-white:  255, 255, 255;
  --vsm-black:  0, 0, 0;
  --vsm-body-copy-colour:  1, 1, 61; /* Navy Blue */
  --vsm-accent-colour:  113, 0, 226; /* Purple */
  --vsm-primary-colour:  3, 162, 255; /* sky blue #007aff */ 
  --vsm-secondary-colour:  248, 103, 48; /* Orange */
  --vsm-tertiary-colour:  255, 200, 52; /* Yellow */
  --vsm-quaternary-colour:  1, 1, 61; /* Navy Blue #01013D */
  --vsm-quinary-colour:  214, 218, 213;
}

:root {
  --vsm-mobile-padding-top: 30px;
  --vsm-mobile-padding-bottom: 30px;
  --vsm-tablet-padding-top: 60px;
  --vsm-tablet-padding-bottom: 60px;
  --vsm-desktop-padding-top: 100px;
  --vsm-desktop-padding-bottom: 100px;
}


/* **** 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
--------------------------------*/

/* ------------------------------
Scrollbar
-------------------------------*/

::-moz-selection {
  background-color: rgba( 3, 162, 255, 1);
  color: #ffffff;
}
::selection {
  background-color: rgba( 3, 162, 255, 1);
  color: #ffffff;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(1, 1, 61, 1);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left top, left bottom, from(#7100E2), to(#007aff));
  background: linear-gradient(to bottom, #7100E2 0%, #007aff 100%);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #007aff;
}

html {
  scrollbar-color: #007aff #01013D;
}

/* ------------------------------
Typography
--------------------------------*/
html,
body {
  height: 100% !important;
  font-family: 'Poppins', 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{
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--vsm-body-copy-colour);
}
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--vsm-body-copy-colour);
}
ul,
ol,
dd,
p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
}

ul strong,
ol strong,
dd strong,
p strong {
  font-weight: 600;
}

a {
  color: var(--vsm-body-copy-colour);
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
  color: var(--vsm-secondary-colour);
}

.heading {
  font-size: 50px;
  font-size: 3.125rem;
}

.md-heading {
  position: relative;
  font-size: 40px;
  font-size: 2.5rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
/*Centered
.md-heading::after {
   position: absolute;
    content: '';
    border-bottom: 6px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(270deg, #ff0077 0%, #ac00dd);
    bottom: 0;
    left: calc(50% - 100px);
    width: 200px;}*/
    /* left align */
.md-heading::after {
   position: absolute;
    content: '';
    border-bottom: 6px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(270deg, #F86730 0%, #FFC834);
    bottom: 0;
    left: 0;
    width: 200px;
  }
.sm-heading {
  font-size: 30px;
  font-size: 1.875rem;
  position: relative;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.sm-heading::after {
   position: absolute;
    content: '';
    border-bottom: 6px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(270deg, #F86730 0%, #FFC834);
    bottom: 0;
    left: 0;
    width: 200px;
  }
.xs-heading {
  font-size: 26px;
  font-size: 1.625rem;
}

.xxs-heading {
  font-size: 20px;
  font-size: 1.25rem;
  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: 0;
  border: 0.063rem solid rgba(var(--vsm-white), 1);
  background-color: rgba(var(--vsm-primary-colour), 1);
}
.btn span {
  color: rgba(var(--vsm-white), 1);
}
.btn:hover span {
  color: rgba(var(--vsm-body-copy-colour), 1);
}
.btn:hover {
  background-color: rgba(var(--vsm-white), 1);
  border: 0.063rem solid rgba(var(--vsm-primary-colour), 1);
}
.inline-link {
 color: rgba(var(--vsm-white), 1);
}
.inline-link::after{ 
 color: rgba(var(--vsm-white), 1);
}
.inline-link:hover,
.inline-link:hover::after{
    color: rgba(var(--vsm-secondary-colour), 1);
}
/* ------------------------------
Forms
--------------------------------*/
/* ***** FORM VALIDATION MESSAGES ****** */
.field-validation-error,
.field-validation-valid,
.validation-summary-errors {
  /* DEFAULT STYLES FOR VALIDATION MESSAGES - CLASS BASED ON DEV REQUIREMENTS */
}
.form-select {
  color: rgba(var(--vsm-body-copy-colour), 0.7);
}
.form-holder .btn {
  background: rgba( 3, 162, 255, 1);
}
/* ------------------------------
Theme */

/*background colours */

.bg-pale-blue {
  background: #F2FAFF;
}
.bg-grey{
  background: #F8F8F8;
}
.bg-dark-blue{
  background: #01013D;
}
/* gradients */
/* white to light blue */
.bg-gradient-white-pale-blue{
  background: rgb(255,255,255);
  background: linear-gradient(rgba(255,255,255,1) 0%, rgba(242,250,255,1) 100%); 
}

/* dark blue to light blue */
.bg-gradient-darkblue-blue{
background: rgb(1,1,61);
background: linear-gradient(190deg, rgba(1,1,61,1) 0%, rgba(3,162,255,1) 100%); 
}



/* 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;
}
/* mobile nav */
.slide-menu ul li > a:focus, 
.slide-menu ul li > a:hover, 
.slide-menu ul li > a:active {
  border-bottom: none;
  color: rgba(var(--vsm-primary-colour), 1) !important;
}
.slide-menu ul li > a {
  border-bottom: none;
  color: rgba(var(--vsm-body-copy-colour), 1) !important;
}
/* Navigation */
@media (max-width: 1024px){
.vsm-top .navigation .col.d-flex:nth-child(1){
  display: none!important;
}}
.vsm-top .navigation .d-flex {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    width: auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-end;
}

.vsm-top .navigation .primary-nav ul li ul{
  width: 11em;
}

@media (min-width: 1024px){
  .vsm-top .navigation .brand img {
      height: 2.125rem;
  }
}
.vsm-top .navigation .primary-nav ul li a {
    font-weight: 800;
    color: rgba(var(--vsm-body-copy-colour), 1);
}
.vsm-top.fixed {
  background: rgba(255, 255, 255, 0.9);
}
.vsm-top .navigation {
    padding: 1.938rem 0;
}

.menu-open .vsm-top .navigation .more-nav ul li a:hover{
  color: rgba(var(--vsm-primary-colour), 1);
}
.vsm-top .navigation .more-nav ul li .burger-menu:hover span{
  background: rgba(var(--vsm-primary-colour), 1);
}

.vsm-top.switch-fixed .navigation .more-nav ul li .burger-menu:hover span{
  background: rgba(var(--vsm-primary-colour), 1);
}
.vsm-top.switch-fixed .navigation .more-nav ul li .burger-menu:hover span::before{
  background: rgba(var(--vsm-primary-colour), 1);
}
.vsm-top.switch-fixed .navigation .more-nav ul li .burger-menu:hover span::after{
  background: rgba(var(--vsm-primary-colour), 1);
}
.vsm-top.fixed .navigation .more-nav ul li .burger-menu:hover span::before{
  background: rgba(var(--vsm-primary-colour), 1);
}
.vsm-top.fixed .navigation .more-nav ul li .burger-menu:hover span::after{
  background: rgba(var(--vsm-primary-colour), 1);
}
/* Menu open */
.menu-open .vsm-top.switch-fixed .navigation .brand .logo-1{
  display: none;
}
.menu-open .vsm-top.switch-fixed .navigation .brand .logo-2{
  display: block;
}
/* Footer */
.tiktok{
  width:auto;
  height: 1.1rem;
  opacity:0.7;
}
.tiktok:hover{
  opacity: 1;
  }
footer.vsm-default-footer ul li a{
  vertical-align: top;
}
footer.vsm-default-footer .social li{
  line-height: 1;
}
footer.vsm-default-footer {
  background: rgba(var(--vsm-quaternary-colour), 1);
  padding: 3.75rem 0 0 0;
}
.vsm-default-signoff {
  background: rgba(var(--vsm-quaternary-colour), 1);
}
.vsm-default-signoff .signoff-links li {
  font-size: 0.75rem;
}
/* End footer */


/* vsm single media hero */
.vsm-default-single-media-hero{
  position: relative;
}
/* .vsm-default-single-media-hero::before {
  content: "";
  background-image: url('/img/11hero-overlay.svg');
  position: absolute;
  width: 100%;
  height: 343px;
  bottom: 0;
  right: 0;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position-y: bottom;
  background-position-x: right;
  display: inline-block;
} */

.vsm-default-single-media-hero .bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(1,1,61);
background: linear-gradient(190deg, rgba(1,1,61,1) 0%, rgba(3,162,255,1) 100%); 
  mix-blend-mode: multiply;
  opacity: 0.75;
}
.vsm-default-single-media-hero .md-heading::after{
  display: none;
} 
/* vsm-stats-count-up */
@media (min-width: 768px){
.vsm-stats-count-up .component-wrapper {
    flex: 0 0 auto;
    width: 83.33333333%;
}
.vsm-stats-count-up{
  padding: 30px 0px;
}
}

.vsm-stats-count-up .stat .count{
  position: relative;
  padding-bottom: 1rem;
}
.vsm-stats-count-up .col .stat:after {
  display: none;
}
.vsm-stats-count-up .row .col-md-3:nth-child(1) .stat .count {
color: rgba(var(--vsm-secondary-colour), 1);
}
.vsm-stats-count-up .row .col-md-3:nth-child(1) .stat .count::after {
   position: absolute;
    content: '';
    /* border-bottom: 6px solid #F86730; */
    border-bottom: 6px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(270deg, #F86730 0%, #FFC834);
    bottom: 0;
    left: 0;
    width: 100%;
    /* width: 200px; */
}
.vsm-stats-count-up .row .col-md-3:nth-child(2) .stat .count {
color: rgba(var(--vsm-primary-colour), 1);
}
.vsm-stats-count-up .row .col-md-3:nth-child(2) .stat .count::after {
   position: absolute;
    content: '';
    /* border-bottom: 6px solid #03A2FF; */
    border-bottom: 6px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(90deg, #7100E2 0%, #03A2FF);
    bottom: 0;
    left: 0;
    width: 100%;
    /* width: 200px; */
}
.vsm-stats-count-up .row .col-md-3:nth-child(3) .stat .count {
color: rgba(var(--vsm-tertiary-colour), 1);
}
.vsm-stats-count-up .row .col-md-3:nth-child(3) .stat .count::after {
   position: absolute;
    content: '';
    /* border-bottom: 6px solid #FFC834; */
    border-bottom: 6px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(270deg, #FFC834 0%, #F86730);
    bottom: 0;
    left: 0;
    width: 100%;
    /* width: 200px; */
}

.vsm-stats-count-up .row .col-md-3:nth-child(4) .stat .count::after{
  position: absolute;
    content: '';
    /* border-bottom: 6px solid #03A2FF; */
    border-bottom: 6px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(90deg, #7100E2 0%, #03A2FF);
    bottom: 0;
    left: 0;
    width: 100%;
    /* width: 200px; */
}

.vsm-stats-count-up .row .col .stat .count {
  position: relative;
  font-size: 40px;
  font-size: 2.5rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.vsm-stats-count-up .stat .count {
    text-align: left;
}
.vsm-stats-count-up .stat .description {
   font-weight: 600;
  text-align: left;
}



/* vsm-content-layout-4 */
@media (min-width: 768px){
  .vsm-content-layout-4 .right-col .mw-660 .content {
      padding-top: calc(8.33333% + 1rem);
      padding-left: calc(8.33333% + 1rem);
      padding-right: calc(8.33333% + 1rem);
      padding-bottom: 0;
  }
}
.vsm-content-layout-4 .left-col .media {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    margin-bottom: 0.938rem;
    width: 100%;
    top: 0;
}
.vsm-content-layout-4 .left-col .media::after {
   content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(1,1,61);
background: linear-gradient(190deg, rgba(1,1,61,1) 0%, rgba(3,162,255,1) 100%); 
  mix-blend-mode: multiply;
  opacity: 0.75;
}
.vsm-content-layout-4 .right-col .media::after {
   content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(1,1,61);
background: linear-gradient(190deg, rgba(1,1,61,1) 0%, rgba(3,162,255,1) 100%); 
  mix-blend-mode: multiply;
  opacity: 0.75;
}

@media (max-width: 768px){
  .vsm-content-layout-4 .right-col .media{
margin-bottom: 2rem;
  }
}

/* .vsm-split-content-25-25-25-25 */
@media only screen and (max-width: 1023px) and (min-width: 600px) {
.vsm-split-content-25-25-25-25 .vsm-body .col {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 50%;
  flex: 1 0 50%;
  max-width: 50%;
}
}

.vsm-split-content-25-25-25-25.bg-white .content .inline-link{
  color: #01013D;
}

.vsm-split-content-25-25-25-25.bg-white .content .inline-link::after{
  color: #01013D;
}

.vsm-split-content-25-25-25-25 .media{
  height:16rem;
  width: 16rem;
}

@media (max-width:768px){

  .vsm-centralised-title-intro-text .row.justify-content-start.align-left .md-heading{
    text-align: center !important;
  }



  .vsm-split-content-25-25-25-25 .content{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.vsm-split-content-25-25-25-25 .media {
    margin-bottom: 1.875rem;
    text-align: left;
}
.vsm-split-content-25-25-25-25 .media img {
width: 100%;
height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.vsm-split-content-25-25-25-25.bg-dark-blue .row .col .content .rte{
  position: relative;
  color: rgba(var(--vsm-white), 1);
  padding-top: 1.5rem;
  margin-top: 1em;
}
.vsm-split-content-25-25-25-25.bg-dark-blue .row .col:nth-child(1) .content .rte::after, .vsm-split-content-25-25-25-25.bg-dark-blue .row .col:nth-child(5) .content .rte::after {
    position: absolute;
    content: '';
    /* border-bottom: 6px solid #03A2FF; */
    border-bottom: 6px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(90deg, #7100E2 0%, #03A2FF);
    top: 0;
    left: 0;
    width: 100%;
    /* width: 200px; */
}
.vsm-split-content-25-25-25-25.bg-dark-blue .row .col:nth-child(1) .content .xs-heading, .vsm-split-content-25-25-25-25.bg-dark-blue .row .col:nth-child(5) .content .xs-heading {
    color: rgba(var(--vsm-primary-colour), 1);
}


.vsm-split-content-25-25-25-25.bg-dark-blue .row .col:nth-child(2) .content .rte::after, .vsm-split-content-25-25-25-25.bg-dark-blue .row .col:nth-child(6) .content .rte::after {
    position: absolute;
    content: '';
    /* border-bottom: 6px solid #03A2FF; */
    border-bottom: 6px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(90deg,  #F86730 0%, #7100E2);
    top: 0;
    left: 0;
    width: 100%; 
    /* width: 200px; */
}
.vsm-split-content-25-25-25-25.bg-dark-blue .row .col:nth-child(2) .content .xs-heading, .vsm-split-content-25-25-25-25.bg-dark-blue .row .col:nth-child(6) .content .xs-heading {
    color: rgba(var(--vsm-secondary-colour), 1);
}

.vsm-split-content-25-25-25-25.bg-dark-blue .row .col:nth-child(3) .content .rte::after,.vsm-split-content-25-25-25-25.bg-dark-blue .row .col:nth-child(7) .content .rte::after {
    position: absolute;
    content: '';
    /* border-bottom: 6px solid #03A2FF; */
    border-bottom: 6px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(90deg, #FFC834 0%, #F86730);
    top: 0;
    left: 0;
    width: 100%;
    /* width: 200px; */
}
.vsm-split-content-25-25-25-25.bg-dark-blue .row .col:nth-child(3) .content .xs-heading, .vsm-split-content-25-25-25-25.bg-dark-blue .row .col:nth-child(7) .content .xs-heading {
    color: rgba(var(--vsm-tertiary-colour), 1);
}

.vsm-split-content-25-25-25-25.bg-dark-blue .row .col:nth-child(4) .content .rte::after, .vsm-split-content-25-25-25-25.bg-dark-blue .row .col:nth-child(8) .content .rte::after {
    position: absolute;
    content: '';
    /* border-bottom: 6px solid #03A2FF; */
    border-bottom: 6px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(90deg, #7100E2 0%, #390071);
    top: 0;
    left: 0;
    width: 100%;
    /* width: 200px; */
}
.vsm-split-content-25-25-25-25.bg-dark-blue .row .col:nth-child(4) .content .xs-heading, .vsm-split-content-25-25-25-25.bg-dark-blue .row .col:nth-child(8) .content .xs-heading {
    color: rgba(var(--vsm-accent-colour), 1);
}
/* vsm-centralised-title-intro-text */

.vsm-centralised-title-intro-text .row.justify-content-start.align-left .md-heading {
  text-align: left;
  position: relative;
  margin-bottom: 5rem;
}
.vsm-centralised-title-intro-text .row.justify-content-start.align-left .md-heading::after {
   position: absolute;
    content: '';
    border-bottom: 6px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(270deg, #F86730 0%, #FFC834);
    bottom: 0;
    width: 200px;
}

@media (min-width:768px){
  .vsm-centralised-title-intro-text .row.justify-content-start.align-left .md-heading::after{
    left: 0;
  }
}

.vsm-centralised-title-intro-text.eleveninvestmentslarge-overlay.bg-grey .bg {
  overflow: visible;
}

.vsm-centralised-title-intro-text.eleveninvestmentslarge-overlay.bg-grey .bg{
  background-image: url('/img/11investmentslargerepeat.svg');

  z-index: 2;
  background-repeat: repeat-x;
  background-size: contain;
  background-position-y: bottom;
  background-position-x: right;
  padding-bottom:2rem;
  }

.vsm-centralised-title-intro-text.bg-pale-blue.eleveninvestments-overlay {
  overflow: visible;
}
@media (max-width: 768px) {
  .vsm-centralised-title-intro-text.bg-pale-blue.eleveninvestments-overlay .bg{
  background-image: url('/img/11investmentsrepeat.svg');
  z-index: 2;
  background-repeat: repeat-x;
  background-position-y: bottom;
  background-position-x: right;
    background-size: 250%;
  }
}
@media (min-width: 769px) {
.vsm-centralised-title-intro-text.bg-pale-blue.eleveninvestments-overlay .bg{
  background-image: url('/img/11investmentsrepeat.svg');

  z-index: 2;
  background-repeat: repeat-x;
  background-size: contain;
  background-position-y: bottom;
  background-position-x: right;
  }
}

.vsm-contained-full-width-banner.bg-grey{
  padding-top: 2rem;
} 
.vsm-centralised-title-intro-text .md-heading {
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}
.vsm-centralised-title-intro-text .md-heading::after {
   position: absolute;
    content: '';
    border-bottom: 6px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(270deg, #F86730 0%, #FFC834);
    bottom: 0;
    left: calc(50% - 100px);
    width: 200px;
}
@media (min-width: 768px) {
.vsm-centralised-title-intro-text.eleven-overlay .container{
  background-image: url('/img/11s.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position-y: bottom;
  background-position-x: right;
} 
}

.vsm-centralised-title-intro-text.bg-dark-blue .xs-heading{
  color: rgba(var(--vsm-white), 1);
}
.vsm-centralised-title-intro-text.bg-dark-blue .md-heading{
  color: rgba(var(--vsm-white), 1);
}
.vsm-centralised-title-intro-text.bg-dark-blue .rte li, 
.vsm-centralised-title-intro-text.bg-dark-blue .rte p, 
.vsm-centralised-title-intro-text.bg-dark-blue .rte dd, 
.vsm-centralised-title-intro-text.bg-dark-blue .rte a{
  color: rgba(var(--vsm-white), 1);
}
/*vsm-full-width-testimonial-carousel*/
.vsm-full-width-testimonial-carousel .bg {
    background: rgba(var(--vsm-primary-colour), 0);
    padding: 0rem 0;
}

/*------------------------------------------------
VSM Full width featured columns carousel
------------------------------------------------*/
.vsm-full-width-featured-columns-carousel .media {
    height: 4rem;
    margin-bottom: 1.875rem;
    text-align: left;
}
.vsm-full-width-featured-columns-carousel .media img {
    width: auto;
    height: 3.5rem;
    -o-object-fit: contain;
    object-fit: contain;
}

.vsm-full-width-featured-columns-carousel .vsm-header{
  position: relative;
}
.vsm-full-width-featured-columns-carousel .vsm-header{
  background-image: url('/img/eleveninvestments-light.svg');

  z-index: 2;
  background-repeat: repeat-x;
  background-size: contain;
  background-position-y: bottom;
  background-position-x: right;
  padding-bottom: 3rem;
}
/*------------------------------------------------
VSM Full width featured columns carousel
------------------------------------------------*/
.vsm-full-width-call-to-action-alt .btn{
  margin-top:1rem;
}
.vsm-full-width-call-to-action-alt .btn:hover {
  border-radius: 0;
  border: 0.063rem solid rgba(var(--vsm-primary-colour), 1);
  background-color: rgba(var(--vsm-black), 1);
  color:rgba(var(--vsm-white), 1);
  padding: 0.625rem 1.875rem;
  font-size: var(--vsm-button-text-size);
  font-weight: 600;
}

/*vsm-content-in-image-50-50  */
.vsm-content-in-image-50-50 .container {
  min-width: 100%;
    margin-right: auto;
    margin-left: auto;
}
.vsm-content-in-image-50-50 .col{
    padding-right: 0;
    padding-left: 0!important;
    margin:0;
}
.vsm-content-in-image-50-50 .content-in-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 450px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    overflow: hidden;
    margin-bottom: 0;
}
.vsm-content-in-image-50-50 .col:nth-child(1) .content-in-image .media::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgb(255,200,52);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,200,52,1,0)), to(rgba(248,103,48,1)));
    background: linear-gradient(rgba(255,200,52,1) 0%, rgba(248,103,48,1) 100%); 
    mix-blend-mode: multiply;
}
.vsm-content-in-image-50-50 .col:nth-child(2) .content-in-image .media::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgb(1, 1, 61);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(1, 1, 61,0)), to(rgba(3, 162, 255,1)));
    background: linear-gradient(rgba(1, 1, 61,1) 0%, rgba(3, 162, 255,1) 100%); 
    mix-blend-mode: multiply;
}
.vsm-content-in-image-50-50 .content-in-image .content{
  text-align: left;
}
/* vsm-default-single-media-hero */
.vsm-default-single-media-hero .bg{ 
  overflow: hidden; 
}

.vsm-default-single-media-hero .heading {
  /* text-align: left; */
  position: relative;
}
@media (max-width: 768px){
.vsm-default-single-media-hero .heading span{
  position: relative;
  width:100%;
  display: block;
}

}
.vsm-default-single-media-hero .heading span{
  position: relative;
}
.vsm-default-single-media-hero .heading span::after {
   position: absolute;
    content: '';
    border-bottom: 6px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(270deg, #F86730 0%, #FFC834);
    bottom: 0;
    left: 0;
    width: 100%;
}


/*-------------------------------------------
VSM Video Carousel
------------------------------------------*/
.vsm-video-carousel .video-card .media:before {
    content: "";
    background: #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(3,162,255,0)), to(#080808));
    background: linear-gradient(180deg, rgba(3,162,255,0) 0%, #03A2FF 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#080808",GradientType=1);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    mix-blend-mode: multiply;
}



/*-------------------------------------------
VSM Content Image 50-50
------------------------------------------*/
.vsm-content-image-50-50 {
  position: relative;
  overflow: hidden;
}
.vsm-content-image-50-50 .media{
position: relative;
    width: 100%;
    height: 100%;
    padding: 7rem 0rem 0rem 0rem;
}
.vsm-content-image-50-50 .media img {
    /* padding: 0rem 0rem; */
    z-index: 1;
    max-height: 21rem;
}
/* .vsm-content-image-50-50 .media::before {
  content: "";
  background-image: url('/img/orange-before.svg');
  position: absolute;
  width: 310px;
  height: 434px;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position-y: bottom;
  background-position-x: left;
  display: inline-block;
} */
/* .vsm-content-image-50-50 .media::after {
  content: "";
  background-image: url('/img/orange-after.svg');
  position: absolute;
  width: 310px;
  height: 434px;
  bottom: 0;
  right: 0;
  z-index: -1;
  mix-blend-mode: multiply;
  background-repeat: no-repeat;
  background-size: contain;
  background-position-y: bottom;
  background-position-x: right;
  display: inline-block;
} */

/*-------------------------------------------
VSM The Team  
------------------------------------------*/
.vsm-the-team{
  overflow: hidden;
}
.vsm-the-team .vsm-header .md-heading {
  text-align: center;
  position: relative;
  margin-bottom: 5rem;
}
.vsm-the-team .vsm-header .md-heading::after {
   position: absolute;
    content: '';
    border-bottom: 6px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(270deg, #F86730 0%, #FFC834);
    bottom: 0;
    left: calc(50% - 100px);
    width: 200px;
}


/*-------------------------------------------
VSM The Team  
------------------------------------------*/
/*-------------------------------------------
VSM vsm-short-testimonial-carousel 
------------------------------------------*/

.vsm-short-testimonial-carousel .vsm-header .md-heading {
  text-align: center;
  position: relative;
  margin-bottom: 5rem;
}
.vsm-short-testimonial-carousel .vsm-header .md-heading::after {
   position: absolute;
    content: '';
    border-bottom: 6px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(270deg, #F86730 0%, #FFC834);
    bottom: 0;
    left: calc(50% - 100px);
    width: 200px;
}
.vsm-short-testimonial-carousel .vsm-header .rte.larger-text{
    text-align: center;
}
.vsm-short-testimonial-carousel .vsm-header .col {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}
/*-------------------------------------------
End VSM .vsm-short-testimonial-carousel  
------------------------------------------*/


/*-------------------------------------------
vsm-timeline-vertical  
------------------------------------------*/
/*------------------------------------
full height
--------------------------------------*/
.vsm-timeline-vertical.full-height .swiper-container{
height:100%;
}

.vsm-timeline-vertical.full-height .swiper-container .swiper-wrapper {
  height: 100% !important;
}


@media (min-width: 768px){
.vsm-timeline-vertical {
    height: auto;
}
}
.vsm-timeline-vertical .event {
  padding: 0.938rem 1.875rem;
}
.vsm-timeline-vertical .bg {
  position: relative;
    background-color: rgba(var(--vsm-primary-colour), 0); 
}
.vsm-timeline-vertical .bg::before {
   content: "";
  position: absolute;
  width: 100%;
  height: 5%;
  bottom: 0;
  left: 0;
  background: rgb(255,255,255);
  background: linear-gradient(rgba(242,250,255,0.1) 0%, rgba(255,255,255,1) 100%);  
  opacity: 1;
  z-index: 2;
}
.vsm-timeline-vertical .vsm-body .swiper-wrapper {
  display: block;
}

.vsm-timeline-vertical .events .events-holder .event{
  background-color: rgba(var(--vsm-white), 1);
}
.vsm-timeline-vertical .date-placeholder .date{
    color: rgba(var(--vsm-secondary-colour), 1); 
}
.vsm-timeline-vertical .date-placeholder .date:after {
    background: rgba(var(--vsm-body-copy-colour), 1);
}

/*-------------------------------------------
VSM Image Grid  
------------------------------------------*/
.vsm-image-grid .media{
  position: relative;
}
.vsm-image-grid .media::before{
    content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(1,1,61);
  background: linear-gradient(190deg, rgba(1,1,61,1) 0%, rgba(3,162,255,1) 100%); 
  mix-blend-mode: overlay;
  opacity: 0.75;
}
/*-------------------------------------------
VSM default internal hero
------------------------------------------*/
.vsm-default-internal-hero .md-heading {
  text-align: center;
  position: relative;
  margin-bottom: 1rem;
}
.vsm-default-internal-hero .md-heading::after {
   position: absolute;
    content: '';
    border-bottom: 6px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(270deg, #F86730 0%, #FFC834);
    bottom: 0;
    left: calc(50% - 100px);
    width: 200px;
}
/*-------------------------------------------
VSM hero slider
------------------------------------------*/
.vsm-hero-slider .bg::before {
     content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgb(1, 1, 61);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(1, 1, 61,0)), to(rgba(3, 162, 255,1)));
    background: linear-gradient(rgba(1, 1, 61,1) 0%, rgba(3, 162, 255,1) 100%); 
    mix-blend-mode: multiply;
    opacity: 0.5;
}

.vsm-hero-slider .progressbar .swiper-pagination {
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0px;
  width: 100%;
  height: 0.35rem;
}
.vsm-hero-slider .swiper-button-next {
  color: rgba(var(--vsm-white), 1);
}
.vsm-hero-slider .swiper-button-prev {
  color: rgba(var(--vsm-white), 1);
}
/*-------------------------------------------
VSM Top Nav
------------------------------------------*/

.vsm-top .navigation .more-nav ul li a {
  color: rgba(var(--vsm-body-copy-colour), 1);
  font-size: 18px;
  font-size: 1.125rem;
}


/*-------------------------------------------
Custom
------------------------------------------*/


/*-------------------------------------------
cm Tabbed Content
-------------------------------------------*/
.cm-tabbed-content.side-nav{
  position: relative;
  overflow: hidden;
}
.cm-tabbed-content.side-nav .bg{
  position: relative;
  overflow: visible;
}

@media (max-width: 768px) {
  .cm-tabbed-content.side-nav .bg:after{
    position: absolute;
    content: "";
    background-image: url('/img/11investmentsrepeat.svg');
    width: 100%;
    height: 57px;
    top: 13rem;
    right: 0;
    z-index: 2;
    background-repeat: repeat-x;
    background-size: 250%;
    background-position-y: top;
    background-position-x: right;
  }
}
@media (min-width: 769px) {
  .cm-tabbed-content.side-nav .bg:after{
    position: absolute;
    content: "";
    background-image: url('/img/11investmentsrepeat.svg');
    width: 100%;
    height: 57px;
    top: 13rem;
    right: 0;
    z-index: -1;
    background-repeat: repeat-x;
    background-size: contain;
    background-position-y: top;
    background-position-x: right;
  }
}
.marquee-img {
  display: none;
  /* position: absolute;
  top: 12rem;
  background-repeat: repeat-x; */
}
.cm-tabbed-content.side-nav .nav li a {
  border-bottom: 0.1rem solid rgba(var(--vsm-body-copy-colour), 0.1);
  text-decoration: none;
  margin-right: 0rem;
}

.cm-tabbed-content.side-nav .nav li a.active {
  color: rgba(var(--vsm-accent-colour), 1);
}

.cm-tabbed-content.side-nav .component-wrapper {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
  max-width: 540px;
}

@media (min-width: 768px) {
  .cm-tabbed-content.side-nav .component-wrapper {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .cm-tabbed-content.side-nav .component-wrapper {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .cm-tabbed-content.side-nav .component-wrapper {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .cm-tabbed-content.side-nav .component-wrapper {
    max-width: 1320px;
  }
}

.cm-tabbed-content.side-nav .cm-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cm-tabbed-content.side-nav .cm-body .flex-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cm-tabbed-content.side-nav .cm-body .flex-item:nth-child(1) {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 33.33333%;
          flex: 1 0 33.33333%;
}

.cm-tabbed-content.side-nav .cm-body .flex-item:nth-child(2) {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
}

.cm-tabbed-content.side-nav .cm-body .flex-item:nth-child(2) .content .rte ul {
  list-style: none;
  padding: 0 0 0 0;
  margin: 0 0 0.9375rem 0;
}

.cm-tabbed-content.side-nav .cm-body .flex-item:nth-child(2) .content .rte ul li {
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.1);
  padding: 0.625rem 0 0.625rem 1.5625rem;
  font-weight: 400;
  color: #202124;
}

.cm-tabbed-content.side-nav .cm-body .flex-item:nth-child(2) .content .rte ul li:before {
  content: "\f058";
  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;
  color: #fe6124;
  margin-left: -1.5625rem;
  margin-right: 0.5rem;
}

.cm-tabbed-content.side-nav .cm-body .nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
/* 
.cm-tabbed-content.horizontal-nav .nav li a {
  padding: 0.625rem 0.9375rem;
  border-top: 0.0625rem solid rgba(var(--vsm-black), 0.1);
  border-left: 0.0625rem solid rgba(var(--vsm-black), 0.05);
  border-right: 0.0625rem solid rgba(var(--vsm-black), 0.05);
  border-bottom: 0.0625rem solid rgba(var(--vsm-black), 0.1);
  text-decoration: none;
  margin-right: -0.0625rem;
}

.cm-tabbed-content.horizontal-nav .nav li a.active {
  color: rgba(var(--vsm-accent-colour), 1);
  border-bottom: 0.0625rem solid rgba(var(--vsm-black), 0);
}

.cm-tabbed-content.horizontal-nav .nav li a:not(.active) {
  background: rgba(var(--vsm-black), 0.1);
}

.cm-tabbed-content.horizontal-nav .nav li:first-child a {
  border-left: 0.1625rem solid rgba(var(--vsm-black), 0.1);
  border-top-left-radius: 0.5rem;
}

.cm-tabbed-content.horizontal-nav .nav li:last-child a {
  border-right: 0.1625rem solid rgba(var(--vsm-black), 0.1);
  border-top-right-radius: 0.5rem;
} */


.cm-tabbed-content.side-nav .cm-header {
  margin-bottom: 1.875rem;
}

.cm-tabbed-content.side-nav .cm-header .md-heading {
  text-align: center;
  position: relative;
  padding-bottom: 2rem;
  margin-bottom: 6rem;
}

.cm-tabbed-content.side-nav .cm-header .md-heading::after {
   position: absolute;
    content: '';
    border-bottom: 6px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(270deg, #F86730 0%, #FFC834);
    bottom: 0;
    left: calc(50% - 100px);
    width: 200px;
}

.cm-tabbed-content.side-nav .flex-item:first-child .row > .col:first-child {
  max-width: 83.33333333%;
}

.cm-tabbed-content.side-nav .nav li a {
  position: relative;
  display: block;
  color: var(--vsm-body-copy-colour);
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 0.6125rem 0;
}

.cm-tabbed-content.side-nav .nav li a:after {
  content: "\f105";
  color: rgba(0, 0, 0, 0.2);
  position: absolute;
  right: 0;
  top: 0.4375rem;
  display: inline-block;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.cm-tabbed-content.side-nav .nav li a.active {
  color: #fe6124;
}

.cm-tabbed-content.side-nav .nav li a.active:after {
  color: #fe6124;
}

.cm-tabbed-content.side-nav .nav li:last-child a {
  border-bottom: 0rem solid rgba(0, 0, 0, 0);
}

.cm-tabbed-content.side-nav .content .sm-heading {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0;
}
.cm-tabbed-content.side-nav .content .sm-heading::after{
  display: none;
}
.cm-tabbed-content.side-nav .content .btn {
  background: rgba(0, 0, 0, 0);
  border: 0.0625rem solid #202124;
}

.cm-tabbed-content.side-nav .content .btn span {
  color: #202124;
}

.cm-tabbed-content.side-nav .content .btn:hover {
  border: 0.0625rem solid rgba(var(--vsm-secondary-colour), 1);
}

.cm-tabbed-content.side-nav .content .btn:hover span {
  color: rgba(var(--vsm-secondary-colour), 1);
}
.cm-tabbed-content.grey-bg .bg {
  background: #f7f7f7;
  padding: 5.75rem 0;
}
.cm-tabbed-content.blue-pale-bg .bg {
  background: #F2FAFF;
  padding: 5.75rem 0;
}

.cm-side-by-side-content.grey-bg + .cm-side-by-side-content.grey-bg .bg {
  padding-top: 0;
}

.cm-side-by-side-content.grey-bg .bg {
  background: #f7f7f7;
  padding: 3.75rem 0;
}

.cm-side-by-side-content .content .xs-heading {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
}

.cm-side-by-side-content .content .md-heading {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 600;
  color: #202124;
}

.cm-side-by-side-content .content .rte ul {
  list-style: none;
  padding: 0 0 0 0;
  margin: 0 0 0.9375rem 0;
}

.cm-side-by-side-content .content .rte ul li {
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.1);
  padding: 0.625rem 0 0.625rem 1.5625rem;
  font-weight: 400;
  color: #202124;
}

.cm-side-by-side-content .content .rte ul li:before {
  content: "\f058";
  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;
  color: #fe6124;
  margin-left: -1.5625rem;
  margin-right: 0.5rem;
}

.cm-side-by-side-content .content .btn {
  background: rgba(0, 0, 0, 0);
  border: 0.0625rem solid #202124;
}

.cm-side-by-side-content .content .btn span {
  color: #202124;
}

.cm-side-by-side-content .content .btn:hover {
  border: 0.0625rem solid rgba(var(--vsm-secondary-colour), 1);
}

.cm-side-by-side-content .content .btn:hover span {
  color: rgba(var(--vsm-secondary-colour), 1);
}


/*-------------------------------
custom brand page 
--------------------------------*/
.cm-tabbed-content .images{
    display: flex;
    padding: 5rem;
}
.cm-tabbed-content .images img{
    width: 100%;
}
.cm-tabbed-content .images .col{
    margin:0 1rem;
}
.cm-tabbed-content ul.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
}
.cm-tabbed-content ul.nav li:first-child {
    margin-left: 0;
}
.cm-tabbed-content ul.nav li:last-child {
    margin-right: 0;
}
.cm-tabbed-content .tab-content blockquote {
    font-size: 20px;
    font-size: 1.25rem;
}
.cm-tabbed-content .tab-content blockquote q {
    font-size: inherit;
}
.cm-tabbed-content .tab-content .rte {
    color: inherit;
}
.cm-tabbed-content .tab-content .rte p {
    color: inherit;
}
.cm-tabbed-content .tab-content .rte p a:hover{
    color:white;
}
.cm-tabbed-content .tab-content .rte h1,
.cm-tabbed-content .tab-content .rte h2,
.cm-tabbed-content .tab-content .rte h3,
.cm-tabbed-content .tab-content .rte h4,
.cm-tabbed-content .tab-content .rte h5,
.cm-tabbed-content .tab-content .rte h6 {
    color: inherit;
    margin-bottom: 0.75rem;
}
.cm-tabbed-content .tab-content .rte h4 {
    font-size: 28px;
    font-size: 1.75rem;
    font-weight: 500;
}
.cm-tabbed-content .tab-content .rte h5,
.cm-tabbed-content .tab-content .rte h6 {
    font-size: 20px;
    font-size: 1.25rem;
}
.cm-tabbed-content .tab-content .rte ul {
    list-style: none;
    padding: 0 0 0 1.25rem;
    margin: 0;
}
.cm-tabbed-content .tab-content .rte li {
    position: relative;
    margin-bottom: 0.75rem;
    color: inherit;
    padding-left: 0;
}
.cm-tabbed-content .tab-content .rte li:before {
    left: auto;
    width: auto;
    height: auto;
    background: none;
    content: "\f00c";
    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;
    color: rgba(var(--vsm-primary-colour), 1);
    margin-left: -1.25rem;
    margin-right: 0.3125rem;
    position: relative;
    font-size: 12px;
    font-size: 0.75rem;
    top: -0.125rem;
}

/* ------------------------------
CM Image Tabs 
-------------------------------*/

.cm-tabbed-content.image-tabs .cm-header {
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 1.875rem;
}
.cm-tabbed-content.image-tabs .cm-header .md-heading {
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}
.cm-tabbed-content.image-tabs .cm-header .md-heading::after {
   position: absolute;
    content: '';
    border-bottom: 6px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(270deg, #F86730 0%, #FFC834);
    bottom: 0;
    left: calc(50% - 100px);
    width: 200px;
}

.cm-tabbed-content.image-tabs .tab-content {
    padding: 0;
}
.cm-tabbed-content.image-tabs .tab-content .tab-pane {
    padding: 0.125rem 0.125rem 1.125rem 0.125rem;
    border-radius: 0.5rem;
}
.cm-tabbed-content.image-tabs .xs-heading {
    color: inherit;
    font-size: 28px;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
}
.cm-tabbed-content.image-tabs .content > .row {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.cm-tabbed-content.image-tabs .content > .row > .col {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    width: 75%;
}
.cm-tabbed-content.image-tabs .content > .row > .col .media {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.cm-tabbed-content.image-tabs .content > .row > .col .media img {
    max-width: 200px;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.cm-tabbed-content.image-tabs .content > .row > .col .rte {
    text-align: center;
}
.cm-tabbed-content.single-column .sm-heading {
    color: inherit;
    font-size: 35px;
    font-size: 2.1875rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
}
.cm-tabbed-content.single-column .content > .row {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}
.cm-tabbed-content.single-column .content > .row > .col {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    width: 100%;
}
@media (min-width: 768px) {
    .cm-tabbed-content.single-column .content > .row > .col:nth-child(1) {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 75%;
    }
} 

/*-------------------------------
cm Tabbed Content Iimage-tabs 
--------------------------------*/
.cm-tabbed-content.image-tabs ul.nav {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.cm-tabbed-content.image-tabs ul.nav li {
    padding: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    max-width: 23%;
    margin: 0rem 0.3125rem 0.625rem 0.3125rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}
@media (min-width: 768px) {
    .cm-tabbed-content.image-tabs ul.nav li {
        max-width: 23%;
    }
}
.cm-tabbed-content.image-tabs ul.nav li:first-child {
    margin-left: 0;
}
.cm-tabbed-content.image-tabs ul.nav li:last-child {
    margin-right: 0;
}
.cm-tabbed-content.image-tabs ul.nav li a {
    background: rgba(80, 74, 70, 0);
    padding: 0rem;
    border-radius: 0rem;
    text-decoration: none;
    color: #101206;
    font-weight: 500;
    font-size: 13px;
    font-size: 0.8125rem;
    margin: 0 auto;
    display: block;
    opacity: 1;
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 300ms -webkit-transform ease-in-out;
    transition: 300ms -webkit-transform ease-in-out;
    transition: 300ms transform ease-in-out;
    transition: 300ms transform ease-in-out, 300ms -webkit-transform ease-in-out;
}
.cm-tabbed-content.image-tabs ul.nav li a:hover,
.cm-tabbed-content.image-tabs ul.nav li a.active {
    background: rgba(39, 118, 71, 0);
    color: #fff;
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.cm-tabbed-content.image-tabs ul.nav li a .media {
    margin: 0 auto;
    border-radius: 0.5rem;
}
.cm-tabbed-content.image-tabs ul.nav li a .media img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
@media (min-width: 768px) {
    .cm-tabbed-content.image-tabs ul.nav li a .media {
        margin: 0 auto;
    }
}
@media (min-width: 1024px) {
    .cm-tabbed-content.image-tabs ul.nav li a .media {
        margin: 0 auto;
    }
}
@media (min-width: 1200px) {
    .cm-tabbed-content.image-tabs ul.nav li a .media {
        margin: 0 auto;
    }
}
.cm-tabbed-content ul.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
}

/*-----------------------------
CM Multi forms
-----------------------------*/
.cm-multi-forms .back-to-link {
  margin-bottom: 1.875rem;
  display: inline-block;
}

.cm-multi-forms .options {
  border: 0.0625rem solid rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  padding: 1.875rem;
}

.cm-multi-forms .options a.btn {
  margin-bottom: 0.9375rem;
}

@media (min-width: 768px) {
  .cm-multi-forms .options {
    padding: 3.75rem;
  }
}

.cm-multi-forms .options a.btn {
  background: rgba(0, 0, 0, 0);
  border: 0.125rem solid rgba(var(--vsm-primary-colour), 1);
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  margin-right: 0.9375rem;
}

.cm-multi-forms .options a.btn span {
color: rgba(var(--vsm-primary-colour), 1);
}

.cm-multi-forms .options a.btn:hover {
  background: rgba(var(--vsm-primary-colour), 1);
}

.cm-multi-forms .options a.btn:hover span {
  color: white;
}


.cm-multi-forms .options .select-options > .row:nth-child(1) .col .rte {
  margin: 0 0 1.875rem 0;  
  text-align: center;
  }

.cm-multi-forms .options .select-options .md-heading {
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}
.cm-multi-forms .options .select-options .md-heading::after {
   position: absolute;
    content: '';
    border-bottom: 6px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(270deg, #F86730 0%, #FFC834);
    bottom: 0;
    left: calc(50% - 100px);
    width: 200px;
}
.cm-multi-forms form .col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}

@media (min-width: 768px) {
  .cm-multi-forms form .col {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
}



.vsm-content-cards-33-33-33 .content-card .content{
  padding: 1rem 1.875rem 1.875rem 1.875rem;
}

@media (min-width: 1024px){
.vsm-timeline-vertical .event .content {
  width: 100%;
}
}

/*-----------------------------
vsm-short-content-33-33-33 START
-----------------------------*/

.vsm-short-content-33-33-33 .component-wrapper .content .feature .media {
  border: black 2px solid
}

.vsm-short-content-33-33-33 .component-wrapper .content .feature .description {
  align-self: center;
}

.vsm-short-content-33-33-33 .component-wrapper .content .feature .description .xs-heading {
  font-size: 1.2rem;
}

.vsm-short-content-33-33-33 .component-wrapper .content .feature .media img {
  border-radius: 50%;
  max-width: 5rem;
}

/*-----------------------------
vsm-short-content-33-33-33 END
-----------------------------*/


/*--------------------- 
Tabbed Content 
-------------------- */

.vsm-tabbed-content .vsm-header { 
  margin-bottom: 2rem;
}
.vsm-tabbed-content.side-nav .nav li a.active:after {
  top: 1.5rem;
}
.vsm-tabbed-content.side-nav .nav li a:after {
  top: .4rem !important;
  right: 1rem;
}
.vsm-tabbed-content.side-nav .nav li a:not(.active) {
  background: white;
}

.vsm-tabbed-content.side-nav .nav li:hover a:not(.active){
  background: #01013D;
}
.vsm-tabbed-content.side-nav .nav li a {
  border-bottom: none !important;
}
.vsm-tabbed-content .flex-item .content {
  background: #01013D;
  border: 1px solid #01013D;
  padding: 1rem;
  border-radius: 5px;
}
.vsm-tabbed-content .flex-item .content .sm-heading {
  color: white;
}
.vsm-tabbed-content .flex-item .content .rte p {
  color: white;
}

@media(min-width: 768px) {

   .vsm-tabbed-content.side-nav .vsm-body .flex-item:nth-child(1) {
       flex: 1 0 33%;
    max-width: 33.3333%;
  } 
 
  .vsm-tabbed-content.side-nav .nav li a:not(.active) {
  background: transparent;
  } 
   .vsm-tabbed-content.side-nav .flex-item:first-child .row>.col:first-child {
    max-width: 100%;
  } 
  .vsm-tabbed-content .vsm-body .flex-item:nth-child(2) {
    max-width: 65%;
  }

}
  .vsm-tabbed-content.side-nav .vsm-body .nav li {
    border: 2px solid #01013D;
    border-radius: 5px;
    margin-bottom: 0.3rem;
  }
  .vsm-tabbed-content.side-nav .vsm-body .nav li:hover {
    background: #01013D;
    border-radius: 5px;
    border: 2px solid #01013D;
  }
  .vsm-tabbed-content.side-nav .nav li:hover a {
    color: white;
  }
  .vsm-tabbed-content.side-nav .nav li:hover a:after {
    color: white;
  }

@media(max-width: 768px) {
  .vsm-tabbed-content .vsm-body {
    flex-direction: column;
  }
  .vsm-tabbed-content.side-nav .vsm-body .flex-item:nth-child(1) {
    max-width: 100%;
  }

  .vsm-tabbed-content .vsm-body .flex-item .img-container img{
    object-fit: contain;
  }
}

.vsm-tabbed-content.side-nav.side-image-tabs .flex-item .tab-content .tab-pane .content .md-heading, .vsm-tabbed-content.side-nav.side-image-tabs .flex-item .tab-content .tab-pane .content .rte{
  color: rgba(var(--vsm-white), 1);
}

.vsm-tabbed-content.side-nav.side-image-tabs .vsm-header .md-heading::after{
    position: absolute;
    content: '';
    border-bottom: 6px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(270deg, #F86730 0%, #FFC834);
    bottom: 0;
    left: calc(50% - 100px);
    width: 200px;
}

.vsm-tabbed-content.side-nav.side-image-tabs .component-wrapper {
  padding-right: 0;
  padding-left: 0;
}
@media (min-width: 1024px) {
  .vsm-tabbed-content.side-nav.side-image-tabs .component-wrapper {
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
  }
}
.vsm-tabbed-content.side-nav.side-image-tabs .vsm-body {
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .vsm-tabbed-content.side-nav.side-image-tabs .vsm-body {
    flex-wrap: wrap;
  }
}
@media (min-width: 992px) {
  .vsm-tabbed-content.side-nav.side-image-tabs .vsm-body {
    flex-wrap: nowrap;
  }
}
.vsm-tabbed-content.side-nav.side-image-tabs .vsm-body .nav {
  flex-direction: initial;
  gap: 4%;
  row-gap: 2%;
}
.vsm-tabbed-content.side-nav.side-image-tabs .vsm-body .flex-item:nth-child(1) {
  flex: 1 0 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .vsm-tabbed-content.side-nav.side-image-tabs .vsm-body .flex-item:nth-child(1) {
    flex: 1 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .vsm-tabbed-content.side-nav.side-image-tabs .vsm-body .flex-item:nth-child(1) {
    flex: 1 0 48%;
    max-width: 48%;
  }
}
@media (min-width: 768px) {
  .vsm-tabbed-content.side-nav.side-image-tabs .vsm-body .flex-item:first-child .row > .col:first-child {
    flex: 1 0 98%;
    max-width: 98%;
  }
}
.vsm-tabbed-content.side-nav.side-image-tabs .vsm-body .flex-item:nth-child(2) {
  flex: 1 0 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .vsm-tabbed-content.side-nav.side-image-tabs .vsm-body .flex-item:nth-child(2) {
    flex: 1 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .vsm-tabbed-content.side-nav.side-image-tabs .vsm-body .flex-item:nth-child(2) {
    flex: 1 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 1024px) {
  .vsm-tabbed-content.side-nav.side-image-tabs .vsm-body .flex-item:nth-child(2) .col {
    margin-bottom: auto !important;
  }
}

.vsm-tabbed-content.side-nav.side-image-tabs .vsm-body .flex-item:nth-child(2) .col .content .media {
  margin-bottom: 2rem;
  width: auto;
  max-width: 300px;
  height: 150px;
  object-fit: contain;
}
.vsm-tabbed-content.side-nav.side-image-tabs .vsm-body .flex-item:nth-child(2) .col .content .media img {
  object-fit: contain;
  -o-object-fit: contain;
  height: 100%;
  width: 100%;
}
.vsm-tabbed-content.side-nav.side-image-tabs .nav li {
  width: 100%;
  margin: 0rem 0rem 1rem 0;
}
@media (min-width: 992px) {
  .vsm-tabbed-content.side-nav.side-image-tabs .nav li {
    display: flex;
    flex: 1 0 30%;
    margin: 0rem 0rem 1rem 0;
  }
}
.vsm-tabbed-content.side-nav.side-image-tabs .nav li a {
  text-align: left;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 0.7rem 3.5rem 0.7rem 1rem;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .vsm-tabbed-content.side-nav.side-image-tabs .nav li a {
    text-align: left;
    padding: 0.7rem 3.5rem 0.7rem 1rem;
  }
}
@media (min-width: 992px) {
  .vsm-tabbed-content.side-nav.side-image-tabs .nav li a {
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    text-align: center;
    aspect-ratio: 1/1;
    display: grid;
  }
}
@media (min-width: 1400px) {
  .vsm-tabbed-content.side-nav.side-image-tabs .nav li a {
    padding: 0.5rem 1.5rem 0.5rem 1.5rem;
    text-align: center;
    aspect-ratio: 1/1;
    display: grid;
  }
}
.vsm-tabbed-content.side-nav.side-image-tabs .nav li a:not(.active) {
  background-color: #01013D;
  color: rgba(var(--vsm-white), 1);
}

.vsm-tabbed-content.side-nav.side-image-tabs .nav li a.active:after{
  color: rgba(var(--vsm-primary-colour), 1);
  border-color: rgba(var(--vsm-primary-colour), 1);
}

.vsm-tabbed-content.side-nav.side-image-tabs .nav li a .media{
  transition: all .3s linear;
}

.vsm-tabbed-content.side-nav.side-image-tabs .nav li a:hover .media{
  transform: scale(.8);
  transition: all .3s linear;
}

.vsm-tabbed-content.side-nav.side-image-tabs .nav li a:after {
  background: rgba(var(--vsm-white), 0);
  border: 0.125rem solid rgba(var(--vsm-white), 1);
  border-radius: 100em;
  width: 1.6rem;
  height: 1.6rem;
  right: 1rem;
  color: rgba(var(--vsm-accent-colour), 1);
  justify-content: center;
  align-content: center;
  display: flex;
  align-self: center;
  align-items: center;
  color: rgba(var(--vsm-white), 1);
}
@media (min-width: 1024px) {
  .vsm-tabbed-content.side-nav.side-image-tabs .nav li a:after {
    width: 2.5rem;
    height: 2.5rem;
    right: 1rem;
    top: 1rem;
  }
}
.vsm-tabbed-content.side-nav.side-image-tabs .nav li a.active {
  background-color: #01013D;
  color: rgba(var(--vsm-white), 1);
}

.vsm-tabbed-content.side-nav.side-image-tabs .nav li a.active .media .img-static {
  display: none !important;
}
.vsm-tabbed-content.side-nav.side-image-tabs .nav li a.active .media .img-hover {
  display: block;
}
.vsm-tabbed-content.side-nav.side-image-tabs .nav li a .media {
  margin-top: 3rem;
  height: 6rem;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (min-width: 1200px) {
  .vsm-tabbed-content.side-nav.side-image-tabs .nav li a .media {
    height: 8rem;
  }
}
@media (min-width: 1400px) {
  .vsm-tabbed-content.side-nav.side-image-tabs .nav li a .media {
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .vsm-tabbed-content.side-nav.side-image-tabs .nav li a .media {
    display: block;
  }
}
.vsm-tabbed-content.side-nav.side-image-tabs .nav li a .media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -o-object-fit: contain;
}