@import url('/assets/css/brand.css');

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--default);
}

a {
  color: var(--primary);
  text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  color: var(--hover);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  color: var(--black);
  font-weight: 600px;
}

h2 sup {
  top: -20px;
  font-size: 10px;
}
sup {
  top: -10px;
  font-size: 8px;
}

.light-background { background: var(--bg-light); }
.primary-background { background: var(--primary); }




.purchase_multi {
  text-transform: uppercase;
  padding: .75rem 1.5rem;
  font-size: 16px;
  display: inline-block;
  padding: 12px 30px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  color: var(--primary);;
  background:rgba(255, 255, 255, 1);;
  border: 1px solid var(--primary);
  
}
.purchase_multi i{

  font-size: 20px;
}
.purchase_multi:hover {
  background: var(--secondary);
  color: var(--primary);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  z-index: 100;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.section-header {
  text-align: center;
  padding-bottom: 5px;
}

.section-header h2 {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 600;
  margin: 20px 10px;
  padding-bottom: 20px;
  position: relative;
}

.section-header-secondary {
  color: white;
}
.text-white{
  color: #fff;
}
.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: white;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header .subtitle {
  font-size: .8em;
  font-style: italic;
  font-weight: 300;
}


.section-header p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 160px 50px 60px 50px;
  min-height: 40vh;
  position: relative;
  background-size: cover;
  background-position: 50% 20%;
  background-repeat: no-repeat;
}

.breadcrumbs:before {
  content: "";
  background-color: rgba(var(--primary-rgb), 0.3);
  position: absolute;
  inset: 0;
}

.subpage {
  font-size: 3vh;
  line-height: 1.2;
  font-weight: 700;
  margin: 30px 0;
}

.breadcrumbs ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary);
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}


.breadcrumbs .btn-profile {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius-buttons);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  color: var(--secondary);
  background: var(--primary);
  border: 2px solid var(--secondary);
  z-index: 10;
}

.breadcrumbs .btn-profile:hover {
  background: rgba(255, 255, 255, 0.8);
  color: var(--primary);
  border: 2px solid var(--primary);
  z-index: 100;
}






.breadcrumbs_partner {
  padding: 20px 0;
}



.breadcrumbs_partner ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--default);
}

.breadcrumbs_partner ol a {
  color: var(--primary);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.breadcrumbs_partner ol a:hover {
  text-decoration: underline;
}

.breadcrumbs_partner ol li+li {
  padding-left: 10px;
}

.breadcrumbs_partner ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--default);
  content: "/";
}



.bpartner:before {
  content: "";
  /*background-color: rgba(var(--primary-rgb), 0.9);*/
  background-color: var(--primary);
  position: absolute;
  inset: 0;
}


@media print
{
    .no-print, .no-print *
    {
        display: none !important;
    }
    .full-width-print {
      width: 100%;
    }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-buttons);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(var(--primary-rgb), 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  -webkit-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--secondary);
  border-top-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    -webkit-transition-delay: 0 !important;
         -o-transition-delay: 0 !important;
            transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  position: relative;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 5;
}



.header .logo-header    {
  position: relative;
  width: 75px;
  z-index: 3;
    padding: 10px 10px;
}



.header-top {
 /* background: var(--primary);*/

  position: relative;
  padding: 0;
}

.header-main {
 /* background: white;*/
 margin: 0 1.2%;
 z-index: 4;
  
}
.header-border {
  /*border-bottom: 1px solid black;*/
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 30px;
  padding: 0  45px;
  position: relative;
  z-index:2;
}


/*--------------------------------------------------------------
# Top Black bar Navigation
--------------------------------------------------------------*/

.navbar_top {
  padding: 0;
}

.navbar_top ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar_top ul li{
  padding: 12px;
}
.navbar_top a,
.navbar_top a:focus{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  
  font-size: .875rem;
  font-weight: 500;
  /*color: rgba(255, 255, 255, 0.75);*/
  color: white;
  white-space: nowrap;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.23);
}

.navbar_top a i,
.navbar_top a:focus i {
  line-height: 0;
  margin-left: 5px;
}

.navbar_top .login i  {
  font-size: 20px;

  padding-right: 10px;
  line-height: 0;
}




.navbar_top .dropdown ul {
  display: block;
  position: absolute;
  right: 14px;
  top: calc(100% + 30px);
  margin: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
          box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.navbar_top .dropdown ul li  {
  min-width: 200px;
}

.navbar_top .dropdown ul a  {
  padding: 10px 20px;
  font-size: .875rem;
  text-transform: none;
  color: var(--primary);

  text-shadow: none;
}


.navbar_top .dropdown ul a:hover,
.navbar_top .dropdown ul .active:hover,
.navbar_top .dropdown ul li:hover>a {
  color: var(--default);
}


.navbar_top .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar_top .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar_top .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
   .navbar_wrapper {
   justify-content: start;
  }


  .navbar {
    padding: 10px;
    width: 100%;
  }

  .navbar ul {
    width: 100%;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 15px 0 15px 30px;
    font-family: var(--font-secondary);
    font-size: 20px;
    
    color: var(--white);
    white-space: nowrap;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }

  .navbar a i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
 

  .navbar a:hover,
  .navbar li:hover>a, 
  .navbar .active,
  .navbar .active:focus {
     color: rgba(255,255,255, 0.7);
  }


  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    -webkit-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
            box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: .875rem;
    text-transform: none;
    color: var(--primary);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--hover);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}



.navbar .login {
 background-color: var(--primary);
  font-size: 15px;
  border-radius: 25px;
  color: white;
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
}

.navbar .login i{
  font-size: 20px;
  color: white;

  padding-right: 10px;
  line-height: 0;
}
.navbar .login i:hover{
  color:white;
}
.navbar .login:hover,
.navbar .login:focus:hover {
  color: #fff;
  background: var(--hover);
}




.navbar .login_iconolonly i  {
  font-size: 24px;

  padding-right: 10px;
  line-height: 0;
}
.navbar .login_iconolonly .text  {
  display: none;
}


.profile  {
  width: 35px;  -webkit-filter: brightness(0) invert(100%);  filter: brightness(0) invert(100%);
}
.navbar .playbuilder,
.navbar .playbuilder:focus {
  display: inline-block;
  width: 225px;
  position: relative;
  padding-left: 50px;
  padding-top: 75px;
  border-radius: var(--border-radius-buttons);
}
.navbar .playbuilder_icon,
.navbar .playbuilder_icon:focus {
  display: inline-block;
  height: 42px;
  margin-left: 15px;
  padding: 6px 0;
  position: relative;
  border-radius: 6px;
  background: white;
}


.partner_login_box {

background-color: #fff;
background-clip: border-box;
border: 1px solid rgba(0,0,0,.125);
border-radius: .25rem;

}

.partner_redeem_box {
  background: var(--primary);
}




.sticked .navbar .login:hover > .profile {

 width: 50px;

  }


@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
  .navbar .playbuilder{
    display: none;
  }

  .playbuilder_icon{
    display: inline-block;
  }

  .navbar .login_iconolonly .text  {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar_wrapper {
    
   justify-content: end;
  }

  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;

    background: var(--default);
    overflow-y: auto;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    */;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }

  .navbar a i{
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--primary);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    background: var(--color-lightprimary);

  }


  .navbar .dropdown ul li a {
    color: var(--default)!important;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .navbar .login_iconolonly   {
    margin-top: 50px;
  }

  .navbar .login_iconolonly .text  {
    display: block;
    text-transform: uppercase;
    font-weight: 800;
  }


  .mobile-nav-show {

    color: var(--white);
    font-size: 36px;
    cursor: pointer;
    line-height: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }
  .mobile-nav-hide {
    color: rgba(255, 255, 255, 0.9);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(27, 47, 69, 0.7);
    z-index: 9996;
  }

.navbar .login,
.navbar .login:focus {
  display: inline-block;
  padding: 25px 30px;
  width: 75%;
  text-align: center;
  margin: 50px 0 0 30px;
  border-radius: 50px;
  color: #fff !important;
  font-size: 18px;
  border: 2px solid #fff;
  font-weight: 600;
}


.navbar .login:hover,
.navbar .login:focus:hover {
  color: #fff;
  background: var(--primary);
}


.navbar .cart,
.navbar .cart:focus {
  display: inline-block;
  padding: 25px 30px;
  width: 75%;
  text-align: center;
  margin: 50px 0 0 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  border: 0;
  font-weight: 600;
}


.navbar .cart:hover,
.navbar .cart:focus:hover {
  color: #fff;
}

.navbar .cart .btn-cart {
  padding: 1rem 2rem;
  font-size: 16px;
}

.navbar li:hover a i {
  color: #fff !important;
}



}



/*---------------------------------------------------------------
# STABLE SUBSITE NAV
----------------------------------------------------------------*/



.stable_nav .navbar_top a,
.stable_nav .navbar_top a:focus{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  
  font-size: .875rem;
  font-weight: 500;
  color: var(--primary);
  white-space: nowrap;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-shadow: 2px 2px 4px rgba(240, 240, 240, 0.23);
}

@media (min-width: 1280px) {

  .stable_nav .navbar a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 15px 0 15px 30px;
    font-family: var(--font-default);
    font-size: 16px;
    
    color: var(--primary);
    white-space: nowrap;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
 

  .stable_nav .navbar a:hover,
  .stable_nav .navbar li:hover>a, 
  .stable_nav .navbar .active,
  .stable_nav .navbar .active:focus {
     color: var(--primary-dark);
  }


  .stable_nav .navbar .login {
    background-color: var(--primary);
    font-size: 15px;
    border-radius: 25px;
    color: white;
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    font-size: .875rem;
    font-weight: 600;
  }

  .stable_nav .navbar .login i{
    font-size: 20px;
    color: white;

    padding-right: 10px;
    line-height: 0;
  }
  .stable_nav .navbar .login i:hover{
    color:white;
  }
    .stable_nav .navbar .login:hover,
    .stable_nav .navbar .login:focus:hover {
    color: #fff;
    background: var(--hover);
  }
}






/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {

  background: url("/en/images/hero-bg.jpg") center center;
  background-size: cover;
  
  width: 100%;
  height:100vh;
  
  z-index:1;
display: grid;

}

.hero-gradient-wrapper {
  position: absolute;
  bottom: 0vh;
  left: 0vh;
  right: 0vh;
  height: 150px;
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}

.scroll-animation-div {
  position: absolute;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  bottom: 0vh;
  width: 100px;
  height: 80px;
  z-index: 1;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.scroll-animation-div .animation-container {
  position: absolute;
  top: -10px;
  left: 35px;
}

.scroll-animation-div .chevron {
  position: absolute;
  width: 28px;
  height: 8px;
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
          transform: scale3d(0.5, 0.5, 0.5);
  -webkit-animation: move 3s ease-out infinite;
          animation: move 3s ease-out infinite;
}

.scroll-animation-div .chevron:first-child {
  -webkit-animation: move 3s ease-out 1s infinite;
          animation: move 3s ease-out 1s infinite;
}

.scroll-animation-div .chevron:nth-child(2) {
  -webkit-animation: move 3s ease-out 2s infinite;
          animation: move 3s ease-out 2s infinite;
}

.scroll-animation-div .chevron:before,
.scroll-animation-div .chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}

.scroll-animation-div .chevron:before {
  left: 0;
  -webkit-transform: skew(0deg, 30deg);
      -ms-transform: skew(0deg, 30deg);
          transform: skew(0deg, 30deg);
}

.scroll-animation-div .chevron:after {
  right: 0;
  width: 50%;
  -webkit-transform: skew(0deg, -30deg);
      -ms-transform: skew(0deg, -30deg);
          transform: skew(0deg, -30deg);
}

@-webkit-keyframes move {
  25% {
    opacity: 1;

  }
  33% {
    opacity: 1;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  67% {
    opacity: 1;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
            transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

@keyframes move {
  25% {
    opacity: 1;

  }
  33% {
    opacity: 1;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  67% {
    opacity: 1;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
            transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

.scroll-animation-div .text {
  display: block;
  margin-top: 65px;
  margin-left: -30px;
  font-weight: 800;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  opacity: .25;
  -webkit-animation: pulse 2s linear alternate infinite;
          animation: pulse 2s linear alternate infinite;
}

@-webkit-keyframes pulse {
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  to {
    opacity: 1;
  }
}

/* hide dark overlay
.hero:after {
  position: absolute;
  content: "";
  width: 100%;
  background: rgba(var(--default-rgb), 0.4);
  top: 0;
  bottom: 0;
}
*/

.hero_subpage {

  background: url("/en/images/hero-bg.jpg") center center;
  background-size: cover;
  
  width: 100%;
  height:330px;
  
  z-index:1;

  


  overflow: visible;
}


.hero_stable {

  margin-top: 150px;
  background: url("/corpsubsite/assets/uploads/default_header_bg.jpg") center center;
  background-size: cover;
  background-color: #000;
 
 /* width: 100% !important;*/
  height: 60% !important;

  min-height: 300px;

  max-height: 800px;
  
  overflow: hidden;

  z-index: 3;

  display: flex;
  align-items: flex-end;
  justify-content:space-between;

}







.hero_stable_container {
  width: 100%;
  height: 80%;
  overflow: hidden;
}

.hero_stable_background {

  background: url("/corpsubsite/assets/uploads/default_header_bg.jpg") center center;
  background-size: cover;
  background-color: rgb(0 0 0 / 20%);
  filter: blur(4px);
  width: 100%;
  opacity: 90%;
  height: 100%;
  position: relative;
  z-index: 3;
}
.hero_stable_background:after {
  position: absolute;
  content: "";
  width: 100%;
  background: rgba(var(--default-rgb), 0.4);
  top: 0;
  bottom: 0;
}
.hero_stable_image {
  background: url("/corpsubsite/assets/uploads/default_header_bg.jpg") center center;
  background-size: cover;
  position: absolute;
  top:40%;
  left:50%;
  height: inherit;
  transform: translate(-50%, -50%);
  z-index: 5;

  display: flex;
  align-items: flex-end;
  justify-content:space-between;
}

.hero_stable_image h2 {
  margin: 0;
  padding: 4vh 0 1vh;
  font-size: 3vh;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero_stable_image h2 { 
   font-size: 2.5vh;
   padding: 2vh 0;
  }

  
}




.subsite_topmargin{
  margin-top: 565px;
}


@media screen and (max-width: 768px) {



}

.workshop_request {
  width: 100%;
  min-height: 80vh;

  position: relative;
  padding: 0;
  z-index: 3;
}








.hero h2{
  width:50%;
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  text-transform: uppercase;
  z-index: 1;
}


.hero p {
  width:60%;
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  font-family: var(--font-secondary);
  z-index: 1;
}








.hero_subpage h2 {
  margin: 0;
  padding: 120px 0;
  font-size: 2.5vh;
  line-height: 1.2;
  color: var(--white);
  z-index: 1;
}
.hero_stable h2 {
  margin: 0;
  padding: 4vh 0 1vh;
  font-size: 3vh;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  z-index: 1;
}

.hero .courses {
  z-index: 1;
  margin: 0;
  padding: 3vh 0;
}

.btn-get-started {
  text-transform: uppercase;
  padding: .75rem 1.5rem;
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  padding: 15px 50px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  color: var(--white);
  border-radius: var(--border-radius-buttons);
  background: var(--primary);
  border: 1px solid var(--primary);
  
}

.btn-get-started:hover {
  background: var(--white);
  color: var(--primary);
  -webkit-transition: 0.5s;var(--primary);
  -o-transition: 0.5s;
  transition: 0.5s;
  border: 2px solid var(--primary);
  z-index: 100;
}


@media (max-width: 768px) {

  .hero{
        background-position-x: 80%;
        height: 100svh;
  }
  .hero h2 { 
   width:90%;
   font-size: 2.5rem;
  }

  .hero_subpage h2,  .hero_stable h2 { 
   width:90%;

  }


  .hero p { 
   width: 90%;
  }

  .hero-gradient-wrapper {

  bottom: 0svh;
  left: 0svh;
  right: 0svh;

}

.scroll-animation-div {

  bottom: 0svh;
}



}





.subhero_container {
  width: 100%;
  height: 0vh;
  overflow: hidden;
   position: relative;
  z-index: 3;

  display: flex;
  align-items: flex-start;
  justify-content:space-between;
}

.subhero_background {

  background: url("/en/images/header/hero-1.jpg") center center;
  background-size: cover;
  background-color: rgb(0 0 0 / 80%);
  filter: blur(2px);
  width: 100%;
  opacity: 90%;
  height: 100%;
  
  position: absolute;
  top: 0;
}
.subhero_background:after {
  position: absolute;
  content: "";
  width: 100%;
  background: rgba(var(--default-rgb), 0.5);
  top: 0;
  bottom: 0;
}
.subhero_image {
  background-size: cover;
  position: relative;

  height: inherit;
 
  
  display: flex;
  align-items: flex-end;
  justify-content:space-between;
}
.subhero_container:after {
  position: absolute;
  content: "";
  width: 100%;
  background: #000000;
  background: linear-gradient(30deg,rgb(63 63 63 / 45%) 0%, rgb(0 0 0 / 28%) 50%);
  top: 0;
  bottom: 0;
}



.subhero_image h2 {
  margin: 0;
  padding: 4vh 0 1vh;
  font-size: 3vh;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  z-index: 1;

}

@media (max-width: 768px) {
  .subhero_image h2 { 
   font-size: 2.5vh;
   padding: 2vh 0;
  }

  
}

/* Faq Section - Home Page
------------------------------*/
.faq .content h3 {
  color: var(--default);
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  font-size: 15px;
  color: var(--default);
}
.faq .faq-container {
  margin-bottom: 2rem;
}


.faq .faq-container .faq-item {
  position: relative;
  margin-bottom: 20px;

  overflow: hidden;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius-cards);
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  color: var(--default);
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  padding: 20px;
  margin: 0 30px 0 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--default);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--primary);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 30px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.faq-active {
  color: var(--primary);
  background: var(--white);
}

.faq-active h3,
.faq-toggle:hover h3 {
  color: var(--primary) !important;
}

.faq-toggle:hover {
  background: var(--white);
}

.faq .faq-container .faq-active .faq-content {
  color: var(--default);
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding: 10px 20px 20px 20px;
}

.faq .faq-container .faq-active .faq-toggle {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
    color: var(--gray);
}



/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}

.counts .count-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
  width: 100%;
  background: #fff;
  min-height: 200px;
  -webkit-box-shadow: 0px 0 30px rgba(var(--default-rgb), 0.08);
          box-shadow: 0px 0 30px rgba(var(--default-rgb), 0.08);
}

.counts .count-box i {
  font-size: 62px;
  line-height: 0;
  margin-right: 20px;
  color: rgba(var(--primary-rgb), 0.1);
}

.counts .count-box span {
  font-family: var(--font-primary);
  font-size: 43px;
  display: inline-block;
  color: var(--primary);
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-size: 17px;
  text-transform: uppercase;
  color: rgba(var(--default-rgb), 0.8)
}


/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-us {
  padding-bottom: 0;
}

.why-us .img-bg {
  min-height: 500px;
  background-size: cover;
}

.why-us .slides {
  background-color: var(--primary);
}

.why-us h3 {
  font-size: 24px;
  font-weight: 700;

  font-family: var(--font-default);
  color: var(--primary);

}

.why-us h4 {
  font-size: 18px;
  font-weight: 400;
  color: #29486a;
  font-family: var(--font-secondary);
}

.why-us .swiper {
  margin: 140px 140px 120px 140px;
  overflow: hidden;
}


.why-us .content {
  padding: 30px;
  background: var(--primary);
  border-radius: var(--border-radius-cards);
  color: #fff;
}

.why-us .content p {
  margin-bottom: 30px;
}

.why-us .content h3 {
font-size: 1.6em;
font-weight: 400;
color: white;
margin: 0 auto;
text-align: center;
}

.why-us .content .more-btn {
display: block;
  padding: 5px 30px;
  text-align: center;
  border-radius: var(--border-radius-buttons);
  color: #fff;
  font-size: 18px;
  border: 2px solid #fff;
  font-weight: 600;

  margin: 0 auto;
  -webkit-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  text-transform: uppercase;
}
.why-us .content .more-btn i {
  font-size: 18px;
}
.why-us .content .more-btn:hover {
  color: var(--primary);
  background: white;
  border-color: white;
}
.why-us .icon-boxes .icon-box {
  text-align: center;
  background: #fff;
  padding: 40px 30px;
  width: 100%;
  border: 1px solid white;
}
.why-us .icon-boxes .icon-box i {
  font-size: 32px;
  padding: 18px;
  color: var(--primary);
  margin-bottom: 30px;
  background: var(--light-gray);
  border-radius: 50px;
}
.why-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}
.why-us .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}



.why-us .swiper-button-prev:after,
.why-us .swiper-button-next:after {
  font-size: 24px;
  color: var(--primary);
}

.why-us .swiper-button-prev {
  left: 80px;
}

.why-us .swiper-button-next {
  right: 80px;
}

.why-us .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.why-us .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--primary);
}

.why-us .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--secondary);
}

@media (max-width: 1200px) {
  .why-us .swiper {
    margin: 60px 60px 40px 60px;
  }

  .why-us .swiper-button-prev,
  .why-us .swiper-button-next {
    display: none;
  }
}

@media (max-width: 575px) {
  .why-us .swiper {
    margin: 40px 40px 20px 40px;
  }
}

.page-about .why-us {
  padding: 0 0 80px 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 36px;
  font-family: var(--font-secondary);
  color: var(--primary);
}

.about .content p {
  margin: 30px 0;
  color: #29486a;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 15px 26px;
  position: relative;
  font-size: 15px;
  font-weight: 600;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--secondary);
}


/*--------------------------------------------------------------
# featured-course Section
--------------------------------------------------------------*/


.featured-course {
  margin-top:0px;
  width: 100%;
  background: url("/assets/img/campus/programs-background.jpg") no-repeat top center, var(--light-gray);
  padding: 50px 0;
}



.featured-course h3 {
  color: var(--primary);
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 500;
}

.featured-course .subtitle {
  color: var(--default);
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 300;
}

.featured-boxshot {
  width: 95%;
  margin: 0 auto;
  display: flex;
  object-fit: cover;
    border-radius: 25px;
}

.featured-course p {
  color: var(--default);
}

.featured-course .price {
  padding-left: 30px;
  font-size: 24px;
  color: var(--black);
  white-space: nowrap;
}

.featured-course .add-to-cart {
  display: inline-block;
  font-family: var(--font-default);
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: var(--border-radius-buttons);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  margin: 10px;
}

.featured-course .btn-addtocart {

  padding: 10px 70px!important;
  font-size: 16px;

}

.featured-course hr {
  border: 1px solid transparent;
}
/*--------------------------------------------------------------
# Services List Section
--------------------------------------------------------------*/
.services-list .service-item {
  position: relative;
}

.services-list .service-item .icon i {
  font-size: 32px;
  line-height: 0;
  margin-right: 20px;
  color: #38618e;
}

.services-list .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.services-list .service-item .title a {
  color: var(--primary);
}

.services-list .service-item .title a:hover {
  color: #38618e;
}

.services-list .service-item .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: url("/en/images/dark-pattern.png") center center;
 /* background-size: cover; */
  padding-bottom: 200px;
}

.call-to-action-light{
  background: white;
  padding-bottom: 200px;
}

@media (min-width: 1365px) {
  .call-to-action, .call-to-action-light {
    background-attachment: fixed;
  }
}

.call-to-action h3, .call-to-action-light h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 25px;
}

.call-to-action p,.call-to-action-light p {
  color: #fff;
  margin-bottom: 25px;
}

.call-to-action .cta-btn, .call-to-action-light .cta-btn{
  font-family: var(--font-default);
  font-weight: 500;
  font-size: 31px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  margin: 10px;
    background: transparent;
  color: #fff;
  border: 3px solid #fff;



}

.call-to-action .cta-btn:hover, .call-to-action-light .cta-btn:hover {
  color: var(--primary);
  background: var(--secondary);
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer .logo {
  width: 98%;
  max-width: 100px;
  margin-top: 15px;
}
/*
.footer img {
  -webkit-filter: invert(100%);
    filter: invert(100%);
}
*/

.footer  {
  font-size: 12px;
  font-family: var(--font-secondary);
  background-color: white;
  color: #A7A7A7;
  padding: 10px 0 10px 0;
}

.footer a {
  font-size: 12px;
  font-family: var(--font-secondary);
  color: var(--primary);
}

.footer  .social-links a {
  font-size: 18px;
  padding-left: 10px;
  color: var(--default);    
  border-radius: 50%;
    text-align: center;
    background: #A7A7A7;
    padding: 5px 10px;

}



.footer  .link{
  padding-right: 15px;
}






















/*--------------------------------------------------------------
# Courses
--------------------------------------------------------------*/
.courses .course-item {
  border-radius: 5px;
  border: 1px solid #eee;
  -webkit-box-shadow: 1px 2px 15px rgba(127, 137, 161, 0.25);
          box-shadow: 1px 2px 15px rgba(127, 137, 161, 0.25);
}

.course-item .boxshot {
  width: 100%;
  height: 270px;
}

.course-item .boxshot img {
  width: 100%;
  height: 100%;
  bject-fit: cover;
  overflow: hidden;

}
@media screen and (max-width: 1200px) {
  .course-item .boxshot {
    height: 190px;
  }
}
@media screen and (max-width: 992px) {
  .course-item .boxshot {
    height: 220px;
  }
}

@media screen and (max-width: 768px) {
  .course-item .boxshot {
    height: 270px;
  }
}


.courses .course-content {
  padding: 15px;
}
.courses .course-content h3 {
  font-weight: 700;
  font-size: 1.15rem;
  min-height: 70px;
}
.courses .course-content h3 a {
  color: #444444;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.courses .course-content h3 a:hover {
  color: var(--primary);
}
.courses .course-content p {
  font-size: 14px;
  color: #777777;
}
.courses .course-content h4 {
  font-size: 14px;
  background: var(--primary);
  padding: 7px 14px;
  color: #fff;
  margin: 0;
}
.courses .course-content .price {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  color: #444444;
}
@media screen and (max-width: 576px) {
  .courses .course-content .price  {


  }
}



.courses .trainer {
  padding-top: 15px;
  border-top: 1px solid white;
}
.courses .trainer .trainer-profile img {
  max-width: 50px;
  border-radius: 50px;
}
.courses .trainer .trainer-profile span {
  padding-left: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #ebed71;
}
.courses .trainer .trainer-rank {
  font-size: 18px;
  color: #eef087;
}


.course-bio {
  padding: 50px 20px;
  font-size: 18px;
}


/*--------------------------------------------------------------
# Trainers
--------------------------------------------------------------*/
.trainers .member {
  text-align: center;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid white;
}
.trainers .member img {
  margin: -1px -1px 30px -1px;
}
.trainers .member .member-content {
  padding: 0 20px 30px 20px;
}
.trainers .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}
.trainers .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}
.trainers .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}
.trainers .member .social {
  margin-top: 15px;
}
.trainers .member .social a {
  color: #f4f5b5;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.trainers .member .social a:hover {
  color: var(--primary);
}
.trainers .member .social i {
  font-size: 18px;
  margin: 0 2px;
}


/*--------------------------------------------------------------
# Cource Details
--------------------------------------------------------------*/
.course-details h3 {
  font-size: 24px;
  margin: 30px 0 15px 0;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}
.course-details h3:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: white;
  bottom: 0;
  left: 0;
}
.course-details h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 1px;
  background: var(--primary);
  bottom: 0;
  left: 0;
}
.course-details .course-info {
  background: #f6f7f6;
  padding: 10px 15px;
  margin-bottom: 15px;
}
.course-details .course-info h5 {
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  font-family: var(--font-primary);
}
.course-details .course-info p {
  margin: 0;
  font-weight: 600;
}
.course-details .course-info a {
  color: var(--primary);
}

/*--------------------------------------------------------------
# Cource Details Tabs
--------------------------------------------------------------*/
.cource-details-tabs {
  overflow: hidden;
  padding-top: 0;
}
.cource-details-tabs .nav-tabs {
  border: 0;
}
.cource-details-tabs .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: #FFFF00;
  border-radius: var(--border-radius-buttons);
  border-right: 2px solid white;
  font-weight: 600;
  font-size: 15px;
}
.cource-details-tabs .nav-link:hover {
  color: var(--primary);
}
.cource-details-tabs .nav-link.active {
  color: var(--primary);
  border-color: var(--primary);
}
.cource-details-tabs .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
          animation: fadeIn 0.5s ease-out;
}
.cource-details-tabs .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #FFFF00;
}
.cource-details-tabs .details p {
  color: #777777;
}
.cource-details-tabs .details p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cource-details-tabs .nav-link {
    border: 0;
    padding: 15px;
  }
  .cource-details-tabs .nav-link.active {
    color: #fff;
    background: var(--primary);
  }
}








.tooltip-inner {
    background-color: var(--primary);
    -webkit-box-shadow: 0px 0px 4px #58595a;
            box-shadow: 0px 0px 4px #58595a;
    opacity: 1 !important;
}
.tooltip.bs-tooltip-right .tooltip-arrow::before {
    border-right-color: var(--primary) !important;
}
.tooltip.bs-tooltip-left .tooltip-arrow::before {
    border-left-color: var(--primary) !important;
}
.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: var(--primary) !important;
}
.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: var(--primary) !important;
}


ul.course_stats { padding: 0; }
ul.course_stats li { display: inline; padding-right: 20px; color: #828282; }
div.course_box { width: 100%; height: auto; min-width: 350px; min-height: 325px; padding: 40px 30px; }
div.course_box li { font-size: 12px; }
div.course_box a { text-decoration: none; font-size: 12px; }
div.course_details p { color: #828282; }
div.course_details a { text-decoration: none; }
div.course_buttons { margin-top: 20px; }



table.data-area { width: 100%; border: 1px solid #eeeeee; border-spacing: 0px; }
table.data-area tr td { padding: 4px 6px; }
table.data-area thead tr { background-color: #4a4a4a; color: white; }
table.data-area thead tr td { border: none; }
table.data-area thead tr td p { font-weight: bold; }
table.data-area thead tr:hover { background: #4a4a4a; }
table.data-area tr td { border-top: 1px solid #eeeeee; }
table.data-area tr.inactive td p { color: red; text-decoration: line-through; }
table.data-area tr.paid0 { background-color: #fcc; }
table.data-area tr.paid1 { background-color: #cfc; }
table.data-area tr:hover { background: #faf7df; }

table.data-form { width: 100%; border: 1px solid #eeeeee; border-spacing: 0px; margin-bottom: 20px; }
table.data-form tr td:first-child { width: 20%; }
table.data-form tr td { padding: 4px 6px; }
table.data-form tr td p { padding-top: 3px; padding-bottom: 3px; }
table.data-form thead tr { background-color: #4a4a4a; color: white; }
table.data-form thead tr td { border: none; }
table.data-form thead tr td p { font-weight: bold; }
table.data-form tr td { border-top: 1px solid #eeeeee; }

div#errors { display: none; }
div.errors { width:60%; background-color: #f0ebbe; padding: 10px; margin: 0 auto; }
div.errors ul { width:100%; }
div.errors ul li:first-of-type { list-style: none; margin-left: -2em; text-decoration: underline; font-weight: bold; }


.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.w3-display-bottommiddle {
  position: absolute;
  left: 0;
/*  bottom: 15px;*/
  -webkit-transform: none;
          transform: none;
  -ms-transform: none;
  padding:0 30px 0 30px;
  text-align:center;
  width:100%;
}


.btn-primary{
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover{
  color: var(--primary);
  background-color: #fff;
  border-color: var(--primary);
}


.btn {
  background:var(--primary);
  border: 1px solid var(--primary);
  display: inline-block;
  /*padding: 0.5rem !important;*/

  padding: 0.5rem 2rem;
  border-radius: var(--border-radius-buttons);
  color: white;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-default);
  font-weight: 600;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-transform: uppercase;
}
.btn:hover {
  background: white;
  border: 1px solid var(--primary);
  color: var(--primary);
}
.btn-xl {
  font-size: 18px;
  padding: 0.9rem !important;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
  color: white;
  background: var(--default);
  border-color: var(--default);
}


.btn2 {

  background: var(--lightprimary);
  display: inline-block;
  padding: 8px 35px;
  border: 0;
  border-radius: var(--border-radius-buttons);
  color:var(--primary);
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  font-size: 14px;

  font-family: var(--font-default);
  font-weight: 600;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-transform: uppercase;
}
.btn2:hover {
  background: var(--primary);
  color: #fff;
}

.btnoutline {
  background: transparent;
  display: inline-block;
  padding: 8px 35px;
  border: 0;
  border-radius: var(--border-radius-buttons);
  color: #fff;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  font-size: 14px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-default);
  font-weight: 600;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-transform: uppercase;
}
.btnoutline:hover {
  background: var(--primary);
  color: #FFFFFF;
}


.order-button {
  background: #ffffff;
  display: inline-block;
  padding: 8px 25px;
  border: 1px solid #6c757d;
  border-radius: var(--border-radius-buttons);
  color: #6c757d;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  font-size: 11px;
  text-transform: uppercase;

  font-family: var(--font-default);

  -webkit-transition: 0.3s;

  -o-transition: 0.3s;

  transition: 0.3s;
  margin: 0px 0px 15px 0px;
}
.order-button:hover {
  color: #ffffff;
  background: #6c757d;
}

.align-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;  -webkit-box-orient: horizontal;  -webkit-box-direction: reverse;  -ms-flex-direction: row-reverse;  flex-direction: row-reverse;
}




ul.wss-tabs {
  border-bottom: 0;
}

ul.wss-tabs li .nav-link {
  margin: 10px;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid var(--secondary);
}
ul.wss-tabs li .nav-link.active {
  font-weight: bold;
  border-bottom: 2px solid var(--primary);
}

ul.wss-tabs li .nav-link:focus, ul.wss-tabs li .nav-link:hover {
color: var(--default);
}

ul.wss-tabs li .nav-link {
color: var(--primary);
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  padding: 40px;
  background: #fff;
  height: 100%;
  text-align: center;
  border: 1px solid var(--light-gray);
  /*
  -webkit-box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
          */
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin: 0 auto 50px auto;
}

.services .service-item .icon i {

  color: var(--primary);
  font-size: 40px;
  -webkit-transition: ease-in-out 0.3s;
  -o-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
  line-height: 1.8;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #f7f9fc;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -15px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.services .service-item h3 {
  color: var(--default);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #ebebed;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item a.readmore {
  margin-top: 15px;
  display: inline-block;
  color: var(--primary);
  text-transform: uppercase;
  text-decoration: none;
}

.services .service-item:hover .icon:before {
  background: var(--lightprimary);
}

.services .service-item:hover h3 {
  border-color: var(--primary);
}



.space {
  margin-bottom: 50px;
  background: inherit;
}


@media (max-width: 640px) {
  .container {
    width: 95%;
    margin: 0 auto;
  }
}













#stepform {


    text-align: center;
    position: relative;
    margin-top: 30px;
}

#stepform fieldset {
    background: white;
    border: 0 none;

  border-radius: 5px;
  -webkit-box-shadow: 0px 0 30px rgba(93, 93, 93, 0.1);
          box-shadow: 0px 0 30px rgba(93, 93, 93, 0.1);
    padding: 20px 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 80%;
    max-width: 1000px;
    margin: 0 auto; /* This centers the container */

    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#stepform fieldset:not(:first-of-type) {
    display: none;
}

#stepform label {
  text-align: left;
}

/*inputs
#stepform input, #stepform textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;

    color: #2C3E50;
    font-size: 13px;
}

#stepform input:focus, #stepform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #47366f;
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
}
*/
/*buttons*/
#stepform .action-button {
    width: 150px;
    background: #47366f;
    text-transform: uppercase;
    color: white;
    border: 0 none;
    border-radius: var(--border-radius-buttons);
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#stepform .action-button:hover, #stepform .action-button:focus {
     background: #373734;
}

#stepform .action-button-previous {

    width: 150px;
    background: #aea7b5;
    text-transform: uppercase;
    color: #eee;
    border: 0 none;
    border-radius: var(--border-radius-buttons);
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#stepform .action-button-previous:hover, #stepform .action-button-previous:focus {
    background: #373734;
}

/*headings*/
.fs-title {
    font-size: 23px;
    text-transform: uppercase;

    color: #2C3E50;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
}
.subtitle {
  color: #fff;
  font-size: 15px;
}
.fs-subtitle {
    font-weight: normal;

    font-size: 13px;
    color: #666;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;

    color: var(--secondary);
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 1vw;

    width: 20%;
    float: left;
    position: relative;
    letter-spacing: 1px;
}
#progressbar li.active {
 font-weight: bold;
}


@media screen and (min-width: 1024px) {
 #progressbar li {
    font-size: 15px;
  }
}


#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 28px;
    height: 28px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: var(--primary);
    background: var(--secondary);
    border-radius: 25px;
    border: 2px solid var(--secondary);
    margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 4px;
    background: var(--secondary);
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}



#progressbar li.active:before {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--secondary);
    font-weight: bold;
}

#progressbar li.active:after {
    background: var(--primary);

}


.img-box-fill {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: hidden;
}

.img-box-fill img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    min-width: 100%;
    min-height: 100%
}


.workshop_request_background {
  width: 100%;
  background-image: -o-linear-gradient(rgba(239, 237, 234, 0.55), rgba(239, 237, 234, 0.55)), url("/en/images/AdobeStock_345531588.jpeg");
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(239, 237, 234, 0.55)), to(rgba(239, 237, 234, 0.55))), url("/en/images/AdobeStock_345531588.jpeg");
  background-image: linear-gradient(rgba(239, 237, 234, 0.55), rgba(239, 237, 234, 0.55)), url("/en/images/AdobeStock_345531588.jpeg");
background-size: cover;
background-position: right;
background-repeat: no-repeat;
margin: 0;

}


.theader {
  background-color: var(--lightprimary);
  color:var(--primary);
  text-align: left;
}


.bigselect {
  font-size: 1.5rem;

  background-color: var(--primary);

  border-color: #fff;

  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    color:#fff;
    background-size: 20px auto;

}

.bigselect:after {

  color:#fff;
}








/* cart ----------- */




.cart-container {
  position: fixed;
  top: 65px;
  z-index: 999999;
  margin: auto;
  width: 100%;
}

.cart-container .btn-outline,
#order .btn-outline {
  background-color: transparent;
  border: none;
}
.cart-container table {
    margin: 12px 0;
}

.badge, .cart-badge {
  background-color: var(--light-gray);
  border-radius: 8px;
  margin-top: -8px;
  color: black;
  font-weight: 700;
  display: inline-block;
  font-size: 10px;
  line-height: 1;
  padding: 3px 5px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.shopping-cart-panel {
  margin: 0;
  float: right;
  background: white;
  width: 320px;
  position: relative;
  border-radius: 3px;
  padding: 20px;
  -webkit-box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
}
.shopping-cart-panel .shopping-cart-header {
  border-bottom: 1px solid #E8E8E8;
  padding-bottom: 15px;
}
.shopping-cart-panel .shopping-cart-header .shopping-cart-total {
  float: right;
}
.shopping-cart-panel .shopping-cart-items {
  padding-top: 20px;
}
.shopping-cart-panel table tr {
  margin-top: 18px;
}
.shopping-cart-panel img {
  display: block;
  margin-right: 12px;
}
.shopping-cart-panel .item-name {
  display: block;
  padding: 10px 12px;
  font-size: 13px;
}
.shopping-cart-panel  .item-price {
  color: var(--primary);
  margin-right: 8px;
}
.shopping-cart-panel  .item-quantity {
 
  font-size: 13px;
}

.shopping-cart-panel:after {
  bottom: 100%;
  left: 89%;

  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-bottom-color: white;
  border-width: 8px;
  margin-left: -8px;
}

.cart-icon {
  color: var(--primary);
  font-size: 24px;
  margin-right: 7px;
  float: left;
}

.cart-button {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: white;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  display: block;
  border-radius: var(--border-radius-buttons);
  font-size: 16px;
  margin: 25px 0 15px 0;
}
.cart-button:hover {
  color: var(--primary);
  background: white;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.open-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active, .btn-link.active, .open>.dropdown-toggle.btn-link {
  text-decoration: none;
}



.btn-cart, .btn-cart:hover, .btn-cart:focus, .btn-cart:active, .btn-cart.active{

  font-size: 20px;
  border: none;
  color: var(--white);
  background: transparent;
}
.btn-cart:hover {
  color:rgba(255,255,255, 0.7);
}

.stable_nav .btn-cart, .stable_nav .btn-cart:hover, .stable_nav .btn-cart:focus, .stable_nav .btn-cart:active, .stable_nav .btn-cart.active{
  font-size: 20px;
  border: none;
  color: var(--primary);
  background: transparent;
}

.cart.outside {
  display: none;
  list-style: none;
}
@media screen and (max-width: 1279px) {
  .cart.outside {
    display: inline-block;
  }
  .cart.inside {
    display: none;
  }
}
.nav_withcart {
  width:93%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.subsite_header{
  height: 70px;
}
.cart_icon_topnav {
  width: 5%;
  margin: 0 2%;
}

.moble-nav {
  float: right;
}
.resources .card {
  width: 100%;
  border:1px solid #f0f0f0;
  -webkit-box-shadow: 0px 0 30px rgba(93, 93, 93, 0.1);
          box-shadow: 0px 0 30px rgba(93, 93, 93, 0.1);
}

.Quest {
  overflow: auto;
}
.QuestIcons .qi {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  background: transparent;
  border:0;
  font-size: 2em;
  color: var(--primary);
}
.QuestIcons .qi:hover {
  color: var(--lightprimary);
}
.QuestIcons .light{
  color: #BABABA;
}

hr { border: 1px solid var(--gray); }

.QuestTitle{
  font-family: var(--font-secondary);
  font-weight: 700;
}
.Quest-HF {
  min-width: 130px;
}

.Quest .btn{
  font-size: 2em;
  font-weight: 300;
}

.Quest_table {
   color: var(--primary);
   font-size: 1em;
   line-height: 1.4em;

}

.qt-striped>tbody>tr:nth-child(odd)>td,
.qt-striped>tbody>tr:nth-child(odd)>th {
   background: var(--light-gray);
 }

.Quest_table td {
   padding: 40px 15px;
 }

.Quest_table  tr td:first-child {
  padding-left: 30px;
}
.Quest .circle {
    width: 40px;
    height: 40px;
    padding: 8px 2px;
    border-radius: 35px;
    font-size: 24px;
    line-height: 1.33;
    background: #fff;
    border: 2px solid #DCDFE6;
    color: #606266;
    text-align: center;
    font-size: 1em;
    font-weight: 700;
}

.Quest .modal-header {
  border-bottom: 0;
}

.Quest .modal-header .QuestTitle{
  font-size: 1.8em;
}


.Quest .btn-close{
  color: var(--primary);
}
.Quest .modal-content {
  background: var(--secondary);
  color: var(--primary);
  font-size: 1.3em;
  line-height: 1.5em;
  padding: 2%;
}




@media print
{
  .Quest {
    height: 100%;
  }
    .QuestTitle{
      font-size: 1.7em;
      margin-top: 20px;
    }
    .Quest-HF .img-fluid {
      width: 60%;
    }
    .Quest_table td {
     padding: 25px 10px;
    }
    .Quest .container .px-5 .mb-4 {
      margin-bottom: 10px;
    }

}




.QuestTool {
  padding: 3% 4%;
  border: 1px solid var(--primary);
}

.QuestToolInstructions{
  text-align:left;
  overflow:hidden;
  position:relative;
  display: block;
  padding: 20px 145px 35px 0;
}


.QuestToolInstructions .score {
  display: inline-block;
  float:right;
  content: "";
  position:absolute;
  right:0;
  top:0;

    padding: 30px 20px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #DCDFE6;
    color: #606266;
    text-align: center;
    font-size: 1.5em;
    font-weight: 300;
}




/* Custom Quest Accordian ------------------------------------------- */

#quest_accordion .accordion-header {
  margin-top:18px;
  margin-bottom: 3px;

}

/* arrow icons */
#quest_accordion [data-bs-toggle=collapse] i:before {
  content: "\f078";
}

#quest_accordion [data-bs-toggle=collapse].collapsed i:before {
  content: "\f077";
}



/* REGULAR ---------------------------------*/
#quest_accordion .accordion-title {
  cursor: pointer;
  text-align:left;
  overflow:hidden;
  position:relative;
  display: block;
  padding: 20px 80px 20px 100px;
  background-color: #F9F9F9;
  border-radius: var(--border-radius-buttons);;
  border: 2px solid transparent;
  overflow: hidden;
  text-decoration: none;
  color: var(--default);
  width: 100%;
  text-align: left;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-size: 1.2em;
  line-height: 1.4em;

  text-transform: initial;
}
#quest_accordion .accordion-title i {
  position: absolute;
  width: 80px;
  height: 100%;
  left: 0;
  top: 0;
  color: var(--default);
  text-align: center;
  border-right: 1px solid #ECECEC;
}

/* HOVER ---------------------------------*/
#quest_accordion .accordion-title:hover {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  border: 2px solid var(--primary);
}
#quest_accordion .accordion-title:hover i {
  color: var(--primary);
  border-right: 1px solid var(--primary);
}

/* ACTIVE/OPEN ---------------------------------*/
#quest_accordion .accordion-title[aria-expanded="true"]{

  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  border: 2px solid var(--primary);
}

#quest_accordion .accordion-title[aria-expanded="true"] i {
  color: var(--primary);
  border-right: 1px solid var(--primary);
}



#quest_accordion .accordion-title .title  {
  padding-left: 36px;
  height: 100%;
}

#quest_accordion .accordion-title .complete:before {
position: absolute;
height: 100%;
display: inline-block;
content: "\f14a";
  font-family: "Font Awesome 5 Free";
  font-size: 1.5em;

  font-weight: 700;
  color: #213744;
}

#quest_accordion .accordion-title .progress_start:before {
position: absolute;
height: 100%;
display: inline-block;
content: "\f0c8";
  font-family: "Font Awesome 5 Free";
  font-size: 1.5em;

  font-weight: 300;
  color: #E4E4E4;
}


#quest_accordion .accordion-title .score {
  display: inline-block;
  float:right;
  content: "";
  position:absolute;
  right:10px;
  top:10px;

    padding: 10px 20px;
    border-radius: 50%;
    font-size: 24px;
    background: #fff;
    border: 2px solid #fff;
    color: #fff;
    background: var(--primary);
    text-align: center;
    font-size: 1em;
    font-weight: 700;
}

#quest_accordion .accordion-body {
  padding: 0;
  background: #FCFCFC;
  padding: 3% 4%;
  border: 1px solid #DCDFE6;
}







/* QUEST custom radio box "Star" choices */



.QuestToolSection {
  font-size: 0.9em;
  line-height: 1.6em;
}
.QuestToolSection h4 {
  margin-top: 50px;
  font-size: 1.33em;
  font-weight: 600;
  text-transform: uppercase;
}


.indicator {
  display: inline-block;

  font-size: 15px;
  font-weight: 500;
}

.focus, .focus ul li {
  font-size: 12px;
}

.QuestToolSection .focus ul {
  list-style: none;
  margin-left: 4px;
  padding-left: 0;
}
.QuestToolSection .focus li {

  line-height: 1.2em;
  margin-bottom: 10px;
  padding-left: 1.2rem;
  text-indent: -1.2rem;
}
.QuestToolSection .focus li:before {
  content: "\f111";
  padding-right: 15px;
  font-family: "Font Awesome 5 Free";
  font-size: 6px;
  font-style: normal;
  color: #213744;
}

.QuestToolSection .star input[type="radio"]{
    -webkit-appearance: none;
   margin:0;
   padding: 0;
   top:0;
    cursor: pointer;

}
.QuestToolSection .star { width:100%; cursor: pointer;}
.QuestToolSection .star label{
   width: 100%;
   max-height: 70px;
   border-radius: var(--border-radius-buttons);
   position: relative;
   background: #E4E4E4;
   padding:18px;
   text-align: center;
   color: #fff;
   -webkit-transition: 0.5s;
   -o-transition: 0.5s;
   transition: 0.5s;
    cursor: pointer;
}

.QuestToolSection .star input[type="radio"]:checked + label {
  background-color: var(--primary);
  color: #ffffff;
   cursor: pointer;
}


.QuestToolSection .star .icon  {
    font-size: 2vh;
     cursor: pointer;
}



.indicators{
/*  display: flex;
  flex-wrap: nowrap;*/
}

.indicators .option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 0 4px;
}


.indicators .option .details{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
    brder-radius: 6px;
    height: 100%;
    border: 1px solid #DCDFE6;
}


.indicators .option .details h5{
  text-align: center;
  margin: 20px 2px;
  font-size: 1.2em;
}
.indicators .option .details p{
  font-size: 12px;
  padding: 3% 5%;
}


.indicators .option .details .content {
 -ms-flex-line-pack: start;
     align-content: flex-start;

}

.indicators .option .details .content11 { min-height: 320px; }
.indicators .option .details .content12 { min-height: 250px; }
.indicators .option .details .content21 { min-height: 280px; }
.indicators .option .details .content22 { min-height: 340px; }
.indicators .option .details .content31 { min-height: 310px; }
.indicators .option .details .content32 { min-height: 340px; }
.indicators .option .details .content41 { min-height: 365px; }
.indicators .option .details .content42 { min-height: 385px; }
.indicators .option .details .content51 { min-height: 365px; }
.indicators .option .details .content52 { min-height: 250px; }

@media only screen and (max-width: 1200px) {

.indicators .option .details .content11 { min-height: 200px; }
.indicators .option .details .content12 { min-height: 200px; }
.indicators .option .details .content21 { min-height: 200px; }
.indicators .option .details .content22 { min-height: 200px; }
.indicators .option .details .content31 { min-height: 200px; }
.indicators .option .details .content32 { min-height: 200px; }
.indicators .option .details .content41 { min-height: 200px; }
.indicators .option .details .content42 { min-height: 200px; }
.indicators .option .details .content51 { min-height: 200px; }
.indicators .option .details .content52 { min-height: 200px; }

}


.indicators .option .details .checks{
   -ms-flex-line-pack: end;
       align-content: flex-end;
}
.indicators .option .details .checks .form-check {
  border-bottom: 1px solid #DCDFE6;
}

.indicators .option .details .checks .form-check input {
  margin-top: 8px;
  display: inline-block;
}

.indicators .option .details .checks .form-check label {
  margin: 4px;
  font-size: 13px;
}

.indicators .option .details .checks .form-check:last-child {
  border-bottom: none;
}







.indicator  {
  padding: 0 6px 0 12px;
}
.indicator_checkbox {
  pointer-events: none;
}

/* password toggle*/
#yourPassword {
  display: inline-block;
}
#togglePassword {
  margin-left: -10%;
  display: inline;
  vertical-align: middle;
}

/* comfirm password toggle*/
#yourPassword2 {
  display: inline-block;
}
#togglePassword2 {
  margin-left: -10%;
  display: inline;
  vertical-align: middle;
}

/*student survey*/
#survey_rating {
  margin-right: 10px;
}


/* overwrite select2*/
.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    margin-left: 20px;
}

/* jquery UI datepicker */
.ui-datepicker {
    background: #fff;
}

.homepage_hotspots-wrapper {
  position: relative;
    bottom: -450px;
}

.homepage_hotspots {
  padding: 2rem 1.5rem;
  margin-bottom: 3rem;
}

.homepage_hotspots .d-grid {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
}


.homepage_hotspots .card {
  background-color: white;
  border-bottom: 4px solid var(--secondary);
  height: 100%;
  border-radius: 12px 12px 0 0;
  padding: 1rem;
  min-height: 250px;
}

.homepage_hotspots .icon {
  margin: 0 auto;
  padding: 25px 0;
}

.homepage_hotspots .card-title {
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 2rem;
  color: var(--primary);
  text-align: center;
}


.icon_tile {
   background: linear-gradient(rgba(255,255,255,.85), rgba(255,255,255,.85)), url("/assets/img/campus/icon_tile.png") repeat-x;  
   height: 135px;
}

@media screen and (max-width: 1200px){
  .homepage_hotspots .card-title {
     font-size: 1.5rem;
     line-height: 1.5rem;
  }
}

@media screen and (max-width: 768px){
  .homepage_hotspots .d-grid {
    grid-template-columns: 1fr 1fr;
  }
  .homepage_hotspots-wrapper {
    bottom: -320px; 
  }
  .homepage_hotspots {
    padding: .5rem .5rem;
  }
  .icon_tile {
   background: linear-gradient(rgba(255,255,255,.85), rgba(255,255,255,.85)), url("/assets/img/campus/icon_tile-large.png") repeat-x;  
   height: 360px;
}
}

@media screen and (max-width: 480px){
  .homepage_hotspots .card-title {
     font-size: 1rem;
  }
}





.resource-grids .resource-group {
  padding: 2rem 1.5rem;
  margin-bottom: 3rem;
}

.resource-grids .resource-group {
  background-color: #f1f1f1;
  border-radius: var(--border-radius-buttons);;
}

.resource-grids .card-text {
  font-size: 0.9rem;
}

.resources-list .resource-list-item {
  border-radius: var(--border-radius-buttons);
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.coaching .resources-list .resource-list-item {
  border: 1px solid var(--light-gray);
}

.resources-list .resource-list-item .title-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.resources-list .resource-list-item .title {
  font-size: 1.25rem;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .resources-list .resource-list-item .title {
    font-size: 1rem;
  }
}

.resources-list .resource-list-item .number {
  margin-right: 10px;
}

@media screen and (max-width: 576px){
  .resources-list .resource-list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .resources-list .resource-list-item .title-group {
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}


.resources-grid .d-grid {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

@media screen and (max-width: 1200px){
  .resources-grid .d-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px){
  .resources-grid .d-grid {
    grid-template-columns: 1fr;
  }
}


.resources-grid .card {
  background-color: white;

  height: 100%;
  border-radius: var(--border-radius-buttons);
  padding: 1rem;
  border: 0;
  min-height: 375px;
}


.resource-grids .card-title {
  font-weight: 600;
  font-size: 1.25rem;
  margin-top: 12px;
}

.resource-grids .card-title {
  margin-bottom: 10px;
}


.resources-grid .card-body {
  padding: 0;
}

.resources-grid .card-body {
  margin-bottom: 1.5rem;
}


.resources-grid .card-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: white;
  border-top: none;
  padding: 0;
}

.resources-grid .card-footer * {
  text-transform: uppercase;
}

.resources-grid .card-footer a.btn {
  border-radius: var(--border-radius-buttons);
  width: 100%;
}

.resources-grid .card-img-top {
  border-radius: var(--border-radius-buttons);
  margin-bottom: 1.5rem;
}



.sort-filter-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}

.sort-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgb(143, 145, 144);
}


.sort-filter-layout .layout-options {
    gap: 0.5rem;
}

.sort-filter-layout .layout-options > div {
    background: var(--white);
    border-radius: var(--border-radius-cards);
    padding: 0.75rem;
    border: 1px solid var(--light-gray);
    -webkit-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear;
    cursor: pointer;
}

.sort-filter-layout .layout-options > div.active {
    background: var(--primary);
}

.sort-filter-layout .layout-options > div svg path {
    -webkit-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear;
    fill: var(--default);
}

.sort-filter-layout .layout-options > div.active svg path {
    fill: white;
}

#body-resources .sort-filter-layout .grid-layout {
  background-color: #555;
}


#program-grid .card-img-boxshot {
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--border-radius-buttons);
  margin-bottom: 1.5rem;
}


.topbanner{
  background:var(--primary); 
  color:white; 
  padding:2px 16px; 
  position:fixed; 
  width:100%; 
  z-index:9990; 
  min-height: 80px; 
  line-height: 1.1; 
  display: flex; 
  align-items: center; 
  justify-content: center;
}
.topbanner a {
  color: white;
  text-decoration: none;
}




/*--------------------------------------------------------------
  # Programs Section
  --------------------------------------------------------------*/
  .programs {
    padding-block: 5rem 5rem;
  
     /*background: url("/assets/img/campus/programs-background.png") no-repeat bottom right, var(--light-gray);*/
    


    
}

.programs .container-xl {
    position: relative;
}

.programs h2 {
    font-size: 1.75em;
    font-weight: 500;
    margin-bottom: 2.5rem;
    color: var(--primary);
}

.programs .card-title {
  color: var(--default);
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-top: .8rem;
}


.programs-swiper {
    width: calc(100% - 6rem);
    margin-inline: auto;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;

     display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.programs-swiper .swiper-slide {
    height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.programs .swiper-button-prev,
.programs .swiper-button-next {
    margin-top: 10px;
}

.programs .swiper-button-prev:after,
.programs .swiper-button-next:after {
    font-size: 2em;
    color: var(--gray);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}

.programs .swiper-button-prev:hover:after,
.programs .swiper-button-next:hover:after {
    color: var(--black);
}

.simple-program-card {

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    flex:1;
  background: var(--light-gray);
  padding: 30px;
  border-radius: var(--border-radius-cards);
  cursor: pointer;
}
.simple-program-card:hover {
  opacity: 0.8;
}

.simple-program-card i  {
  position: absolute;
  z-index: 99;
  font-size: 65px;
  color: white;
  top: 130px;
  left: 41%;
  filter: drop-shadow(1px 2px 11px #000000);
}

.simple-program-card .boxshot  {
    width: 100%;
    height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--border-radius-buttons);
}

.simple-program-card h4 {
    font-size: 1.25em;
    font-weight: 500;
    margin-inline: 0.75rem;
    color: var(--primary);
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
}

.text-desc {
overflow: hidden;
color: var(--default);
font-family: var(--font-secondary);
font-size: 14px;
font-weight: 300;
   display: -webkit-box;
   -webkit-line-clamp: 3; /* number of lines to show */
           line-clamp: 3; 
   -webkit-box-orient: vertical;
}

.simple-program-card .organizer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.simple-program-card .logo {
  height: 30px;
}

.simple-program-card .logo img {
  height: 40px;
}

.simple-program-card .program-type img {
  padding-right: 0.5rem;
  margin-top: -3px;
  width: 25px;
  display: inline-block;
}
.simple-program-card .program-type{
  color: var(--black);
  font-size: 13px;
}

.swiper-button-prev {
  background-image: url(/assets/icons/circle-arrow-left-regular.svg) !important;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  }
  
  .swiper-button-next {
  background-image: url(/assets/icons/circle-arrow-right-regular.svg) !important;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  }

  .swiper-button-next::after {
    display: none;
    }
    
    .swiper-button-prev::after {
    display: none;
    }


    .search_results {
      margin: 12px 0;
      color: #A9A9A9;
      background-color: #FAFAFA;
      padding: 12px 25px;

    }
    .facility_logo {
      margin: 0 auto;
      width: 100%;
      height: 100%;
      max-width:150px;
      max-height: 130px;
    }
    .facility_logo img{
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .truncate{
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
    }

   .card .details-div {
    font-size: 0.8em;
    line-height: 200%;
    margin-bottom: 8px;
   }




.stable-search{
  width: 100%;
  height:150px;
  position: relative;
  /*margin-left: -50vw;
  left: 50%;*/
  /*margin-top: -200px;*/
  background: var(--light-gray);
  padding: 0.5rem !important;
  z-index: 0;
}

.search-menu-bar {
  width: 50%;
  min-width:340px;
  z-index: 1;
  margin-top: 50px;
  margin-left: 3vh;
}

@media (max-width: 768px) {
  .search-menu-bar {
    margin-left: 30px;
  }
}

/*
.search-wrapper{
  width: 100%;
}
*/


.search-menu-bar .d-flex {
gap: 3rem;
}

.search-menu-bar h1 {
  font-weight: 600;

  text-transform: uppercase;
}

.search-menu-bar .search-wrapper input {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0.5rem;
  padding-left: 0;
  font-size: 1.75rem;
  color: var(--primary);
  border-bottom: 3px solid var(--black);
  background: url("/assets/icons/magnifying-glass.svg") no-repeat scroll 98% 13px;
  background-size: 32px;
  padding-right: 4rem;
}

input:focus {
  outline: 0;
}


.search-menu-bar .search-wrapper input::-webkit-input-placeholder {
  color: var(--primary);
  opacity: 1;
}

.search-menu-bar .search-wrapper input::-moz-placeholder {
  color: var(--primary);
  opacity: 1;
}

.search-menu-bar .search-wrapper input::-ms-input-placeholder {
  color: var(--primary);
  opacity: 1;
}

.search-menu-bar .search-wrapper input:-ms-input-placeholder {
  color: var(--primary);
  opacity: 1;
}

.search-menu-bar .search-wrapper input::placeholder {
  color: var(--primary);
  opacity: 1;
}

.search-menu-bar .search-wrapper span {
  font-size: 2rem;
}


.hero .bread_crumbs, 
.hero_subpage .bread_crumbs, 
.subhero_image .bread_crumbs, 
.hero_stable .bread_crumbs {
  margin-top: 12px;
}
.hero .bread_crumbs, 
.hero_subpage .bread_crumbs, 
.hero_subpage .bread_crumbs a, 
.subhero_image .bread_crumbs, 
.subhero_image .bread_crumbs a,
.hero_stable .bread_crumbs, 
.hero_stable .bread_crumbs a {
  font-size: 16px;
  font-weight: 300;
  color:white;
}







.subhero_container {
  width: 100%;
  height: 50vh;
  overflow: hidden;
   position: relative;
  z-index: 3;

  display: flex;
  align-items: flex-start;
  justify-content:space-between;
}

.subhero_background {

  background: url("/en/images/header/header-1.jpg") center center;
  background-size: cover;
  background-color: rgb(0 0 0 / 80%);
  filter: blur(2px);
  width: 100%;
  opacity: 90%;
  height: 100%;
  
  position: absolute;
  top: 0;
}
.subhero_background:after {
  position: absolute;
  content: "";
  width: 100%;
  background: rgba(var(--default-rgb), 0.5);
  top: 0;
  bottom: 0;
}
.subhero_image {
  background-size: cover;
  position: relative;

  height: inherit;
 
  
  display: flex;
  align-items: flex-end;
  justify-content:space-between;
}
.subhero_container:after {
  position: absolute;
  content: "";
  width: 100%;
  background: #000000;
  background: linear-gradient(30deg,rgb(63 63 63 / 45%) 0%, rgb(0 0 0 / 28%) 50%);
  top: 0;
  bottom: 0;
}



.subhero_image h2 {
  margin: 0;
  padding: 4vh 0 1vh;
  font-size: 3vh;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  z-index: 1;

}

@media (max-width: 768px) {
  .subhero_image h2 { 
   font-size: 2.5vh;
   padding: 2vh 0;
  }

  
}




.invert  {
  -webkit-filter: invert(100%);
    filter: invert(100%);
}



.facility_logo_subsite {
  position: absolute;
  margin-top: 125px;


  width: 175px;
  height: 135px;
  background-color: white;
}

.facility_logo_subsite.small{
  position: absolute;
  margin-top: 0;
  margin-left: 0;

  width: 100px;
  height: 68px;
  background-color: transparent;
}


.facility_logo_subsite img {
  width: 95%;
  height: 95%;
  object-fit: contain;
}

@media screen and (max-width: 768px) {

  .facility_logo_subsite, 
  .facility_logo_subsite.small{
    position: absolute;
    margin-top: 0;
    margin-left:0;
  
    width: 100px;
    height: 68px;
    background-color: transparent;
  }
}


.map-responsive{
  overflow:hidden;
  padding-bottom:56.25%;
  height:100% !important;
  position:relative;
  height:0;
}
.map-responsive iframe{
  left:0;
  top:0;
  height:100%;
  width:100%;
  position:absolute;
}

.contact_info {
  
}

.contact_info .item {
  display: flex;
  align-items: center;
  word-break:break-all;
}
.contact_info .item .icon{
  padding: 15px;

}
.contact_info .item .icon i {
  background-color: var(--primary);
  border-radius: 50%;
  color: white;
  padding: 15px;
  display: inline-block;
}


.stable_badge {
  width: 105px;
}

.stable_badge .icon {
  position: relative;
}


.stable_badge .icon h3 {
  position: absolute;
  top: 45px;
  text-align:center;
  font-size:21px;
  width: 105px;
  height: 118px;
}



.card {
  border: 1px solid var(--light-gray);
  border-radius:var(--border-radius-cards);
}




.btn-cta{
  font-size: 1.6rem;
    color: #fff;
  background-color: var(--primary);


 border: 1px solid var(--primary);

  
  display: inline-block;

    padding: 0.5rem 2rem;
  border-radius: var(--border-radius-buttons);

  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;

}
.btn-cta:hover{
  color: var(--primary);
  background-color: #fff;
}





.supporters{

   margin-bottom: 8rem;
}



.swiper.supporters-swiper {
  margin-top: 4rem;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    white 10%,
    white 90%,
    transparent 100%
  );
}

.swiper-wrapper.supporters-swiper {
  transition-timing-function: linear;
  align-items: center;
}

.swiper-slide.supporters-swiper {
  width:auto;
  max-width: 12rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-slide.supporters-swiper img{
   width:100%;
   height: 100%; 
   object-fit: contain;
}







.experts{
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-bottom: 3rem;
}



.experts .d-grid {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
}


@media screen and (max-width: 1024px){
 .experts .d-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 768px){
 .experts .d-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.experts img{
  border-radius: 50%;
  width: 100%;

  margin: 1.5rem 0;
}

.experts .col-2 {
  gap:3;
  margin: 20px;
}
.experts h5 {
  margin: 0;
  line-height:18px;
  text-transform: uppercase;
}

.experts h5 div{
  text-transform:capitalize;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 300;
  padding-top: 6px;
  
}







.experts{
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-bottom: 3rem;
}



.whofor .d-grid {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}


@media screen and (max-width: 1024px){
 .whofor .d-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 768px){
 .whofor .d-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 500px){
 .whofor .d-grid {
    grid-template-columns: 1fr;
  }
}

.whofor img{
  border-radius: 50%;
  width: 100%;

  margin: 1.5rem 0;
}

.whofor .col-2 {
  gap:3;
  margin: 20px;
}
.whofor h5 {
  margin: 0;
  line-height:21px;
  color: white;
  text-transform: uppercase;
      text-shadow: 2px 2px 9px #13508e;
}

.whofor h5 div{
  text-transform:capitalize;
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 300;
  padding-top: 6px;
      text-shadow: 2px 2px 9px #022547;
  
}





.background-video-100-wh {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.background-video-3-copy {
  z-index: 1;
  box-sizing: border-box;
  aspect-ratio: 40 / 33;
  object-fit: cover;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.background-video-3-copy-copy {
  z-index: 1;
  box-sizing: border-box;
  aspect-ratio: 40 / 33;
  object-fit: cover;
  width: 100%;
  height: 100%;
  overflow: visible;
}

 .background-video-3-copy-copy.inlinevideo {
    width: 100%;
  }
.w-background-video {
  color: #fff;
  /*height: 500px;*/
  position: relative;
  overflow: hidden;
}

.w-background-video > video {
  object-fit: cover;
  z-index: -100;
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  inset: -100%;
}

.w-background-video > video::-webkit-media-controls-start-playback-button {
  -webkit-appearance: none;
  display: none !important;
}

.w-background-video--control {
  background-color: #0000;
  padding: 0;
  position: absolute;
  bottom: 1em;
  right: 1em;
}

.w-background-video--control > [hidden] {
  display: none !important;
}

  .background-video-3, .background-video-3-copy, .background-video-3-copy-copy {
    overflow: visible;
  }


.chapter-desc {
  margin-top: 2rem;
  margin-bottom: 3rem;
  font-size: 21px;

}
@import url('/assets/css/catalog.css');