@-webkit-keyframes float {
    0% {
      -webkit-transform: translateY(2em);
      transform: translateY(2em);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
  @keyframes float {
    0% {
      -webkit-transform: translateY(2em);
      transform: translateY(2em);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
  * {
    -webkit-transition: ease 0.4s;
    transition: ease 0.4s;
    text-decoration: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  html,
  body {
    margin: 0;
    padding: 0;
  }
  body {
    position: relative;
    overflow-x: hidden;
    background: #fff;
    padding-top: 50px;
    font-family: "Ubuntu", sans-serif;
    letter-spacing: 0.5px;
    font-size: 14px;
    color: #4e4e4e;
  }
  @media (max-width: 960px) {
    body {
      padding-top: 50px;
    }
  }
  #logo-brand {
    display: none;
  }
  body,
  header,
  section {
    width: 100%;
  }
  .grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2vw;
  }
  @media (max-width: 960px) {
    .grid {
      padding: 0 4vw;
    }
  }
  @media (max-width: 768px) {
    .grid {
      padding: 0 6vw;
    }
    .why-fundtastic-img {
      width: 100%!important;
    }

    .dca-explain-img{
      width: 100%!important;
    }
  }
  .why-fundtastic-img {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 60%;
  }
  .swiper-container,
  .full,
  section.news .list .photo img,
  section.news-new .promo-list .thumb img,
  section.news-read .promo-list .thumb img,
  section.news-read .thumb img,
  section.read .photo img {
    width: 100%;
    height: 100%;
  }
  .full,
  section.news .list .photo img,
  section.news-new .promo-list .thumb img,
  section.news-read .promo-list .thumb img,
  section.news-read .thumb img,
  section.read .photo img {
    -o-object-fit: cover;
    object-fit: cover;
  }
  .full-h,
  section.content-load {
    width: 100%;
    height: 100vh;
    min-height: 640px;
  }
  .btn-solid,
  section.news .btn {
    padding: 10px 2em;
    border-radius: 5px;
    text-transform: capitalize;
    background: #0082cc;
    color: #fff;
    cursor: pointer;
    outline: none;
    border: none;
  }
  .btn-solid:hover,
  section.news .btn:hover {
    -webkit-filter: brightness(1.25);
    filter: brightness(1.25);
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  .btn-text,
  section.feature .content .list a,
  section.news .list a,
  .pagination .page:hover,
  .pagination .page.active,
  footer .sitemap .menu {
    color: #0082cc;
    cursor: pointer;
  }
  .btn-text:hover,
  section.feature .content .list a:hover,
  section.news .list a:hover,
  .pagination .page:hover,
  footer .sitemap .menu:hover {
    opacity: 0.5;
    margin-left: 1em;
  }
  .btn-text.disable,
  section.feature .content .list a.disable,
  section.news .list a.disable,
  .pagination .disable.page:hover,
  .pagination .disable.page.active,
  footer .sitemap .disable.menu,
  .btn-text.disable:hover,
  section.feature .content .list a.disable:hover,
  section.news .list a.disable:hover,
  .pagination .disable.page:hover,
  footer .sitemap .disable.menu:hover {
    cursor: no-drop;
    color: rgba(0, 0, 0, 0.5);
  }
  .gotop {
    position: fixed;
    bottom: 2em;
    right: 2em;
    opacity: 0;
    z-index: 5;
    content: "";
    width: 30px;
    height: 30px;
    background: #0082cc;
    border-radius: 5px;
    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: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .gotop.active {
    opacity: 1;
  }
  .gotop .arrow-up {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
  }
  @-webkit-keyframes bounce {
    0% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
    25% {
      -webkit-transform: translateY(10px);
      transform: translateY(10px);
    }
    75% {
      -webkit-transform: translateY(-4px);
      transform: translateY(-4px);
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
  @keyframes bounce {
    0% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
    25% {
      -webkit-transform: translateY(10px);
      transform: translateY(10px);
    }
    75% {
      -webkit-transform: translateY(-4px);
      transform: translateY(-4px);
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
  .gotop:hover {
    background: #fff;
    -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  }
  .gotop:hover .arrow-up {
    border-bottom-color: #0082cc;
    -webkit-animation: bounce 0.4s ease;
    animation: bounce 0.4s ease;
  }
  .menu-btn {
    margin-left: auto;
    cursor: pointer;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  @media (min-width: 960px) {
    .menu-btn {
      display: none;
    }
  }
  .menu-btn .bar1,
  .menu-btn .bar2,
  .menu-btn .bar3 {
    background: #0082cc;
    width: 40px;
    height: 4px;
    border-radius: 5px;
    margin: 8px 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .menu-btn .bar1 {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .menu-btn .bar2 {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .menu-btn.change {
    z-index: 10;
    opacity: 0.85;
  }
  .menu-btn.change .bar1,
  .menu-btn.change .bar2,
  .menu-btn.change .bar3 {
    background: #000;
  }
  .menu-btn.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-10px, 8px);
    transform: rotate(-45deg) translate(-10px, 8px);
  }
  .menu-btn.change .bar2 {
    opacity: 0;
  }
  .menu-btn.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-9px, -7px);
    transform: rotate(45deg) translate(-9px, -7px);
  }
  
  header .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  @media (max-width: 767px) {
    header .swiper-slide .desktop {
      display: none;
    }
  }
  @media (min-width: 768px) {
    header .swiper-slide .mobile {
      display: none;
    }
  }
  section.feature {
    padding: 2em 0;
  }
  section.feature .grid {
    display: -ms-grid;
    display: grid;
    grid-gap: 2em;
    -ms-grid-columns: (minmax(48%, 1fr)) [auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  section.feature .highlight {
    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;
  }
  section.feature .highlight img {
    width: auto;
    height: 550px;
    display: none;
    opacity: 0;
  }
  @media (max-width: 480px) {
    section.feature .highlight img {
      width: 100%;
      height: 450px;
      -o-object-fit: contain;
      object-fit: contain;
    }
  }
  section.feature .highlight .active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
    -webkit-animation: float 1s ease-out;
    animation: float 1s ease-out;
  }
  section.feature .content {
    height: 100%;
    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-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  section.feature .content .list {
    width: 100%;
  }
  section.feature .content .list h2 {
    font-size: 18px;
    font-weight: 500;
  }
  section.feature .content .list hr {
    width: 5vw;
    margin-left: 10px;
    border: 1px solid #0082cc;
  }
  section.feature .content .list.active hr {
    width: 100%;
  }
  @media (max-width: 768px) {
    section.feature .content .list {
      display: none;
      margin-bottom: 2em;
      -webkit-box-shadow: 0 5px 10px rgba(78, 78, 78, 0.25);
      box-shadow: 0 5px 10px rgba(78, 78, 78, 0.25);
      padding: 1em 2em;
      border-radius: 10px;
    }
    section.feature .content .list hr {
      width: 25vw;
    }
    section.feature .content .list.active {
      display: block;
    }
  }
  section.review {
    background: #f6f6f6;
  }
  section.review .user {
    margin-top: 1.5rem;
  }
  section.review .user .name {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 24px;
    text-transform: capitalize;
  }
  section.review .user p {
    margin: 0;
  }
  section.review .user .rating {
    color: #0082cc;
    font-size: 18px;
    margin-top: 0;
  }
  section.review .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 3em;
  }
  section.review .swiper-pagination-bullet {
    width: 4em;
    height: 6px;
    border-radius: 5px;
    background-color: transparent;
    border: 2px solid #000;
  }
  section.review .swiper-pagination-bullet-active {
    border-color: #0082cc;
  }
  section.review .swiper-slide {
    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;
    text-align: center;
    min-height: 480px;
    position: relative;
  }
  @media (min-width: 769px) {
    section.review .swiper-slide {
      min-height: auto;
      height: 350px;
    }
  }
  section.review .swiper-slide p {
    font-size: 14px;
    line-height: 22.652px;
  }
  section.review .swiper-slide .reviewer {
    width: 100%;
    height: calc(20px + 2vw);
    -o-object-fit: contain;
    object-fit: contain;
    margin-top: 2em;
  }
  @media (max-width: 640px) {
    section.review .swiper-slide .reviewer {
      height: calc(40px + 2vw);
    }
  }
  section.review .swiper-slide .kutip {
    position: absolute;
    width: auto;
    height: 50px;
  }
  section.review .swiper-slide .kutip.atas {
    top: 2em;
    left: 0;
  }
  section.review .swiper-slide .kutip.bawah {
    bottom: 2em;
    right: 0;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  section.partner .grid {
    position: relative;
    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: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  section.partner .grid::before {
    content: "";
    position: absolute;
    z-index: 5;
    width: 100%;
    height: 100%;
    background: transparent;
  }
  section.partner .swiper-container-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
  }
  section.partner .swiper-slide {
    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: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: auto;
    height: 200px;
    margin-right: 4em;
  }
  section.news {
    background: rgba(0, 130, 204, 0.15);
    padding: 4em 0;
  }
  section.news .grid {
    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;
  }
  section.news p.title {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 500;
    position: relative;
    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: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 10px 0;
  }
  section.news p.title::before {
    position: absolute;
    width: 5vw;
    content: "";
    border-bottom: 2px solid #0082cc;
    bottom: 0;
  }
  @media (max-width: 768px) {
    section.news p.title::before {
      width: 10vw;
    }
  }
  section.news .split {
    display: -ms-grid;
    display: grid;
    grid-gap: 2em;
    -ms-grid-columns: (minmax(48%, 1fr)) [auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
    width: 100%;
  }
  section.news .list {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
  }
  section.news .list .photo {
    height: 250px;
    overflow: hidden;
  }
  section.news .list .content {
    padding: 2em;
  }
  section.news .list h1 {
    font-weight: 500;
    margin-top: 0;
    position: relative;
    max-height: 24px;
    overflow: hidden;
  }
  section.news .list hr {
    width: calc(75px + 5vw);
    border: 1px solid #0082cc;
    margin-left: 0;
  }
  section.news .list p {
    font-size: 14px;
    line-height: 22.652px;
    height: 90px;
    margin-bottom: 2em;
    overflow: hidden;
  }
  section.news .list:hover hr {
    width: calc(75px + 25vw);
    -webkit-transition: ease-out 10s;
    transition: ease-out 10s;
  }
  section.news .btn {
    margin: 2em 0;
  }
  section.news.promo .small-banner {
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2em;
  }
  section.news.promo .small-banner img {
    width: 100%;
    height: auto;
  }
  section.news.promo .split {
    display: -ms-grid;
    display: grid;
    grid-gap: 2em;
    -ms-grid-columns: (minmax(302px, 1fr)) [auto-fill];
    grid-template-columns: repeat(auto-fill, minmax(302px, 1fr));
  }
  section.news.promo .photo {
    height: 200px;
  }
  section.news.promo .content h1 {
    margin: 0;
    max-height: 48px !important;
    word-break: break-all;
  }
  section.video .grid {
    display: -ms-grid;
    display: grid;
    grid-gap: 2em;
    -ms-grid-columns: (minmax(48%, 1fr)) [auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
    justify-items: center;
    padding: 4em 0;
  }
  section.video .grid .list {
    width: 100%;
    height: 320px;
  }
  section.video .grid iframe {
    width: 100%;
    height: 100%;
  }
  section.instrument,
  section.fitur,
  section.news-new,
  section.news-read {
    padding: 4em 0;
  }
  section.instrument .list,
  section.fitur .list,
  section.news-new .list,
  section.news-read .list {
    display: -ms-grid;
    display: grid;
    grid-gap: 2em;
    -ms-grid-columns: (minmax(48%, 1fr)) [auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 2em;
  }
  section.instrument .list div,
  section.fitur .list div,
  section.news-new .list div,
  section.news-read .list div {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  section.instrument .list div.content h2,
  section.fitur .list div.content h2,
  section.news-new .list div.content h2,
  section.news-read .list div.content h2 {
    font-weight: 500;
    font-size: 28px;
  }
  section.instrument .list div.content hr,
  section.fitur .list div.content hr,
  section.news-new .list div.content hr,
  section.news-read .list div.content hr {
    width: 5vw;
    border: 1px solid #0082cc;
    margin-left: 0;
  }
  section.instrument .list div.content p,
  section.fitur .list div.content p,
  section.news-new .list div.content p,
  section.news-read .list div.content p {
    font-size: 14px;
    line-height: 22.652px;
  }
  section.instrument .list.right .photo,
  section.fitur .list.right .photo,
  section.news-new .list.right .photo,
  section.news-read .list.right .photo {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    text-align: right;
  }
  @media (max-width: 768px) {
    section.instrument .list.right .content,
    section.fitur .list.right .content,
    section.news-new .list.right .content,
    section.news-read .list.right .content {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
    }
  }
  @media (max-width: 768px) {
    section.instrument .list img,
    section.fitur .list img,
    section.news-new .list img,
    section.news-read .list img {
      width: 100%;
      height: auto;
    }
    section.instrument .list hr,
    section.fitur .list hr,
    section.news-new .list hr,
    section.news-read .list hr {
      width: 50vw !important;
    }
  }
  section.fitur .list,
  section.news-new .list,
  section.news-read .list {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    justify-items: center;
    cursor: pointer;
  }
  section.fitur .list .photo img,
  section.news-new .list .photo img,
  section.news-read .list .photo img {
    width: auto;
    height: 540px;
  }
  section.fitur .item,
  section.news-new .item,
  section.news-read .item {
    display: none;
  }
  section.fitur .item.active,
  section.news-new .item.active,
  section.news-read .item.active {
    display: -ms-grid;
    display: grid;
  }
  section.fitur .menu,
  section.news-new .menu,
  section.news-read .menu {
    width: 100%;
    margin-bottom: 2em;
  }
  section.fitur .menu .list,
  section.news-new .menu .list,
  section.news-read .menu .list {
    width: auto;
    padding: 0 2em;
    position: relative;
    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: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    color: #4e4e4e;
  }
  section.fitur .menu .list::before,
  section.news-new .menu .list::before,
  section.news-read .menu .list::before {
    width: 0;
    content: "";
    height: 2px;
    background: #0082cc;
    -webkit-transition: ease 0.4s;
    transition: ease 0.4s;
    position: absolute;
    bottom: -10px;
  }
  section.fitur .menu .list.active::before,
  section.news-new .menu .list.active::before,
  section.news-read .menu .list.active::before,
  section.fitur .menu .list:hover::before,
  section.news-new .menu .list:hover::before,
  section.news-read .menu .list:hover::before {
    width: 5vw;
  }
  section.fitur .menu .list:not(:first-child),
  section.news-new .menu .list:not(:first-child),
  section.news-read .menu .list:not(:first-child) {
    border-left: 1px solid #4e4e4e;
  }
  section.news-new .promo-list,
  section.news-read .promo-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1.2fr;
    grid-template-columns: 1fr 1.2fr;
    -webkit-transition: ease 0.4s;
    transition: ease 0.4s;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 1em;
  }
  @media (max-width: 840px) {
    section.news-new .promo-list,
    section.news-read .promo-list {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
    }
  }
  section.news-new .promo-list .title,
  section.news-read .promo-list .title,
  section.news-new .promo-list .detail,
  section.news-read .promo-list .detail,
  section.news-new .promo-list span,
  section.news-read .promo-list span {
    color: #4e4e4e;
  }
  section.news-new .promo-list .thumb,
  section.news-read .promo-list .thumb {
    width: 100%;
    min-height: 100px;
    height: 100%;
    max-height: 285px;
  }
  section.news-new .promo-list .thumb img,
  section.news-read .promo-list .thumb img {
    -o-object-fit: cover;
    object-fit: cover;
  }
  section.news-new .promo-list .desc,
  section.news-read .promo-list .desc {
    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-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 2rem;
  }
  section.news-new .promo-list .info,
  section.news-read .promo-list .info {
    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: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  section.news-new .promo-list .title,
  section.news-read .promo-list .title {
    font-size: 24px;
    font-weight: 500;
    margin: 10px 0 0;
  }
  section.news-new .promo-list hr,
  section.news-read .promo-list hr {
    width: 20%;
    margin: 1em 0;
    -webkit-transition: ease 0.4s;
    transition: ease 0.4s;
    border-color: #0082cc;
  }
  section.news-new .promo-list .detail,
  section.news-read .promo-list .detail {
    margin: 0;
    display: block;
    clear: both;
    font-size: 14px;
    line-height: 22.652px;
  }
  section.news-new .promo-list:hover,
  section.news-read .promo-list:hover,
  section.news-new .promo-list.highlight,
  section.news-read .promo-list.highlight {
    background: #0082cc;
  }
  section.news-new .promo-list:hover .title,
  section.news-read .promo-list:hover .title,
  section.news-new .promo-list:hover .detail,
  section.news-read .promo-list:hover .detail,
  section.news-new .promo-list:hover span,
  section.news-read .promo-list:hover span,
  section.news-new .promo-list.highlight .title,
  section.news-read .promo-list.highlight .title,
  section.news-new .promo-list.highlight .detail,
  section.news-read .promo-list.highlight .detail,
  section.news-new .promo-list.highlight span,
  section.news-read .promo-list.highlight span {
    color: white;
  }
  section.news-new .promo-list:hover hr,
  section.news-read .promo-list:hover hr,
  section.news-new .promo-list.highlight hr,
  section.news-read .promo-list.highlight hr {
    border-color: white;
  }
  section.news-new .divide,
  section.news-read .divide {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 3fr 1fr;
    grid-template-columns: 3fr 1fr;
    margin: 2em auto;
    grid-gap: 2em;
  }
  section.news-new .divide.read,
  section.news-read .divide.read {
    max-width: 960px;
  }
  @media (max-width: 840px) {
    section.news-new .divide,
    section.news-read .divide {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
    }
  }
  section.news-new .divide .promo-list,
  section.news-read .divide .promo-list {
    -webkit-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.1);
  }
  section.news-new .divide .all,
  section.news-read .divide .all {
    border-radius: 5px;
    background: #f5f6f8;
    padding: 2em 1em 4em;
  }
  section.news-new .divide .all a,
  section.news-read .divide .all a {
    color: #4e4e4e;
  }
  section.news-new .divide .all .title,
  section.news-read .divide .all .title {
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0 10px;
  }
  section.news-new .divide .all .items,
  section.news-read .divide .all .items {
    padding: 5px 0 2em;
    display: block;
  }
  section.news-new .divide .all .items:not(:last-child),
  section.news-read .divide .all .items:not(:last-child) {
    border-bottom: 1px solid #4e4e4e;
    margin-bottom: 1em;
  }
  section.news-new .divide .all h2,
  section.news-read .divide .all h2 {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 5px;
  }
  section.news-new .divide .all .date,
  section.news-read .divide .all .date {
    margin: 0;
    font-size: 12px;
  }
  section.news-read .thumb {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2em;
  }
  section.news-read .thumb img {
    -o-object-fit: cover;
    object-fit: cover;
  }
  section.news-read .info {
    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: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  section.news-read .title {
    margin: 0;
    font-size: 28px;
    font-weight: 500;
  }
  section.news-read hr {
    margin: 2em 0;
    width: 10%;
    border: 2px solid #0082cc;
  }
  section.news-read .desc p {
    font-size: 14px;
    line-height: 27px;
  }
  section.news-read .also {
    display: block;
    margin: 2em 0;
    color: #4e4e4e;
    border-left: 4px solid #0082cc;
    padding: 0 2em;
  }
  section.news-read .also h2,
  section.news-read .also p,
  section.news-read .also span {
    margin: 0;
  }
  section.news-read .also .text {
    color: #0082cc;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
  }
  section.news-read .also .title {
    font-weight: 500;
    font-size: 28px;
  }
  section.news-read .also:hover {
    -webkit-filter: brightness(1.4);
    filter: brightness(1.4);
  }
  section.news-read .cta {
    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: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: 1px solid #4e4e4e;
    padding-top: 1em;
    margin-top: 2em;
  }
  section.news-read .cta .btn-text:hover,
  section.news-read .cta section.feature .content .list a:hover,
  section.feature .content .list section.news-read .cta a:hover,
  section.news-read .cta section.news .list a:hover,
  section.news .list section.news-read .cta a:hover,
  section.news-read .cta .pagination .page:hover,
  .pagination section.news-read .cta .page:hover,
  section.news-read .cta footer .sitemap .menu:hover,
  footer .sitemap section.news-read .cta .menu:hover {
    margin: 0;
  }
  @media (max-width: 360px) {
    section.news-read .cta {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    section.news-read .cta .btn-text:first-child,
    section.news-read .cta section.feature .content .list a:first-child,
    section.feature .content .list section.news-read .cta a:first-child,
    section.news-read .cta section.news .list a:first-child,
    section.news .list section.news-read .cta a:first-child,
    section.news-read .cta .pagination .page:first-child:hover,
    .pagination section.news-read .cta .page:first-child:hover,
    section.news-read .cta .pagination .page.active:first-child,
    .pagination section.news-read .cta .page.active:first-child,
    section.news-read .cta footer .sitemap .menu:first-child,
    footer .sitemap section.news-read .cta .menu:first-child {
      margin-right: auto;
    }
    section.news-read .cta .btn-solid,
    section.news-read .cta section.news .btn,
    section.news section.news-read .cta .btn {
      margin: 1em 0;
      text-align: center;
    }
    section.news-read .cta .btn-text:last-child,
    section.news-read .cta section.feature .content .list a:last-child,
    section.feature .content .list section.news-read .cta a:last-child,
    section.news-read .cta section.news .list a:last-child,
    section.news .list section.news-read .cta a:last-child,
    section.news-read .cta .pagination .page:last-child:hover,
    .pagination section.news-read .cta .page:last-child:hover,
    section.news-read .cta .pagination .page.active:last-child,
    .pagination section.news-read .cta .page.active:last-child,
    section.news-read .cta footer .sitemap .menu:last-child,
    footer .sitemap section.news-read .cta .menu:last-child {
      margin-left: auto;
    }
  }
  section.news.page {
    background: #fff;
    padding: 2em 0;
  }
  section.news.page .iconic {
    width: auto;
    height: 100px;
    margin-bottom: 2em;
  }
  section.news.page .list {
    -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  }
  section.read {
    padding: 2em 0;
  }
  section.read .grid {
    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;
  }
  section.read p.date {
    margin-bottom: 0;
  }
  section.read h1 {
    margin: 0;
    font-weight: 500;
    text-align: center;
  }
  section.read hr {
    width: calc(50px + 5vw);
    border: 1px solid #0082cc;
    margin-bottom: 2em;
  }
  section.read .photo {
    width: 100%;
    height: 400px;
    margin-bottom: 1em;
  }
  section.read .photo img {
    border-radius: 10px;
  }
  section.read.promo .photo {
    height: auto;
  }
  section.read.promo .photo img {
    width: 100%;
    height: auto;
  }
  section.read .content {
    max-width: 720px;
  }
  section.read .content p {
    font-size: 14px;
    line-height: 22.652px;
  }
  section.read .cta {
    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: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: 1px solid #4e4e4e;
    padding-top: 1em;
    margin-top: 2em;
  }
  @media (max-width: 360px) {
    section.read .cta {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    section.read .cta .btn-text:first-child,
    section.read .cta section.feature .content .list a:first-child,
    section.feature .content .list section.read .cta a:first-child,
    section.read .cta section.news .list a:first-child,
    section.news .list section.read .cta a:first-child,
    section.read .cta .pagination .page:first-child:hover,
    .pagination section.read .cta .page:first-child:hover,
    section.read .cta .pagination .page.active:first-child,
    .pagination section.read .cta .page.active:first-child,
    section.read .cta footer .sitemap .menu:first-child,
    footer .sitemap section.read .cta .menu:first-child {
      margin-right: auto;
    }
    section.read .cta .btn-solid,
    section.read .cta section.news .btn,
    section.news section.read .cta .btn {
      margin: 1em 0;
      text-align: center;
    }
    section.read .cta .btn-text:last-child,
    section.read .cta section.feature .content .list a:last-child,
    section.feature .content .list section.read .cta a:last-child,
    section.read .cta section.news .list a:last-child,
    section.news .list section.read .cta a:last-child,
    section.read .cta .pagination .page:last-child:hover,
    .pagination section.read .cta .page:last-child:hover,
    section.read .cta .pagination .page.active:last-child,
    .pagination section.read .cta .page.active:last-child,
    section.read .cta footer .sitemap .menu:last-child,
    footer .sitemap section.read .cta .menu:last-child {
      margin-left: auto;
    }
  }
  section.read .btn-text:hover,
  section.read section.feature .content .list a:hover,
  section.feature .content .list section.read a:hover,
  section.read section.news .list a:hover,
  section.news .list section.read a:hover,
  section.read .pagination .page:hover,
  .pagination section.read .page:hover,
  section.read footer .sitemap .menu:hover,
  footer .sitemap section.read .menu:hover {
    margin: 0;
  }
  section.read .modal .content {
    -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
    z-index: 5;
    padding: 2em;
    border-radius: 5px;
    background: #fff;
  }
  section.read .modal .content h2 {
    color: #4e4e4e;
    text-align: center;
    margin: 0;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
  }
  section.link {
    padding: 4em 0;
  }
  section.link .grid .fast {
    width: 100%;
    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: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  section.link .grid .fast hr {
    width: 100px;
    border-color: #0082cc;
    margin-top: 1em;
  }
  section.link .grid .fast .list {
    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;
    text-align: center;
    margin: 2em;
  }
  section.kontak .maps {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
  }
  section.kontak .maps iframe {
    width: 100%;
    height: 100%;
  }
  section.kontak .grid {
    display: -ms-grid;
    display: grid;
    grid-gap: 2em;
    -ms-grid-columns: (minmax(48%, 1fr)) [auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
    margin: 4em auto;
  }
  section.kontak p {
    font-size: 14px;
    line-height: 22.652px;
  }
  section.kontak form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  section.kontak form * {
    outline: none;
  }
  section.kontak form > *:not(:last-child) {
    margin-bottom: 1em;
    padding: 10px 1em;
    border-radius: 5px;
    border: 1px solid #4e4e4e;
  }
  section.kontak form > *:not(:last-child)::-webkit-input-placeholder {
    font-size: 14px;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
  }
  section.kontak form > *:not(:last-child):-ms-input-placeholder {
    font-size: 14px;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
  }
  section.kontak form > *:not(:last-child)::-ms-input-placeholder {
    font-size: 14px;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
  }
  section.kontak form > *:not(:last-child)::placeholder {
    font-size: 14px;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
  }
  section.kontak form > *:not(:last-child):focus {
    border-color: #0082cc;
  }
  section.content-load {
    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: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    text-align: center;
    position: fixed;
    top: 0;
  }
  section.base {
    padding: 4em 0;
  }
  section.base h1,
  section.base h2,
  section.base span {
    text-align: center;
  }
  section.base h1 {
    font-size: 26px;
    line-height: 42.068px;
  }
  section.base h2 {
    font-size: 18px;
    line-height: 29.124px;
  }
  section.base ol,
  section.base p {
    font-size: 14px;
    line-height: 22.652px;
  }
  section.base a {
    color: #0082cc;
    font-weight: bold;
  }
  section.base a:hover {
    color: #4e4e4e;
  }
  section.base .grid > ol {
    margin: 2em 0;
  }
  section.base .grid > ol > li {
    margin: 2em 0;
  }
  .pagination {
    margin: 2rem 0;
    font-size: 18px;
    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: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .pagination span {
    font-weight: 500;
  }
  .pagination .page {
    margin-left: 1em;
  }
  .pagination .page a {
    color: #4e4e4e;
  }
  footer {
    padding: 2em 0;
    background: #f5f6f8;
  }
  footer .sitemap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  footer .sitemap .list {
    margin-right: 2em;
  }
  footer .sitemap .list i {
    margin-right: 10px;
    width: 20px;
  }
  footer .sitemap p.sub {
    font-weight: 500;
    font-size: 18px;
  }
  footer .sitemap .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1em;
    color: #4e4e4e;
  }
  footer .sitemap .menu:hover {
    margin-left: 0;
  }
  footer .sitemap .list:last-child {
    width: 300px;
  }
  footer .sitemap .list:last-child p.sub {
    font-size: 16px;
    line-height: 25.888px;
    margin-bottom: 0;
  }
  footer .sitemap .list:last-child a {
    display: inline;
    margin-right: 1em;
  }
  footer .sitemap .list:last-child img {
    width: auto;
    height: 30px;
  }
  footer .sitemap .list:last-child img:hover {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0.5;
  }
  footer hr {
    margin: 2em 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  footer .legal {
    display: -ms-grid;
    display: grid;
    grid-gap: 2em;
    -ms-grid-columns: (minmax(150px, 1fr)) [auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    text-align: center;
    justify-items: center;
    margin-bottom: 4em;
  }
  @media (min-width: 430px) {
    footer .legal .ojk {
      text-align: left;
    }
  }
  footer .legal h3 {
    font-weight: 500;
    font-size: 18px;
  }
  footer .legal h3 span {
    font-weight: 600;
    color: #e00106;
  }
  footer .legal p {
    margin: 0;
  }
  footer .legal img {
    width: auto;
    height: 50px;
    margin-bottom: 2em;
  }
  footer .type {
    font-size: 12px;
    line-height: 19.416px;
  }
  footer .type span {
    color: #0082cc;
    font-weight: 600;
  }
  

/**
 * CSS Grid
 */

 .row {
    position: relative;
    width: 100%;
  }
  
  .row [class^="col"] {
    float: left;
    margin: 0.5rem 2%;
    min-height: 0.125rem;
  }
  
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12 {
    width: 96%;
  }
  
  .col-1-sm {
    width: 4.33%;
  }
  
  .col-2-sm {
    width: 12.66%;
  }
  
  .col-3-sm {
    width: 21%;
  }
  
  .col-4-sm {
    width: 29.33%;
  }
  
  .col-5-sm {
    width: 37.66%;
  }
  
  .col-6-sm {
    width: 46%;
  }
  
  .col-7-sm {
    width: 54.33%;
  }
  
  .col-8-sm {
    width: 62.66%;
  }
  
  .col-9-sm {
    width: 71%;
  }
  
  .col-10-sm {
    width: 79.33%;
  }
  
  .col-11-sm {
    width: 87.66%;
  }
  
  .col-12-sm {
    width: 96%;
  }
  
  .row::after {
      content: "";
      display: table;
      clear: both;
  }
  
  .hidden-sm {
    display: none;
  }
  
  @media only screen and (min-width: 33.75em) {  /* 540px */
    .container {
      width: 80%;
    }
  }
  
  @media only screen and (min-width: 45em) {  /* 720px */
    .col-1 {
      width: 4.33%;
    }
  
    .col-2 {
      width: 12.66%;
    }
  
    .col-3 {
      width: 21%;
    }
  
    .col-4 {
      width: 29.33%;
    }
  
    .col-5 {
      width: 37.66%;
    }
  
    .col-6 {
      width: 46%;
    }
  
    .col-7 {
      width: 54.33%;
    }
  
    .col-8 {
      width: 62.66%;
    }
  
    .col-9 {
      width: 71%;
    }
  
    .col-10 {
      width: 79.33%;
    }
  
    .col-11 {
      width: 87.66%;
    }
  
    .col-12 {
      width: 96%;
    }
  
    .hidden-sm {
      display: block;
    }
  }
  
  @media only screen and (min-width: 60em) { /* 960px */
    .container {
      width: 75%;
      max-width: 60rem;
    }
  }
  
  @keyframes change-text {
    0% {
      content: "Masa Tua";
    }
    33.33% {
      content: "Dana Pendidikan";
    }
    66.66% {
      content: "DP Rumah";
    }
    100% {
      content: "Biaya Nikah";
    }
  }
  
  .text-looping-container {
    padding: 10px 15px;
    border-radius: 20px;
    background-color: #0193FE;
    color: #fff;
  }
  
  .text-looping {
    font-size: 2rem; 
  }
  .text-looping::after {
    content: "Masa Tua";
    animation: change-text 20s infinite;
  }

  html {
    box-sizing: border-box;
  }
  
  *, *:before, *:after {
    box-sizing: inherit;
  }
  
  .carousel {
    max-width: 1236px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 48px;
    padding-right: 48px;
    position: relative;
    padding-bottom: 50px;
    padding-top: 20px;
  }
  
  .container-carousel {
    max-width: 1236px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 48px;
    padding-right: 48px;
    position: relative;
    padding-bottom: 50px;
    padding-top: 20px;
    border-radius: 30px;
    box-shadow: 0 10px 50px 0 rgba(3, 3, 37, 0.1);
  }
  
  .carousel__activator {
    display: none;
  }
  
  .carousel__controls {
    display: none;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0;
    right: 16px;
    left: 16px;
    bottom: 0;
  }
  .carousel__controls:first-of-type {
    justify-content: flex-end;
  }
  .carousel__controls:last-of-type {
    justify-content: flex-start;
  }
  
  .carousel__control {
    cursor: pointer;
    display: flex;
    align-items: center;
    background-color: #fff;
    color: #3d414a;
    border-radius: 100%;
    box-shadow: 0 2px 10px 0 rgba(33, 34, 36, 0.3);
    font-size: 24px;
    height: 48px;
    justify-content: center;
    transition: 0.3s all;
    width: 48px;
    z-index: 1;
  }
  .carousel__control:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  
  .carousel__activator:nth-of-type(1):checked
  ~ .carousel__controls:nth-of-type(1) {
    display: flex;
  }
  
  .carousel__activator:nth-of-type(1):checked
  ~ .carousel__screen
  .carousel__track {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  
  .carousel__activator:nth-of-type(2):checked
  ~ .carousel__controls:nth-of-type(2) {
    display: flex;
  }
  
  .carousel__activator:nth-of-type(2):checked
  ~ .carousel__screen
  .carousel__track {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  
  .carousel__activator:nth-of-type(3):checked
  ~ .carousel__controls:nth-of-type(3) {
    display: flex;
  }
  
  .carousel__activator:nth-of-type(3):checked
  ~ .carousel__screen
  .carousel__track {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  
  .carousel__activator:nth-of-type(4):checked
  ~ .carousel__controls:nth-of-type(4) {
    display: flex;
  }
  
  .carousel__activator:nth-of-type(4):checked
  ~ .carousel__screen
  .carousel__track {
    -webkit-transform: translateX(-300%);
            transform: translateX(-300%);
  }
  
  .carousel__activator:nth-of-type(5):checked
  ~ .carousel__controls:nth-of-type(5) {
    display: flex;
  }
  
  .carousel__activator:nth-of-type(5):checked
  ~ .carousel__screen
  .carousel__track {
    -webkit-transform: translateX(-400%);
            transform: translateX(-400%);
  }
  
  .carousel__activator:nth-of-type(6):checked
  ~ .carousel__controls:nth-of-type(6) {
    display: flex;
  }
  
  .carousel__activator:nth-of-type(6):checked
  ~ .carousel__screen
  .carousel__track {
    -webkit-transform: translateX(-500%);
            transform: translateX(-500%);
  }
  
  .carousel__activator:nth-of-type(7):checked
  ~ .carousel__controls:nth-of-type(7) {
    display: flex;
  }
  
  .carousel__activator:nth-of-type(7):checked
  ~ .carousel__screen
  .carousel__track {
    -webkit-transform: translateX(-600%);
            transform: translateX(-600%);
  }
  
  .carousel__activator:nth-of-type(8):checked
  ~ .carousel__controls:nth-of-type(8) {
    display: flex;
  }
  
  .carousel__activator:nth-of-type(8):checked
  ~ .carousel__screen
  .carousel__track {
    -webkit-transform: translateX(-700%);
            transform: translateX(-700%);
  }
  
  .carousel__activator:nth-of-type(9):checked
  ~ .carousel__controls:nth-of-type(9) {
    display: flex;
  }
  
  .carousel__activator:nth-of-type(9):checked
  ~ .carousel__screen
  .carousel__track {
    -webkit-transform: translateX(-800%);
            transform: translateX(-800%);
  }
  
  .carousel__activator:nth-of-type(10):checked
  ~ .carousel__controls:nth-of-type(10) {
    display: flex;
  }
  
  .carousel__activator:nth-of-type(10):checked
  ~ .carousel__screen
  .carousel__track {
    -webkit-transform: translateX(-900%);
            transform: translateX(-900%);
  }
  
  .carousel__screen {
    overflow: hidden;
    margin-left: -16px;
    margin-right: -16px;
  }
  
  .carousel__track {
    font-size: 0;
    transition: all 0.3s ease 0s;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  
  .carousel__item {
    display: inline-flex;
    padding-left: 16px;
    padding-right: 16px;
    vertical-align: top;
    white-space: normal;
  }
  
  .carousel__item--desktop-in-1 {
    width: 100%;
  }
  
  .carousel__item--desktop-in-2 {
    width: 50%;
  }
  
  .carousel__item--desktop-in-3 {
    width: 33.3333333333%;
  }
  
  .carousel__item--desktop-in-4 {
    width: 25%;
  }
  
  .carousel__item--desktop-in-5 {
    width: 20%;
  }
  
  
  
  .demo-content {
    color: #000;
    font-weight: 100;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    font-size: 12pt;
    width: 100%;
    text-align: center;
  }
  
  @media screen and (max-width: 1023px) {
    .carousel {
      padding-left: 0;
      padding-right: 0;
    }
  
    .carousel__activator:nth-of-type(n):checked ~ .carousel__controls:nth-of-type(n) {
      display: none;
    }
    .carousel__activator:nth-of-type(n):checked ~ .carousel__screen .carousel__track {
      -webkit-transform: none;
              transform: none;
    }
  
    .carousel__screen {
      margin-left: 0;
      margin-right: 0;
    }
  
    .carousel__track {
      overflow-x: auto;
      width: auto;
      padding-left: 48px;
      padding-right: 48px;
    }
  
    .carousel__item--tablet-in-1 {
      width: 90%;
    }
  
    .carousel__item--tablet-in-2 {
      width: 45%;
    }
  
    .carousel__item--tablet-in-3 {
      width: 30%;
    }
  }
  @media screen and (max-width: 650px) {
    .carousel__track {
      padding-left: 0;
      padding-right: 0;
    }
  
    .carousel__item--mobile-in-1 {
      width: 90%;
    }
  
    .carousel__item--mobile-in-2 {
      width: 45%;
    }
  
    .carousel__item--mobile-in-3 {
      width: 30%;
    }
  }
  
  

.toggle,
[id^=drop] {
	display: none;
}

/* Giving a background-color to the nav container. */
nav { 
	margin:0;
	padding: 0;
	background-color: #fff;
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 30px;
  box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 2;
  background: #fff;
  width: 90%;
  margin: auto;
  padding: 10px;
}

#logo {
	display: block;
	padding: 0 30px;
	float: left;
	font-size:22px;
    font-weight: 700;
    color: #000;
}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
	content:"";
	display:table;
	clear:both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
	float: right;
	padding:0;
	margin:0;
	list-style: none;
	position: relative;
	}
	
/* Positioning the navigation items inline */
nav ul li {
	margin: 0px;
	display:inline-block;
	float: left;
}

/* Styling the links */
nav a {
	display:block;
	padding:30px;	
  color: #000;
	font-size:17px;
	text-decoration:none;
}

nav ul li ul:before {
  content:"\A";
  border-style: solid;
  border-width: 0 20px 30px 20px;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  left: 45%;
  top: -30px;
}


nav ul li ul li:hover { 
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
	display: none;
	position: absolute; 
	/* has to be the same number as the "line-height" of "nav a" */
	top: 105px; 
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.1);
}
	
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display:inherit;
  margin-left: -25%;
}
	
/* Fisrt Tier Dropdown */
nav ul ul li {
	width:170px;
	float:none;
	position: relative;
  text-align: center;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
	position: relative;
	top:-60px;
	/* has to be the same number as the "width" of "nav ul ul li" */ 
	left:170px; 
}

/* Media Queries
--------------------------------------------- */

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

	#logo {
		display: block;
		padding: 0;
		width: 100%;
		text-align: center;
		float: none;
	}

	/* Hide the navigation menu by default */
	/* Also hide the  */
	.toggle + a,
	.menu {
		display: none;
	}

	/* Stylinf the toggle lable */
	.toggle {
		display: block;
		padding:20px 30px;
		font-size:17px;
		text-decoration:none;
		border:none;
    
	}

	.toggle:hover {
	}

	/* Display Dropdown when clicked on Parent Lable */
	[id^=drop]:checked + ul {
		display: block;
	}

	/* Change menu item's width to 100% */
	nav ul li {
		display: block;
		width: 100%;
		}

	nav ul ul .toggle,
	nav ul ul a {
		padding: 0 40px;
	}

	nav ul ul ul a {
		padding: 0 80px;
	}

	nav a:hover,
 	nav ul ul ul a {
    
	}
  
	nav ul li ul li .toggle,
	nav ul ul a,
  nav ul ul ul a{
		padding:10px!important;	
		color:#FFF;
		font-size:17px; 
	}
  
  
	nav ul li ul li .toggle,
	nav ul ul a {
    color: #000;
	}

	/* Hide Dropdowns by Default */
	nav ul ul {
		float: none;
		position:static;
		color: #ffffff;
    box-shadow: none;
		/* has to be the same number as the "line-height" of "nav a" */
	}
		
	/* Hide menus on hover */
	nav ul ul li:hover > ul,
	nav ul li:hover > ul {
		display: none;
    margin: 0px;
	}
		
	/* Fisrt Tier Dropdown */
	nav ul ul li {
		display: block;
		width: 100%;
    text-align: left;
    padding-left: 40px;
	}

	nav ul ul ul li {
		position: static;
		/* has to be the same number as the "width" of "nav ul ul li" */ 

	}

	nav ul ul a img {
		width: 10%;
	}

  nav a {
    padding: 20px 30px;
  }

}

@media all and (max-width : 330px) {

	nav ul li {
		display:block;
		width: 94%;
	}

}

.wrapper {
  margin: 50px auto;
  width: 280px;
  height: 370px;
  background: white;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 8px rgba(0,0,0,0.3);
  -moz-box-shadow:    0px 0px 8px rgba(0,0,0,0.3);
  box-shadow:         0px 0px 8px rgba(0,0,0,0.3);
  position: relative;
  z-index: 90;
}

.ribbon-wrapper-red {
  width: 85px;
  height: 88px;
  overflow: hidden;
  position: absolute;
  top: -3px;
  right: -3px;
}
.ribbon-wrapper-green {
  width: 85px;
  height: 88px;
  overflow: hidden;
  position: absolute;
  top: -3px;
  left: -3px;
}

.ribbon-red {
    font: bold 15px;
    color: #fff;
    text-align: center;
    text-shadow: rgba(255,255,255,0.5) 0px 1px 0px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    position: relative;
    padding: 7px 0;
    left: -5px;
    top: 15px;
    width: 120px;
    background-color: #ea181e;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#ea181e), to(#b90005));
    background-image: -webkit-linear-gradient(top, #ea181e, #b90005);
    background-image: -moz-linear-gradient(top, #BFDC7A, #8EBF45);
    background-image: -ms-linear-gradient(top, #BFDC7A, #8EBF45);
    background-image: -o-linear-gradient(top, #BFDC7A, #8EBF45);
    color: #fff;
    -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
    box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
}

.ribbon-red:before,
.ribbon-red:after{
  content: "";
  border-top: 3px solid #b90005;   
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  position:absolute;
  bottom: -3px;
}

.ribbon-red:before{
  left: 0;
}

.ribbon-red:after{
  right: 0;
}
.blocker {
  z-index: 9!important;
}
.modal {
  z-index: 10;
}
.form-control {
  font-size: max(16px, 1em);
  font-family: inherit;
  padding: 0.75em;
  background-color: #fff;
  border: 1px solid#ccc;
  border-radius: 10px;
  width: 100%;
}

.tabs {
	display: flex;
	flex-wrap: wrap; 
}
.tabs label {
	order: 1; 
	display: block;
	padding: 1rem 2rem;
	margin-right: 0.2rem;
	cursor: pointer;
  font-weight: bold;
  transition: background ease 0.2s;
}
.tabs .tab {
  order: 99; 
  flex-grow: 1;
	width: 100%;
	display: none;
  padding: 1rem;
  background: #fff;
  margin-top: 30px;
}
.tabs input[type="radio"] {
	display: none;
}
.tabs input[type="radio"]:checked + label {
	border-bottom: 2px solid #0193FE;
  color: #0193FE;
}
.tabs input[type="radio"]:checked + label + .tab {
	display: block;
}

@media (max-width: 45em) {
  .tabs .tab,
  .tabs label {
    order: initial;
  }
  .tabs label {
    width: 100%;
    margin-right: 0;
    margin-top: 0.2rem;
  }
}

.dca-explain-img{
  width: 50%;
}