@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(--default);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  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: 0;
  -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);
  -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, .header_static {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 9999;
  
  -webkit-box-shadow: 0px 0px 30px rgba(var(--default-rgb), 0.25);
          box-shadow: 0px 0px 30px rgba(var(--default-rgb), 0.25);
}

.header.sticked, .header_static.sticked {
 background: rgba(255,255,255, 1);
}

@media (max-width: 1200px) {
  .header, .header_static,
  .header.sticked {
    padding: 2px 0;
  }
}


.header .logo-light, .header .logo-dark, .header .logo-light-subpage, .header .logo-dark-subpage    {
  position: relative;
  width: 100%;
  min-width: 125px;
  padding:10px;
}

.header .PBicon-light, .header .PBicon-dark, .header .PBicon-light-subpage, .header .PBicon-dark-subpage    {
  position: relative;
  width: 100%;
  width: 40px;
}


.header .logo-light img, .header .logo-dark img, .header .logo-light-subpage img, .header .logo-dark-subpage img  {
  position: absolute;
  width: 95%;
}

.header .PBicon-light img, .header .PBicon-dark img, .header .PBicon-light-subpage img, .header .PBicon-dark-subpage img  {
  position: absolute;
  width: 95%;
}

.header-top {
  background: var(--primary);
  color:#fff;
  padding: 0;
}

.header-main {
  background: white;
  
}
.header-border {
  border-bottom: 1px solid black;
  padding: 15px 0;
  margin-bottom: 25px; 
}

@media screen and (max-width: 576px){
  .header .logo-light, .header .logo-dark, .header .logo-light-subpage, .header .logo-dark-subpage    {
   
  }

}

.header .logo-light, .header .logo-dark, .header .PBicon-light, .header .PBicon-dark   {
  display: none;
}


.header.sticked .logo-dark, .header.sticked .PBicon-dark  {
  display: block;
}




.header .logo-light-subpage, .header .PBicon-light-subpage {
  display: block;
}

.header .logo-dark-subpage, .header .PBicon-dark-subpage {
  display: none;
}

.header.sticked .logo-dark-subpage, .header.sticked .PBicon-dark-subpage {
  display: block;
}

.header.sticked .logo-light-subpage, .header.sticked .PBicon-light-subpage {
  display: none;
}







.header .partner, .header_static .partner{
 width: 100%;
}
.header .partner .partner_logo, .header_static .partner .partner_logo{

  position: relative;
  width: 45%;
  min-width: 125px;
  max-width: 400px;
}

.header .partner .logo, .header_static .partner .logo{
  display: block;
  position: absolute;

  width: 8%;
  right:2%;
  top: 4%;
  min-width: 75px;
  max-width: 200px;
}


.header.sticked .partner_logo, .header_static.sticked .partner_logo  {
  display: block;
  position: absolute;
  width: 150px;
  top: 2px;


}

.header.sticked .partner .logo, .header_static.sticked .partner .logo{
  display: block;
  position: absolute;
  width: 50px;
  right:10%;
  top: 5px;
   /* add background to logo   */
  background: var(--primary);

  padding: 10px;
}










.header .logo h1, .header_static .logo h1{
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-secondary);
  margin: 0;
}

/*--------------------------------------------------------------
# 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);
  white-space: nowrap;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

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

.navbar_top .login i  {
  font-size: 18px;
  padding-right: 12px;
  line-height: 0;
}


.navbar_top .dropdown ul {
  display: block;
  position: absolute;
  left: 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(--default);
}


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


.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 {
    padding: 10px;
  }

  .navbar 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 li {
    position: relative;
  }

  .navbar a,
  .navbar 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;
    padding: 15px 0 15px 30px;
    font-family: var(--font-default);
    font-size: .875rem;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .sticked .navbar li a {
    color: var(--default);
  }

  .sticked .navbar a i,
  .sticked .navbar a:focus i {
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .active
  .navbar .active:focus {
     color: #fff;
  }

  .sticked .navbar .active,
  .sticked .navbar .active:focus {
     color: #fff;
  }


  .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(--default);
  }

  .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(--primary);
  }

  .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 a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--default);
  }

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

  @media screen and (max-width: 1279px){
    .sticked .navbar a:hover,
    .sticked .navbar .active,
    .sticked  .navbar .active:focus,
      .sticked .navbar li:hover>a {
        color: var(--primary) !important;
      }
  }




.navbar .login,
.navbar .login:focus,
.sticked .navbar .login,
.sticked .navbar .login:focus 
{
  display: inline-block;
  padding: 5px 30px;
  margin-left: 30px;
  border-radius: var(--border-radius);
  color: white;
  background: var(--primary);
  font-size: 15px;
  border:0;
}

.navbar .login:hover,
.sticked .navbar .login:hover
 {
  color: var(--default);
  background: var(--light-gray);
}
.navbar .login i {
  color: white;
}
.navbar .login i:hover {
 color: var(--default);
}

.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: 0;
}
.navbar .playbuilder_icon,
.navbar .playbuilder_icon:focus {
  display: inline-block;
  height: 42px;
  margin-left: 15px;
  padding: 6px 0;
  position: relative;
  border-radius: var(--border-radius);
  background: white;
}


.partner_login_box {

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

}

.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;
  }

}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .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: white;
    overflow-y: auto;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar 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;
    padding: 10px 20px;
    font-family: var(--font-default);
    font-size: 15px;
    font-weight: 600;
    color: var(--default);
    white-space: nowrap;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus 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-color: var(--lightprimary);
  }


  .navbar .dropdown .dropdown a {

    color: var(--primary);
  }

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





  .mobile-nav-show {
    color: rgba(255, 255, 255, 0.9);
    font-size: 36px;
    cursor: pointer;
    line-height: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }
 .sticked .mobile-nav-show {
    color: rgba(var(--primary-rgb), 0.9);
    font-size: 36px;
    cursor: pointer;
    line-height: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }
  .mobile-nav-hide {
    color: rgba(var(--primary-rgb), 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 {
  margin-top: 100px;
  display: block;
  width: 80%;
  text-align: center;
  color: #fff !important;
  background: var(--primary);

}


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


.navbar .btn-cart,
.navbar .btn-cart:focus {
  margin-top:100px;
  display: block;
  text-align: center;
  border-radius: 50px;
  color: var(--primary);
}


.navbar .cart:hover,
.navbar .cart:focus:hover {
  color: var(--secondary);
}






}

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

  background: url("/en/images/Hero1.jpg") top center;
  background-size: cover;
  
  width: 100%;
  height: 660px;
  
  position: relative;
  z-index: 3;

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


.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) {

  .subsite_topmargin{
    margin-top: 300px;
  }
}

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

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









.hero h2 {
  margin: 0;
  padding: 20vh 5vh 1vh;
  font-size: 3vh;
  font-weight: 700;
    max-width: 600px;
  line-height: 1.2;
  color: var(--primary);
  z-index: 1;
}

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

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

.hero .btn-get-started {
  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);
  
}

.hero .btn-get-started:hover {
  background: rgba(255, 255, 255, 0);
  color: white;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  border: 2px solid white;
  z-index: 100;
}


@media (max-width: 768px) {

  .hero{
        background-position-x: 80%;
  }
  .hero h2, .hero_stable h2 { 
   font-size: 3.5vh;
   padding: 15vh 13vh 1vh 1vh;
  }

  .hero .courses {

    padding: 2vh;
  }
}





.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;
  }

  
}

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

.faq .content p {
  font-size: 15px;
  color: var(--primary);
}
.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);
}

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

.faq .faq-container .faq-item h3 {
  color: var(--primary);
  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(--primary);
  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 {
  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);
  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: 0;
  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: var(--white);
  padding: 50px 0;
}



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

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


.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: 0;
  -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 var(--gray);
}
/*--------------------------------------------------------------
# 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);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding-bottom: 0;
}

.features h3 {
  color: var(--primary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.features .icon-list i {
  margin-right: 10px;
  font-size: 24px;
  line-height: 1.2;
}

.features .icon-list span {
  font-size: 18px;
  color: #29486a;
}

.features .phone-wrap {
  position: absolute;
  right: 0;
}

@media (max-width: 768px) {
  .features .phone-wrap {
    position: relative;
  }
}

.features .phone-wrap img {
  width: 340px;
}

@media (max-width: 992px) {
  .features .phone-wrap img {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .features .phone-wrap img {
    width: 100%;
  }
}

.features .details {
  margin-top: 80px;
  padding: 120px 0;
  background-color: #f7f9fc;
}

.features .details h4 {
  color: var(--primary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.features .details p {
  margin-bottom: 20px;
  font-size: 15px;
}

.features .details .btn-get-started {
  font-family: var(--font-primary);
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 32px;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background-color: var(--secondary);
  color: #fff;
}

.features .details .btn-get-started:hover {
  background: #2aa5df;
}

/*--------------------------------------------------------------
# Recent subpage Posts Section
--------------------------------------------------------------*/
.recent-posts .post-box {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.recent-posts .post-box .post-img {
  overflow: hidden;
  position: relative;
}

.recent-posts .post-box .post-img img {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.recent-posts .post-box .meta {
  margin-top: 15px;
}

.recent-posts .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: var(--secondary);
}

.recent-posts .post-box .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: var(--primary);
}

.recent-posts .post-box .post-title {
  font-size: 18px;
  color: var(--primary);
  font-weight: 700;
  margin: 15px 0 0 0;
  position: relative;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.recent-posts .post-box p {
  margin: 15px 0 0 0;
  color: rgba(27, 47, 69, 0.7);
}

.recent-posts .post-box .readmore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  line-height: 1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin-top: 15px;
}

.recent-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.recent-posts .post-box:hover .post-title {
  color: var(--secondary);
}

.recent-posts .post-box:hover .post-img img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  overflow: hidden;
  background: #fff;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  -webkit-transition: ease-in-out 0.3s;
  -o-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.85);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.team .team-member .social a {
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  color: #31547c;
  margin: 0 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

.team .team-member .social a:hover {
  color: var(--secondary);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 25px 15px 0 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--primary);
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #6c757d;
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #6c757d;
}

.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# organizations Section
--------------------------------------------------------------*/
.organizations {
  padding: 0 0 60px 0;
}

.organizations .swiper-slide img {
  opacity: 0.5;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-filter: grayscale(100);
          filter: grayscale(100);
}

.organizations .swiper-slide img:hover {
  -webkit-filter: none;
          filter: none;
  opacity: 1;
}




/*--------------------------------------------------------------
# nationwide Section
--------------------------------------------------------------*/
.nationwide {
  padding: 30px 0;
  background: url("/en/images/contact-bg.png") left top no-repeat;
  background-size: contain;
  position: relative;
}


@media (max-width: 640px) {
  .nationwide {
    background-position: center 50px;
  }
}

.nationwide:before {
  content: "";
  background: rgba(var(--secondary-rgb), 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}


.nationwide .section-header {
  margin: 50px 0 30px 0;
  color: var(--primary);
  font-family: var(--font-primary);
}
.nationwide .section-header p {
  font-size: 1.3em;
  padding: 1.5% 8%;
  color: var(--default);
}

/*
.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: var(--primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
*/

/*--------------------------------------------------------------
# training-framwork Section
--------------------------------------------------------------*/
.training-framwork  {
  margin:  0;
/*
  background: linear-gradient(rgba(27, 47, 69, 0.8), rgba(27, 47, 69, 0.8)), url("../../en/images/image.jpg") center center;
  background-size: cover;
*/

  background-color: var(--primary);
  padding: 100px 0;
}

.training-framwork .framework {

  margin: 50px 0;
}
.training-framwork .framework .framework-img {

  width: 7.5rem;
height: 7.5rem;
 max-width: 11.5625rem;
max-height: 11.5625rem;
margin: 0 auto 1.5625rem auto;
}


.training-framwork .framework .framework-info {
  padding: 25px 15px 0 15px;
  text-align: center;
}

.training-framwork .framework h4 {
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #fff;
}




/*--------------------------------------------------------------
# Services Cards Section
--------------------------------------------------------------*/
.services-cards {
  background: #f7f9fc;
}

.services-cards .card-item {
  border: 1px solid rgba(27, 47, 69, 0.1);
  background: #fff;
  position: relative;
  border-radius: 0;
}

.services-cards .card-item .card-bg {
  min-height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
}

.services-cards .card-item .card-body {
  padding: 30px;
}

.services-cards .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary);
}

.services-cards .card-item p {
  color: var(--primary);
  margin: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  min-height: 200px;
  -webkit-box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
  border-radius: 15px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary);
  margin: 25px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--secondary);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 30px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--primary);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-flters {
  padding: 0;
  margin: 0 auto 30px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-flters li {
  color: var(--primary);
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
  color: var(--secondary);
}

.portfolio .portfolio-flters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-flters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-item {
  position: relative;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  -webkit-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--default);
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: rgba(27, 47, 69, 0.7);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--secondary);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--secondary);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--secondary);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  -webkit-box-shadow: 0px 0 30px rgba(27, 47, 69, 0.1);
          box-shadow: 0px 0 30px rgba(27, 47, 69, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d6e2ef;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary);
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background: url("/en/images/contact-bg.png") left top no-repeat;
  background-size: contain;
  position: relative;
}

@media (max-width: 640px) {
  .contact {
    background-position: center 50px;
  }
}

.contact:before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  font-size: 20px;
  background: var(--secondary);
  color: #fff;
  width: 44px;
  height: 44px;
  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;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1c88ba;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 14px;
  padding: 12px 15px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--secondary);
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #1f98d1;
  border: 0;
  padding: 12px 40px;
  color: #fff;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--secondary);
}

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

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

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

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

/*--------------------------------------------------------------
# subpage Stylings
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# subpage Home Posts List
--------------------------------------------------------------*/
.subpage .posts-list article {
  height: 100%;
  border-bottom: 1px solid #d6e2ef;
  padding-bottom: 30px;
}

.subpage .posts-list article+article {
  margin-top: 60px;
}

.subpage .posts-list .post-img {
  max-height: 240px;
  overflow: hidden;
}

.subpage .posts-list .title {
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0 0 0;
}

.subpage .posts-list .title a {
  color: var(--primary);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.subpage .posts-list .title a:hover {
  color: var(--secondary);
}

.subpage .posts-list .meta-top {
  margin-top: 20px;
  color: #467ab3;
}

.subpage .posts-list .meta-top ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin: 0;
}

.subpage .posts-list .meta-top ul li+li {
  padding-left: 20px;
}

.subpage .posts-list .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(86, 184, 230, 0.8);
}

.subpage .posts-list .meta-top a {
  color: #467ab3;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.subpage .posts-list .content {
  margin-top: 20px;
}

.subpage .posts-list .read-more a {
  display: inline-block;
  color: #1f98d1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 500;
}

.subpage .posts-list .read-more a:hover {
  color: var(--secondary);
}

/*--------------------------------------------------------------
# subpage Details Page
--------------------------------------------------------------*/
.subpage .subpage-details {
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.subpage .subpage-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.subpage .subpage-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--primary);
}

.subpage .subpage-details .content {
  margin-top: 20px;
}

.subpage .subpage-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.subpage .subpage-details .content blockquote {
  overflow: hidden;
  background-color: rgba(27, 47, 69, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.subpage .subpage-details .content blockquote p {
  color: var(--default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.subpage .subpage-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--primary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.subpage .subpage-details .meta-top {
  margin-top: 20px;
  color: var(--gray);
}

.subpage .subpage-details .meta-top ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin: 0;
}

.subpage .subpage-details .meta-top ul li+li {
  padding-left: 20px;
}

.subpage .subpage-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(86, 184, 230, 0.8);
}

.subpage .subpage-details .meta-top a {
  color: var(--gray);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.subpage .subpage-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(27, 47, 69, 0.15);
}

.subpage .subpage-details .meta-bottom i {
  color: #38618e;
  display: inline;
}

.subpage .subpage-details .meta-bottom a {
  color: rgba(27, 47, 69, 0.8);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.subpage .subpage-details .meta-bottom a:hover {
  color: var(--secondary);
}

.subpage .subpage-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.subpage .subpage-details .meta-bottom .cats li {
  display: inline-block;
}

.subpage .subpage-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.subpage .subpage-details .meta-bottom .tags li {
  display: inline-block;
}

.subpage .subpage-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default);
  content: ",";
}

.subpage .subpage-details .meta-bottom .share {
  font-size: 16px;
}

.subpage .subpage-details .meta-bottom .share i {
  padding-left: 5px;
}

.subpage .post-author {
  padding: 20px;
  margin-top: 30px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.subpage .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.subpage .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--primary);
}

.subpage .post-author .social-links {
  margin: 0 10px 10px 0;
}

.subpage .post-author .social-links a {
  color: white;
  margin-right: 5px;
}

.subpage .post-author p {
  font-style: italic;
  color: rgba(var(--gray-rgb), 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# subpage Sidebar
--------------------------------------------------------------*/
.subpage .sidebar {
  padding: 30px;
margin: 0 0 60px 20px;
-webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);

}
.subpage .sidebar .sidebar-title {
  font-size: 22px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  color: var(--primary);

}
.sidebar-subnav {
  background-color: rgba(var(--lightprimary-rgb), 0.2);
}
.sidebar-subnav li a {
  color: var(--primary);
}
.sidebar-subnav li a:hover {
  color: var(--default);
}


.subpage .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.subpage .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(27, 47, 69, 0.2);
  padding: 3px 10px;
  position: relative;
}

.subpage .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: var(--border-radius);
  width: calc(100% - 40px);
}

.subpage .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.subpage .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--secondary);
  color: #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.subpage .sidebar .search-form form button i {
  line-height: 0;
}

.subpage .sidebar .search-form form button:hover {
  background: rgba(86, 184, 230, 0.8);
}

.subpage .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.subpage .sidebar .categories ul li+li {
  padding-top: 10px;
}

.subpage .sidebar .categories ul a {
  color: var(--primary);
  font-size: 15px;
}

.subpage .sidebar .categories ul a:hover {
  color: var(--default);
}

.subpage .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(var(--default-rgb), 0.4);
  font-size: 14px;
}

.subpage .sidebar .recent-posts .post-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0px 0 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0 15px rgba(0, 0, 0, 0.08);
  padding: 20px;
}

.subpage .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.subpage .sidebar .recent-posts img {
  width: 80px;
  margin-right: 15px;
}

.subpage .sidebar .recent-posts h4 {
  font-size: 18px;
  font-weight: 400;
}

.subpage .sidebar .recent-posts h4 a {
  color: var(--primary);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.subpage .sidebar .recent-posts h4 a:hover {
  color: var(--secondary);
}

.subpage .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(var(--default-rgb), 0.4);
}

.subpage .sidebar .tags {
  margin-bottom: -10px;
}

.subpage .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.subpage .sidebar .tags ul li {
  display: inline-block;
}

.subpage .sidebar .tags ul a {
  color: #38618e;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(27, 47, 69, 0.15);
  display: inline-block;
  border-radius: 50px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.subpage .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid var(--secondary);
  background: var(--secondary);
}

.subpage .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(27, 47, 69, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# subpage Comments
--------------------------------------------------------------*/
.subpage .comments {
  margin-top: 30px;
}

.subpage .comments .comments-count {
  font-weight: bold;
}

.subpage .comments .comment {
  margin-top: 30px;
  position: relative;
}

.subpage .comments .comment .comment-img {
  margin-right: 14px;
}

.subpage .comments .comment .comment-img img {
  width: 60px;
}

.subpage .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.subpage .comments .comment h5 a {
  font-weight: bold;
  color: var(--default);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.subpage .comments .comment h5 a:hover {
  color: var(--secondary);
}

.subpage .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--primary);
}

.subpage .comments .comment h5 .reply i {
  font-size: 20px;
}

.subpage .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(27, 47, 69, 0.8);
  margin-bottom: 5px;
}

.subpage .comments .comment.comment-reply {
  padding-left: 40px;
}

.subpage .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.subpage .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.subpage .comments .reply-form p {
  font-size: 14px;
}

.subpage .comments .reply-form input {
  border-radius: var(--border-radius);
  padding: 10px 10px;
  font-size: 14px;
}

.subpage .comments .reply-form input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: rgba(86, 184, 230, 0.8);
}

.subpage .comments .reply-form textarea {
  border-radius: var(--border-radius);
  padding: 10px 10px;
  font-size: 14px;
}

.subpage .comments .reply-form textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: rgba(86, 184, 230, 0.8);
}

.subpage .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.subpage .comments .reply-form .btn-primary {
  border-radius: var(--border-radius);
  padding: 10px 20px;
  border: 0;
  background-color: var(--primary);
}

.subpage .comments .reply-form .btn-primary:hover {
  background-color: rgba(27, 47, 69, 0.8);
}

/*--------------------------------------------------------------
# subpage Home Pagination
--------------------------------------------------------------*/
.subpage .subpage-pagination {
  margin-top: 30px;
  color: #38618e;
}

.subpage .subpage-pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.subpage .subpage-pagination li {
  margin: 0 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.subpage .subpage-pagination li a {
  color: #2aa5df;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: #dbf0fa;
  padding: 7px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.subpage .subpage-pagination li.active a,
.subpage .subpage-pagination li:hover a {
  background: var(--secondary);
  color: #fff;
}




/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  padding: 30px;
  -webkit-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  background: var(--white);
  height: 100%;
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: var(--primary);
  font-size: 36px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 24px;
}

.featured-services .service-item h4 a {
  color: var(--secondary);
  -webkit-transition: ease-in-out 0.3s;
  -o-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

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

.featured-services .service-item:hover {
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0px 0 60px 0 rgba(var(--secondary-rgb), 0.1);
          box-shadow: 0px 0 60px 0 rgba(var(--secondary-rgb), 0.1);
}

.featured-services .service-item:hover h4 a {
  color: var(--primary);
}



/*--------------------------------------------------------------
# Principles Section
--------------------------------------------------------------*/

.principles  {
  margin: 20px 0;

}
.principles .nav-tabs {
  border: 0;
}

.principles .nav-link {
  border: 0;
  padding: 25px 20px;
  color: var(--default);
  background: #fff;
  -webkit-box-shadow: 5px 5px 25px rgba(var(--default-rgb), 0.15);
          box-shadow: 5px 5px 25px rgba(var(--default-rgb), 0.15);
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
  cursor: pointer;
  height: 100%;
}

.principles .nav-link i {
  font-size: 32px;
  line-height: 0;
}

.principles .nav-link h4 {
  text-align: center;
  font-family: var(--font-default);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: var(--default);
}

.principles .nav-link:hover {
  color: var(--primary);
  background: var(--secondary);
}

.principles .nav-link.active {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: #fff -o-linear-gradient(rgba(var(--primary-rgb), 0.8), rgba(var(--primary-rgb), 0.9));
  background: #fff -webkit-gradient(linear, left top, left bottom, from(rgba(var(--primary-rgb), 0.8)), to(rgba(var(--primary-rgb), 0.9)));
  background: #fff linear-gradient(rgba(var(--primary-rgb), 0.8), rgba(var(--primary-rgb), 0.9));
  border-color: var(--primary);
}

.principles .nav-link.active h4 {
  color: #fff;
}

.principles .nav-link img {

  width: 8.5rem;
height: 8.5rem;
 max-width: 11.5625rem;
max-height: 11.5625rem;
margin: 0 auto 1.5625rem auto;
}
.principles .nav-link.active img {

    -webkit-filter: brightness(0) invert(100%);

            filter: brightness(0) invert(100%);

}

.principles .tab-content {
  margin-top: 30px;
}

.principles .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.principles .tab-pane h3 {
  font-weight: 300;
  font-size: 36px;
  color: var(--primary);
  font-family: var(--font-default);
}

.principles .tab-pane ul {
  list-style: none;
  padding: 0;
}

.principles .tab-pane ul li {
  padding-bottom: 10px;
}

.principles .tab-pane ul i {
  font-size: 24px;
  margin-right: 4px;
  color: var(--primary);
}

.principles .tab-pane p:last-child {
  margin-bottom: 0;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


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

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

.footer a {
  font-size: 12px;
  color: white;
}

.footer  .social-links a {
  font-size: 24px;
  padding-left: 10px;
  color: white;

}



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





















/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: -o-linear-gradient(rgba(209, 19, 36, 0.9), rgba(209, 19, 36, 0.9)), url("/en/images/130424155_s.jpg") fixed center center;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(209, 19, 36, 0.9)), to(rgba(209, 19, 36, 0.9))), url("/en/images/130424155_s.jpg") fixed center center;
  background: linear-gradient(rgba(209, 19, 36, 0.9), rgba(209, 19, 36, 0.9)), url("/en/images/130424155_s.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-weight: 500;
  font-size: 16px;
  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;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  color: #000000;
  background: #FFFF00;
  border: 2px solid #000000;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}


/*--------------------------------------------------------------
# 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: 0;
  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);
  }
}









.w3-hns-red { background-color: #e51b24; }
.w3-hns-text-red { color: #e51b24; }
.w3-hns-blue { background-color: #27446d; }

.w3-hns-hover-red:hover { color: #fff!important; background-color: #e51b24!important; }


.w3-hns-gray { background-color: #f7f7f7; color:#000; }

.w3-hns-red { background-color: #e43137; }

.w3-hns-purple { background-color: #7b7b7b; }
.w3-hns-hover-purple:hover { color: #fff!important; background-color: #e43137!important; }



.w3-hns-white { background-color: #fff; }

#header-menu { width: 100%; height: 100px; background-color: rgba(20,20,20,0.8); }


#main { width: 100%;  padding-bottom: 0px; padding-top: 3rem; }
#main_student { width: 100%;  padding-bottom: 0px; }
#mainnav { font-size: 14px; text-transform: uppercase; }

.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; }

/* Course Area */
/*
#top-pagenav a { font-size: 10px; }
#topnav-containerc { margin: 0 auto; background-color: #989898; color: white; z-index: 30; height: 92px; padding-left: 5%; padding-right: 3.5%; padding-top: 20px; padding-bottom: 20px; }
#topnav-containerc a { font-size: 12px; text-transform: uppercase; }
#subnavc { text-transform: uppercase; font-size: 12px;  margin-top: 7px; }
#subnavc .material-icons { font-size: 11px; }
#mainc { width: 100%;  margin: 0 auto; background-color: #fff; min-height: 500px; margin-top: 85px; padding-top: 0px; padding-left: 0px; }
#coursecontent { margin-top: 7px; }
#coursecontent h1 { margin:0; padding:0; font-size:24px; font-weight: 300; color: black; }
#coursecontent h2 { margin:0; padding:0; font-size:20px; font-weight: 700; color: black; }
#coursecontent h3 { margin:0; padding:0; font-size:16px; font-weight: 700; color: black; }
.fs1 { font-size: 0.8em !important; }
.fs2 { font-size: 1.2em !important; }
#coursecontent h2.fs1 { font-size: 18px !important; }
#coursecontent h2.fs2 { font-size: 30px !important; }

div.question { width: 99%; border: 1px solid #ddd; background: #eee; margin-bottom: 10px; padding: 10px 5px; }
div.question fieldset { border: none; background: none; }
div.question legend { display: table; white-space: normal; border: none; background: none; font-size:16px; }
*/

.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%;
}
#purchasebox_single .w3-display-bottommiddle {
  bottom:12px;
}

#purchasebox_single { width: 300px; height: 275px; background-color: #060606; /* background-image: url("../en/images/purchase_single.jpg"); */ }
#purchasebox_single a { font-size: 24px; text-decoration: none; }
#purchasebox_multi { width: 300px; height: 275px; background-color: #060606; /* background-image: url("../en/images/purchase_multi.jpg"); */ }
#purchasebox_multi a { font-size: 24px; text-decoration: none; }
#purchasebox_single a:hover, #purchasebox_multi a:hover { color: black; }


.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);
}


/*--------------------------------------------------------------
# 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;
  }
}
.btn {
  background: white;
  border: 1px solid var(--primary);
  display: inline-block;
  /*padding: 0.5rem !important;*/

    padding: 0.5rem 2rem;
  border-radius: var(--border-radius);
  color:var(--primary);
  -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: var(--primary);
  border: 1px solid var(--primary);
  color: white;
}
.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: 0;
  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: 0;
  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: 0;
  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: 0;
    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: 0;
    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: 0;
  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{
  width: 60px;
  font-size: 16px;
  border: none;
  color: var(--default);
  background: transparent;
}
.btn-cart:hover {
  color: var(--primary);
}

.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: 0;;
  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: 0;
   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;
}




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

.resource-grids .resource-group {
  background-color: #f1f1f1;
  border-radius: 0;;
}

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

.resources-list .resource-list-item {
  border-radius: 0;
  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: 0;
  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: 0;
  width: 100%;
}

.resources-grid .card-img-top {
  border-radius: 0;
  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: 0;
    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: 0;
  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 12rem;
  
     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: 700;
    margin-bottom: 2.5rem;
    color: var(--primary);
}

.programs .card-title {
  color: var(--primary);
  font-weight: 500;
  font-size: 1.1rem;
}


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

.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 {
  /*
  background-color: white;

  height: 100%;
  border-radius: 0;
  padding: 1rem;
  border: 1px solid black;
  min-height: 375px;
*/

    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;
}

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

.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;
}



.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(--gray);
  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:300px;
  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: 200px;
  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, 
.subhero_image .bread_crumbs, 
.hero_stable .bread_crumbs {
  margin-top: 12px;
}
.hero .bread_crumbs, 
.hero .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;
}



.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(--secondary);
  border-radius: 50%;
  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);
}