/* default */
@charset "utf-8";
:root {
--primaryfont:'Roboto', sans-serif;
--secondaryfont:'Arial', 'Helvetica', sans-serif;
--primarycolor:#ed8722;
--secondarycolor:#000000;
--tertiarycolor:#1a2b4d;
--quaternarycolor:#999999;
--quinarycolor:#888888;
--senarycolor:#777777;
--septenarycolor:#666666;
--octonarycolor:#555555;
--nonarycolor:#444444;
--denarycolor:#333333;
--colorwhite:#fff;
--colorblack:#000;
--whitearrow:url("../images/icons/icon-move-light.png"), move;
--blackarrow:url("../images/icons/icon-move-black.png"), move;
--page-header:url("../images/banners/page-banner.webp");
}
body {
  font-family: 'Roboto', system-ui, -apple-system, "Segoe UI", 'Helvetica', 'Helvetica Neue', Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: var(--octonarycolor) !important;
  background: var(--colorwhite);
}
a {
  color: var(--primarycolor);
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}
a:focus, a:hover {
  color: var(--secondarycolor);
}
a:active {
  color: var(--primarycolor);
}
.theme-color-1 {
  color: var(--primarycolor);
}
.theme-color-2 {
  color: var(--secondarycolor);
}
.theme-color-3 {
  color: var(--tertiarycolor);
}
.theme-background-1 {
  background: var(--primarycolor);
}
.theme-background-2 {
  background: var(--secondarycolor);
}
.theme-background-3 {
  background: var(--tertiarycolor);
}
.theme__shadow__circle {
  position: fixed;
  left: -250px;
  top: 200px;
  right: auto;
  bottom: auto;
  z-index: 1;
  width: 500px;
  height: 500px;
  border-radius: 1000px;
  background-image: linear-gradient(45deg, #ed8722, #ed8722);
  opacity: 0.10;
  -webkit-filter: blur(100px);
  filter: blur(100px);
}
.theme__shadow__circle.shadow__right {
  left: auto;
  top: 100px;
  right: -250px;
  bottom: auto;
  opacity: 0.10;
  background-image: linear-gradient(45deg, #ed8722, #ed8722);
}
.theme-line-1 {
  width: 18px;
  background-color: var(--primarycolor);
  border-radius: 2px;
  height: 3px;
  margin-right: 5px;
  position: relative;
}
.theme-line-2 {
  width: 18px;
  background-color: var(--secondarycolor);
  border-radius: 2px;
  height: 3px;
  margin-right: 5px;
}
.theme-line-3 {
  width: 18px;
  background-color: var(--colorwhite);
  border-radius: 2px;
  height: 3px;
  margin-right: 5px;
}
.section-background-1 {
  background: rgba(237, 135, 34, 0.1);
}
.section-background-2 {
  background: #fafafa;
}
.section-background-3 {
  background: #f3f3f9;
}
.section-background-4 {
  background: #fafafb;
}
.section-background-5 {
  background: #f7f9fb;
}
.section-background-6 {
  background: #f3f4fd;
}
.section-background-7 {
  background: #f6f7f9;
}
.section-background-8 {
  background: #f3f9ff;
}
.section-background-9 {
  background: #f8fbff;
}
.section-background-10 {
  background: #f6faff;
}
a.underline-link, a.underline-link-dark {
  width: auto;
  margin-left: 0;
}
a.underline-link {
  position: relative;
  padding-bottom: 6px;
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -ms-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
  border-bottom: 2px solid transparent;
  color: var(--dark-75);
}
a.underline-link:hover {
  padding-bottom: 1px;
  border-bottom: 2px solid var(--dark-75);
  text-decoration: none;
}
a.underline-link-dark {
  position: relative;
  padding-bottom: 6px;
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -ms-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
  border-bottom: 2px solid transparent;
  color: var(--colorwhite);
}
a.underline-link-dark:hover {
  padding-bottom: 1px;
  border-bottom: 2px solid var(--colorwhite);
  text-decoration: none;
}
.hover-this .hover-anim {
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  -o-transition: transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}
.white-move .slide-arrow {
  cursor: var(--whitearrow);
}
.black-move .slide-arrow {
  cursor: var(--blackarrow);
}
.image-hover-up {
  transition: transform 0.3s ease;
}
.image-hover-up:hover {
  transform: translateY(-5px);
}
/* header */
.top-header {
  position: relative;
  background: var(--primarycolor);
  color: var(--colorwhite);
}
.top-header a, .top-header a:hover, .top-header a:focus, .top-header a:active {
  color: var(--colorwhite);
}
header.header .navbar {
  white-space: nowrap;
}
header.header {
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  background: var(--colorwhite);
  z-index: 999;
  width: 100%;
  position: relative;
}
.sticky-header {
  position: fixed !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99999;
  animation: slideDown 0.50s ease-out;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  background: var(--colorwhite);
}
@keyframes slideDown {
 from {
 transform: translateY(-100%);
}
to {
  transform: translateY(0);
}
}
header.header nav li.nav-item .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--octonarycolor);
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}
header.header nav li.nav-item .nav-link:hover {
  color: var(--primarycolor);
}
header.header nav li.nav-item .nav-link:focus {
  color: var(--primarycolor);
}
header.header nav li.nav-item .nav-link.active {
  color: var(--primarycolor);
}
header.header .navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 1rem;
  padding-left: 1rem;
}
header.header .navbar-light .navbar-toggler {
  border: none;
  padding: 0;
  font-size: 36px;
  color: var(--secondarycolor);
}
header.header .navbar-light .navbar-toggler:hover {
  color: var(--primarycolor);
}
header.header .navbar-light button.navbar-toggler:focus {
  box-shadow: none;
}
@media (max-width: 991.98px) {
header.header .navbar-nav {
  margin-top: 10px;
  margin-bottom: 10px;
  border-top: 1px solid #efefef;
}
header.header nav li.nav-item .nav-link {
  border-bottom: 1px solid #efefef;
}
header.header nav li.nav-item .nav-link:hover {
  background: var(--colorwhite);
  -webkit-transition: all .2s ease 0s;
  -moz-transition: all .2s ease 0s;
  -o-transition: all .2s ease 0s;
  transition: all .2s ease 0s;
}
}
@media (max-width: 991.98px) {
header.header .navbar-nav > li > .dropdown-menu {
  box-shadow: none !important;
}
}
header.header .navbar-nav > li > .dropdown-menu {
  margin: 0;
  padding: 0;
  box-shadow: 0px 4px 70px 0px rgba(0, 0, 0, 0.1);
  background: var(--colorwhite);
  top: 100%;
  left: 15%;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
header.header .navbar-nav > li > .dropdown-menu {
  top: 55px;
}
}
header.header .navbar-nav > li > .dropdown-menu a.dropdown-item {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--octonarycolor);
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #efefef;
  -webkit-transition: all .2s ease 0s;
  -moz-transition: all .2s ease 0s;
  -o-transition: all .2s ease 0s;
  transition: all .2s ease 0s;
  background: var(--colorwhite);
}
header.header .navbar-nav .dropdown-toggle::after {
  display: none;
}
header.header .navbar-nav > li > .dropdown-menu a.dropdown-item:hover {
  color: var(--primarycolor);
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  background: var(--colorwhite);
}
header.header .navbar-nav > li > .dropdown-menu a.dropdown-item:focus {
  color: var(--primarycolor);
}
header.header .navbar-nav > li > .dropdown-menu a.dropdown-item:active {
  color: var(--primarycolor);
}
header.header .dropdown-item.active, header.header .dropdown-item:active {
  color: var(--primarycolor)!important;
}
header.header .menu-icon {
  position: absolute;
  right: -10px;
  bottom: -10px;
}
.normalmenu .dropdown-menu {
  width: auto;
}
@media (max-width: 991.98px) {
.normalmenu .dropdown-menu {
  width: auto;
}
}
.megamenu .dropdown-menu a {
  text-decoration: none;
}
.megamenu .dropdown-menu a .d-flex {
  transition: all 0.5s;
}
.megamenu {
  position: relative;
}
.megamenu .dropdown-menu {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: 1140px;
  max-width: 98vw;
  border-radius: 0;
  z-index: 1050;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  background-color: transparent;
}
.status-badge.offline {
  border: 1px solid var(--primarycolor);
  color: var(--primarycolor);
}
.status-badge.offline .circle {
  width: 8px;
  height: 8px;
  background-color: var(--primarycolor);
  border-radius: 50%;
  margin-right: 6px;
}
.status-badge.online {
  border: 1px solid var(--green);
  color: var(--green);
}
.status-badge.online .circle {
  width: 8px;
  height: 8px;
  background-color: var(--green);
  border-radius: 50%;
  margin-right: 6px;
}
.offline-background {
  background: #FFF4F4!important;
}
.online-background {
  background: #F6FFF9!important;
}
.course-trigger .dropdown .dropdown-toggle::after {
  display: none;
}
.custom-vertical-menu-tab .nav-pills .nav-link {
  color: var(--dark-75);
  background: var(--silver);
  border-left: 2px solid var(--primarycolor);
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0;
 padding: .5rem 0px;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  margin-bottom: 5px;
  padding: 10px 8px;
  border-radius: 0px 3px 3px 0px;
}
.custom-vertical-menu-tab .nav-pills .nav-link:hover {
  color: var(--colorwhite);
  background: var(--secondarycolor);
  border-left: 2px solid var(--primarycolor);
}
.custom-vertical-menu-tab .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  background: var(--primarycolor);
  color: var(--colorwhite);
  border-left: 2px solid var(--secondarycolor);
}
.custom-horizontal-menu-tab .nav-tabs {
  border-bottom: 2px solid var(--disabled-light-2);
}
.custom-horizontal-menu-tab .nav-tabs .nav-link {
  margin-bottom: 0.5px;
}
.custom-horizontal-menu-tab .nav-tabs .nav-link {
  padding: 0.75em 1.25em;
  border-radius: 0;
  color: var(--dark-75);
  background: var(--disabled-light-2);
  border: 0;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: all .2s ease 0s;
  -moz-transition: all .2s ease 0s;
  -o-transition: all .2s ease 0s;
  transition: all .2s ease 0s;
  border-radius: 3px 3px 0px 0px;
}
.custom-horizontal-menu-tab .nav-tabs .nav-link:hover {
  color: var(--colorwhite)!important;
  background: var(--secondarycolor);
}
.custom-horizontal-menu-tab .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: var(--colorwhite)!important;
  background: var(--primarycolor);
}
header.header .navbar-toggler {
  border: none;
  padding: 0;
  font-size: 36px;
  color: var(--secondarycolor);
}
header.header .navbar-toggler:hover {
  color: var(--primarycolor);
}
header.header button.navbar-toggler:focus {
  box-shadow: none;
}
a.location-trigger {
  color: var(--secondarycolor);
}
a.location-trigger:hover {
  color: var(--primarycolor);
}
.location-slide .btn-close {
  box-shadow: none;
}
.location-slide .sidebar-social ul {
  list-style: none;
  position: relative;
}
.location-slide a.social-icons {
  width: auto;
  height: auto;
  border: 1px solid var(--grey-light-2);
  background: var(--colorwhite);
  color: var(--colorblack);
  padding: 0.75em 0.60em 0.75em 0.60em;
 border-radius: .25rem;
  -moz-transition: all, ease-in-out.5s;
  -o-transition: all, ease-in-out.5s;
  -webkit-transition: all, ease-in-out.5s;
  transition: all, ease-in-out.5s;
}
.location-slide a.social-icons:hover {
  background: var(--colorblack);
  color: var(--colorwhite)!important;
}
nav .navigation-list a.list-group-item {
  font-weight: 500;
  font-size: 14px;
  color: var(--octonarycolor);
  background: var(--colorwhite);
  -moz-transition: all, ease-in-out.5s;
  -o-transition: all, ease-in-out.5s;
  -webkit-transition: all, ease-in-out.5s;
  transition: all, ease-in-out.5s;
}
nav .navigation-list a.list-group-item:hover, nav .navigation-list a.list-group-item:focus {
  color: var(--primarycolor);
  background: var(--colorwhite);
}
nav .navigation-list a.list-group-item span.line {
  display: inline-block;
  transition: transform 0.3s ease-in-out;
}
nav .navigation-list a.list-group-item:active, nav .navigation-list a.list-group-item.active {
  color: var(--primarycolor);
  border-color: var(--bs-border-color);
}
nav .navigation-list a.list-group-item span.plus-icon {
  float: right;
  color: var(--quaternarycolor);
}
nav .navigation-list ul.dropdown-menu {
  position: relative!important;
  transform: none !important;
  border: none !important;
  margin: 0!important;
  padding: 0!important;
}
nav .navigation-list a.list-group-item.dropdown-toggle::after {
  display: none;
}
nav .navigation-list ul.dropdown-menu a.dropdown-item {
  font-weight: 500;
  font-size: 14px;
  color: var(--octonarycolor);
  background: var(--colorwhite);
  padding: 0.5rem 1rem;
  -moz-transition: all, ease-in-out.5s;
  -o-transition: all, ease-in-out.5s;
  -webkit-transition: all, ease-in-out.5s;
  transition: all, ease-in-out.5s;
  border-bottom: 1px solid var(--bs-border-color);
}
nav .navigation-list ul.dropdown-menu a.dropdown-item:hover, nav .navigation-list ul.dropdown-menu a.dropdown-item:focus {
  color: var(--secondarycolor);
}
nav .navigation-list ul.dropdown-menu a.dropdown-item:active, nav .navigation-list ul.dropdown-menu a.dropdown-item.active {
  color: var(--primarycolor)!important;
}
nav .navigation-list ul.dropdown-menu a.dropdown-item span.dot {
  display: inline-block;
  transition: transform 0.3s ease-in-out;
}
nav .navigation-list ul.dropdown-menu a.dropdown-item span.dot:hover {
  transform: translateX(5px);
}
/* footer */
.bottom-location-section ol li {
  color: var(--dark-100);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}
.bottom-location-section ol li:hover {
  color: var(--colorwhite);
}
.bottom-location-section .breadcrumb-item + .breadcrumb-item::before {
  color: var(--dark-100);
}
.col-5th {
  flex: 0 0 20%;
  max-width: 20%;
}
 @media (max-width: 991.98px) {
.col-5th {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}
}
 @media (max-width: 767.98px) {
.col-5th {
  flex: 0 0 50%;
  max-width: 50%;
}
}
 @media (max-width: 575.98px) {
.col-5th {
  flex: 0 0 100%;
  max-width: 100%;
}
.col-5th.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
}
footer.footer {
  color: var(--colorwhite);
  background-color: var(--bg-dark);
  position: relative;
  padding: 80px 0px;
  z-index: 100;
}
footer.footer .footer-social ul {
  list-style: none;
  position: relative;
}
footer.footer .footer-social a {
  width: 50px;
  height: 50px;
  border: 2px solid var(--dark-70);
  background: var(--colorblack);
  color: var(--dark-70);
  padding: 0.5em;
  border-radius: 50%;
  -moz-transition: all, ease-in-out.5s;
  -o-transition: all, ease-in-out.5s;
  -webkit-transition: all, ease-in-out.5s;
  transition: all, ease-in-out.5s;
}
footer.footer .footer-social a:hover {
  background: var(--colorblack);
  color: var(--colorwhite)!important;
  border: 2px solid var(--colorwhite)!important;
}
.backtotop {
  cursor: pointer;
  color: var(--dark-70);
}
.backtotop:hover {
  color: var(--colorwhite);
}
.social-media-section {
  display: none;
}
.floating-socialmedia .whatsapp {
  position: fixed;
  left: 30px;
  bottom: 40px;
  z-index: 999;
}
@media only screen and (max-width:576px) {
.floating-socialmedia .whatsapp {
  bottom: 40px;
}
}
.contact-bar {
  position: fixed;
  bottom: -150px;
  left: 0;
  width: 100%;
  background: var(--primarycolor);
  color: var(--colorwhite);
  text-align: center;
  font-weight: bold;
  transition: bottom 0.4s ease-in-out;
  z-index: 9999;
}
.contact-bar.show {
  bottom: 0;
}
@media (max-width: 991.98px) {
.contact-bar{ 
  display: none;
}
}
/* button */
.brand-button, a.brand-button {
  color: var(--colorwhite);
  background-color: var(--primarycolor);
  border: 1px solid var(--primarycolor);
 border-radius: .25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
  text-decoration: none;
  outline: none;
  margin: 0;
  padding: 15px 30px;
  position: relative;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
}
.brand-button:hover, a.brand-button:hover, .brand-button:focus, a.brand-button:focus {
  color: var(--colorwhite);
  background-color: var(--secondarycolor);
  border: 1px solid var(--secondarycolor);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
}
.brand-button:active, a.brand-button:active {
  color: var(--colorwhite);
  background-color: var(--primarycolor);
  border: 1px solid var(--primarycolor);
}
.brand-button-alt, a.brand-button-alt {
  color: var(--colorwhite);
  background-color: var(--secondarycolor);
  border: 1px solid var(--secondarycolor);
 border-radius: .25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
  text-decoration: none;
  outline: none;
  margin: 0;
  padding: 15px 30px;
  position: relative;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
}
.brand-button-alt:hover, a.brand-button-alt:hover, .brand-button-alt:focus, a.brand-button-alt:focus {
  color: var(--colorwhite);
  background-color: var(--primarycolor);
  border: 1px solid var(--primarycolor);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
}
.brand-button-alt:active, a.brand-button-alt:active {
  color: var(--colorwhite);
  background-color: var(--secondarycolor);
  border: 1px solid var(--secondarycolor);
}
.brand-button-outline, a.brand-button-outline {
  color: var(--primarycolor);
  background-color: var(--colorwhite);
  border: 1px solid var(--primarycolor);
 border-radius: .25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
  text-decoration: none;
  outline: none;
  margin: 0;
  padding: 15px 30px;
  position: relative;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
}
.brand-button-outline:hover, a.brand-button-outline:hover, .brand-button-outline:focus, a.brand-button-outline:focus {
  color: var(--secondarycolor);
  background-color: var(--colorwhite);
  border: 1px solid var(--secondarycolor);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
}
.brand-button-outline:active, a.brand-button-outline:active {
  color: var(--primarycolor);
  background-color: var(--colorwhite);
  border: 1px solid var(--primarycolor);
}
.brand-button-outline-alt, a.brand-button-outline-alt {
  color: var(--secondarycolor);
  background-color: var(--colorwhite);
  border: 1px solid var(--secondarycolor);
 border-radius: .25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
  text-decoration: none;
  outline: none;
  margin: 0;
  padding: 15px 30px;
  position: relative;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
}
.brand-button-outline-alt:hover, a.brand-button-outline-alt:hover, .brand-button-outline-alt:focus, a.brand-button-outline-alt:focus {
  color: var(--primarycolor);
  background-color: var(--colorwhite);
  border: 1px solid var(--primarycolor);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
}
.brand-button-outline-alt:active, a.brand-button-outline-alt:active {
  color: var(--secondarycolor);
  background-color: var(--colorwhite);
  border: 1px solid var(--secondarycolor);
}
.white-button, a.white-button {
  color: var(--primarycolor);
  background-color: var(--colorwhite);
  border: 1px solid var(--colorwhite);
 border-radius: .25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
  text-decoration: none;
  outline: none;
  margin: 0;
  padding: 15px 30px;
  position: relative;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
}
.white-button:hover, a.white-button:hover, .white-button:focus, a.white-button:focus {
  color: var(--secondarycolor);
  background-color: var(--colorwhite);
  border: 1px solid var(--colorwhite);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
}
.white-button:active, a.white-button:active {
  color: var(--primarycolor);
  background-color: var(--colorwhite);
  border: 1px solid var(--colorwhite);
}
.white-button-alt, a.white-button-alt {
  color: var(--colorwhite);
  background-color: transparent;
  border: 1px solid var(--colorwhite);
 border-radius: .25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
  text-decoration: none;
  outline: none;
  margin: 0;
  padding: 15px 30px;
  position: relative;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
}
.white-button-alt:hover, a.white-button-alt:hover, .white-button-alt:focus, a.white-button-alt:focus {
  color: var(--colorwhite);
  background-color: var(--secondarycolor);
  border: 1px solid var(--secondarycolor);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
}
.white-button-alt:active, a.white-button-alt:active {
  color: var(--colorwhite);
  background-color: var(--secondarycolor);
  border: 1px solid var(--secondarycolor);
}
.course-button, a.course-button {
  appearance: none;
  background-color: #fafafa;
  border: 1px solid rgba(27, 31, 35, 0.15);
  border-radius: 0.25rem;
  box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
  box-sizing: border-box;
  color: var(--secondarycolor);
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  list-style: none;
  padding: 10px 30px;
  position: relative;
  transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  word-wrap: break-word;
  text-align: center;
}
.course-button, a.course-button:hover {
  background-color: var(--colorwhite);
  text-decoration: none;
  transition-duration: 0.1s;
}
.course-button, a.course-button:active {
  background-color: #fafafa;
  box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
  transition: none 0s;
}
.course-button, a.course-button:focus {
  outline: 1px transparent;
}
/* pages */
.main-content {
  position: relative;
}
.top-banner {
  position: relative;
  padding: 100px 0;
}
.top-banner .content {
  position: relative;
  z-index: 99;
}
.top-banner::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--primarycolor);
  opacity: .25;
  position: absolute;
  left: 0;
  top: 0;
}
.top-banner.page-banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: inherit;
}
.page-header {
  background: var(--page-header);
}
.top-banner .shape-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
  line-height: 0;
}
.scroll-down {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
}
.scroll-down small {
  width: 110px;
  display: inline-block;
  transform: rotate(-90deg);
  margin-bottom: 50px;
  color: var(--colorwhite);
  font-size: 10px;
  letter-spacing: 0.5px;
}
.scroll-down span {
  display: block;
  height: 50px;
  position: relative;
  transform: translateX(-1px);
}
.scroll-down span::before {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -.5px;
  width: 1px;
  height: 70px;
  background: var(--colorwhite);
  content: "";
}
.glossary-accordion .accordion-item {
  box-shadow: none;
  border: none;
  background: transparent!important;
}
.glossary-accordion .accordion-item:not(:first-of-type) {
  border-top: 0px solid #fafafa;
}
.glossary-accordion button {
  color: var(--septenarycolor);
  font-size: 16px;
  font-weight: 400;
  line-height: inherit;
  box-shadow: none;
  padding: 0;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  text-decoration: underline;
  background: transparent!important;
  width: auto;
}
.glossary-accordion button:hover {
  color: var(--primarycolor);
  box-shadow: none;
  background: transparent!important;
}
.glossary-accordion button:focus {
  color: var(--secondarycolor);
  box-shadow: none;
  background: transparent!important;
}
.glossary-accordion .accordion-button:not(.collapsed) {
  color: var(--secondarycolor);
  font-size: 16px;
  font-weight: 400;
  line-height: inherit;
  box-shadow: none;
  padding: 0;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  display: inline-block;
  position: relative;
  background: transparent!important;
}
.glossary-accordion .accordion-button:not(.collapsed)::after {
  display: none;
}
.glossary-accordion .accordion-button::after {
  display: none;
}
.glossary-accordion .accordion-body {
  padding: 0;
}
/* home */
.lazy-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: inherit;
  width: 100%;
  height: 100%;
  position: relative;
  background-color: var(--colorwhite);
}
.lazy-bg.spacing-tb-100 {
  padding: 100px 0px;
}
.lazy-bg.spacing-tb-75 {
  padding: 75px 0px;
}
.lazy-bg.spacing-tb-50 {
  padding: 50px 0px;
}
.lazy-bg.spacing-tb-25 {
  padding: 25px 0px;
}
.location-animate {
  position: absolute;
  border-radius: 40.156px;
  background: linear-gradient(250deg, rgba(255, 255, 255, 0.50) 0%, rgba(255, 255, 255, 0.30) 100%);
  box-shadow: 34px 13.385px 59.6px -0.956px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(7.17072057723999px);
  padding: 10px 30px;
}
.location-animate a.content {
  color: var(--colorblack);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}
.number-animate-1 {
  left: -103px;
  top: 0;
  animation: 3s linear 0s infinite alternate none running dot-anim-1;
  z-index: 99;
}
.number-animate-2 {
  right: 0;
  top: 0;
  animation: 3s linear 0s infinite alternate none running dot-anim-1;
  z-index: 99;
}
.number-animate-3 {
  left: -103px;
  bottom: 0;
  animation: 3s linear 0s infinite alternate none running dot-anim-2;
  z-index: 99;
}
.number-animate-4 {
  right: 0;
  bottom: 85px;
  animation: 3s linear 0s infinite alternate none running dot-anim-2;
  z-index: 99;
}
@media (max-width: 767.98px) {
.number-animate-1, .number-animate-3 {
  left: 0px;
}
}
@keyframes dot-anim-1 {
 0% {
 transform: translateY(20px);
}
 100% {
 transform: translateY(0px);
}
}
@keyframes dot-anim-2 {
 0% {
 transform: translateX(20px);
}
 100% {
 transform: translateX(0px);
}
}
/* gallery */
.picture-hover-zoom figure {
  height: auto;
  overflow: hidden;
  border-radius: 0.25rem;
  margin-bottom: 0;
}
.picture-hover-zoom figure img {
  transition: transform .5s, filter 1.5s ease-in-out;
}
.picture-hover-zoom:hover figure img {
  transform: scale(1.1);
}
.picture-hover-zoom-normal figure {
  height: auto;
  overflow: hidden;
  margin-bottom: 0;
}
.picture-hover-zoom-normal figure img {
  transition: transform .5s, filter 1.5s ease-in-out;
}
.picture-hover-zoom-normal:hover figure img {
  transform: scale(1.1);
}
.picture-greyscale {
  filter: grayscale(100%) !important;
  transition: filter 0.5s ease;
}
.picture-greyscale:hover {
  filter: grayscale(0%) !important;
}
.portfolio .filters {
  text-align: left;
}
.portfolio .filters ul {
  padding: 0;
  list-style: none;
  padding: 0;
}
.portfolio .filters ul li {
  list-style: none;
  display: inline-block;
  padding: 0.5em 1.25em;
  cursor: pointer;
  position: relative;
  background: var(--colorwhite);
  border: 1px solid var(--secondarycolor);
  color: var(--secondarycolor);
  font-weight: 400;
  font-size: 14px;
  border-radius: 50px;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  margin-bottom: 10px;
}
.portfolio .filters ul li:hover {
  border: 1px solid var(--primarycolor);
  color: var(--colorwhite);
  background: var(--primarycolor);
}
.portfolio .filters ul li.active {
  border: 1px solid var(--primarycolor);
  color: var(--colorwhite);
  background: var(--primarycolor);
}
.herosection-branchinfra {
  background-image: url(../images/page-branchinfra/branchinfra-hero.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  height: auto;
  width: auto;
  padding: 18em 0;
}
@media (max-width: 991.98px) {
.herosection-branchinfra {
  padding: 14em 0;
}
}
.branchinfra-overlay {
  background: radial-gradient(86.1% 86.1% at 50% 50%, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.75) 100%);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.video-player {
  position: relative;
  display: inline-block;
}
.video-player .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.play-button {
  width: 75px;
  height: 75px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0.7);
}
@keyframes pulse {
 0% {
 box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
}
 70% {
 box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
}
 100% {
 box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}
}
.plain-tabs .nav-pills .nav-link {
  background: var(--colorwhite);
  border: none;
  border: 1px solid var(--secondarycolor);
  color: var(--secondarycolor);
  border-radius: 0;
  transition: border-color 0.3s ease;
  padding: 0.5em 1.25em;
  font-weight: 400;
  font-size: 14px;
  border-radius: 50px;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}
.plain-tabs .nav-pills .nav-link:hover {
  border: 1px solid var(--primarycolor);
  color: var(--colorwhite);
  background: var(--primarycolor);
}
.plain-tabs .nav-pills .nav-link.active {
  border: 1px solid var(--primarycolor);
  color: var(--colorwhite);
  background: var(--primarycolor);
}
.plain-tabs .nav-pills .nav-item {
  margin-right: 12px;
}
.plain-tabs .nav-pills .nav-item:last-child {
  margin-right: 0;
}
.box-background {
  background-image: url(../images/backgrounds/box-background.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  height: auto;
  width: auto;
}
.team-picture {
  margin-top: -25px;
}
.testimonial-dashed-box {
  border-radius: 40px 0px;
  border: 3px dashed var(--primarycolor);
  padding: 20px;
  background: var(--colorwhite);
}
.testimonial-dashed-box-rounded {
  border-radius: 100px;
  border: 3px dashed var(--primarycolor);
  padding: 20px;
  background: var(--colorwhite);
}
.teamcard-box {
  border-right: 1px solid var(--primarycolor);
  border-radius: 13px;
}
.teamcard-row .teammargin:nth-child(even) .teamcard-box {
  margin-top: -25px;
}
@media (max-width: 991.98px) {
.teamcard-row .teammargin:nth-child(even) .teamcard-box {
  margin-top: 0;
}
}
.teamcard-background {
  width: 100%;
  height: 200px;
  border-radius: 13px 13px 0px 0px;
  display: flex;
  align-items: end;
}
.teamcard-background img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  object-position: top;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}
.teamcard-background:hover img {
  filter: grayscale(0%);
}
.ourteam-content {
  padding: 10px;
}
.location-heading {
  background: var(--octonarycolor);
  color: var(--colorwhite);
  border-radius: 0 50px 50px 0;
  margin-left: -25px;
  width: 200px;
}
.enquiry-heading {
  background: var(--primarycolor);
  color: var(--colorwhite);
  border-radius: 0 50px 50px 0;
  width: 250px;
}
.location-pin {
  position: absolute;
  right: 0px;
  top: 0px;
  color: var(--disabled)!important;
}
.contact-header {
  position: absolute;
  height: 270px;
  bottom: 0px;
}
.banner-arrow-shape {
  position: absolute;
  bottom: 0px;
  right: 0px;
  transform: rotate(-30deg);
}
.arrow-movement {
  animation: 3s linear 0s infinite alternate none running dot-anim-2;
}
.testimonial-round-picture {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  border: 3px solid var(--disabled-light-1);
}
.dotted-background {
  background-image: url(../images/backgrounds/dotted-background.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  height: auto;
  width: auto;
}
.no-border-row td {
  border: none !important;
}
.lifeatwebd-cta-picture img {
  position: absolute;
  bottom: -50px;
  right: 0px;
  z-index: 11;
}
.quote-svg {
  position: absolute;
  right: -25px;
  top: -25px;
}
.testimonials-quote-svg {
  position: absolute;
  right: 0px;
  top: 0px;
}
.highlight {
  position: relative;
  font-family: var(--roboto-font);
}
.highlight .content {
  position: absolute;
  bottom: 15%;
  left: 0px;
  background: var(--primarycolor);
  color: var(--colorwhite);
  display: flex;
  align-items: center;
  border-radius: 0px 30px 30px 0px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
}
.compare-table table {
  width: 100%;
  background-color: var(--colorwhite);
}
.compare-table th, td {
  font-weight: unset;
  padding-right: 10px;
}
.compare-table .column100 {
  width: 100px;
  padding-left: 15px;
}
.compare-table .column100.column1 {
  width: 80px;
  background-color: var(--silver);
  font-weight: 600;
}
.compare-table .column100.column4 {
  background-color: var(--orange-light-5);
}
.compare-table .row100.head th {
  padding-top: 24px;
  padding-bottom: 20px;
}
.compare-table .row100.head th.column4 {
  background-color: var(--primarycolor);
}
.compare-table .row100 td {
  padding-top: 18px;
  padding-bottom: 14px;
}
.compare-table .table100.ver2 td {
  font-family: var(--roboto-font);
  font-size: 14px;
  color: inherit;
  line-height: 1.4;
}
.compare-table .table100.ver2 th {
  font-family: var(--roboto-font);
  font-size: 14px;
  color: var(--colorwhite);
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  background-color: var(--dark-70);
}
.compare-table .table100.ver2 .row100:hover td {
  background-color: var(--silver);
  color: inherit;
}
.compare-table .table100.ver2 .hov-column-ver2 {
  background-color: var(--silver);
  color: inherit;
}
.compare-table .table100.ver2 .hov-column-head-ver2 {
  background-color: var(--silver);
}
.compare-table .table100.ver2 .row100 td:hover {
  background-color: var(--silver);
  color: inherit;
}
.compare-table [data-vertable="ver2"] {
  border-collapse: separate !important;
  border-spacing: 1rem 0;
}
.pro-highlight {
  position: absolute;
  right: 10px;
  top: -24px;
}
.course-main-expand a.toggle-button {
  background-color: var(--bg-light);
  color: var(--octonarycolor);
  padding: 1rem 1.25rem;
 border-radius:.25rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}
.course-main-expand a.toggle-button:hover, .course-main-expand a.toggle-button:focus, .course-main-expand a.toggle-button:active {
  background-color: var(--light-40);
  color: var(--septenarycolor);
}
.custom-accordion.updated-background .accordion .accordion-button:not(.collapsed) {
  background: var(--silver)!important;
}
.sticky-course {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}
.ai-icons {
  display: flex;
  border-radius: 10px;
  padding: 14px 20px;
  align-items: center;
}
.ai-icons img {
  width: 25px;
  height: 25px;
  object-fit: cover;
  margin-right: 15px;
}
.image-card-collape {
  display: flex;
  flex-direction: row;
  overflow: hidden;
  width: 100%;
  height: 400px;
  gap: 10px;
}
.image-card-collape .picture-section {
  flex: 1;
  transition: all 0.5s ease;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
 border-radius: .25rem;
}
.image-card-collape .picture-section .picture-heading {
  position: absolute;
  bottom: 10%;
  left: 20px;
  writing-mode: sideways-lr;
  font-size: 30px;
  z-index: 2;
  margin: 0;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}
.image-card-collape .picture-section.active .picture-heading {
  opacity: 0;
  pointer-events: none;
}
.image-card-collape .picture-section .box-content {
  background: #000000;
  background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(17, 17, 17, 0.72) 50%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(17, 17, 17, 0.72) 50%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(17, 17, 17, 0.72) 50%, rgba(255, 255, 255, 0) 100%);
 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#FFFFFF", GradientType=0);
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.image-card-collape .picture-section.active {
  flex: 3;
}
.image-card-collape .picture-section.active .box-content {
  transform: translateY(0);
}
.image-card-collape .picture-section ul {
  padding: 0;
  margin: 0;
}
.counter-section .counter-box {
  position: relative;
  background: var(--primarycolor);
  border-radius: 0.5rem;
  padding: 3em 1.5em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease-in-out;
  overflow: hidden;
  color: var(--colorwhite);
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}
.counter-section .counter-box::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 3px dotted var(--colorwhite);
  border-radius: 0.5rem;
  pointer-events: none;
}
.counter-section .counter-box .display-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.counter-section .counter-box:hover {
  transform: translateY(-5px);
  color: var(--primarycolor);
  background: var(--colorwhite);
}
.counter-section .counter-box:hover::before {
  border: 3px dotted var(--primarycolor);
}
.candidate-placement {
  max-height: 110px;
  max-width: 110px;
  border-radius: 5px;
  margin: 0 auto
}
.candidate-placement img {
  display: block;
  margin: -50px auto 0;
  padding: 0;
  max-width: 100%;
  max-height: 100%;
  width: 110px;
  height: 110px;
  object-fit: cover;
  object-position: top;
  border-radius: 5px;
  border: 4px solid var(--colorwhite);
  background-color: var(--colorwhite);
  transition: .3s;
  margin-bottom: 5px;
}
.candidate-placement-round {
  max-height: 110px;
  max-width: 110px;
  border-radius: 100px;
  margin: 0 auto
}
.candidate-placement-round img {
  display: block;
  margin: -50px auto 0;
  padding: 0;
  max-width: 100%;
  max-height: 100%;
  width: 110px;
  height: 110px;
  object-fit: cover;
  object-position: top;
  border-radius: 100px;
  border: 4px solid var(--colorwhite);
  background-color: var(--colorwhite);
  transition: .3s;
  margin-bottom: 5px;
}
.feature-card {
  border: 0px solid #e0e0e0;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.feature-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.linkedin-freetext {
  width: 200px;
  height: auto;
  position: absolute;
  top: 15px;
  left: 150px;
  animation: 3s linear 0s infinite alternate none running dot-anim-1;
  z-index: 9;
}
.linkedin-logos {
  width: auto;
  height: auto;
  position: absolute;
  bottom: 15px;
  left: 150px;
  animation: 3s linear 0s infinite alternate none running dot-anim-2;
  z-index: 9;
}
.linkedin-man {
  position: absolute;
  right: 0px;
  top: -131px;
  z-index: 50;
}
.video-wrapper {
  position: relative;
  display: inline-block;
}
.video-wrapper .pulse-btn {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  z-index: 2;
}
.video-wrapper .pulse-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 70px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulseWave 1.8s infinite;
}
@keyframes pulseWave {
 0% {
 transform: translate(-50%, -50%) scale(1);
 opacity: 0.7;
}
 70% {
 transform: translate(-50%, -50%) scale(1.4);
 opacity: 0;
}
 100% {
 transform: translate(-50%, -50%) scale(1.4);
 opacity: 0;
}
}
/* popup form */
#popup-in-433dad0783373a34312d547fae1e7a61 {
 border-radius: .25rem!important;
}
.npfPopup-message {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.placement-border {
  border: 2px solid var(--primarycolor)!important;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}
.wishes-wrapper {
  position: relative;
}
.congratulations-ribbon {
  position: absolute;
  top: 0;
  z-index: 10;
  right: 0;
  width: 100%;
  display: block;
  font-size: 15px;
  padding: 0;
  overflow: hidden;
  height: 100px;
}
.congratulations-ribbon .ongoing {
  float: right;
  transform: rotate(45deg);
  right: -67px;
  top: 17px;
  position: relative;
  text-align: center;
  width: 200px;
  font-size: 10px;
  margin: 0;
  padding: 7px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  color: var(--colorwhite);
  box-shadow: 1px 2px 3px 0 rgba(2, 0, 0, 0.2);
  background: var(--primarycolor);
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}
.congratulations-ribbon .ongoing:hover {
  background: var(--secondarycolor);
}
.congratulations-ribbon .ongoing-alt {
  float: right;
  transform: rotate(45deg);
  right: -67px;
  top: 17px;
  position: relative;
  text-align: center;
  width: 200px;
  font-size: 10px;
  margin: 0;
  padding: 7px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  color: var(--colorwhite);
  box-shadow: 1px 2px 3px 0 rgba(2, 0, 0, 0.2);
  background: var(--secondarycolor);
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}
.congratulations-ribbon .ongoing-alt:hover {
  background: var(--primarycolor);
}
.placement-round-picture {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  border: 3px solid var(--disabled-light-1);
}
.nutshell-card {
  text-align: center;
 border-radius:.25rem;
  padding: 20px 30px;
  display: inline-block;
  white-space: normal;
  max-width: auto;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  background: transparent;
}
.nutshell-colors-1 {
  background: #e2e5ed;
}
.nutshell-colors-2 {
  background: #eaf1fb;
}
.nutshell-colors-3 {
  background: #e1f6f2;
}
.nutshell-colors-4 {
  background: #fef4e4;
}
.nutshell-colors-5 {
  background: #fde8e4;
}
.nutshell-colors-6 {
  background: #e9f7ec;
}
.nutshell-colors-7 {
  background: #fffbe5;
}
.nutshell-colors-8 {
  background: #f4e8ff;
}
.nutshell-colors-9 {
  background: #e1ebec;
}
.nutshell-colors-10 {
  background: #f2f8ff;
}
.nutshell-colors-11 {
  background: #fdf2f2;
}
.nutshell-colors-12 {
  background: #e0f0e9;
}
.nutshell-colors-13 {
  background: #fef6ea;
}
.nutshell-colors-14 {
  background: #f9e7f8;
}
.nutshell-colors-15 {
  background: #e6f7ff;
}
.nutshell-colors-16 {
  background: #f4f4ec;
}
.nutshell-colors-17 {
  background: #eaf4f2;
}
.nutshell-colors-18 {
  background: #fcf2dc;
}
.nutshell-colors-19 {
  background: #fbe9eb;
}
.nutshell-colors-20 {
  background: #f0f7fd;
}
.nutshell-card-alt {
  text-align: left;
 border-radius:.25rem;
  padding: 20px 30px;
  display: inline-block;
  white-space: normal;
  width: 100%;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  background: var(--colorwhite);
}
.nutshell-card-alt:hover {
  background: var(--silver);
}
.key-features-box .image-flip {
  width: 50px;
  height: 50px;
  perspective: 1000px;
}
.key-features-box .image-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.key-features-box .front, .key-features-box .back {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.key-features-box .front {
  opacity: 1;
  z-index: 2;
}
.key-features-box .back {
  opacity: 0;
  transform: rotateY(180deg);
}
.key-features-box .image-flip:hover .image-card-inner {
  transform: rotateY(180deg);
}
.key-features-box .image-flip:hover .front {
  opacity: 0;
  z-index: 1;
}
.key-features-box .image-flip:hover .back {
  opacity: 1;
  z-index: 2;
}
.process-block {
  position: relative;
  padding: 40px 0;
}
.process-block::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primarycolor);
  z-index: 0;
}
.process-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  z-index: 2;
}
.process-desc {
  margin-top: 0;
}
.process-block:first-child::before {
  top: 50%;
}
.process-block:last-child::before {
  bottom: 50%;
}
.image-absolute-wrapper {
  position: absolute;
  right: 0;
  bottom: -50px;
  max-width: 55%;
  z-index: 10;
}
.image-absolute-wrapper-alt {
  position: absolute;
  right: 0;
  bottom: -50px;
  max-width: 70%;
  z-index: 10;
}
.date-highlight {
  position: absolute;
  right: 0px;
  top: 0px;
  background: var(--primarycolor);
  color: var(--colorwhite);
  font-size: 14px;
  width: 80px;
  height: 80px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px 0px 0px 0.375rem;
  text-transform: uppercase;
}
.picture-rotate-1 {
  rotate: 5deg;
}
.picture-rotate-2 {
  rotate: 353deg;
}
.picture-rotate-3 {
  rotate: 353deg;
}
.picture-rotate-4 {
  rotate: 10deg;
}
.custom-slow {
 --animate-duration:15s;
}
.coverage-background-1 {
  background: #d9d8ff;
}
.coverage-background-2 {
  background: #f3d7ff;
}
.hero-portrait-picture {
  border-radius: 22px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.banner-innertext {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--colorwhite);
  color: var(--colorblack);
  padding: 6px 15px;
  width: max-content;
  font-weight: 500;
  font-size: 14px;
  border-radius: 5px;
  margin-bottom: 10px;
}
.banner-innertext-background {
  position: relative;
  background: var(--colorwhite);
  color: var(--colorblack);
  padding: 6px 15px;
  width: max-content;
  font-weight: 500;
  font-size: 14px;
  border-radius: 5px;
  margin-bottom: 10px;
}
.banner-bottomtext {
  position: absolute;
  bottom: 30px;
  color: var(--colorwhite);
}
.fees-image {
  position: absolute;
  right: -49px;
  top: -123px;
}
.fees-image-alt {
  position: absolute;
  right: -49px;
  top: -188px;
}
.slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.slider-wrapper .slider-track {
  display: flex;
  width: max-content;
  animation: scrollRightToLeft 30s linear infinite;
}
.slider-wrapper .slider-track img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
}
@keyframes scrollRightToLeft {
 0% {
 transform: translateX(0);
}
 50% {
 transform: translateX(-25%);
}
 100% {
 transform: translateX(-50%);
}
}
.ai-learn-1 {
  background: #e6f5f0;
  border: 2px dashed #029e6a;
  color: #009d69;
}
.ai-learn-2 {
  background: #f2f2fe;
  border: 2px dashed #0000cc;
  color: #0000cc;
}
.ai-learn-3 {
  background: #fef7e5;
  border: 2px dashed #f2af00;
  color: #f2af00;
}
.ai-learn-4 {
  background: #e0feff;
  border: 2px dashed #00b1b7;
  color: #00b1b7;
}
.chips-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  gap: 30px;
}
.chips-container-alt {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chips {
  padding: 15px 32px;
  border-radius: 50px;
  align-items: center;
  display: flex;
}
.chips-alt {
  padding: 10px 20px;
  border-radius: 50px;
  align-items: center;
  display: flex;
}
.chips img {
  width: 25px;
  height: 21px;
  margin-right: 10px;
  object-fit: contain;
}
.chips:nth-child(1), .chips-alt:nth-child(1) {
  background: #fdd6d6;
}
.chips:nth-child(2), .chips-alt:nth-child(2) {
  background: #fde2d1;
}
.chips:nth-child(3), .chips-alt:nth-child(3) {
  background: #fff0d6;
}
.chips:nth-child(4), .chips-alt:nth-child(4) {
  background: #f9f6cf;
}
.chips:nth-child(5), .chips-alt:nth-child(5) {
  background: #e8fbd1;
}
.chips:nth-child(6), .chips-alt:nth-child(6) {
  background: #d1fbe2;
}
.chips:nth-child(7), .chips-alt:nth-child(7) {
  background: #d1f6fb;
}
.chips:nth-child(8), .chips-alt:nth-child(8) {
  background: #d6eaff;
}
.chips:nth-child(9), .chips-alt:nth-child(9) {
  background: #dfd4f6;
}
.chips:nth-child(10), .chips-alt:nth-child(10) {
  background: #f6d4f1;
}
.chips:nth-child(11), .chips-alt:nth-child(11) {
  background: #ffd6eb;
}
.chips:nth-child(12), .chips-alt:nth-child(12) {
  background: #f1d6fd;
}
.chips:nth-child(13), .chips-alt:nth-child(13) {
  background: #d1f9df;
}
.chips:nth-child(14), .chips-alt:nth-child(14) {
  background: #fdf6d6;
}
.chips:nth-child(15), .chips-alt:nth-child(15) {
  background: #d6f9eb;
}
.chips:nth-child(16), .chips-alt:nth-child(16) {
  background: #f9d6d6;
}
.pink-image-1 {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 0.25rem;
  padding: 2em;
  overflow: hidden;
  min-height: 100%;
  height: 416px;
}
.pink-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(195, 61, 252, 0) 0%, rgba(126, 0, 179, 1) 100%);
  border-radius: 0.25rem;
  z-index: 1;
}
.pink-content {
  position: absolute;
  z-index: 2;
  bottom: 50px;
}
.pink-image-2 {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 0.25rem;
  padding: 2em;
  overflow: hidden;
  height: 400px;
}
.pink-image-3 {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 0.25rem;
  padding: 2em;
  overflow: hidden;
  height: 400px;
}
.pink-image-4 {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 0.25rem;
  padding: 2em;
  overflow: hidden;
  height: 607px;
}
.orange-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ED8621;
  background: -webkit-linear-gradient(180deg, rgba(237, 134, 33, 0) 0%, rgba(133, 67, 0, 1) 100%);
  background: -moz-linear-gradient(180deg, rgba(237, 134, 33, 0) 0%, rgba(133, 67, 0, 1) 100%);
  background: linear-gradient(180deg, rgba(237, 134, 33, 0) 0%, rgba(133, 67, 0, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ED8621", endColorstr="#854300", GradientType=0);
  border-radius: 0.25rem;
  z-index: 1;
}
.orange-content {
  position: absolute;
  z-index: 2;
  bottom: 50px;
}
.orange-box {
  background: #fff6ed;
}
.pink-box {
  background: #f6e3fe;
}
.course-rating {
  position: absolute;
  right: 20px;
  top: -15px;
}
.access-content {
  position: absolute;
  bottom: 10%;
}
.position-lg-absolute {
  position: relative;
}
@media (min-width: 992px) {
.position-lg-absolute {
  position: absolute;
}
}
.owl-carousel.owl-theme .owl-dots .owl-dot.active span {
  background: var(--primarycolor);
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 15px;
}
.owl-carousel.owl-theme.owl-dot-left-align .owl-dots {
  text-align: left!important;
}
.owl-carousel.owl-theme.owl-dot-right-align .owl-dots {
  text-align: right!important;
}
.vinci-picture {
  margin-top: -100px;
}
@media (max-width: 991.98px) {
.vinci-picture {
  margin-top: 0px;
}
}
.vertical-slider-wrapper {
  overflow: hidden;
  height: 600px;
  position: relative;
}
.vertical-slider-wrapper .v-slider-track {
  display: flex;
  flex-direction: column;
  animation: scrollBottomToTop 60s linear infinite;
}
.vertical-slider-wrapper .v-slider-track img {
  display: block;
  width: 100%;
  height: auto;
}
@keyframes scrollBottomToTop {
 0% {
 transform: translateY(0%);
}
 100% {
 transform: translateY(-50%); /* Adjust based on content height */
}
}
.circle-steps {
  background: var(--colorwhite);
  color: var(--primarycolor);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  position: absolute;
  right: 10px;
  top: -30px;
  border-radius: 50%;
  font-weight: 600;
}
.vinci-dashed-box {
  position: relative;
  background-color: var(--bg-light);
  padding: 20px;
 border-radius: .25rem;
  z-index: 1;
  width: 300px;
  border: 2px dashed var(--disabled);
}
.tools-covered-background {
  background: #1A2B4D;
  background: -webkit-linear-gradient(130deg, rgba(26, 43, 77, 1) 0%, rgba(43, 71, 128, 1) 62%, rgba(26, 43, 77, 1) 100%);
  background: -moz-linear-gradient(130deg, rgba(26, 43, 77, 1) 0%, rgba(43, 71, 128, 1) 62%, rgba(26, 43, 77, 1) 100%);
  background: linear-gradient(130deg, rgba(26, 43, 77, 1) 0%, rgba(43, 71, 128, 1) 62%, rgba(26, 43, 77, 1) 100%);
 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1A2B4D", endColorstr="#1A2B4D", GradientType=0);
}
#course-nav-wrapper {
  background-color:var(--tertiarycolor);
}
.course-sticky-nav {
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  z-index: 299;
  box-shadow: 0 2px 15px rgb(0 0 0 / 8%);
  display: block;
}
.course-sticky-nav .course-detail-header{
  padding: 15px 0;
}
.course-hidden-nav {
  display: none !important;
}
@media (max-width: 991.98px) {
.course-sticky-nav .course-detail-header{
  padding: 20px 0;
}
.navbar-center-align{
  padding: 0px 1.5em;
}
}
.navbar-center-align{
  display: flex;
  align-items: center;
  justify-content: center;
}
.course-detail-header{
  width:auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.course-detail-header::-webkit-scrollbar {
  display: none;
}
ul.course-detail-header {
  list-style: none;
  padding: 10px 0;
  margin: 0;
  white-space: nowrap;
}
ul.course-detail-header li {
  display: inline-block;
  margin-right: 40px;
}
ul.course-detail-header li:last-child {
  margin-right: 0;
}
ul.course-detail-header a {
  text-decoration: none;
  color: var(--colorwhite);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}
ul.course-detail-header a:hover, ul.course-detail-header a:focus, ul.course-detail-header a.active {
  border-bottom: 3px solid var(--primarycolor);
  color: var(--primarycolor);
}
.trust-background{
  background: #FFA500;
  background: -webkit-linear-gradient(120deg, rgba(255, 165, 0, 1) 14%, rgba(255, 69, 0, 1) 100%);
  background: -moz-linear-gradient(120deg, rgba(255, 165, 0, 1) 14%, rgba(255, 69, 0, 1) 100%);
  background: linear-gradient(120deg, rgba(255, 165, 0, 1) 14%, rgba(255, 69, 0, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFA500", endColorstr="#FF4500", GradientType=0);
  border-radius: 0 25px 25px 0 ;
}
.trust-background .counter-section .counter-box {
  position: relative;
  background: rgba(255, 255, 255, 0.40);
  border-radius: 0.5rem;
  padding: 3em 1.5em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease-in-out;
  overflow: hidden;
  color: var(--colorwhite);
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}
.trust-background .counter-section .counter-box::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 3px dotted var(--colorwhite);
  border-radius: 0.5rem;
  pointer-events: none;
}
.trust-background .counter-section .counter-box .display-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.trust-background .counter-section .counter-box:hover {
  transform: translateY(-5px);
  color: var(--primarycolor);
  background: var(--colorwhite);
}
.trust-background .counter-section .counter-box:hover::before {
  border: 3px dotted var(--primarycolor);
}
.vertical-sticky-course {
  position: -webkit-sticky;
  position: sticky;
  top: 250px;
}
.scrollable-content {
  max-height: 350px;
  overflow-y: auto;
  padding-right: 15px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media (max-width: 767.98px) {
.scrollable-content {
  height: 100%;
  max-height: 350px;
  overflow-y: auto;
  scrollbar-width: thin;
}
}
.scrollable-content::-webkit-scrollbar {
  display: none;
}
.placementverticalSwiper .vertical-candidate-picture {
  max-height: 80px;
  max-width: 80px;
  border-radius: 100px;
}
.placementverticalSwiper .vertical-candidate-picture img {
  display: block;
  padding: 0;
  max-width: 100%;
  max-height: 100%;
  width: 80px;
  height: 80px;
  object-fit: cover;
  object-position:center;
  border-radius: 100px;
  border: 1px solid var(--light-90);
  background-color: var(--colorwhite);
  transition: .3s;
}
.vertical-scroller .tns-ovh{
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.vertical-scroller .tns-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}
.vertical-scroller .tns-nav button {
  width: 10px;
  height: 10px;
  background:var(--dark-95);
  border-radius: 50%;
  border: none;
  opacity: 0.5;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}
.vertical-scroller .tns-nav button:hover {
  background:var(--tertiarycolor);
}
.vertical-scroller .tns-nav button.tns-nav-active {
  background:var(--primarycolor);
  opacity: 1;
  width: 25px;
  border-radius: 10px;
}
.learners-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  vertical-align: middle;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.learn-box-1 {
  background: #F0EAFF;
}
.learn-box-2 {
  background: #EBFFFF;
}
.learn-box-3 {
  background: #FFF1F6;
}
.learn-box-4 {
  background: #FFF5EC;
}
.learn-box-5 {
  background: #F9EDFF;
}
.learn-box-6 {
  background: #F2F9FF;
}
.compare-logo-ribbon {
  position: absolute;
  right: 20px;
  top: -50px;
  padding: 0.3em 0.6em;
  background: var(--colorwhite);
  border-right: 8px solid rgba(0, 0, 0, 0.8);
  border-bottom: 12px solid transparent;
  clip-path: polygon(
    calc(100% - 8px) 0,
    0 0,
    0 calc(100% - 12px),
    calc(50% - 4px) 100%,
    calc(100% - 8px) calc(100% - 12px),
    calc(100% - 8px) 8px,
    100% 8px
  );
}
.future-circle {
  width: 50px;
  height: 50px;
  border-radius: 50% 50% 0px 50%;
  vertical-align: middle;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap
}
.timeline-steps .timeline-step {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 1rem
}

@media (min-width:768px) {
.timeline-steps .timeline-step:not(:last-child):after {
  content: "";
  display: block;
  border-top: 3px dotted var(--disabled);
  width: 100%;
  position: absolute;
  left: 6.5rem;
  top: .3125rem;
  z-index: -2;
}
}
.timeline-steps .timeline-content {
  width: 12rem;
  text-align: center
}
.timeline-steps .timeline-content .inner-circle {
  height: 1rem;
  width: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primarycolor);
  border-radius: 50%;
}
.timeline-steps .timeline-content .inner-circle:before {
  content: "";
  background-color: var(--light-40);
  display: inline-block;
  height: 3rem;
  width: 3rem;
  min-width: 3rem;
  border-radius: 50%;
  z-index: -1;
}
.box-highlight-hover .hover-extra {
  display: none;
  font-size: 0.875rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--primarycolor);
}
.box-highlight-hover:hover .hover-extra {
  display: block;
  opacity: 1;
  width: 100%;
  height: 100%;
  padding: 1em;
  text-align: center;
}
.circled-picture {
  width: auto;
  height: auto;
  max-width: 80px;
  max-height: 80px;
  padding: 1em;
  text-align: center;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.white-ribbon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
}
.white-ribbon::before, .white-ribbon::after {
  position: absolute;
  z-index: -1;
  content: '';
  display: block;
  border: 5px solid var(--bg-dark);
}
.white-ribbon span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 10px 0;
  background-color: var(--colorwhite);
  box-shadow: 0 5px 10px rgba(0,0,0,.1);
  color: inherit;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-shadow: 0 1px 1px rgba(0,0,0,.1);
  text-transform: uppercase;
  text-align: center;
}
.ribbon-top-left {
  top: -10px;
  left: -10px;
}
.ribbon-top-left::before, .ribbon-top-left::after {
  border-top-color: transparent;
  border-left-color: transparent;
}
.ribbon-top-left::before {
  top: 0;
  right: 0;
}
.ribbon-top-left::after {
  bottom: 0;
  left: 0;
}
.ribbon-top-left span {
  right: -31px;
  top: 31px;
  transform: rotate(-45deg);
}
.ribbon-top-right {
  top: -10px;
  right: -10px;
}
.ribbon-top-right::before, .ribbon-top-right::after {
  border-top-color: transparent;
  border-right-color: transparent;
}
.ribbon-top-right::before {
  top: 0;
  left: 0;
}
.ribbon-top-right::after {
  bottom: 0;
  right: 0;
}
.ribbon-top-right span {
  left: -31px;
  top: 31px;
  transform: rotate(45deg);
}
.sucess-story-picture {
  border-radius: .25rem .25rem .25rem 3em;
}
.story-content {
  position: absolute;
  border-radius: .25rem 3em .25rem .25rem;
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(7.17072057723999px);
  padding: 2em;
  z-index: 11;
  width: 200px;
  top: -25px;
  left: 25px;
}
.real-example-card {
  position: relative;
  top: -150px;
  margin: 0 auto;
  background: var(--colorwhite);
  width: 100%;
  z-index: 20;
}
