@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: #13c4df;
  text-decoration: underline;
  transition: all 0.4s ease-in-out;
}

a:hover {
  text-decoration: none;
  color: black;
}

.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: 0.3125rem;
  padding-left: 3.125rem;
  padding-right: 3.125rem;
  background: #13c4df;
  transition: all 0.5s ease-in-out;
  border: none;
}

.btn:hover {
  background: #131430;
  border: none;
}

.btn.btn-secondary {
  border-radius: 0.3125rem;
  padding-left: 3.125rem;
  padding-right: 3.125rem;
  background: #13c4df;
  transition: all 0.5s ease-in-out;
  border: none;
}

.btn.btn-secondary:hover {
  background: #131430;
  border: none;
}

.btn.btn-primary {
  border-radius: 0.3125rem;
  padding-left: 3.125rem;
  padding-right: 3.125rem;
  background: #13c4df;
  transition: all 0.5s ease-in-out;
  border: none;
}

.btn.btn-primary:hover {
  background: #131430;
  border: none;
}

/* ------------------------------
Scrollbar
-------------------------------*/
::-moz-selection {
  background-color: #131430;
  color: #ffffff;
}

::selection {
  background-color: #13c4df;
  color: #ffffff;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #131430;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left top, left bottom, from(#131430), to(#13c4df));
  background: linear-gradient(to bottom, #131430 0%, #13c4df 100%);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #13c4dfde;
}

html {
  scrollbar-color: #13c4df #131430;
}

/* ------------------------------
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: #131430;
  -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 navigation
-------------------------------*/
.menu-open .vsm-top {
  background: transparent;
}
.menu-open .vsm-top .more-nav ul li .burger-menu span {
  background: #13c4df !important;
}
.menu-open .vsm-top .more-nav ul li .burger-menu span::before {
  background: #13c4df !important;
}
.menu-open .vsm-top .more-nav ul li .burger-menu span::after {
  background: #13c4df !important;
}
.menu-open .vsm-top.switch-fixed .navigation .brand .logo-1 {
  display: none;
}
.menu-open .slide-menu ul li>a {
  color: #13c4df
}
.menu-open .slide-menu .slide-menu__decorator i {
  color: #13c4df;
}
.menu-open .vsm-top.switch-fixed .navigation .brand .logo-2 {
  display: block;
}
.menu-open .vsm-top.switch-fixed .navigation .more-nav nav ul li {
  margin: 0rem;
  height: 2rem;
  position: relative;
}
.menu-open .vsm-top.switch-fixed .navigation .more-nav nav ul li:nth-child(1)::after {
  width: 1px;
  height: 100%;
  border-right: 1px solid #fff;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  color: #121010;
}
.menu-open .vsm-top.switch-fixed .navigation .more-nav nav ul li.ajax-login::after {
  display: none;
}
.menu-open .vsm-top.switch-fixed .navigation .more-nav nav ul li.lang::after {
  width: 1px;
  height: 100%;
  border-right: 1px solid #fff;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  color: #121010;
}
.menu-open .vsm-top.switch-fixed .navigation .more-nav nav ul li.lang .toggle-drop {
  margin: 0 0.3rem;
  padding: 0 1rem;
}
.menu-open .vsm-top.switch-fixed .navigation .more-nav nav ul li.lang .toggle-drop .menu-dropdown ul li a {
  padding: 0.3125rem 1rem;
}
.menu-open .vsm-top.switch-fixed .navigation .more-nav nav ul li.lang .toggle-drop .menu-dropdown ul li a span {
  padding: 0px 3px;
}
.menu-open .vsm-top.switch-fixed .navigation .more-nav nav ul li.lang .toggle-drop .menu-dropdown ul li::after {
  display: none;
}
.menu-open .vsm-top.switch-fixed .navigation .more-nav nav ul li.lang .toggle-drop span {
  display: inline-flex;
  font-weight: 400;
}
.menu-open .vsm-top.switch-fixed .navigation .more-nav nav ul li.lang .toggle-drop span i {
  margin-top: 0.4rem;
  color: #fff;
}
.menu-open .vsm-top.switch-fixed .navigation .more-nav nav ul li.lang .toggle-drop span i::before {
  color: rgba(var(--vsm-primary-color), 1);
}
.menu-open .vsm-top.switch-fixed .navigation .more-nav nav ul li.lang .toggle-drop span span {
  color: #121010;
}
.menu-open .vsm-top.switch-fixed .navigation .more-nav nav ul li a {
  display: block;
  padding: 0.3rem 0.938rem;
  text-decoration: none;
  font-weight: 400;
  color: rgba(var(--vsm-black), 1);
}

/* MAIN NAV */

body.home .vsm-top.switch-fixed  {
  background: transparent;
}
.vsm-top {
  background: transparent;
}
.vsm-top.switch-fixed {
  background: transparent;
}
.vsm-top.switch-fixed.fixed {
  background: white;
}
/* ON NON SWITCH FIXED  */
.vsm-top .primary-nav nav ul li.dropdown a {
  color: black;
}
.vsm-top.switch-fixed .navigation .more-nav nav ul li a {
  color: rgba(var(--vsm-white), 1);
}

/* body.menu-open .vsm-top.switch-fixed .navigation .more-nav nav ul li a {
  color: black !important;
} */

.vsm-top.switch-fixed .navigation .more-nav nav ul li a:hover {
  color: rgba(var(--vsm-white), 0.6);
}
.vsm-top.switch-fixed .navigation .more-nav nav ul li:nth-child(1)::after {
  width: 1px;
  height: 100%;
  border-right: 1px solid #ffffff;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  color: #ffffff;
}
.vsm-top.switch-fixed .navigation .more-nav nav ul li.lang::after {
  width: 1px;
  height: 100%;
  border-right: 1px solid #ffffff;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  color: #ffffff;
}
.vsm-top .navigation .primary-nav ul li.dropdown:hover ul li:hover {
  background: white;
  border-radius: 0 0 0.313rem 0.313rem;
}
.vsm-top.switch-fixed .navigation .more-nav nav ul li.lang.ajax-login:nth-child(1) li::after {
  display: none;
}
.vsm-top.switch-fixed .navigation .more-nav nav ul li.lang.ajax-login:nth-child(1)::after {
  display: none;
}
.vsm-top.switch-fixed .navigation .more-nav nav ul li.lang .toggle-drop:hover {
  background: #ffffff;
}
.vsm-top.switch-fixed .navigation .more-nav nav ul li.lang .toggle-drop:hover span {
  color: rgba(var(--vsm-primary-color), 1);
}
.vsm-top.switch-fixed .navigation .more-nav nav ul li.lang .toggle-drop:hover span i {
  color: rgba(var(--vsm-primary-color), 1);
}
.vsm-top.switch-fixed .navigation .more-nav nav ul li.lang .toggle-drop:hover span span {
  padding: 3px 6px;
  color: rgba(var(--vsm-primary-color), 1);
}
.vsm-top.switch-fixed .navigation .more-nav nav ul li.lang .toggle-drop span {
  display: inline-flex;
  padding: 3px 0px;
  font-weight: 400;
  color: rgba(var(--vsm-white), 1);
}
.vsm-top.switch-fixed .navigation .more-nav nav ul li.lang .toggle-drop span i {
  color: rgba(var(--vsm-white), 1);
}
.vsm-top.switch-fixed .navigation .more-nav nav ul li.lang .toggle-drop span span {
  padding: 3px 6px;
  color: rgba(var(--vsm-white), 1);
}
.vsm-top.switch-fixed .navigation .more-nav nav ul li.lang .toggle-drop .menu-dropdown ul li a {
  color: rgba(var(--vsm-primary-color), 1);
}
.vsm-top.switch-fixed .navigation .primary-nav ul li.dropdown a:hover {
  color: rgba(var(--vsm-primary-color), 1);
}
.vsm-top.switch-fixed .navigation .primary-nav ul li.dropdown:hover {
  color: rgba(var(--vsm-primary-color), 1);
}
.vsm-top .navigation .primary-nav ul li.dropdown:hover ul {
  background: white;
}
.vsm-top .navigation .primary-nav ul li.dropdown:hover ul {
  border-radius: 0 0 0.313rem 0.313rem;
}
.vsm-top .navigation .primary-nav ul li.dropdown:hover {
  border-radius: 0.313rem 0.313rem 0.313rem 0;
}
.vsm-top.switch-fixed .navigation .primary-nav ul li a:hover {
  /* color: rgba(var(--vsm-white), 0.6); */
}
.vsm-top.switch-fixed.fixed .navigation .burger-menu {
  height: 2.2rem;
}
.vsm-top.switch-fixed .navigation .primary-nav ul li a {
  color: rgb(255, 255, 255);
}

.vsm-top.switch-fixed .navigation .primary-nav li.meganav .sub-list h4>a {
  color: black;
}

.vsm-top .navigation .primary-nav ul li.dropdown:hover>a {
  color: black;
}

.vsm-top.switch-fixed .navigation .primary-nav ul li a:hover {
  color: #13c4df !important;
}

.vsm-top.switch-fixed.fixed .navigation .burger-menu .d-flex {
  flex-direction: column;
  align-items: flex-end;
}
.vsm-top.switch-fixed.fixed .navigation .burger-menu .brand img {
  height: 4.8 rem;
}
.vsm-top.switch-fixed.fixed .navigation .burger-menu .more-nav nav ul li {
  margin: 0rem;
  height: 2rem;
  position: relative;
}
.vsm-top.switch-fixed.fixed .navigation .burger-menu .more-nav nav ul li:nth-child(1)::after {
  width: 1px;
  height: 100%;
  border-right: 1px solid #000;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  color: #121010;
}
.vsm-top.switch-fixed.fixed .navigation .burger-menu .more-nav nav ul li.ajax-login::after {
  display: none;
}
.vsm-top.switch-fixed.fixed .navigation .burger-menu .more-nav nav ul li.lang::after {
  width: 1px;
  height: 100%;
  border-right: 1px solid #000;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  color: #121010;
}
.vsm-top.switch-fixed.fixed .navigation .burger-menu .more-nav nav ul li.lang .toggle-drop {
  margin: 0 0.3rem;
  padding: 0 1rem;
}
.vsm-top.switch-fixed.fixed .navigation .burger-menu .more-nav nav ul li.lang .toggle-drop .menu-dropdown ul li a {
  padding: 0.3125rem 1rem;
}
.vsm-top.switch-fixed.fixed .navigation .burger-menu .more-nav nav ul li.lang .toggle-drop .menu-dropdown ul li a span {
  padding: 0px 3px;
}
.vsm-top.switch-fixed.fixed .navigation .burger-menu .more-nav nav ul li.lang .toggle-drop .menu-dropdown ul li::after {
  display: none;
}
.vsm-top.switch-fixed.fixed .navigation .burger-menu .more-nav nav ul li.lang .toggle-drop span {
  display: inline-flex;
  font-weight: 400;
}
.vsm-top.switch-fixed.fixed .navigation .burger-menu .more-nav nav ul li.lang .toggle-drop span i {
  margin-top: 0.4rem;
  color: #000034;
}
.vsm-top.switch-fixed.fixed .navigation .burger-menu .more-nav nav ul li.lang .toggle-drop span i::before {
  color: rgba(var(--vsm-primary-color), 1);
}
.vsm-top.switch-fixed.fixed .navigation .burger-menu .more-nav nav ul li.lang .toggle-drop span span {
  color: #121010;
}
.vsm-top.switch-fixed.fixed .navigation .burger-menu .more-nav nav ul li a {
  display: block;
  padding: 0.3rem 0.938rem;
  text-decoration: none;
  font-weight: 400;
  color: rgba(var(--vsm-black), 1);
}
.vsm-top.switch-fixed.fixed .navigation .burger-menu .primary-nav {
  width: auto;
  order: 2;
}
.vsm-top.switch-fixed.fixed .navigation .burger-menu .primary-nav ul li ul {
  width: max-content;
}
.vsm-top.switch-fixed.fixed .navigation .burger-menu .primary-nav ul li a {
  display: block;
}
.vsm-top.switch-fixed.fixed .navigation .burger-menu .primary-nav ul li a:hover {
  color: rgba(var(--vsm-primary-color), 0.6);
}
.vsm-top.switch-fixed.fixed .navigation .burger-menu .primary-nav nav {
  margin-top: 1rem;
}
.vsm-top.switch-fixed.fixed .navigation .burger-menu .primary-nav nav ul li .btn {
  color: rgba(var(--vsm-white), 1);
}
body.home .vsm-top.switch-fixed.fixed {
  background-color: white;
}
.vsm-top.fixed {
  background: white;
}
.vsm-top.fixed .more-nav ul li a {
  color: #fff !important;
}
.vsm-top.fixed .more-nav ul li a:hover {
  color: #13c4df !important;
}
.vsm-top.fixed .primary-nav nav ul li.dropdown a {
  color: black;
}
.vsm-top.fixed .primary-nav nav ul li.dropdown a::after {
  color: #fff !important;
}
.vsm-top.fixed .primary-nav nav ul li.dropdown:hover a {
  color: #000;
}
.vsm-top.fixed .primary-nav nav ul li.dropdown:hover a::after {
  color: #000 !important;
}
.vsm-top .primary-nav nav ul li.dropdown:hover a::after {
  color: #000 !important;
}
.vsm-top .navigation .more-nav nav ul li a {
  color: #13c4df !important;
  transition: all 0.4s ease-in-out;
}

.vsm-top .navigation .more-nav nav ul li a:hover {
  color: #13c4dfb7 !important;
}
.vsm-top .navigation .burger-menu {
  height: 2.2rem;
}

@media (max-width:768px){
  .vsm-top .navigation .burger-menu{
    padding-top: 0;
  }
}
.vsm-top .navigation .burger-menu:hover span {
  background: #13c4df;
}
.vsm-top .navigation .burger-menu:hover span::before {
  background: #13c4df;
}
.vsm-top .navigation .burger-menu:hover span::after {
  background: #13c4df;
}
.vsm-top .navigation .burger-menu span {
  background: #13c4df;
}
.vsm-top .navigation .burger-menu span::before {
  background: #13c4df;
}
.vsm-top .navigation .burger-menu span::after {
  background: #13c4df;
}
.vsm-top .navigation .d-flex {
  flex-direction: column;
  align-items: flex-end;
}


@media (max-width:768px){
  .vsm-top .navigation .d-flex{
    padding-left: 0;
    padding-right: 0;
  }
}
.vsm-top .navigation .brand img {
  height: 4.06rem;
}
.vsm-top .navigation .more-nav nav ul li {
  margin: 0rem;
  height: 2rem;
  position: relative;
}
.vsm-top .navigation .more-nav nav ul li:nth-child(1)::after {
  width: 1px;
  height: 100%;
  border-right: 1px solid #fff;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  color: #121010;
}
.vsm-top .navigation .more-nav nav ul li:nth-child(3) li::after {
  display: none;
}
.vsm-top .navigation .more-nav nav ul li:nth-child(3)::after {
  display: none;
}
.vsm-top .navigation .more-nav nav ul li.ajax-login::after {
  display: none;
}
.vsm-top .navigation .more-nav nav ul li.lang::after {
  width: 1px;
  height: 100%;
  border-right: 1px solid #fff;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  color: #121010;
}
.vsm-top .navigation .more-nav nav ul li.lang .toggle-drop {
  margin: 0 0.3rem;
  padding: 0 1rem;
}
.vsm-top .navigation .more-nav nav ul li.lang .toggle-drop:hover span {
  color: #FFF;
}
.vsm-top .navigation .more-nav nav ul li.lang .toggle-drop:hover .menu-dropdown ul li a span {
  color: #000;
}
.vsm-top .navigation .more-nav nav ul li.lang .toggle-drop .menu-dropdown {
  z-index: 1;
}
.vsm-top .navigation .more-nav nav ul li.lang .toggle-drop .menu-dropdown ul li a {
  padding: 0.3125rem 1rem;
}
.vsm-top .navigation .more-nav nav ul li.lang .toggle-drop .menu-dropdown ul li a span {
  padding: 0px 3px;
}
.vsm-top .navigation .more-nav nav ul li.lang .toggle-drop .menu-dropdown ul li::after {
  display: none;
}
.vsm-top .navigation .more-nav nav ul li.lang .toggle-drop span {
  color: #FFF;
  display: inline-flex;
  font-weight: 400;
  font-size: 1rem;
}
.vsm-top .navigation .more-nav nav ul li.lang .toggle-drop span i {
  margin-top: 0.4rem;
  color: #FFF;
}
.vsm-top .navigation .more-nav nav ul li.lang .toggle-drop span img {
  display: inline-block;
  width: 26px;
}
.vsm-top .navigation .more-nav nav ul li a {
  display: block;
  padding: 0.3rem 0.938rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(var(--vsm-black), 1);
}
.vsm-top.fixed .navigation .more-nav ul li .burger-menu span {
  background: rgb(0, 0, 0) !important;
}
.vsm-top.fixed .navigation .more-nav ul li .burger-menu span::before {
  background: rgb(0, 0, 0) !important;
}
.vsm-top.fixed .navigation .more-nav ul li .burger-menu span::after {
  background: rgb(0, 0, 0) !important;
}

/* 
@media (max-width:768px){
  .vsm-top .navigation .more-nav ul .ajax-login a{
  padding-right: 0 !important;
  }
} */

.vsm-top .navigation .primary-nav ul li a {
  /* color: white !important; */
}


.vsm-top .navigation .primary-nav ul .dropdown a:hover {
  color: #13c4df !important;
}


.vsm-top .navigation .primary-nav ul li a::after {
  color: #fff !important;
}


.vsm-top.fixed .navigation .primary-nav ul li a {
  color: black;
}

.vsm-top.fixed .navigation .primary-nav ul li a:hover {
  color:rgb(0, 0, 0);
}

.vsm-top.switch-fixed.fixed .navigation .primary-nav ul li a {
  color:black;
}

.vsm-top.fixed .navigation .primary-nav ul li a::after {
  color: #fff !important;
}

.vsm-top .navigation .primary-nav ul li.meganav:hover a::after {
  color: black !important;
}

.vsm-top.fixed .navigation .primary-nav ul li.meganav:hover a::after {
  color: black !important;
}

@media (min-width: 992px) {
  .vsm-top .navigation {
    padding: 0.7rem 0;
  }
  .vsm-top .navigation .primary-nav {
    width: auto;
    order: 2;
  }
  .vsm-top .navigation .primary-nav ul li.dropdown a::after {
    color: rgba(var(--vsm-primary-color), 1);
  }
  .vsm-top .navigation .primary-nav ul li.dropdown ul li a {
    font-size: 1rem;
    color: black !important
  }

.vsm-top .navigation .primary-nav .mega-menu {
  background: #ffffff;
  max-height: 32.5rem;
  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 {
  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 .sub-list:hover h4: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 .sub-list h4 {
  position: relative;
}

.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 .sub-list h4:after {
  content: "";
  background: rgba(var(--vsm-primary-colour), 1);
  width: 100%;
  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 .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;
  color: #13c4df;
}

.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;
  font-weight: 700;
  border-bottom: 0.0625rem solid rgba(var(--vsm-body-copy-colour), 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;
}

.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .list nav a.active {
  color: rgba(var(--vsm-secondary-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: underline;
}

.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts {
  width: 100%;
}

.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts h4 {
  position: relative;
}

.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts h4 a {
  position: absolute;
  right: 0;
  top: 0;
  font-size: inherit;
}

.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts h4 a:hover {
  color: #13c4df;
}

.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts h4:after {
  content: "";
  background: rgba(var(--vsm-primary-colour), 1);
  width: 100%;
  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 .inserts {
  width: 100%;
}

.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts .col {
  border: 0;
  flex: 1 0 50%;
}

.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts .insert {
  flex: 1 0 50%;
  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 {
  width: 100%;
}

.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts .insert h5 {
  position: relative;
  color: rgba(var(--vsm-white), 1);
  font-size: 20px;
  font-size: 1.25rem;
}

.vsm-top .navigation .primary-nav .mega-menu > .container > .row > .col-md-6 .nav-inserts .insert h5:after {
  content: "";
  background: rgba(var(--vsm-white), 1);
  width: 100%;
  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 .insert .faux-link {
  font-weight: 700;
  color: rgba(var(--vsm-white), 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: "\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;
  left: 0.625rem;
}

.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: white;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 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:after {
  width: 100%;
}

  .vsm-top .navigation .primary-nav ul li.dropdown:hover {
    font-size: 1rem;
  }
  .vsm-top .navigation .primary-nav ul li.dropdown:hover ul li a {
    font-size: 1rem;
  }

  .vsm-top .navigation .primary-nav ul li.meganav .mega-menu .container .row .col nav a {
    font-size: 1rem;
    color: black !important
  }

  .vsm-top .navigation .primary-nav ul li.meganav .mega-menu .container .row .col h4 a {
    font-size: 1rem;
    color: black !important
  }

  .vsm-top.switch-fixed.fixed .meganav:hover a {
    font-size: 1rem;
    color: black !important;
  }

  .vsm-top .navigation .primary-nav ul li ul {
    width: max-content;
  }
  /* NONE SWITCH FIXED PAGES NAV */
  .vsm-top .navigation .primary-nav ul li a {
    color: black;
    font-size: 1rem;
    display: block;
    padding: 0.7rem 1.1rem;
  }
  .vsm-top .navigation .primary-nav ul li a:hover {
    color: #13c4df !important;
  }

  .vsm-top.fixed .navigation .primary-nav ul li a:hover {
    color: #13c4df !important;
  }
  .vsm-top .navigation .primary-nav nav {
    margin-top: 1rem;
  }
  .vsm-top .navigation .primary-nav nav ul li .btn {
    color: rgba(var(--vsm-white), 1);
    background: #13c4df;
    border-radius: 1rem;
    border: 1px solid #13c4df;
    padding: 0.5rem 1.5rem;
  }
  
.vsm-top .navigation .primary-nav nav ul li .btn:hover{
    background: #131430;
    border: 1px solid #131430;
    color: white !important;
}
  .vsm-top .navigation .primary-nav nav ul li .btn::before {
    display: none;
  }
  .vsm-top .navigation .primary-nav nav ul li .btn::after {
    display: none;
  }
  .vsm-top .navigation .more-nav {
    width: auto;
    order: 1;
  }
  .vsm-top .navigation .more-nav nav ul li a {
    color: #fff;
  }
  .vsm-top .navigation .more-nav nav ul li a:hover {
    color: #13c4df;
  }
  .vsm-top .navigation .more-nav nav ul.lang .toggle-drop:hover .menu-dropdown ul li span:hover {
    color: #13c4df;
  }
  .vsm-top .navigation .more-nav nav ul.lang .toggle-drop span {
    color: rgba(var(--vsm-primary-color), 1);
  }
  .vsm-top .navigation .more-nav nav ul.lang .toggle-drop .menu-dropdown ul li a span:hover {
    color: rgba(var(--vsm-primary-colour), 0.5);
  }
  .vsm-top .navigation .more-nav nav ul:nth-child(1)::after {
    width: 1px;
    height: 100%;
    border-right: 1px solid rgba(var(--vsm-primary-color), 1);
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    color: rgba(var(--vsm-primary-color), 1);
  }
  .vsm-top .navigation .more-nav nav ul a {
    color: rgba(var(--vsm-primary-color), 1);
  }
  .vsm-top .navigation .more-nav nav ul a::after {
    color: rgba(var(--vsm-primary-color), 1);
  }
}
.vsm-top .signed-in-bar {
  background: rgba(var(--vsm-primary-colour), 1);
}
.vsm-top .signed-in-bar .signed-as {
  color: rgba(var(--vsm-white), 1);
}
.vsm-top .signed-in-bar .signed-as a {
  color: rgba(var(--vsm-white), 1);
}
.vsm-top .signed-in-bar .signed-as a:hover {
  color: rgba(var(--vsm-white), 0.5);
}

/* END OF NABIGATION */
.media {
  border-radius: 8px;
}

/* vsm-full-width-fixed-media-bg start */

.vsm-full-width-fixed-media-bg .content .play-btn:before {
  color: #13c4df;
  background-color: transparent;
}
.vsm-full-width-fixed-media-bg .content .inline-link {
  display: flex;
  align-items: center;
}
.vsm-full-width-fixed-media-bg .content .inline-link:hover {
  color: white;
}
@media(max-width:768px) {
  .vsm-full-width-fixed-media-bg .vsm-body .row>.col {
    max-width: 100%;
  }
}

/* vsm-full-width-fixed-media-bg start */

.vsm-hero-slider .md-heading span {
  color: #13c4df;
}

.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;
}

.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: #13c4df;
}

.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;
}


.vsm-the-team .btn {
  background: #13c4df;
  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;
}

/* vsm-default-single-media-hero start */

.vsm-default-single-media-hero .search-bar i {
  color: #13c4df;
}
.vsm-default-single-media-hero .content.align-center .rte {
  max-width: 70%;
}
@media(max-width:768px) {
  .vsm-default-single-media-hero .content.align-center .rte {
    max-width: 100%;
  }
}
.vsm-default-single-media-hero .content.align-center .rte p {
  font-size: 2rem;
}
.vsm-default-single-media-hero .form-control:focus {
  box-shadow: none;
}
/* vsm-default-single-media-hero end */

/* VSM-wide-media-carousel Start*/

.vsm-wide-media-carousel .vsm-body .swiper-navigation .swiper-button-next,
.vsm-wide-media-carousel .vsm-body .swiper-navigation .swiper-button-prev {
  color: #13c4df;
}

/* VSM-wide-media-carousel END */

/* vsm-single-accordion Start*/

.vsm-single-accordion .accordion .accordion-item .accordion-header {
  font-size: 1.5rem;
}
.vsm-single-accordion .accordion .accordion-item .accordion-header.collapsed:before {
  color: #13c4df;
}
.vsm-single-accordion .accordion .accordion-item .accordion-header:before {
  color: #13c4df;
}

/* vsm-single-accordion END */


/* vsm-video-carousel Start*/

.vsm-video-carousel .video-card .play-btn:after {
  color: #13c4dfa8;
  background: transparent;
}

.vsm-video-carousel .swiper-button-prev,
.vsm-video-carousel .swiper-button-next {
  color: #13c4df;
}

/* vsm-video-carousel END */

/* vsm-content-in-image-carousel Start*/

.vsm-content-in-image-carousel .swiper-button-next,
.vsm-content-in-image-carousel .swiper-button-prev {
  color: #13c4df;
}
/* .vsm-content-in-image-carousel .content-in-image {
  border-radius: 8px;
} */

/* vsm-content-in-image-carousel END */

/* vsm-short-testimonial-carousel Start*/

.vsm-short-testimonial-carousel .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #13c4df
}
.vsm-short-testimonial-carousel .swiper-pagination .swiper-pagination-bullet {
  background: #13c4dfa8;
}

/* vsm-short-testimonial-carousel END */

/* vsm-job-carousel Start*/

.vsm-job-carousel {
  background: #131430;
}

.vsm-job-carousel .md-heading {
  color: white;
}

.vsm-job-carousel .swiper-button-next,
.vsm-job-carousel .swiper-button-prev {
  color: #13c4df;
}

/* vsm-job-carousel end*/

/* vsm-job-details Start*/

.vsm-job-details input:focus {
  box-shadow: none;
}
.vsm-job-details textarea:focus {
  box-shadow: none;
}
.vsm-job-details .element.select.form-group .field::before {
  color: #13c4df;
}
.vsm-job-details .share dl dt {
  color: #19184b;
}
.vsm-job-details .share dl dd a {
  transition: all 0.4s ease-in-out;
  color: #13c4df; ;
}
.vsm-job-details .share dl dd a:hover {
  color: #19184b;
}
.vsm-job-details ul.job-data-highlights li i::before {
  color: #13c4df;
}
@media(max-width:768px) {
  .vsm-job-details .job-data ul.job-data-highlights {
    display: flex;
    flex-direction: column;
    padding-left: 0.8rem
  }
}
/* vsm-job-details END*/

/* vsm-job-search-alt Start*/

/* .vsm-job-search-alt .vsm-body .element.text.form-group .field input {
  border-radius: 30px
} */
.vsm-job-search-alt .selected-options .clear-all {
  color: white;
  transition: all 0.4s ease-in-out;
}
.vsm-job-search-alt .selected-options .clear-all:hover {
  color: #13c4df;
}
.vsm-job-search-alt .element.select .field::before {
  color: #13c4df;
}
.vsm-job-search-alt .element.select .btn-group .btn:hover {
  color: #13c4df;
}
/* vsm-job-search-alt END */

/* vsm-media-hub-search-results Start*/

.vsm-media-hub-search-results .vsm-responsive-nav .input-group .btn span i {
  color: #13c4df;
}
.vsm-media-hub-search-results .search-results li .post a.tag {
  color: #19184b;
}
.vsm-media-hub-search-results .search-results li .post a.tag:hover {
  color: #13c4df;
}
.vsm-media-hub-search-results .vsm-body a.page-link.current {
  color: #13c4df;
}
.vsm-media-hub-search-results .vsm-body a.page-link {
  color: #19184b;
}
.vsm-media-hub-search-results .vsm-body a.page-link:hover {
  color: #13c4dfa8;
}
.vsm-media-hub-search-results .search-results li .post .author .media::before {
  color: #19184b;
  background-color: #13c4df;
}
.vsm-media-hub-search-results .side-filters dl dd a span {
  color: #19184b;
  transition: all 0.4s ease-in-out;
}
.vsm-media-hub-search-results .side-filters dl dd a span:hover {
  color: #13c4df;
}

/* vsm-media-hub-search-results END */

/* vsm-media-hub vsm-blog-article start */

.vsm-media-hub.vsm-blog-article .share dl dt {
  color: #13c4df;
}

/* vsm-media-hub vsm-blog-article END */

/* vsm-full-width-call-to-action-alt start */

.vsm-full-width-call-to-action-alt .bg {
  background: rgb(25,24,75);
  background: linear-gradient(19deg, rgba(25,24,75,1) 50%, rgba(19,196,223,1) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* vsm-full-width-call-to-action-alt END */

/* vsm-job-search-results-listings-alt Start*/

.vsm-job-search-results-listings-alt .paging-information .page-item.active .page-link {
  color: #13c4df;
}
.vsm-job-search-results-listings-alt .paging-information .page-link:hover {
  color: #13c4dfa8;
}
.vsm-job-search-results-listings-alt .job-listing .job-data ul.job-data-highlights>li>i.icon::before {
  color: #13c4df;
}
.vsm-job-search-results-listings-alt .job-listing .job-data .xs-heading a:hover {
  color: #13c4df;
}
@media(max-width:768px) {
  .vsm-job-search-results-listings-alt .job-listing .job-data ul.job-data-highlights {
    display: flex;
    flex-direction: column;
  }
}
/* vsm-job-search-results-listings-alt END */

/* vsm-drop-off-your-cv START */

.vsm-drop-off-your-cv .bg {
  background: #19184b;
  background: linear-gradient(163deg, #13c4df 0%, #131430 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#19184b",endColorstr="#401369",GradientType=1);
}
.vsm-drop-off-your-cv .form-holder .element.submit .btn {
  background-color: #13c4df;
  border: 1px white solid;
  color: white;
  transition: all 0.5s ease-in-out;
}
.vsm-drop-off-your-cv .form-holder .element.submit .btn:hover {
  background-color: #131430;
  border: 1px white solid;
  color: white;
}
.vsm-drop-off-your-cv .form-holder .element.select select option {
  color: black;
}
.vsm-drop-off-your-cv .form-holder .element.select.form-group .field::before {
  color: #13c4df;
}
.vsm-drop-off-your-cv .form-holder .element.checkbox.form-group .field .icheck-primary label::after {
  border-color: #13c4df;
}

/* vsm-drop-off-your-cv End */

/* vsm-basic-blog-featured-section start */

.vsm-basic-blog-featured-section .vsm-body .author .media:before {
  background: #13c4df;
}
.vsm-basic-blog-featured-section .vsm-body .post a.post-title:hover {
  color: #13c4df;
}
/* vsm-basic-blog-featured-section end */

/* vsm-configurable-boxes start */

.vsm-configurable-boxes .vsm-body .row .col {
  padding: 2rem;
}
.vsm-configurable-boxes .vsm-body .post-title {
  color: white;
}
.vsm-configurable-boxes .vsm-body img {
  position: relative;
}
.vsm-configurable-boxes .vsm-body img::before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.548);
  inset: 0;
}
.vsm-configurable-boxes .vsm-body .box-details .author .title {
  color: white;
}
.vsm-configurable-boxes .vsm-body .box-details .author .title:hover {
  color: white;
}

/* vsm-configurable-boxes end */

/* vsm-basic-latest-listings start */

.vsm-basic-latest-listings .vsm-body .author .media:before {
  background: #13c4df;
}
.vsm-basic-latest-listings .vsm-body .post a.post-title:hover {
  color: #13c4df;
}
/* vsm-basic-latest-listings end */

/* vsm-media-hub start */
.vsm-media-hub .form-holder form field .input.group.form-group {
  display: flex;
  align-items: baseline;
  margin-top: 1rem;
}
.vsm-media-hub .form-holder form field input[type=checkbox] {
  margin-right: 1rem;
}
/* vsm-media-hub end */



/* vsm-default-footer Start*/

footer.vsm-default-footer {
  background: #131430;
}
footer.vsm-default-footer a:hover {
  color:#13c4df ;
}
footer.vsm-default-footer .newsletter-signup input {
  padding-left: 1.2rem;
  border: 2px solid #13c4df;
}
footer.vsm-default-footer .newsletter-signup .btn {
  background: #13c4df;
}

/* vsm-default-footer END */

/* vsm-default-signoff Start*/

.vsm-default-signoff {
  background: #131430;
}

/* vsm-default-signoff end*/