:root {
  --color-primary:#ea5498;
  --color-gradient-start:#ea5498;
  --color-gradient-stop:#ea5498;
}

body {
  font-weight: 400;
  line-height: 1.75em;
  font-size: 15px;
  color: #9e9e9e;
}

.h1, h1,
.h2, h2,
.h3, h3,
.h4, h4,
.h5, h5,
.h6, h6 {
  color: #282828;
  font-weight: 500;
}

.main-nav > li > a {
  font-weight: 500;
  color: #252525;
    font-size: 15px;
}

.main-nav > li > a.is-active > a,
.main-nav > li > a.current-menu-item > a,
.main-nav > li > a:hover > a,
.main-nav > li > a > a:hover {
  color: var(--wb-secondary-color);
}

.main-footer {
  color: #92959b;
}

.main-footer a:not(.btn) {
  color: #92959b;
}

.main-footer a:not(.btn):hover {
  color: #fff;
}

/* ----------- Sldier --------------- */
.carousel {
    position: relative;
    user-select: none;
}

.carousel__container {
    position: relative;
}

.carousel__inner {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.carousel__indicators {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    margin-left: 2rem;
    margin-right: 2rem;
    display: flex;
    justify-content: center;
    z-index: 30;
    padding: 0;
}
.carousel__indicators li {
    background-color: #bbbbbb;
    height: 3px;
    width: 30px;
    margin: 3px;
    cursor: pointer;
}
.carousel__indicators li.active {
    background-color: var(--wb-secondary-color);
}

.carousel__control {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15%;
    color: #bbbbbb;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 30;
}
.carousel__control:hover {
    color: var(--wb-secondary-color);
}
.carousel__control.carousel__control--prev {
    left: 0;
}
.carousel__control.carousel__control--next {
    right: 0;
}
.carousel__control .carousel__control--prev__icon,
.carousel__control .carousel__control--next__icon {
    width: 20px;
    height: 20px;
}

.carousel__item {
    display: none;
    transition: transform 0.6s;
}

.active {
    display: block;
}
.active.carousel__item--left {
    transform: translate3d(-100%, 0, 0);
}
.active.carousel__item--left.carousel__item--next {
    transform: translate3d(0, 0, 0);
}
.active.carousel__item--right {
    transform: translate3d(100%, 0, 0);
}
.active.carousel__item--right.carousel__item--prev {
    transform: translate3d(0, 0, 0);
}

.carousel__item--next,
.carousel__item--prev {
    position: absolute;
    top: 0;
}

.carousel__item--next {
    transform: translatex(100%);
}

.carousel__item--prev {
    transform: translatex(-100%);
}
ul {
    list-style-type: none;
}

@media (min-width: 1200px) {
  .main-header .is-stuck {
    background: #ffffff !important;
  }
  .mainbar-wrap.is-stuck .social-icon a,
  .mainbar-wrap.is-stuck .header-module .ld-module-trigger,
  .mainbar-wrap.is-stuck .main-nav > li > a {
    color: #353535 !important;
  }
  .mainbar-wrap.is-stuck .social-icon a:hover,
  .mainbar-wrap.is-stuck .main-nav > li > a:hover {
    color: var(--wb-secondary-color) !important;
  }
}

.form-control:focus {
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(206 208 209 / 60%);
}
.organization-logo {
    width: 90px;
}
.product-detail {
    padding: 2em;
    border-radius: 40px;
    box-shadow: 0px 10px 25px rgb(51 112 220 / 20%);
    margin-top: 2em;
    margin-bottom: 2em;
}
.product-detail .title {
    font-size: 1.5em;
    font-weight: 600;
}
.main-nav .children, .nav-item-children {
    text-align: right !important;
    right: 0;
    min-width: 265px;
}
@media screen and (max-width: 767px) {
    .font-sm-24px{
        font-size:24px!important;
    }
    .font-sm-22px{
        font-size:22px!important;
    }
    .font-sm-20px{
        font-size:20px!important;
    }
    .font-sm-18px{
        font-size:18px!important;
    }
    .font-sm-16px{
        font-size:16px!important;
    }
    .font-sm-14px{
        font-size:14px!important;
    }
    .font-sm-12px{
        font-size:12px!important;
    }
}

