:root {
    --primary:#0099ff;
    --primary-dark:#00216f;
    --primary-orange:#ff7200;
    --primary-light:#e1f5ff;
    
  --text-muted: #9A9A9A;

  --success-inverse: #ffffff;
  --info-inverse: #ffffff;
  --warning-inverse: #ffffff;
  --danger-inverse: #ffffff;
  --dark-inverse: #ffffff;
  --primary-inverse: #ffffff;
  --white-inverse: #ffffff;
  --white-light: #ffffff;
}

a{
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
}

* {
    /* font-family: 'Poppins'; */
    font-family: "Roboto" !important;
    /* font-family: "Roboto Condensed"; */
    scroll-behavior: smooth;
}

body {
    position: relative;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

.text-primary{
    color: var(--primary) !important;
}
.text-primary-dark{
    color: var(--primary-dark) !important;
}
.text-primary-orange{
    color: var(--primary-orange) !important;
}
.text-white{
    color: #fff !important;
}

.justify-start {
    display: flex;
    justify-content: start;
    align-items: center;
}

.justify-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.justify-sb {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.justify-end {
    display: flex;
    justify-content: end;
    align-items: center;
}

.w-100 {
    width: 100% !important;
}

.bg-primary {
    background: var(--primary);
}

.introPage {
    width: 100%;
    height: 100vh;
    z-index: 2000;
    position: fixed;
    top: 0;
    transition: 1s ease-in-out;
    /* opacity: 1; */
}

.introPage.active{
    top: -100vh;
    /* opacity: 0; */
}


.introPage .bg {
    width: 100%;
    height: 100vh;
    position: absolute;
    object-fit: cover;
    z-index: -1;
}

.introPage .navIntro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: calc(100% - 40px);
    padding: 16px 20px;
    z-index: 99;
}

.introPage .navIntro .navLogo {
    position: relative;
    text-decoration: none;
    width: 180px;
    top: 60px;
    left: 49px;
}

.introPage .content {
    position: relative;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.introPage .content .pageSearch {
    display: flex;
    justify-content: start;
    align-items: center;
    position: relative;
    width: 100%;
    height: calc(100vh - 32px);
    padding-left: 3.3rem;
}

.introPage .content .pageSearch .bintangImg {
    width: 280px;
}

.introPage .content .pageSearch .tag {
    position: relative;
    font-size: 10px;
    font-weight: 300;
    color: #fff;
    margin-top: 10px;
    padding-right: 2rem;
}

.introPage .content .pageSearch .containerForm {
    position: relative;
    width: 65%;
    margin-top: 3.4rem;
}

.introPage .content .pageSearch .containerForm input {
    font-family: 'Roboto' !important;
    position: relative;
    /* width: calc(100% - 4.8rem); */
    width: 100%;
    height: 42px;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    padding-left: 1.4rem;
    padding-right: 3.4rem;
    border-radius: 20px;
    background: #ffffff13;
    border: none;
    outline: none;
    transition: .4s;
}

.introPage .content .pageSearch .containerForm input::placeholder {
    font-weight: 300;
    color: #ffffff9c;
}

.introPage .content .pageSearch .containerForm input:focus {
    background: #ffffff20;
    box-shadow: 0px 6px 10px 0px rgba(5, 5, 5, 0.03);
    transition: .4s;
}

.introPage .content .pageSearch .containerForm i {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translate(-50%, -50%);
    font-size: 22px;
    color: #fff;
}

.introPage .content .pageCard {
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
    height: calc(100vh - 32px);
    padding-right: 2rem;
}

.introPage .content .pageCard .containers {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 2rem;
}

.introPage .content .pageCard .containers .secondCard {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
}

.introPage .content .pageCard a {
    position: relative;
    text-decoration: none;
}

.introPage .content .pageCard a:hover .cards {
    border-top: 3px solid #000000c4;
    border-bottom: 3px solid #000000c4;
    transition: .4s;
    background: var(--primary);
}

.introPage .content .pageCard a:hover .icon {
    background: #000;
    transition: .4s;
}

.introPage .content .pageCard .cards {
    position: relative;
    max-width: 240px;
    padding: 1.4rem 2rem;
    border-radius: 20px;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    background: #00000074;
    text-decoration: none;
    transition: .4s;
}

.introPage .content .pageCard .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -14px;
    right: -14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #000;
    transition: .4s;
}

.introPage .content .pageCard .icon i {
    font-size: 20px;
    color: #fff;
}

.introPage .content .pageCard .title {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    text-align: right;
}

.introPage .content .pageCard .desc {
    position: relative;
    height: 95px;
    font-size: 12px;
    font-weight: 300;
    color: #fff;
    text-align: right;
    line-height: 24px;
    margin-top: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.switchLanguage {
    position: relative;
    display: inline-block;
}

.switchLanguage span {
    position: absolute;
    top: 8px;
    pointer-events: none;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    width: 50%;
    text-align: center;
    text-decoration: none;
}

.switchLanguage input.check-toggle-round-flat:checked ~ .off {
    color: #fff;
}

.switchLanguage input.check-toggle-round-flat:checked ~ .on {
    color: #fff;
}

.switchLanguage span.on {
    right: 0;
    color: #fff;
}

.switchLanguage span.off {
    left: 2px;
    color: #fff;
}

.switchLanguage span.active{
   top: 4px;
   right: 4px;
   bottom: 4px;
   width: 24px;
   background-color: var(--primary);
   border-radius: 50%;
   transition: margin 0.2s;
   padding-top: 5px;
}

.switchLanguage .check-toggle {
    position: absolute;
    visibility: hidden;
}

.switchLanguage .check-toggle + label {
    display: block;
    position: relative;
    cursor: pointer;
}

.switchLanguage input.check-toggle-round-flat + label {
    padding: 2px;
    width: 58px;
    height: 27px;
    background: #000000bd;
    border-radius: 20px;
}

.switchLanguage input.check-toggle-round-flat + label:before, .switchLanguage input.check-toggle-round-flat + label:after {
    display: block;
    position: absolute;
    content: "";
}

.switchLanguage input.check-toggle-round-flat + label:after {
    top: 4px;
    right: 4px;
    bottom: 4px;
    width: 24px;
    /* background-color: var(--primary); */
    border-radius: 50%;
    transition: margin 0.2s;
}

.switchLanguage input.check-toggle-round-flat:checked + label:after {
    margin-right: 30px;
}

.navbar {
    position: fixed;
    top: 4rem;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    z-index: 1500;
    transition: .3s;
    background: #00000037;
    /* margin: 38px 110px; */
    /* backdrop-filter: blur(45px); */
    border-radius: 15px;
}

/* .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1500;
    transition: .3s;
    background: #0000000f;
    margin: 38px 0;
    backdrop-filter: blur(45px);
    border-radius: 15px;
} */

.navbar .navMenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.6rem;
    transition: .3s;
}

.navbar .navMenu .navLogo img {
    width: 60px;
    transition: .3s;
    margin-right: 19px;
    filter: grayscale(33) brightness(46.5);
    margin-top: 1px;
}

.navbar .navMenu .containerNav {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1rem;
}

.navbar .navMenu .containerNav .listMenu {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 2rem;
    list-style: none;
    text-decoration: none;
    text-align: center;
    width: 700px;
}

.navbar .navMenu .containerNav .listMenu .menu {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: .5rem;
    transition: .3s;
}

.navbar .navMenu .containerNav .listMenu .menu a, .navbar .navMenu .containerNav .listMenu .menu i {
    font-size: 12px;
    font-weight: 800;
    color: #e7e7e7;
    text-decoration: none;
    text-transform: uppercase;
    transition: .3s;
}

.navbar.white .navMenu .containerNav .listMenu .menu a, .navbar .navMenu .containerNav .listMenu .menu i {
    color: #3b3b3b;
}

.navbar .navMenu .containerNav .menuMobile {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 30px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    transition: .3s;
}

.navbar .navMenu .containerNav .menuMobile i {
    font-size: 26px;
    color: #000000bd;
    transition: .3s;
}

.navbar .navMenu .menuSearch {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #000000bd;
    border: none;
    outline: none;
    cursor: pointer;
    transition: .3s;
}

.navbar .navMenu .menuSearch i {
    font-size: 16px;
    color: #fff;
    transition: .3s;
    margin-top: 2px;
}

.navbar.white {
    /* position: fixed;
    top: 0;
    left: 0;
    width: 98%; */
    transition: .3s;
    background: none;
    /* margin: 19px; */
    top: 35px;
}

.navbar.white .navMenu {
    /* background: #00000059; */
    /* backdrop-filter: blur(6px); */
    transition: .3s;
}

.navbar.white .navMenu .navLogo img {
    filter: none;
    transition: .3s;
}

.navbar .megaMenu .menu {
    position: relative;
}

.navbar .megaMenu .menu:before {
    content: '';
    position: absolute;
    top: 100%;
    width: 100%;
    height: 27px;
    transition: all .2s ease;
}

.navbar .megaMenu:hover ~ .backdropMenu {
    /* opacity: 1; */
    /* visibility: visible; */
}

.navbar .megaMenu:hover .menu:before {
    border-bottom: 2px solid #fff;
    transition: all .2s ease;
}

.navbar .megaMenu:hover .wrapperMenu {
    max-height: 85vh;
    visibility: visible;
    opacity: 1;
}

.navbar .megaMenu .wrapperMenu {
    position: absolute;
    background: #fff;
    top: 102%;
    left: 0;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease;
    border-radius: 14px;
    filter: drop-shadow(-15px 16px 25px #00000050);
    z-index: 99;
}

.navbar .megaMenu .wrapperMenu.xl {
    width: 100%;
}

.navbar .megaMenu .wrapperMenu.lg {
    width: 100%;
}

.navbar .megaMenu .wrapperMenu.md {
    width: 650px;
}

.navbar .megaMenu .wrapperMenu .contentMenu {
    padding: 1.8rem 2.8rem;
}

.navbar .megaMenu .wrapperMenu .contentMenu .title {
    font-size: 14px;
    font-weight: 500;
    color: #373737;
    text-align: left;
    text-transform: uppercase;
}

.navbar .megaMenu .wrapperMenu .contentMenu .title span {
    font-weight: 600;
    color: var(--primary);
}

.navbar .megaMenu .wrapperMenu .contentMenu .subtitle {
    font-size: 12px;
    font-weight: 300;
    color: #373737;
    margin-top: 4px;
    text-align: left;
}

.navbar .megaMenu .wrapperMenu .contentMenu .grid {
    position: relative;
    padding-right: 6rem;
}

.navbar .megaMenu .wrapperMenu .contentMenu .grid:after {
    content: '';
    position: absolute;
    top: 4px;
    right: 3rem;
    width: 1px;
    height: calc(100% - 2rem);
    background: #f1f1f1;
}

.navbar .megaMenu .wrapperMenu .containerMenu {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: start;
    width: 100%;
    padding-right: 2px;
    margin-top: 1rem;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 550px;
}

.navbar .megaMenu .wrapperMenu .containerMenu::-webkit-scrollbar {
    width: 4px;
}

.navbar .megaMenu .wrapperMenu .containerMenu::-webkit-scrollbar-thumb {
    background: #e0e0e0;
}

.navbar .megaMenu .wrapperMenu .containerMenu::-webkit-scrollbar-track {
    background: #f7f7f7;
}

.navbar .megaMenu .wrapperMenu .containerMenu .fixWidth {
    width: 176px !important;
}

.navbar .megaMenu .wrapperMenu .containerMenus {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    width: 100%;
    padding-right: 2px;
    overflow-y: auto;
    overflow-x: hidden;
}

.navbar .megaMenu .wrapperMenu .containerMenus::-webkit-scrollbar {
    width: 4px;
}

.navbar .megaMenu .wrapperMenu .containerMenus::-webkit-scrollbar-thumb {
    background: #e0e0e0;
}

.navbar .megaMenu .wrapperMenu .containerMenus::-webkit-scrollbar-track {
    background: #f7f7f7;
}

.navbar .megaMenu .wrapperMenu .menuLink {
    position: relative;
    text-decoration: none;
}

.navbar .megaMenu .wrapperMenu .menuLink:hover .containers {
    background: #daf0ff;
    transition: .2s;
}

.navbar .megaMenu .wrapperMenu .menuLink:hover .containers .icon i {
    color: var(--primary);
    transition: .2s;
}


.navbar .megaMenu .wrapperMenu .menuLink.activeCurrent .containers {
    background: #f5f5f5;
    transition: .2s;
}

.navbar .megaMenu .wrapperMenu .menuLink.activeCurrent .containers .icon i {
    color: var(--primary);
    transition: .2s;
}

.navbar .megaMenu .wrapperMenu .menuLink .containers {
    display: flex;
    justify-content: start;
    align-items: center;
    position: relative;
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 4px;
    transition: .2s;
    gap: 13px;
}

.navbar .megaMenu .wrapperMenu .menuLink .containers .icon {
    width: 35px;
}

.navbar .megaMenu .wrapperMenu .menuLink .containers .icon i {
    font-size: 18px;
    color: #E2E2E2;
    transition: .2s;
}

.navbar .megaMenu .wrapperMenu .menuLink .containers .text {
    position: relative;
    /* width: 200px; */
    width: 100%;
    text-align: left;
}

.navbar .megaMenu .wrapperMenu .menuLink .containers .title {
    font-size: 12px;
    font-weight: 500;
    color: #343434;
    text-transform: uppercase;
}

.navbar .megaMenu .wrapperMenu .menuLink .containers .subtitle {
    font-size: 11px;
    font-weight: 300;
    color: #343434;
    margin-top: 3px;
}

.navbar .megaMenu .wrapperMenu .navWrapper {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1.4rem;
    width: 100%;
    margin-top: 1rem;
    border-bottom: 1px solid #eee;
}

.navbar .megaMenu .wrapperMenu .navWrapper .tablink {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: #bbb;
    padding: 8px 0;
    text-transform: uppercase;
    border-color: transparent;
    background: transparent;
    outline: none;
    cursor: pointer;
    transition: .4s;
}

.navbar .megaMenu .wrapperMenu .navWrapper .tablink:hover {
    color: var(--primary);
    transition: .4s;
}

.navbar .megaMenu .wrapperMenu .navWrapper .tablink.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    transition: .4s;
}

.navbar .megaMenu .wrapperMenu .tabWrapper {
    position: relative;
    width: 100%;
}

.navbar .megaMenu .wrapperMenu .tabWrapper .tabs {
    position: relative;
}

.navbar .megaMenu .wrapperMenu .tabWrapper .tabs .shortcutMenu {
    position: relative;
    margin-bottom: 14px;
}

.navbar .megaMenu .wrapperMenu .tabWrapper .tabs .shortcutMenu:hover img {
    filter: brightness(100%);
}

.navbar .megaMenu .wrapperMenu .tabWrapper .tabs .shortcutMenu:hover .desc .title {
    /* color:#000; */
}

.navbar .megaMenu .wrapperMenu .tabWrapper .tabs .shortcutMenu img {
    width: 100%;
    height: 240px;
    transition: 0.5s ease;
    border-radius: 15px;
    object-fit: cover;
    filter: brightness(40%);
}

.navbar .megaMenu .wrapperMenu .tabWrapper .tabs .shortcutMenu .desc {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translate(-50%);
    z-index: 4;
    width: 100%;
    height: 60px;
    transition: .4s;
}

.navbar .megaMenu .wrapperMenu .tabWrapper .tabs .shortcutMenu .desc .title {
    position: relative;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    padding: 0 .8rem;
    text-transform: uppercase;
    text-align: center;
    z-index: 99;
    transition: .4s;
}

.navbar .megaMenu .wrapperMenu .tabWrapper .tabs .shortcutMenu .mask {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    height: 170px;
    opacity: 0;
    border-radius: 0px 0px 10px 10px;
    background: linear-gradient(0deg, #242424, rgba(26, 30, 63, 0) 80.56%);
    transition: opacity .4s;
}

.navbar .megaMenu .wrapperMenu .tabWrapper .tabs .shortcutMenu:hover .mask {
    transition: opacity .4s;
    opacity: 1;
}

.navbar .megaMenu .wrapperMenu .tabWrapper .tabs:first-child {
    display: block;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
}

.navbar .megaMenu .wrapperMenu .tabWrapper .tabs {
    display: none;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
}

@-webkit-keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.navbar .backdropMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #00000090;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s;
}

.listMenuMobile {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    list-style: none;
    text-decoration: none;
    background: linear-gradient(180deg, rgb(0 16 24) 0%, rgb(12, 47, 64) 39%, rgb(0, 0, 0) 100%);
    transition: .4s;
    z-index: 9999;
}

.listMenuMobile.out {
    transform: translateX(-100%);
    transition: .4s;
}

.listMenuMobile .bg-side {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .1;
    object-fit: cover;
    z-index: -1;
}

.listMenuMobile .accordion {
    position: relative;
    max-height: 75vh;
    overflow-y: auto;
    padding: 34px;
}

.listMenuMobile .accordion::-webkit-scrollbar {
    width: 0;
}

.listMenuMobile .accordion::-webkit-scrollbar-thumb {
    background: transparent;
}

.listMenuMobile .accordion::-webkit-scrollbar-track {
    background: transparent;
}

.listMenuMobile input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.listMenuMobile input[type="checkbox"] ~ .menuContent {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;
}

.listMenuMobile input[type="checkbox"]:checked ~ .menuContent {
    max-height: 1000px;
}

.listMenuMobile input[type="checkbox"]:checked ~ label i {
    transform: rotate(90deg);
    transition: .3s;
}

.listMenuMobile input[type="checkbox"]:checked ~ .menuContent {
    background: #0000005c;
    backdrop-filter: blur(22px);
    margin-bottom: 20px;
}

.listMenuMobile .containerMenuMobile {
    position: relative;
    /* margin-bottom: 12px; */
}

.listMenuMobile .containerMenuMobile label {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 38px;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
}

.listMenuMobile .containerMenuMobile label .name
.listMenuMobile .containerMenuMobile label .name .menuLink {
    font-family: 'Roboto' !important;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.listMenuMobile .containerMenuMobile label i {
    font-size: 18px;
    color: #fff;
    transition: .3s;
}

.listMenuMobile .containerMenuMobile .menuContent {
    position: relative;
    width: calc(100% - 36px);
    padding: 0 18px;
    border-radius: 20px;
    margin-top: 18px;
}

.listMenuMobile .containerMenuMobile .menuContent .containers {
    position: relative;
    margin: 1rem 0;
}

.listMenuMobile .containerMenuMobile .menuContent .title {
    font-family: 'Roboto' !important;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    padding-bottom: 4px;
    margin-bottom: 8px;
    border-bottom: 1px solid #ffffff40;
}

.listMenuMobile .containerMenuMobile .menuContent a {
    font-family: 'Roboto' !important;
    position: relative;
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    text-transform: uppercase;
}

.listMenuMobile .containerMenuMobile .menuContent a:hover {
    background: #ffffff40;
}

.wrapperSearchData {
    position: fixed;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0px;
    width: 0px;
    border-radius: 50%;
    background: #000000d6;
    backdrop-filter: blur(6px);
    transition: all 0.4s linear;
    z-index: 200000;
}

.wrapperSearchData.active {
    height: 4000px;
    width: 4000px;
}

.wrapperSearchData .closeSearch span {
    color: #fff;
    font-size: 22px;
    line-height: 60px;
}

.wrapperSearchData .searchData {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
}

.wrapperSearchData .searchData .title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    position: relative;
    margin-bottom: 2rem;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
}

.wrapperSearchData .searchData .title .highlight {
    font-weight: 600;
    color: var(--primary);
}

.wrapperSearchData .searchData .searchInput {
    position: relative;
}

.wrapperSearchData .searchData input {
    height: 100%;
    width: 440px;
    background: none;
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: #eee;
}

.wrapperSearchData .searchData input::placeholder {
    color: #eee;
}

.wrapperSearchData .searchData .line {
    position: absolute;
    top: 35px;
    left: 0;
    height: 1px;
    width: 100%;
    background: #fff;
    transform: scaleX(0);
    transition: transform 0.4s 0.3s linear;
}

.wrapperSearchData .searchData .line.active {
    transform: scaleX(1);
}

.wrapperSearchData .searchData i {
    color: #fff;
    position: absolute;
    width: 50px;
    font-size: 22px;
    right: -1.4rem;
    top: 4px;
    cursor: pointer;
}

.wrapperSearchData .searchData .predictSearch {
    position: relative;
    width: 100%;
    list-style: none;
    padding: 0;
    margin-top: 3rem;
}

.wrapperSearchData .searchData .predictSearch .text {
    position: relative;
    font-size: 12px;
    color: #ccc;
}

.wrapperSearchData .searchData .predictSearch .containerPredict {
    position: relative;
    width: 450px;
    padding-right: 2rem;
    max-height: 65vh;
    overflow-y: auto;
}

.wrapperSearchData .searchData .predictSearch .containerPredict::-webkit-scrollbar {
    width: 4px;
}

.wrapperSearchData .searchData .predictSearch .containerPredict::-webkit-scrollbar-thumb {
    background: #ffffff40;
    border-radius: 10px;
}

.wrapperSearchData .searchData .predictSearch .containerPredict::-webkit-scrollbar-track {
    background: #ffffff20;
    border-radius: 10px;
}

.wrapperSearchData .searchData .predictSearch a {
    position: relative;
    text-decoration: none;
}

.wrapperSearchData .searchData .predictSearch a .containers {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.wrapperSearchData .searchData .predictSearch a .containers .img {
    position: relative;
    width: 80px;
}

.wrapperSearchData .searchData .predictSearch a .containers .img img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
}

.wrapperSearchData .searchData .predictSearch a .desc {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    position: relative;
    height: 80px;
}

.wrapperSearchData .searchData .predictSearch a .name {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
}

.wrapperSearchData .searchData .predictSearch a .subname {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: .2s;
}

.wrapperSearchData .searchData .predictSearch a:hover .subname {
    text-decoration: underline;
    transition: .2s;
}

.closeSearch {
    position: fixed;
    right: 45px;
    top: 25px;
    gap: 12px;
    cursor: pointer;
    z-index: 99999;
}

.closeSearch .containers {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #fff;
}

.closeSearch .containers i {
    font-size: 18px;
}

.searchData, .searchData span,
.searchData input, .closeSearch {
    display: none;
}

.text-dark {
    color: #373737 !important;
}

.text-blue {
    color: var(--primary) !important;
}

.text-center {
    text-align: center !important;
}

.fw-light {
    font-weight: 400 !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 600 !important;
}

.fw-strong {
    font-weight: 700 !important;
}

.w-100px {
    width: 100px !important;
}

.btnDownload {
    font-family: 'Roboto' !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    gap: 10px;
    border-radius: 20px;
    background: #0099ff20;
    color: var(--primary);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s ease;
}

.btnDownload i {
    font-size: 16px;
    color: var(--primary);
}

.btnDownload:hover {
    box-shadow: 0px 6px 10px 0px rgba(0, 138, 218, 0.137);
    transition: all .2s ease;
}

.containerTable {
    position: relative;
    width: 100%;
}

table {
    width: 100%;
    border-spacing: 0;
}

table thead th {
    font-family: 'Roboto' !important;
    text-align: left;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #373737;
}

table thead tr:first-child th:first-child {
    border-radius: 14px 0 0 0;
}

table thead tr:first-child th:last-child {
    border-radius: 0 14px 0 0;
}

table tbody td {
    font-family: 'Roboto' !important;
    text-align: left;
    padding: 10px 18px;
    background: #c2c2c215;
    font-size: 12px;
    font-weight: 600;
    color: #373737;
    border-bottom: 1px solid #f1f1f1;
}

table tbody tr:first-child td:first-child {
    border-radius: 26px 0 0 0;
}

table tbody tr:first-child td:last-child {
    border-radius: 0 26px 0 0;
}

table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 26px;
}

table tbody tr:last-child td:last-child {
    border-radius: 0 0 26px 0;
}

.pointer {
    cursor: pointer;
}

.containerForm {
    position: relative;
    width: 100% !important;
}

.containerForm .label {
    font-family: 'Roboto' !important;
    font-size: 12px;
    font-weight: 500;
    color: #7A7A7A;
    margin-bottom: 8px;
}

.containerForm .selectInput {
    font-family: 'Roboto' !important;
    background: #EDF7FD !important;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    height: 38px !important;
    border-radius: 20px !important;
    text-align: center;
}

.formGroup {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
}

.formGroup .selectGroup {
    position: absolute;
    top: 0;
    left: -1px;
    background: #EDF7FD !important;
    color: #373737;
    width: 100%;
    height: 38px !important;
    border-radius: 20px !important;
    text-align: center;
}

.formGroup .inputGroup {
    text-align: right !important;
    border-radius: 20px !important;
}

input.form-control {
    width: calc(100% - 1.1rem);
}

.form-control {
    font-family: 'Roboto' !important;
    display: block;
    width: 100%;
    padding: 0 14px;
    height: 36px !important;
    font-size: 14px;
    font-weight: 400;
    border-radius: 20px;
    color: #7E8882;
    margin-bottom: 1rem;
    border: 1px solid #EDF7FD;
    background: #fff;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    color: #181C32;
    background-color: #ffffff;
    border-color: #e5e5e9;
    outline: 0;
}

.form-control::placeholder {
    font-size: 14px;
    color: #D0D0D0;
    font-weight: 400;
    opacity: 1;
}

.card {
    position: relative;
    display: flex;
    padding: 28px;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    text-decoration: none;
    border-radius: 30px;
    margin-bottom: 1.4rem;
    background: #fff;
    transition: 1s all;
}

.backdropShortcut {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #00000090;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s;
}

.backdropShortcut.show {
    opacity: 1;
    visibility: visible;
    transition: opacity .4s;
}

.shortcut {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.shortcut .triggerMenu {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    outline: none;
    border: none;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.4);
}

.shortcut .triggerMenu i {
    font-size: 20px;
    color: var(--primary);
}

.shortcut .stickyMenu {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
}

.shortcut .contentStickyMenu {
    position: relative;
    background: #fff;
    right: 0;
    bottom: 100%;
    transition: all .1s ease;
    border-radius: 20px;
    box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
}

.shortcut .triggerMenu.active ~ .stickyMenu {
    height: auto;
    opacity: 1;
    visibility: visible;
    transition: all .5s ease;
    transform: translateY(-50px);
}

.shortcut .contentStickyMenu .feature {
    position: relative;
    padding: 12px 14px;
}

.shortcut .contentStickyMenu .feature a {
    display: flex;
    justify-content: end;
    align-items: center;
    text-decoration: none;
    width: calc(100% - 32px);
    padding: 8px 16px;
    border-radius: 12px;
    transition: all .2s ease;
}

.shortcut .contentStickyMenu .feature a:hover {
    background: #f4f6fa;
    color: #3e97ff;
    transition: all .2s ease;
}

.shortcut .contentStickyMenu .feature a .name {
    font-size: 12px;
    font-weight: 400;
    color: #5E5E5E;
}

.shortcut .contentStickyMenu .feature a .name .mobile {
    display: none;
}

.shortcut .contentStickyMenu .feature .icon {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 28px;
}

.shortcut .contentStickyMenu .feature .icon i {
    font-size: 18px;
    color: var(--primary);
}

.containerFull {
    position: relative;
    width: 100%;
    height: 110vh;
}

.containerFull::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140vh;
    z-index: 2;
}

.bannerImg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110vh;
    object-fit: cover;
    z-index: 1;
}

.swiperProduct {
    position: relative;
    max-width: 1450px;
    height: 108vh;
    margin: 0 auto;
    z-index: 9;
    padding: 0 15px;
}

.swiperProduct .swiper-wrapper {
    position: absolute;
    bottom: 230px;
    width: 100%;
    height: 347px;
}

.swiperProduct .swiper-slide.product {
    position: relative;
}

.swiperProduct .swiper-slide.product button {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 145px;
    border-radius: 20px;
    background: #ffffffb5;
    cursor: pointer;
    backdrop-filter: blur(10px);
    /* overflow: hidden; */
    border: none;
    border: 1px solid #d7d7d7;
    z-index: 99;
    transition: .4s;
}


.swiperProduct .swiper-slide.product button:hover {
    height: 170px;
    background: #0099ff;
    transition: .4s;
}

.swiperProduct .swiper-slide.product button:hover .containerProduct {
    position: relative;
    height: 343px;
    transition: .4s;
}

.swiperProduct .swiper-slide.product button:hover .containerProduct .title {
    color: #fff;
}

.swiperProduct .swiper-slide.product button:hover .containerProduct .detailTxt {
    opacity: 1;
    visibility: visible;
    transition: opacity .4s;
}

.swiperProduct .swiper-slide.product button .containerProduct {
    position: relative;
    height: 340px;
    padding: 1rem 1rem;
    transition: .4s;
    display: block;
    /* justify-content: space-between;
    gap: 20px; */
}

.swiperProduct .swiper-slide.product button .containerProduct .title {
    position: absolute;
    font-size: 16px;
    font-weight: 700;
    color: #00216f;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-align: left;
    z-index: 99;
    width: 105px;
    right: 13px;
    top: 37px;
}

.swiperProduct .swiper-slide.product button .containerProduct .desc {
    position: relative;
    font-size: 12px;
    font-weight: 300;
    text-transform: lowercase;
    color: #ffffff;
    line-height: 22px;
    text-align: right;
    z-index: 99;
}

.swiperProduct .swiper-slide.product button:hover .desc {
    color: #1C1C1C;
    font-weight: 500;
}

.swiperProduct .swiper-slide.product button .containerProduct .detailTxt {
    display: flex;
    justify-content: end;
    gap: 4px;
    position: absolute;
    right: 2px;
    top: 106px;
    font-size: 30px;
    font-weight: 400;
    color: #0093dd;
    width: 30px;
    border-radius: 8px;
    background: #d2f0ff;
    z-index: 99;
    margin-top: 1.4rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s;
}

.swiperProduct .swiper-slide.product button .containerProduct .productImg {
    position: absolute;
    top: 6rem;
    left: 51px;
    transform: translate(-50%, -50%);
    width: 200px;
    transition: .4s;
    z-index: 999;
    opacity: 0.3;
}

.productNavBtn {
    position: absolute;
    bottom: 19rem;
    width: 100%;
    height: 38px;
}

.productNavBtn .swiper-button-next {
    right: -3rem;
}

.productNavBtn .swiper-button-prev {
    left: -3rem;
}

.productNavBtn .swiper-button-next,
.productNavBtn .swiper-button-prev {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #00000091;
    transition: .3s;
}

.productNavBtn .swiper-button-next:hover,
.productNavBtn .swiper-button-prev:hover {
    background: #2e2e2e;
    transition: .3s;
}

.productNavBtn .swiper-button-next::after,
.productNavBtn .swiper-button-prev::after {
    font-size: 14px !important;
    color: #fff;
}

.detailProduct {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffffd6;
    backdrop-filter: blur(5px);
    z-index: 999999;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s ease-in-out;
}

.detailProduct .title {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}

.detailProduct .subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #ddd;
    margin-top: 6px;
    margin-bottom: 6rem;
    text-align: center;
}

.detailProduct .contentRes {
    position: relative;
    display: flex;
    gap: 1rem;
    width: 100%;
    padding-top: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4rem;
}

.detailProduct .contentRes::-webkit-scrollbar {
    height: 6px;
}

.detailProduct .contentRes::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 10px;
}

.detailProduct .contentRes::-webkit-scrollbar-track {
    background: #00000024;
    border-radius: 10px;
}

.detailProduct .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    max-width: 1300px;
    height: 100vh;
    margin: 0 auto;
}

.detailProduct .content .contentDetail {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    text-decoration: none;
}

.detailProduct .content .contentDetail:hover img {
    box-shadow: -5px 5px 20px 0px rgba(255, 255, 255, 0.75);
    transition: .3s;
}

.detailProduct .content .contentDetail img {
    width: 190px;
    height: 300px;
    border-radius: 30px;
    object-fit: cover;
    transition: .3s;
}

.detailProduct .content .contentDetail .name {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-dark);
    text-align: center;
    text-transform: uppercase;
}

.close-mobile-menu {
    font-size: 12px;
    color: #fff;
    /* border: 1px solid #fff; */
    padding: 15px 20px;
    border-radius: 15px;
    background: #000000;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 35px;
    font-weight: 500;
    cursor: pointer;
    margin: 25px;
}

.close-mobile-menu i {
    font-size: 16px;
}

.closeDetail {
    position: fixed;
    right: 30px;
    top: 25px;
    gap: 12px;
    cursor: pointer;
    z-index: 99999;
}

.closeDetail .containers {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #fff;
}

.closeDetail .containers i {
    font-size: 18px;
}

.closeDetail {
    display: none;
}

.mainContent {
    position: relative;
    min-height: 100vh;
    z-index: 99;
    background: #fff;
    padding-top: 40px;
    margin-top: -76px;
    /* overflow-x: hidden; */
}

.sectionWave {
    position: relative;
    padding-top: 2rem;
    /* padding-bottom: 2rem; */
    border-radius: 20px 20px 0 0;
}

.sectionWave.white {
    background: #fff;
}

.sectionWave.bwhite {
    background: #f3f3f3;
}

.sectionWave.dark {
    background: #000;
}

.sectionWave.darkWhite {
    background: #f3f3f3;
    border-radius: 20px;
    /* margin-top: -44px; */
    margin-left: 20px;
    margin-right: 20px;
}

.sectionWave.blueToDark {
    background: linear-gradient(    180deg,     #0093dd 0%,     #00216f 100%  );
    padding: 74px 0;
}

.sectionWave .bgNav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.sectionWave .waveFoot {
    position: absolute;
    top: -4.6rem;
    left: 0;
    height: 80px;
    width: 100%;
    z-index: 999;
}

.sectionWave .waveTop {
    position: absolute;
    top: -6.4rem;
    left: 0;
    height: 120px;
    width: 100%;
    z-index: 999;
}

.sectionWave .waveBot {
    position: absolute;
    bottom: -6.4rem;
    left: 0;
    height: 120px;
    width: 100%;
    z-index: 999;
}

.sectionWave .bgSection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.headerContent {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.headerContent .titleHead {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    text-transform: uppercase;
}

.headerContent .titleHead.dark {
    color: #373737;
    margin-bottom: 13px;
}

.headerContent .titleHead.dark span {
    font-weight: 600;
    color: var(--primary);
}

.headerContent .titleHead.light {
    color: #fff;
}

.headerContent .titleHead.light span {
    font-weight: 600;
    color: #fff;
}

.headerContent .subtitle {
    font-size: 14px;
    font-weight: 400;
}

.headerContent .subtitle.dark {
    color: #b3b3b3;
}

.headerContent .subtitle.light {
    color: #fff;
}

.btnAct {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
    align-items: center;
    padding: 6px 20px;
    border-radius: 10px;
    border: none;
    outline: none;
    text-decoration: none;
    transition: .4s;
    white-space: nowrap;
}

.btnAct.orange {
    background: var(--primary-orange);
}

 .btnAct.primary-dark {
    background: var(--primary-dark);
    color: #fff;
}

 .btnAct.orange:hover {
    box-shadow: 0px 6px 10px 0px rgba(255, 102, 0, 0.288);
    transition: .4s;
}

 .btnAct.lightBlue {
    background: var(--primary-light);
}

 .btnAct.lightBlue:hover {
    box-shadow: 0px 6px 10px 0px rgba(112, 171, 216, 0.288);
    transition: .4s;
}

 .btnAct.white {
    background: #fff;
}

 .btnAct.white:hover {
    box-shadow: 0px 6px 10px 0px rgba(255, 255, 255, 0.288);
    transition: .4s;
}

 .btnAct .name {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary);
}

 .btnAct .icon {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 40px;
}

 .btnAct .icon i {
    font-size: 24px;
    color: var(--primary);
}

.headerSubContent {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.headerSubContent.onlyBreadCrumb {
    display: flex;
    justify-content: end;
    align-items: center;
}

.headerSubContent .titleHead {
    font-size: 35px;
    font-weight: 600;
    line-height: 28px;
    color: #464646;
    text-transform: uppercase;

    &.white,
    &.white span {
        color: #fff !important;
    }
}

.headerSubContent .titleHead span {
    font-weight: 600;
}

.headerSubContent .subtitle {
    font-size: 14px;
    font-weight: 300;
    color: #3f3f3f;
}

.headerSubContent ul.breadCrumb {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1.4rem;
    list-style: none;
}

.headerSubContent ul.breadCrumb li {
    font-family: 'Roboto' !important;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: #A8A8A8;
}

.headerSubContent ul.breadCrumb li::after {
    content: '/';
    position: absolute;
    top: 0;
    left: calc(100% + .5rem);
    font-size: 14px;
    color: #A8A8A8;
    font-weight: 400;
}

.headerSubContent ul.breadCrumb li:last-child::after {
    content: '';
}

.headerSubContent ul.breadCrumb li.active {
    color: var(--primary);
}

.maxContent {
    position: relative;
    max-width: 1315px;
    margin: 0 auto;
    padding: 0 3rem;
    overflow: hidden;
}

.containerPromo {
  position: relative;
  padding: 1rem 0;
}
.containerPromo.sub {
  padding: 6rem 0;
  margin-top: 110px;
}
.containerPromo.sub .card {
  margin-bottom: 0;
}
.containerPromo.sub .card:hover {
  filter: drop-shadow(-15px 16px 25px rgba(0, 0, 0, 0.3137254902));
  transition: 0.4s;
}
.containerPromo .swiperPromo {
  position: relative;
  padding-bottom: 2rem;
  padding-right: 18px;
}
.containerPromo .card {
  position: relative;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  border-radius: 20px;
  background: #fff;
  transition: 0.4s;
  border: 1px solid #8585851f;
}
.containerPromo .card .containerImg {
  width: 100%;
  margin-top: 2rem;
}
.containerPromo .card .containerImg img {
    width: calc(100% + 6px);
    height: 300px;
    border-radius: 0 0 50px 50px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: -4px;
    object-position: top;
}
.containerPromo .card .name {
  font-size: 14px;
  font-weight: 600;
  color: #373737;
  margin-top: 2rem;
  padding: 0 2rem;
  text-align: center;
}
.containerPromo .card .date {
  font-size: 12px;
  font-weight: 400;
  color: #373737;
  margin-top: 4px;
  text-align: center;
}
.containerPromo .card:hover {
  box-shadow: 0px 0px 14px 0px rgba(192, 192, 192, 0.5);
  transition: 0.4s;
}
.containerPromo .swiper-pagination {
  position: relative;
  bottom: -1rem;
}
.containerPromo .swiper-pagination .swiper-pagination-bullet-active {
  background: #0093dd;
}
.containerPromo .promoNavBtn .swiper-button-next {
  right: -3rem;
}
.containerPromo .promoNavBtn .swiper-button-prev {
  left: -3rem;
}
.containerPromo .promoNavBtn .swiper-button-next,
.containerPromo .promoNavBtn .swiper-button-prev {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: transparent;
  transition: 0.3s;
}
.containerPromo .promoNavBtn .swiper-button-next:hover,
.containerPromo .promoNavBtn .swiper-button-prev:hover {
  background: rgba(0, 147, 221, 0.1568627451);
  transition: 0.3s;
}
.containerPromo .promoNavBtn .swiper-button-next:hover::after,
.containerPromo .promoNavBtn .swiper-button-prev:hover::after {
  color: #0093dd;
  transition: 0.3s;
}
.containerPromo .promoNavBtn .swiper-button-next::after,
.containerPromo .promoNavBtn .swiper-button-prev::after {
  font-size: 20px;
  color: #a8a8a8;
  transition: 0.3s;
}


.containerKurs {
    position: relative;
    padding: 4rem 0;
}

.containerKurs .cardKurs {
    position: relative;
    background: #fff;
    gap: 1.4rem;
    height: 177px;
    border-radius: 20px;
    margin-top: 1.6rem;
    padding: 10px;
}

.containerKurs .nation {
    display: flex;
    justify-content: end;
    align-items: center;
    position: relative;
    width: 100%;
    height: 56px;
    border-radius: 11px;
    background: var(--primary-light);
}

.containerKurs .nation .code {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-right: 11px;
}

.containerKurs .nation img {
    position: absolute;
    left: 21px;
    width: 32px;
    top: 10px;
    border-radius: 50%;
}

.containerKurs .desc {
    position: relative;
    width: 100%;
    padding-right: 2rem;
    font-size: 14px;
}

.containerKurs .desc .containers {
    position: relative;
    display: block;
    justify-content: space-between;
    align-items: center;
    padding: 12px 23px;
    text-align: left;
}

.containerKurs .desc .containers.border {
    margin-bottom: 2px;
    border-bottom: 1px solid #EAEAEA;
}

.containerKurs .desc .containers .name {
    font-size: 13px;
    font-weight: 400;
    color: var(--primary);
}

.containerKurs .desc .containers .price {
    font-size: 18px;
    font-weight: 600;
    color: #656565;
}

.containerNews {
  position: relative;
  padding: 8rem 0;
}
.containerNews .containerTitle {
    /* display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; */
    position: relative;
    width: 100%;
}

.containerNews .containerTitle .title {
    font-size: 20px;
    font-weight: 500;
    color: #222;
    text-transform: uppercase;
}


.containerNews .containerTitle .title span {
    font-weight: 600;
    color: var(--primary-dark);
}

.containerNews .containerTitle .subtitle {
    font-size: 13px;
    font-weight: 400;
    color: #222;
    text-align: left;
}
.containerNews .swiperNews {
  position: relative;
  width: 100%;
  margin-top: 2rem;
  z-index: 99;
}
.containerNews .swiperNews .swiper-wrapper {
  position: relative;
  width: 100%;
}
.containerNews .swiperNews .swiper-slide.content {
  position: relative;
}
.containerNews .swiperNews .swiper-slide.content .bannerSwiper {
    width: 100%;
}
.containerNews .swiperNews .swiper-slide.content .bannerSwiper img {
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.containerNews .swiperNews .swiper-slide.content .newsLink {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  text-decoration: none;
}
.containerNews .swiperNews .swiper-slide.content .text {
  position: relative;
  width: 50%;
  padding: 1.4rem 5rem;
}
.containerNews .swiperNews .swiper-slide.content .text .date {
  font-family: "Roboto" !important;
  font-size: 12px;
  font-weight: 500;
  color: #a3a3a3;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.containerNews .swiperNews .swiper-slide.content .text .title {
  font-family: "Roboto" !important;
  height: 32px;
  font-size: 20px;
  font-weight: 600;
  color: #1e1e1e;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  /* overflow: hidden; */
  line-height: 30px;
}
.containerNews .swiperNews .swiper-slide.content .text .desc {
  font-family: "Roboto" !important;
  height: 116px;
  font-size: 16px;
  font-weight: 400;
  color: #0c0c0c;
  line-height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 65px;
}
.containerNews .swiperNews .swiper-slide.content .text .btnLink {
  font-family: "Roboto" !important;
  position: relative;
  display: inline-flex !important;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #0093dd;
  /* background: #f3f3f3; */
  text-decoration: none;
  margin-top: 2rem;
}
.containerNews .swiperNews .swiper-slide.content .containerImg {
  position: relative;
  width: 50%;
  height: 500px;
  background: transparent;
}
.containerNews .swiperNews .swiper-slide.content .containerImg img {
  position: relative;
  right: -2px;
  width: 100%;
  height: 100%;
  border-radius: 0 20px 20px 0;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.4s ease-in;
}
.containerNews .news-pagination {
  position: relative;
  bottom: -1rem;
}
.containerNews .news-pagination .swiper-pagination-bullet-active {
  background: #fff !important;
}
.containerNews .navNewsBtn .swiper-button-next {
  right: -3.4rem;
}
.containerNews .navNewsBtn .swiper-button-prev {
  left: -3.4rem;
}
.containerNews .navNewsBtn .swiper-button-next,
.containerNews .navNewsBtn .swiper-button-prev {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0rem;
  width: 42px;
  height: 42px;
  z-index: 111;
  margin-left: 30px;
  background: #00000059;
  border-radius: 16px;
  transition: 0.3s;
  margin-right: 30px;
}
.containerNews .navNewsBtn .swiper-button-next:hover,
.containerNews .navNewsBtn .swiper-button-prev:hover {
  background: var(--primary-dark);
  transition: 0.3s;
}
.containerNews .navNewsBtn .swiper-button-next:hover::after,
.containerNews .navNewsBtn .swiper-button-prev:hover::after {
  transition: 0.3s;
}
.containerNews .navNewsBtn .swiper-button-next::after,
.containerNews .navNewsBtn .swiper-button-prev::after {
  font-size: 20px;
  color: #fff;
  transition: 0.3s;
}


.containerReward {
    position: relative;
    padding: 1rem 0;
}

.containerReward .containerTitle {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    width: 100%;
}

.containerReward .containerTitle .title {
    font-size: 24px;
    font-weight: 300;
    color: #ffffff;
    text-transform: uppercase;
}

.containerReward .containerTitle .title span {
    font-weight: 600;
    color: #fff;
}

.containerReward .containerTitle .subtitle {
    font-size: 13px;
    font-weight: 300;
    color: #ffffff;
    text-align: center;
}

.containerReward .swiperReward {
    position: relative;
    width: 100%;
    margin-top: 3rem;
    z-index: 99;
}

.containerReward .swiperReward .swiper-wrapper {
    position: relative;
    width: 100%;
}

.containerReward .swiperReward .swiper-slide.content {
    position: relative;
}

.containerReward .swiperReward .swiper-slide.content .containerImg {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.containerReward .swiperReward .swiper-slide.content .rewardAct {
    position: relative;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

.containerReward .swiperReward .swiper-slide.content .rewardAct img {
    width: 160px;
    filter: brightness(0) invert(1);
    transition: .2s;
}

.containerReward .swiperReward .swiper-slide.content .rewardAct:hover img {
    filter: none;
    transition: .2s;
}

.containerReward .reward-pagination {
    position: relative;
    bottom: -1rem;
}

.containerReward .reward-pagination .swiper-pagination-bullet {
    background: #cacaca;
}

.containerReward .reward-pagination .swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

.detailReward {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000000a8;
    backdrop-filter: blur(8px);
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s ease-in-out;
}

.detailReward .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: 100vh;
}

.detailReward .content img {
    width: 600px;
    object-fit: cover;
    border-radius: 20px;
}

.detailReward .content .desc {
    position: relative;
    width: 550px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #fff;
    text-align: center;
    margin-top: 3rem;
    padding: 24px;
    border-radius: 30px;
}

.closeDetailReward {
    position: fixed;
    right: 30px;
    top: 25px;
    gap: 12px;
    cursor: pointer;
    z-index: 99999;
}

.closeDetailReward .containers {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #fff;
}

.closeDetailReward .containers i {
    font-size: 18px;
}

.closeDetailReward {
    display: none;
}

.containerBanner {
    position: relative;
    width: 100%;
    height: 310px;
    background: #000;
}

.containerBanner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 310px;
    background: linear-gradient(0deg, transparent, #000000b6);
    z-index: 2;
}

.detailKurs {
    position: relative;
    padding: 6rem 0;
    margin-top: 110px;
}

.detailKurs .flag {
    width: 18px;
    margin-right: 10px;
    border-radius: 50%;
}

.detailKurs .calculateKurs {
    position: relative;
    width: 100%;
}

.detailKurs .calculateKurs .title {
    font-family: 'Roboto' !important;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
}

.detailKurs .calculateKurs .note {
    position: relative;
    padding: 0;
}

.detailKurs .calculateKurs .note .titleNote {
    font-family: 'Roboto' !important;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.detailKurs .calculateKurs .note li {
    font-family: 'Roboto' !important;
    position: relative;
    margin-left: 1.4rem;
    font-size: 14px;
    font-weight: 300;
    color: #000;
    margin-top: 4px;
    margin-bottom: 2px;
    line-height: 28px;
}

.detailSubProduk {
    position: relative;
    padding: 6rem 0;
    margin-top: 200px;
}

.detailSubProduk .title {
    font-family: 'Roboto' !important;
    font-size: 16px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.detailSubProduk .subtitle {
    font-family: 'Roboto' !important;
    font-size: 14px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 10px;
}

.detailSubProduk .desc {
    font-family: 'Roboto' !important;
    font-size: 14px;
    font-weight: 400;
    color: #414141;
    line-height: 28px;
}

.detailSubProduk .descProduct {
    position: relative;
}


.detailSubProduk .descProduct ul {
    list-style: none;
    padding: 0;
    margin-left: 0;
}

.detailSubProduk .descProduct p {
    font-family: 'Roboto' !important;
    padding: 0;
    padding-left: 0 !important;
    text-indent: 0 !important;
}

.detailSubProduk .listPromo,
.detailSubProduk .listProduct {
    position: relative;
    max-width: 550px;
    list-style: decimal;
    padding: 0;
}

.detailSubProduk .listPromo li,
.detailSubProduk .listProduct li {
    margin-left: 1rem;
}

.detailSubProduk .tag {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 1.4rem;
    max-width: 600px;
}

.detailSubProduk .tag a {
    font-family: 'Roboto' !important;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #7E8882;
    background: #eeeeee;
    border: 1px solid #e9e9e9;
    text-decoration: none;
    transition: .2s;
}

.detailSubProduk .tag a:hover {
    box-shadow: 0px 9px 12px -8px rgba(212, 212, 212, 0.78);
    transition: .2s;
}

.detailSubProduk .action {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 2rem;
}

.detailSubProduk .action .title {
    font-family: 'Roboto' !important;
    font-size: 10px;
    font-weight: 400;
    color: #7E8882;
    text-transform: none;
    margin-bottom: 6px;
}

.detailSubProduk .action .share {
    position: relative;
}

.detailSubProduk .action .share .containers {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 8px;
    border-radius: 20px;
    background: #eeeeee;
    border: 1px solid #ebebeb;
}

.detailSubProduk .action .share .containers a {
    font-family: 'Roboto' !important;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    width: 50px;
    height: 28px;
    transition: .4s;
}

.detailSubProduk .action .share .containers a:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
    height: 12px;
    width: 1px;
    background: #dddddd;
}

.detailSubProduk .action .share .containers a:hover {
    transition: .4s;
}

.detailSubProduk .action .share .containers a:hover .text {
    position: relative;
    opacity: 1;
    transition: .4s;
}

.detailSubProduk .action .share .containers a:hover i {
    transition: .4s;
}

.detailSubProduk .action .share .containers a.fb:hover {
    width: 100px;
}

.detailSubProduk .action .share .containers a.fb:hover .text, .detailSubProduk .action .share .containers a.fb:hover i {
    color: #2861AC;
}

.detailSubProduk .action .share .containers a.twitter:hover {
    width: 90px;
}

.detailSubProduk .action .share .containers a.twitter:hover .text, .detailSubProduk .action .share .containers a.twitter:hover i {
    color: #1C96E8;
}

.detailSubProduk .action .share .containers a.wa:hover {
    width: 110px;
}

.detailSubProduk .action .share .containers a.wa:hover .text, .detailSubProduk .action .share .containers a.wa:hover i {
    color: #24CC63;
}

.detailSubProduk .action .share .containers a.tele:hover {
    width: 110px;
}

.detailSubProduk .action .share .containers a.tele:hover .text, .detailSubProduk .action .share .containers a.tele:hover i {
    color: #289BD3;
}

.detailSubProduk .action .share .containers .text {
    font-family: 'Roboto' !important;
    position: absolute;
    opacity: 0;
    font-size: 12px;
    font-weight: 400;
    color: #7E8882;
    transition: .1s;
    z-index: 99;
}

.detailSubProduk .action .share .containers i {
    position: relative;
    font-size: 14px;
    font-weight: 400;
    color: #7E8882;
    transition: .4s;
    z-index: 99;
}

.detailSubProduk .detailImg {
    display: flex;
    justify-content: end;
    align-items: center;
}

.detailSubProduk .detailImg .contentImg {
    width: 340px;
    border-radius: 12px;
}

.detailPromo {
    position: relative;
    padding: 8rem 0;
}

.detailPromo .minHeight {
    position: relative;
    max-width: 600px;
    min-height: 480px;
    border-bottom: 1px solid #F4F4F4;
}

.detailPromo .title {
    font-family: 'Roboto' !important;
    font-size: 16px;
    font-weight: 600;
    color: #2C2C2C;
    text-transform: uppercase;
}

.detailPromo .date {
    font-family: 'Roboto' !important;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 300;
    color: #858585;
    margin-top: 6px;
}

.detailPromo .date i {
    font-size: 14px;
}

.detailPromo .desc {
    font-family: 'Roboto' !important;
    font-size: 14px;
    font-weight: 400;
    color: #414141;
    line-height: 28px;
}

.detailPromo .listPromo {
    position: relative;
    max-width: 600px;
    list-style: decimal;
    padding: 0;
}

.detailPromo .listPromo li {
    margin-left: 1rem;
}

.detailPromo .tag {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 1.4rem;
    max-width: 600px;
}

.detailPromo .tag a {
    font-family: 'Roboto' !important;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #7E8882;
    background: #eeeeee;
    border: 1px solid #e9e9e9;
    text-decoration: none;
    transition: .2s;
}

.detailPromo .tag a:hover {
    box-shadow: 0px 9px 12px -8px rgba(212, 212, 212, 0.78);
    transition: .2s;
}

.detailPromo .share {
    position: relative;
    margin-bottom: 1.4rem;
}

.detailPromo .share .title {
    font-family: 'Roboto' !important;
    font-size: 10px;
    font-weight: 400;
    color: #7E8882;
    text-transform: none;
    margin-bottom: 6px;
    text-align: right;
}

.detailPromo .share .containers {
    display: inline-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 6px;
    padding: 6px;
    border-radius: 30px;
    background: #f4f4f4;
}

.detailPromo .share .containers a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #D9D9D9;
    transition: .4s;
}

.detailPromo .share .containers a i {
    font-size: 24px;
    color: #4C4C4C;
}

.detailPromo .share .containers a.fb:hover i {
    color: #2861AC;
    transition: .4s;
}

.detailPromo .share .containers a.twitter:hover i {
    color: #1C96E8;
    transition: .4s;
}

.detailPromo .share .containers a.wa:hover i {
    color: #24CC63;
    transition: .4s;
}

.detailPromo .detailImg {
    display: flex;
    justify-content: end;
    align-items: center;
}

.detailPromo .detailImg .contentImg {
    width: 360px;
    border-radius: 100px 30px 100px 30px;
}

.detailNews {
    position: relative;
    width: 100%;
    padding: 6rem 0;
    margin-top: 200px;
}

.detailNews .title {
    font-family: 'Roboto' !important;
    position: relative;
    font-size: 24px;
    font-weight: 500;
    color: #2C2C2C;
    text-transform: uppercase;
    line-height: 36px;
    margin-bottom: 1.6rem;
}

.detailNews .content {
    position: relative;
    /* margin: 0 20px; */
}

.detailNews .content .detail {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.4rem;
}

.detailNews .content .detail .date {
    font-family: 'Roboto' !important;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 400;
    color: #858585;
}

.detailNews .content .detail .date i {
    font-size: 14px;
}

.detailNews .content .detail .info {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    padding: 6px 12px;
    border-radius: 20px;
    background: #F4F4F4;
}

.detailNews .content .detail .info .containers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.detailNews .content .detail .info .containers i {
    font-size: 18px;
    color: #989898;
}

.detailNews .content .detail .info .containers .count {
    font-family: 'Roboto' !important;
    font-size: 12px;
    font-weight: 400;
    color: #989898;
}

.detailNews .content .desc {
    font-family: 'Roboto' !important;
    font-size: 14px;
    font-weight: 400;
    color: #414141;
    line-height: 32px;
    word-spacing: 5px;
    text-align: justify;
}

.detailNews .content p {
    font-family: 'Roboto' !important;
    font-size: 14px;
    font-weight: 400;
    color: #414141;
    line-height: 32px;
    text-align: justify;
}

.detailNews .content li {
    font-family: 'Roboto' !important;
    font-size: 14px;
    font-weight: 400;
    color: #414141;
    line-height: 32px;
    text-align: justify;
    margin-left: -1rem;
}

.detailNews .content .tag {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 1.4rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid #DFDFDF;
}

.detailNews .content .tag a {
    font-family: 'Roboto' !important;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    color: #989898;
    background: #F4F4F4;
    text-decoration: none;
    transition: .2s;
}

.detailNews .content .tag a:hover {
    box-shadow: 0px 9px 12px -8px rgba(212, 212, 212, 0.78);
    transition: .2s;
}

.detailNews .content .containerLike {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 1rem;
}

.detailNews .content .containerLike .title {
    font-family: 'Roboto' !important;
    font-size: 12px;
    font-weight: 400;
    color: #444444;
    text-transform: none;
    margin-bottom: 0;
}

.detailNews .content .containerLike .containers {
    display: inline-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: relative;
    padding: 8px 18px;
    border-radius: 20px;
    background: #F4F4F4;
}

.detailNews .content .containerLike .containerRadio {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.detailNews .content .containerLike .containerRadio .text {
    font-family: 'Roboto' !important;
    font-size: 12px;
    font-weight: 400;
    color: #989898;
    transition: .4s;
}

.detailNews .content .containerLike .containerRadio i {
    font-size: 16px;
    color: #989898;
    transition: .4s;
}

.detailNews .content .containerLike .containerRadio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.detailNews .content .containerLike .containerRadio:hover input ~ i, .detailNews .content .containerLike .containerRadio:hover input ~ .text {
    color: #a2a8a5;
    transition: .4s;
}

.detailNews .content .containerLike .containerRadio.like input:checked ~ i, .detailNews .content .containerLike .containerRadio.like input:checked ~ .text {
    color: #20D07C;
    filter: drop-shadow(0 0 0.8rem #20D07C);
    transition: .4s;
}

.detailNews .content .containerLike .containerRadio.dislike input:checked ~ i, .detailNews .content .containerLike .containerRadio.dislike input:checked ~ .text {
    color: #f55555;
    filter: drop-shadow(0 0 0.8rem #f55555);
    transition: .4s;
}

.detailNews .newsImg {
    position: relative;
    width: 100%;
}

.detailNews .share {
    position: relative;
}

.detailNews .share .title {
    font-family: 'Roboto' !important;
    font-size: 12px;
    font-weight: 400;
    color: #7E8882;
    text-transform: none;
    margin-bottom: 0;
    text-align: right;
}

.detailNews .share .containers {
    display: inline-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 6px;
    padding: 6px;
    border-radius: 30px;
    background: #f4f4f4;
}

.detailNews .share .containers a {
    font-family: 'Roboto' !important;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #D9D9D9;
    transition: .4s;
}

.detailNews .share .containers a i {
    font-size: 26px;
    color: #4C4C4C;
}

.detailNews .share .containers a.fb:hover i {
    color: #2861AC;
    transition: .4s;
}

.detailNews .share .containers a.twitter:hover i {
    color: #1C96E8;
    transition: .4s;
}

.detailNews .share .containers a.wa:hover i {
    color: #24CC63;
    transition: .4s;
}

.detailNews .share .containers .text {
    font-family: 'Roboto' !important;
    position: absolute;
    opacity: 0;
    font-size: 12px;
    font-weight: 400;
    color: #7E8882;
    transition: .1s;
    z-index: 99;
}

.detailNews .share .containers i {
    position: relative;
    font-size: 14px;
    font-weight: 400;
    color: #7E8882;
    transition: .4s;
    z-index: 99;
}

.detailNews .newsImg .containerImg {
    position: relative;
    overflow: hidden;
    height: 500px;
    margin-top: 1rem;
    margin-bottom: 50px;
}

.detailNews .newsImg .containerImg img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.portalNews {
    position: relative;
    width: 100%;
    padding: 6rem 0;
    margin-top: 165px;
}

.portalNews .containerNews {
    position: relative;
    width: 100%;
    padding: 0;
}

.portalNews .containerNews::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100% !important;
    height: 340px;
    border-radius: 30px;
    background: linear-gradient(0deg, transparent, #212121dc);
}

.portalNews .containerNews:hover {
    filter: drop-shadow(-15px 16px 25px #00000050);
    transition: .3s;
}

.portalNews .containerNews .containerImg {
    position: relative;
    overflow: hidden;
    height: 340px;
    border-radius: 30px;
}

.portalNews .containerNews img {
    width: 100%;
    height: 340px;
    border-radius: 30px;
    object-fit: cover;
    transition: 8s;
}

.portalNews .containerNews .caption {
    position: absolute;
    left: 0;
    top: 0;
    padding: 0 2.4rem;
    z-index: 9;
    width: 80%;
}

.portalNews .containerNews .caption .detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    margin-top: 8px;
}

.portalNews .containerNews .caption .detail i {
    font-size: 16px;
}

.portalNews .containerNews .caption .detail .info {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 12px;
}

.portalNews .containerNews .caption .detail .date,
.portalNews .containerNews .caption .detail .like,
.portalNews .containerNews .caption .detail .see {
    font-family: 'Roboto' !important;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 4px;
}

.portalNews .containerNews .caption .desc {
    font-family: 'Roboto' !important;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    line-height: 24px;
    margin-top: 1.6rem;
}

.portalAnnouncement {
    position: relative;
    padding: 6rem 0;
    margin-top: 110px;
}

.portalAnnouncement .card:hover {
    filter: drop-shadow(-15px 16px 25px #00000020);
    transition: .4s;
}

.portalAnnouncement .content {
    position: relative;
    margin: 0;
    width: 100%;
}

.portalAnnouncement .info {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.portalAnnouncement .info .user,
.portalAnnouncement .info .date {
    position: relative;
    font-family: 'Roboto' !important;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 400;
    color: #C0C0C0;
}

.portalAnnouncement .title {
    font-family: 'Roboto' !important;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: #454545;
    height: 42px;
    line-height: 22px;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.portalReport {
    position: relative;
    padding: 6rem 0;
    margin-top: 110px;
}

.portalReport .card {
    margin-top: 4rem;
}

.portalReport .navWrapper {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #eee;
}

.portalReport .navWrapper .tablink {
    font-family: 'Roboto' !important;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 46px;
    padding: 8px 24px;
    border-radius: 16px 16px 0 0;
    font-size: 14px;
    font-weight: 600;
    color: #bbb;
    background: transparent;
    border-color: transparent;
    outline: none;
    cursor: pointer;
    transition: .4s;
}

.portalReport .navWrapper .tablink:hover {
    color: var(--primary-dark);
    transition: .4s;
}

.portalReport .navWrapper .tablink.active {
    color: #fff;
    background: var(--primary-dark);
    border-bottom: 2px solid var(--primary-dark);
    transition: .4s;
}

.portalReport .tabWrapper {
    position: relative;
    width: 100%;
    margin-top: 1rem;
}

.portalReport .tabWrapper .tabs {
    position: relative;
}

.portalReport .tabWrapper .tabs .fileNotFound {
    font-family: 'Roboto' !important;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 2rem;
}

.portalReport .tabWrapper .tabs .fileNotFound i {
    font-size: 74px;
    color: #aaa;
}

.portalReport .tabWrapper .tabs .fileNotFound .text {
    font-family: 'Roboto' !important;
    font-size: 16px;
    font-weight: 500;
    color: #aaa;
}

.portalReport .title {
    font-family: 'Roboto' !important;
    font-size: 12px;
    font-weight: 400;
    color: #A3A3A3;
}

.portalReport .tabWrapper .tabs .containerTabFile {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 8px;
}

.portalReport .tabWrapper .tabs .tabFile {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 18px;
    background: transparent;
    border-radius: 30px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: .4s;
    word-wrap: break-word;
    width: 100%;
    gap: 10px;
}

.portalReport .tabWrapper .tabs .tabFile:hover {
    background: #fcfcfc;
    transition: .4s;
}

.portalReport .tabWrapper .tabs .tabFile.active {
    background: #F4F4F4;
    transition: .4s;
}

.portalReport .tabWrapper .tabs .tabFile .icon {
    display: flex;
    justify-content: start;
    align-items: center;
    position: relative;
    width: 30px;
}

.portalReport .tabWrapper .tabs .tabFile .icon i {
    font-size: 22px;
    color: #aaa;
}

.portalReport .tabWrapper .tabs .tabFile .text {
    position: relative;
    width: calc(100% - 39px);
}

.portalReport .tabWrapper .tabs .tabFile .text .name {
    font-family: 'Roboto' !important;
    font-size: 14px;
    font-weight: 500;
    color: #1A1A1A;
    text-align: left;
    padding-right: 20px;
}

.portalReport .tabWrapper .tabs .tabFile .text .date {
    font-family: 'Roboto' !important;
    font-size: 12px;
    font-weight: 300;
    color: #7E7E7E;
    text-align: left;
    margin-top: 4px;
}

.portalReport .tabWrapper .tabs .fileContent {
    position: relative;
    width: 100%;
    margin-top: 1.6rem;
}

.portalReport .tabWrapper .fileViewer {
    width: 100%;
    height: 800px;
    margin-top: 10px;
    border-radius: 20px;
    background: #e9e9e9;
    border: none;
}

.portalReport .tabWrapper .fileContent:first-child,
.portalReport .tabWrapper .tabs:first-child {
    display: block;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
}

.portalReport .tabWrapper .fileContent,
.portalReport .tabWrapper .tabs {
    display: none;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
}

@-webkit-keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.komiteDewan {
    position: relative;
    width: 100%;
    padding: 6rem 0;
    margin-top: 100px;
}

.komiteDewan .desc {
    position: relative;
    margin-top: 4rem;
}

.komiteDewan .filename {
    font-family: 'Roboto' !important;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    line-height: 24px;
    margin-bottom: 6px;
}

.komiteDewan .desc .title {
    font-family: 'Roboto' !important;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    line-height: 24px;
}
.komiteDewan ul {
    position: relative;
    padding: 0;
    list-style: decimal;
}

.komiteDewan .desc li {
    font-family: 'Roboto' !important;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    margin-left: 1.2rem;
    line-height: 24px;
}


.strukturOrganisasi {
    position: relative;
    width: 100%;
    padding: 6rem 0;
    margin-top: 150px;
}

.strukturOrganisasi .bannerStruktur {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6rem;
}

.strukturOrganisasi .bannerStruktur img {
    max-width: 1100px;
    mix-blend-mode: multiply;
}

.strukturOrganisasi .desc {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 2rem;
}

.strukturOrganisasi .desc .intro {
    font-family: 'Roboto' !important;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-align: center;
    line-height: 24px;
}

.strukturOrganisasi .desc ul {
    position: relative;
    padding: 0;
    list-style: none;
}

.strukturOrganisasi .desc ul .title {
    font-family: 'Roboto' !important;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-align: center;
    line-height: 30px;
}

.strukturOrganisasi .desc ul li {
    font-family: 'Roboto' !important;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-align: center;
    line-height: 24px;
}

.companyValue {
    position: relative;
    width: 100%;
    padding: 6rem 0;
    margin-top: 150px;
}

.companyValue .breadCrumb li {
    margin-left: 0;
}

.companyValue .banner {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.companyValue .banner img {
    width: 700px;
    mix-blend-mode: multiply;
}

.companyValue .containers {
    position: relative;
    margin-bottom: 2rem;
}

.companyValue .containers .title {
    font-family: 'Roboto' !important;
    font-size: 16px;
    font-weight: 600;
    color: #383838;
    line-height: 30px;
}

.companyValue .containers .desc {
    font-family: 'Roboto' !important;
    font-size: 14px;
    font-weight: 300;
    color: #383838;
    line-height: 20px;
}

.companyValue .containers .desc span {
    font-weight: 600;
}

.companyValue ul {
    position: relative;
    padding: 0;
    margin-top: 8px;
}

.companyValue ul .title {
    font-family: 'Roboto' !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    color: #383838;
    line-height: 20px;
}

.companyValue ul li {
    font-family: 'Roboto' !important;
    font-size: 14px;
    font-weight: 300;
    color: #383838;
    margin-left: 1.2rem;
    line-height: 20px;
}

.listDownload {
    position: relative;
    width: 100%;
    padding: 6rem 0;
    margin-top: 150px;
}

.listDownload .head {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.listDownload .head .title {
    font-family: 'Roboto' !important;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
}

.listDownload .desc {
    position: relative;
    padding: 0;
    list-style: decimal;
}

.listDownload .desc .intro {
    font-family: 'Roboto' !important;
    font-size: 14px;
    font-weight: 300;
    color: #5B5B5B;
    line-height: 24px;
}

.listDownload .desc li {
    font-family: 'Roboto' !important;
    font-size: 14px;
    font-weight: 300;
    color: #5B5B5B;
    margin-left: 1.2rem;
    line-height: 24px;
}

.bantuanFAQ {
    position: relative;
    padding: 5.5rem 0;
    margin-top: 150px;
}

.bantuanFAQ .intro {
    position: relative;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.bantuanFAQ .intro .contact {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.bantuanFAQ .intro .text {
    font-size: 14px;
    font-weight: 300;
    color: #000;
}

.bantuanFAQ .containerContent {
    display: flex;
    justify-content: start;
    align-items: start;
    width: 100%;
}

.bantuanFAQ .navWrapper {
    position: relative;
}

.bantuanFAQ .navWrapper:after {
    content: '';
    position: absolute;
    top: 0;
    right: -4rem;
    width: 1px;
    height: 100%;
    background: #f1f1f1;
}

.bantuanFAQ .navWrapper .tablink {
    position: relative;
    font-family: 'Roboto' !important;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 18px;
    background: transparent;
    font-size: 12px;
    font-weight: 500;
    color: #656565;
    border-radius: 30px;
    border: none;
    outline: none;
    cursor: pointer;
    white-space: nowrap;
    transition: .4s;
}

.bantuanFAQ .navWrapper .tablink i {
    font-size: 18px;
}

.bantuanFAQ .navWrapper .tablink:hover {
    color: var(--primary);
    transition: .4s;
}

.bantuanFAQ .navWrapper .tablink.active {
    color: var(--primary);
    background: #e9f2ff;
    transition: .4s;
}

.bantuanFAQ .tabWrapper {
    position: relative;
    width: 100%;
    padding-left: 8rem;
}

.bantuanFAQ .tabWrapper .tabs {
    position: relative;
}

.bantuanFAQ .tabWrapper .tabs .title {
    font-family: 'Roboto' !important;
    font-size: 12px;
    font-weight: 400;
    color: #7E8882;
}

.bantuanFAQ .tabWrapper .tabs:first-child {
    display: block;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
}

.bantuanFAQ .tabWrapper .tabs {
    display: none;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
}

.bantuanFAQ .listFAQ {
    position: relative;
}

.bantuanFAQ .listFAQ .title {
    font-family: 'Roboto' !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #000 !important;
    line-height: 24px;
}

.bantuanFAQ .listFAQ .titleLight {
    font-family: 'Roboto' !important;
    font-size: 14px;
    font-weight: 300;
    color: #000;
    line-height: 24px;
}

.bantuanFAQ .listFAQ .desc {
    font-family: 'Roboto' !important;
    font-size: 14px;
    font-weight: 300;
    color: #000;
    line-height: 24px;
}

.bantuanFAQ .listFAQ ul {
    position: relative;
    padding: 0;
    margin-top: 0;
    margin-bottom: 1.4rem;
}

.bantuanFAQ .listFAQ ul.number {
    list-style: decimal;
}
.bantuanFAQ .listFAQ ul.numbers {
    list-style: decimal;
    margin-top: 8px;
}

.bantuanFAQ .listFAQ ul.number li {
    margin-left: 1rem;
}

.bantuanFAQ .listFAQ ul.numbers li {
    margin-left: 1rem;
    font-family: 'Roboto' !important;
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.bantuanFAQ .listFAQ ul.letter {
    list-style: lower-alpha;
    margin-bottom: 0;
}

.bantuanFAQ .listFAQ ul.letter li {
    margin-left: 2.4rem;
}

.bantuanFAQ .listFAQ ul li {
    font-family: 'Roboto' !important;
    font-size: 14px;
    font-weight: 300;
    color: #000;
    margin-left: 1.2rem;
    line-height: 28px;
}

.bantuanFAQ .listFAQ .whistle {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: start;
    margin-top: 10px;
}

.bantuanFAQ .listFAQ .whistle .name {
    font-family: 'Roboto' !important;
    position: relative;
    width: 240px;
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.bantuanFAQ .listFAQ .whistle .dot {
    position: relative;
    width: 12px;
}

.bantuanFAQ .listFAQ .whistle .definition {
    font-family: 'Roboto' !important;
    position: relative;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    line-height: 24px;
}

.bantuanFAQ .listFAQ .notice {
    font-family: 'Roboto' !important;
    font-size: 14px;
    font-weight: 600;
    color: #373737;
    margin-top: 1rem;
}

.bantuanFAQ .listFAQ .subnotice {
    font-family: 'Roboto' !important;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 28px;
    margin-top: 8px;
}

.bantuanFAQ .listFAQ .subnotice span {
    font-family: 'Roboto' !important;
    color:#666 !important;
    font-size:12px !important;
}

.bantuanFAQ .listFAQ .subnotice.no-space {
    line-height: 16px;
}
.bantuanFAQ .listFAQ .subnotice.space-sm {
    line-height: 24px;
}

.bantuanFAQ .listFAQ .subnotice.w-80 {
    width: 80%;
}

.bantuanFAQ .listFAQ .strukturImg {
    width: 100%;
    border-radius: 20px;
    margin-left: 0;
    margin-top: 1rem;
}

.bantuanFAQ .listFAQ .gratifikasi {
    position: relative;
}

.bantuanFAQ .listFAQ .gratifikasi .contact {
    font-family: 'Roboto' !important;
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #373737;
    line-height: 30px;
}

@-webkit-keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.branchLocation {
    position: relative;
    padding: 8rem 0;
}

.branchLocation .searchBranch {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
}

.branchLocation .searchBranch input {
    font-family: 'Roboto' !important;
    position: relative;
    width: calc(100% - 4.8rem);
    height: 47px;
    font-size: 16px;
    font-weight: 300;
    color: #bbbbbb;
    padding-left: 1.4rem;
    padding-right: 3.4rem;
    border-radius: 30px;
    background: #ffffff;
    border: none;
    outline: none;
    transition: .4s;
}

.branchLocation .searchBranch input::placeholder {
    color: #D6D6D6;
    font-weight: 300;
}

.branchLocation .searchBranch input:focus {
    filter: drop-shadow(-15px 16px 25px #00000015);
    transition: .4s;
}

.branchLocation .searchBranch i {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translate(-50%, -50%);
    font-size: 28px;
    color: #D6D6D6;
}

.branchLocation .card {
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: start;
    flex-direction: row;
    padding: 1.2rem 2rem;
}

.branchLocation .card .content {
    position: relative;
    width: 50%;
}

.branchLocation .card .branchNm {
    font-family: 'Roboto' !important;
    font-size: 16px;
    font-weight: 500;
    color: #2D2D2D;
    text-transform: uppercase;
}

.branchLocation .card .address {
    font-family: 'Roboto' !important;
    font-size: 12px;
    font-weight: 300;
    line-height: 19px;
    color: #3F3F3F;
    text-align: right;
}

.branchLocation .card .phone {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 300;
    color: #000;
    margin-top: 1rem;
}

.branchLocation .card:hover {
    filter: drop-shadow(-15px 16px 25px #00000025);
    transition: .4s;
}

.branchLocation #map {
    width: 100%;
    height: 1050px;
    border-radius: 30px;
}

.branchLocation #map .leaflet-popup-content {
    font-size: 14px;
    font-weight: 600;
}

.branchLocation .btnLocation {
    font-family: 'Roboto' !important;
    display: flex;
    justify-content: start;
    align-items: center;
    display: inline-flex;
    padding: 8px 14px;
    width: 146px;
    height: 37px;
    gap: 8px;
    border-radius: 30px;
    background: var(--primary)20;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    outline: none;
    text-decoration: none;
    cursor: pointer;
    transition: all .2s ease;
}

.branchLocation .btnLocation i {
    font-size: 16px;
    color: var(--primary);
}

.branchLocation .btnLocation:hover {
    box-shadow: 0px 6px 10px 0px rgba(0, 138, 218, 0.137);
    transition: all .2s ease;
}

.pagination {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 4px;
    margin-top: 1rem;
}

.pagination button,
.pagination a,
.pagination .page-link {
    font-family: 'Roboto' !important;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #E6E6E6;
    color: #4D4D4D;
    font-size: 14px;
    font-weight: 500;
    border: none;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    padding: 0;
    transition: .4s;
}

.pagination a.disabled {
    background: #c8c8c8;
    cursor: not-allowed
}

.pagination a.disabled i {
    color: #4D4D4D;
}

.pagination button i,
.pagination a i {
    font-size: 20px;
    color: var(--primary-dark);
}

.pagination button.active,
.pagination a.active {
    background: var(--primary-dark);
    color: #fff;
    transition: .4s;
}

.pagination button:not(.active):hover,
.pagination a:not(.disabled):hover {
    background: var(--primary);
    color: #fff;
    transition: .4s;
}

.pagination button:not(.active):hover i,
.pagination a:not(.disabled):hover i {
    color: #fff;
}

.containerFooter {
    position: relative;
    padding-top: 6rem;
}

.containerFooter .containerAddress {
    position: relative;
    z-index: 9999;
}

.containerFooter .titleFoot {
    position: relative;
    text-align: start;
    margin-bottom: 2rem;
    border-bottom: 2px dashed #ffffff1c;
    padding-bottom: 26px;
}

.containerFooter .title-text {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    color: var(--primary-dark);
}

.containerFooter .desc-text {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    color: #aaa;
    letter-spacing: -0.56px;
}

.containerFooter .contentCallUs {
    position: relative;
    display: flex;gap: 41px;justify-content: start;margin-top: 30px;
}

.containerFooter .contentCallUs .containers {
    display: inline-flex;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1.2rem;
    flex-direction: row-reverse;
    margin-bottom: 1rem;
    text-decoration: none;
    cursor: pointer;
}

.containerFooter .contentCallUs .containers:hover .icon {
    background: var(--primary);
    transition: .3s;
}

.containerFooter .contentCallUs .containers .title {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    color: var(--primary-dark);
    text-align: end;
}

.containerFooter .contentCallUs .containers .desc {
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
    color: var(--primary-dark);
}

.containerFooter .contentCallUs .containers .icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-dark);
    transition: .3s;
}

.containerFooter .contentCallUs .containers .icon img {
    filter: brightness(0) invert(1);
}

.containerFooter .contentCallUs .containers .icon .callImg,
.containerFooter .contentCallUs .containers .icon .fullCallImg,
.containerFooter .contentCallUs .containers .icon .waImg {
    width: 16px;
}

.containerFooter .contentCallUs .containers .icon .mailImg {
    width: 26px;
}

.containerFooter .containerImg {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.containerFooter .containerImg .bi {
    width: 38px;
}

.containerFooter .containerImg .halo {
    width: 50px;
}

.containerFooter .containerImg .ojk {
    width: 70px;
}

.containerFooter .containerImg .lps {
    width: 70px;
}

.containerFooter .bottomFoot {
    position: relative;
    width: 100%;
    margin-top: .4rem;
    border-top: 2px dashed #ffffff1c;
    padding-top: 1.3rem;
    padding-bottom: 80px;
}

.containerFooter .bottomFoot .containers {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.containerFooter .bottomFoot .text {
    font-family: 'Roboto' !important;
    color: #838383;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
}

.footerColor {
    display: flex;
    justify-content: start;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
}

.footerColor div:nth-child(1) {
    position: relative;
    width: 70%;
    height: 8px;
    background: var(--primary);
}

.footerColor div:nth-child(2) {
    position: relative;
    width: 15%;
    height: 8px;
    background: var(--primary-dark);
}

.footerColor div:nth-child(3) {
    position: relative;
    width: 15%;
    height: 8px;
    background: var(--primary-orange);
}

@media (min-width: 980px) {
    .navbar .navMenu .containerNav .listMenu .bg-side {
        display: none;
    }

    .navbar .navMenu .containerNav .menuMobile {
        display: none;
    }

    .listMenuMobile {
        display: none;
    }
}

@media (max-width: 980px) {
    .navbar .navMenu .navLogo img {
        width: 50px;
    }

    .navbar .navMenu .containerNav .listMenu {
        display: none;
    }

    .branchLocation .reverse {
        flex-direction: column-reverse !important;
    }

    .branchLocation #map {
        width: 100%;
        height: 450px;
        border-radius: 30px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 1500px) {
    .introPage .content .pageSearch .tag {
        width: 400px;
    }

    .introPage .content .pageSearch .containerForm {
        width: 400px;
    }

    .containerMenu {
        max-height: 60vh;
    }

    .containerMenus {
        max-height: 65vh;
    }

    .swiperProduct {
        width: calc(100% - 6rem);
    }

    .productNavBtn .swiper-button-next {
        right: 4px;
    }

    .productNavBtn .swiper-button-prev {
        left: 4px;
    }
}

@media (max-width: 1400px) {
    .navbar {
        width: 100% !important;
        top: 2rem;
        margin: 0 !important;
        border-radius: 0;
    }
}
@media (max-width: 1115px) {
    .introPage .content {
        position: relative;
        padding: 16px 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .introPage .content .pageSearch {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        padding-left: 0;
        padding-right: 0;
        padding-top: 8rem;
    }

    .introPage .content .pageSearch .containers {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        position: relative;
        width: 100%;
    }

    .introPage .content .pageSearch .bintangImg {
        width: 180px;
    }

    .introPage .content .pageSearch .tag {
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .introPage .content .pageSearch .containerForm {
        position: relative;
        width: 65%;
        margin-top: 2rem;
    }

    .introPage .content .pageCard {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        padding-top: 4rem;
        padding-right: 0;
    }

    .introPage .content .pageCard .containers {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    .introPage .content .pageCard .containers .secondCard {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        gap: 2rem;
    }

    .navbar {
        width: 100% !important;
        top: 2rem;
        margin: 0 !important;
        border-radius: 0;
    }
}


@media (max-width: 800px) {

    .sectionWave .bgNav {
        height: 280px;
    }

    .companyValue {
        margin-top: 110px;
    }
    
    .switchLanguage.langintro {
        top: 10px !important;
    }

    .navbar .navMenu .containerNav .menuMobile i {
        color: #fff;
    }

    .navbar.white  .navMenu .containerNav .menuMobile i {
        color: #000 !important;
    }

    .containerNews .navNewsBtn .swiper-button-next, .containerNews .navNewsBtn .swiper-button-prev {
        margin-left:60px;
        margin-right: 60px;
    }

    .bantuanFAQ {
        margin-top: 70px;
    }

    .containerPromo.sub {
        margin-top: 70px;
    }


    .containerFooter .containerAddress{
        margin-top: 30px;
    }

    .containerFooter {
        padding-bottom: 140px;
    }

    .containerNews {
        padding: 8rem 20px;
    }

    .containerFooter .containerImg{
        justify-content: center;
    }
    
    .containerFooter .bottomFoot{
        text-align: center;
    }

    .containerPromo{
        padding: 0;
    }

    .footer-row-mobile{
        width: 100%;
    }

    .page-kurs-home{
        padding: 0 !important;
    }
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .navbar .navMenu {
        padding: 0.8rem 1rem;
    }

    .navbar .navMenu .containerNav {
        flex-direction: row-reverse;
    }
    
    .introPage .content .pageSearch .containerForm {
        position: relative;
        width: 80%;
        margin-top: 6rem;
    }

    .introPage .content .pageCard {
        padding-top: 2rem;
        padding-right: 0;
    }

    .introPage .content .pageCard .containers {
        display: flex;
        justify-content: start;
        align-items: center;
        padding: 2rem 0 2.4rem 0;
        overflow-x: auto;
    }

    .introPage .content .pageCard .containers::-webkit-scrollbar {
        height: 8px;
    }

    .introPage .content .pageCard .containers::-webkit-scrollbar-thumb {
        background: #ffffff40;
        border-radius: 10px;
    }

    .introPage .content .pageCard .containers::-webkit-scrollbar-track {
        background: #ffffff20;
        border-radius: 10px;
    }

    .introPage .content .pageCard .containers .secondCard {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        gap: 2rem;
    }

    .introPage .content .pageCard .cards {
        position: relative;
        width: 240px;
        padding: 1.4rem 2rem;
        border-radius: 20px;
        border-top: 3px solid transparent;
        border-bottom: 3px solid transparent;
        background: #00000074;
        text-decoration: none;
        transition: .4s;
    }

    .shortcut {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 99;
    }

    .shortcut .triggerMenu {
        display: none;
    }

    .shortcut .stickyMenu {
        left: 0;
        bottom: 0;
        width: calc(100% + 2rem);
        opacity: 1;
        visibility: visible;
    }

    .shortcut .contentStickyMenu {
        background: linear-gradient(0deg, #e1f0ff, #fff);
        right: 0;
        left: 0;
        bottom: 0;
        padding: 8px 0;
        transition: all .1s ease;
        margin-bottom: 0;
        border-radius: 0;
    }

    .shortcut .containerStickyMenu:hover .stickyMenu {
        transform: none;
    }

    .shortcut .contentStickyMenu .feature {
        position: relative;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        padding: 0;
    }

    .shortcut .contentStickyMenu .feature a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
        transition: all .2s ease;
    }

    .shortcut .contentStickyMenu .feature a:hover {
        background: transparent;
    }

    .shortcut .contentStickyMenu .feature a:hover .name,
    .shortcut .contentStickyMenu .feature a:hover .icon i {
        color: var(--primary);
        transition: all .2s ease;
    }

    .shortcut .contentStickyMenu .feature a:hover .icon i {
        filter: drop-shadow(0 0 0.6rem #008ada);
        transition: all .2s ease;
    }

    .shortcut .contentStickyMenu .feature a .name {
        font-size: 10px;
        font-weight: 400;
        color: #5E5E5E;
        text-align: center;
    }

    .shortcut .contentStickyMenu .feature a .name .mobile {
        display: block;
    }

    .shortcut .contentStickyMenu .feature a .name .web {
        display: none;
    }

    .shortcut .contentStickyMenu .feature .icon {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 28px;
        margin-bottom: 4px;
    }

    .shortcut .contentStickyMenu .feature .icon i {
        font-size: 24px;
        color: #797979;
    }

    .wrapperSearchData .searchData {
        width: 300px;
    }

    .wrapperSearchData .searchData .title {
        font-size: 14px;
    }

    .wrapperSearchData .searchData .searchInput {
        position: relative;
    }

    .wrapperSearchData .searchData input {
        width: 300px;
    }

    .wrapperSearchData .searchData .predictSearch {
        margin-top: 2rem;
    }

    .wrapperSearchData .searchData .predictSearch .containerPredict {
        width: 300px;
        margin-top: 1rem;
        padding-right: 1rem;
    }

    .wrapperSearchData .searchData .predictSearch a {
        position: relative;
        text-decoration: none;
    }

    .wrapperSearchData .searchData .predictSearch a .containers {
        gap: 10px;
        margin-top: 10px;
    }

    .wrapperSearchData .searchData .predictSearch a .containers .img {
        width: 60px;
    }

    .wrapperSearchData .searchData .predictSearch a .containers .img img {
        width: 60px;
        height: 60px;
    }

    .wrapperSearchData .searchData .predictSearch a .desc {
        margin-top: -4px;
        height: 55px;
    }

    .wrapperSearchData .searchData .predictSearch a .name {
        font-size: 12px;
    }

    .wrapperSearchData .searchData .predictSearch a .subname {
        font-weight: 300;
    }

    .closeSearch {
        position: fixed;
        right: 20px;
        top: 15px;
        gap: 12px;
        cursor: pointer;
        z-index: 99999;
    }

    .closeSearch .containers {
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        color: #fff;
    }

    .closeSearch .containers i {
        font-size: 18px;
    }

    .maxContent {
        margin: 0;
        padding: 0 8px;
    }

    .sectionWave.sub {
        padding: 1rem;
    }

    .sectionWave .waveFoot {
        position: absolute;
        top: -1.4rem;
        left: 0;
        height: 30px;
    }

    .sectionWave .waveTop {
        top: -3rem;
        height: 50px;
    }

    .sectionWave .waveBot {
        bottom: -3rem;
        height: 50px;
    }

    .headerContent {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .headerContent .titleHead {
        font-size: 20px;
        text-align: center;
    }

    .headerContent .subtitle {
        font-size: 12px;
        text-align: center;
    }

    .headerContent .btnAct {
        padding: 4px 16px;
    }

    .headerSubContent {
        position: relative;
        display: flex;
        justify-content: start;
        align-items: center;
        flex-direction: column-reverse;
        margin-bottom: 2rem;
    }

    .headerSubContent.onlyBreadCrumb {
        display: flex;
        justify-content: start;
        align-items: center;
    }

    .headerSubContent .containerTitle {
        position: relative;
        width: 100%;
    }

    .headerSubContent .titleHead {
        font-size: 18px;
        text-align: left;
    }

    .headerSubContent .subtitle {
        font-size: 12px;
    }

    .headerSubContent ul.breadCrumb {
        width: 100%;
        padding: 0;
    }

    .containerPromo .card {
        border-radius: 30px;
        padding: 3px;
    }

    .containerPromo .card .containerImg {
        width: 100%;
        margin-top: 2rem;
    }

    .containerPromo .card .containerImg img {
        width: 100%;
        height: 200px;
        border-radius: 30px;
        object-fit: cover;
    }

    .containerPromo .card .name {
        font-size: 12px;
        text-align: center;
    }

    .containerPromo .card:hover {
        box-shadow: 0px 0px 14px 0px rgba(192, 192, 192, 0.5);
        transition: .4s;
    }

    .containerPromo .swiper-pagination {
        position: relative;
        bottom: -1rem;
    }

    .containerPromo .swiper-pagination .swiper-pagination-bullet-active {
        background: var(--primary);
    }

    .containerPromo .promoNavBtn .swiper-button-next {
        right: -3rem;
    }

    .containerPromo .promoNavBtn .swiper-button-prev {
        left: -3rem;
    }

    .containerNews .swiperNews .swiper-slide.content {
        position: relative;
    }

    .containerNews .swiperNews .swiper-slide.content .newsLink {
        flex-direction: column-reverse;
    }

    .containerNews .swiperNews .swiper-slide.content .text {
        width: 100%;
    }

    .containerNews .swiperNews .swiper-slide.content .text .date,
    .containerNews .swiperNews .swiper-slide.content .text .title,
    .containerNews .swiperNews .swiper-slide.content .text .desc {
        padding: 0 1rem;
    }

    .containerNews .swiperNews .swiper-slide.content .text .btnLink {
        margin-left: 1rem;
    }

    .containerNews .swiperNews .swiper-slide.content .containerImg {
        position: relative;
        width: 100%;
        height: 240px;
        background: transparent;
    }

    .containerNews .swiperNews .swiper-slide.content .containerImg img {
        position: relative;
        right: 0;
        width: 100%;
        height: 240px;
        border-radius: 40px 40px 0 0;
        object-fit: cover;
        transition: .4s ease-in;
    }

    .containerNews .news-pagination {
        position: relative;
        bottom: -1rem;
    }

    .containerNews .news-pagination .swiper-pagination-bullet-active {
        background: #fff !important;
    }

    .containerFooter .titleFoot,
    .containerFooter .title-text,
    .containerFooter .desc-text {
        text-align: center;
    }

    .containerFooter .contentCallUs {
        position: relative;
        flex-direction: column;
        gap: 5px !important;
        padding: 0px 25px;
    }

    .containerFooter .contentCallUs .containers {
        margin-top: 0rem;
    }

    .containerFooter .bottomFoot .containers {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 1rem;
    }

    .containerTable {
        overflow-x: scroll;
        padding-bottom: 6px;
    }

    .containerTable::-webkit-scrollbar {
        width: 0;
        height: 4px;
    }

    .containerTable::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }

    .containerTable::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    table thead th,
    table tbody td {
        padding: 6px 14px;
        font-size: 12px;
    }

    .calculateKurs {
        position: relative;
        width: 100%;
    }

    .calculateKurs .title {
        font-size: 14px;
    }

    .calculateKurs .note .titleNote {
        font-size: 12px;
    }

    .calculateKurs .note li {
        font-size: 12px;
    }

    .detailSubProduk {
        position: relative;
        padding-bottom: 6rem;
    }

    .detailSubProduk .title {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 0;
    }

    .detailSubProduk .desc {
        font-size: 12px;
        line-height: 20px;
    }

    .detailSubProduk .listProduct li,
    .detailSubProduk .listProduct li {
        margin-left: 14px;
    }

    .detailSubProduk .action {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .detailSubProduk .action .title {
        text-align: center;
    }

    .detailSubProduk .detailImg {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 3rem;
    }

    .detailSubProduk .detailImg .contentImg {
        width: 220px;
        border-radius: 12px;
    }

    .detailPromo .minHeight {
        min-height: auto;
    }

    .detailPromo .share {
        position: relative;
        margin-top: 3rem;
    }

    .detailPromo .share .title {
        text-align: center;
    }

    .detailPromo .share .justify-end {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .detailPromo .detailImg {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .detailPromo .detailImg .contentImg {
        width: 100%;
    }

    .detailNews .title {
        font-size: 18px;
    }

    .detailNews .content {
        padding-right: 0;
    }

    .detailNews .content .detail {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 12px;
    }

    .detailNews .content .desc {
        font-size: 12px;
    }

    .detailNews .content .tag a {
        padding: 4px 14px;
    }

    .detailNews .newsImg .share {
        position: relative;
        margin-top: 2rem;
    }

    .detailNews .newsImg .share .title {
        text-align: center;
    }

    .detailNews .newsImg .share .justify-end {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .detailNews .newsImg .containerImg {
        padding-left: 0;
    }

    .portalReport .navWrapper {
        overflow-x: auto;
        border-color: transparent;
    }

    .portalReport .navWrapper::-webkit-scrollbar {
        width: 0;
        height: 2px;
    }

    .portalReport .navWrapper::-webkit-scrollbar-thumb {
        background: #e7e7e7;
    }

    .portalReport .navWrapper::-webkit-scrollbar-track {
        background: #f7f7f7;
    }

    .portalReport .tabWrapper .tabs {
        position: relative;
    }

    .portalReport .tabWrapper .tabs .containerTabFile {
        position: relative;
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
        margin-top: 8px;
    }

    .portalReport .tabWrapper .tabs .tabFile {
        padding: 6px 12px;
    }

    .portalReport .tabWrapper .tabs .tabFile .icon {
        width: 30px;
    }

    .portalReport .tabWrapper .tabs .tabFile .icon i {
        font-size: 20px;
        color: #aaa;
    }

    .portalReport .tabWrapper .tabs .tabFile .text .name {
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .portalReport .tabWrapper .tabs .tabFile .text .date {
        font-size: 10px;
    }

    .strukturOrganisasi .bannerStruktur img {
        width: 100%;
        mix-blend-mode: multiply;
    }

    .strukturOrganisasi .desc .intro {
        font-size: 12px;
    }

    .introPage .navIntro .navLogo {
        width: 50px;
        left: 44%;
    }

    .strukturOrganisasi .desc ul .title {
        font-size: 12px;
    }

    .strukturOrganisasi .desc ul li {
        font-size: 12px;
    }

    .companyValue .banner img {
        width: 200px;
    }

    .companyValue .containers .title {
        font-size: 14px;
    }

    .companyValue .containers .desc {
        font-size: 12px;
    }

    .companyValue ul .title {
        font-size: 12px !important;
    }

    .companyValue ul li {
        font-size: 12px;
    }

    .bantuanFAQ .containerContent {
        flex-direction: column;
        width: 100%;
    }

    .bantuanFAQ .navWrapper {
        position: relative;
    }

    .bantuanFAQ .navWrapper:after {
        display: none;
    }

    .bantuanFAQ .navWrapper:before {
        content: '';
        position: absolute;
        bottom: -1rem;
        left: 0;
        width: 100%;
        height: 1px;
        background: #f1f1f1;
    }

    .bantuanFAQ .tabWrapper {
        position: relative;
        width: 100%;
        margin-top: 4rem;
        padding-left: 0;
    }

    .branchLocation .reverse {
        flex-direction: column-reverse !important;
    }

    .branchLocation .card {
        flex-direction: column;
    }

    .branchLocation .card .content {
        position: relative;
        width: 100%;
    }

    .branchLocation .card .address {
        text-align: left;
        margin-top: 1.4rem;
    }

    .branchLocation .card .phone {
        display: flex;
        justify-content: start;
        align-items: center;
    }

    .branchLocation #map {
        height: 380px;
    }

    .detailProduct .title {
        font-size: 20px;
    }
    
    .detailProduct .subtitle {
        font-size: 14px;
        margin-bottom: 4rem;
    }

    .detailProduct .contentRes {
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 1rem;
        padding-bottom: 2rem;
    }

    .detailProduct .content .contentDetail img {
        width: 120px;
        height: 160px;
    }

    .detailProduct .content .contentDetail .name {
        font-size: 12px;
    }

    .detailReward .content img {
        width: 180px;
        height: 140px;
    }

    .detailReward .content .desc {
        width: 80%;
        font-size: 14px;
    }

    .sectionWave {
        padding-top: 2rem !important;
        padding-bottom: 0 !important;
    }

}

.tab-container{
    display: flex;
    gap: 15px;
}

.tab-container .tab-box{
    border: 2px solid #ffffff0d;
    font-size: 15px;
    font-weight: 500;
    padding: 7px 20px;
    color: #fff;
    transition: 0.5s ease-in-out;
    border-radius: 3px;
}

.tab-container .tab-box:hover{
    border: 2px solid var(--primary-orange);
    /* color: var(--primary-orange); */
    cursor: pointer;
}
.tab-container .tab-box.active{
    background: var(--primary-orange);
    color: #fff;
    border: 2px solid var(--primary-orange);
}

.bodyInit{
    overflow-x: hidden;
    overflow-y: auto;
}

.bodyInit.active{
    overflow-x: hidden;
    overflow-y: auto;
}

.contentSearch{
    position: fixed;
    width: 100%;
    height: 1000px;
    left: 0;
    right: 0;
    z-index: 1;
}

.contentSearch.active{
    z-index: 4000;
}

.privacy-content{
    font-family: 'Roboto';
    text-align: justify;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6rem;
    color: #444;
}

.privacy-content h4 {
    font-family: 'Roboto';
    font-size: 16px;
    font-weight: 600;
    color: #444;
}

.privacy-content ul.number{
    font-family: 'Roboto';
    list-style: decimal;
    padding-left: 1rem;
    margin-top: -8px;
}
.curve-line{
    width: 100%;
    height: 200px;
    position: absolute;
    z-index: 11;
    bottom: 76px;
}

.curve-line img{
    width: 100%;
    height: 100%;
}

.introArrow{
    width: 100%;
    position: absolute;
    bottom: 40px;
    text-align: center;
    cursor: pointer;
    z-index: 3000;
    transition: 0.5s ease-in-out;
    animation: MoveUpDown 2s linear infinite;
}


.introArrow i:hover {
    color: #fff;
}

.introArrow i{
    color: #ffffff70;
    font-size: 50px;

    transition: 0.5s ease-in-out;
    

    
}

.desc-suku-bunga{
    color: #fff;
    margin-top: 40px;
    margin-left: -1.4rem;
    padding-right: 8px;
}

.desc-suku-bunga li {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #ffffffcc;
    text-align: justify;
}

.content-card{
    display: flex;
    gap: 20px;
    margin-top: 100px;
}

.content-card .card-kredit{
    height: 100px;
    width: 100%;
    background: #00216f5c;
    border-radius: 34px;
    border: 4px solid #ffffff30;
    color: #fff;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.content-card .card-kredit:hover{
    background: #000000;
    color: #ffffff !important;
    border: 4px solid #000000;
}

.content-card .card-kredit:hover .title{
    color: #0099ff !important;
}

.content-card .card-kredit .title{
    font-size: 14px;
    font-weight: 400;
    color: #d1d1d1;
}

.content-card .card-kredit .count{
    font-size: 30px;
    font-weight: 800;
}


.content-table-kredit{
    background: linear-gradient(158deg, #00216f5e, #0e0e0e00);
    padding: 15px;
    border-radius: 20px;
    margin-bottom: 1rem;
}
.content-table-kredit .title {
    font-size: 16px;
    color: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
}

.content-table-kredit thead tr th {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    padding-bottom: 20px;
}

.content-table-kredit tbody tr td {
    font-size: 13px;
    color: #fff;
    font-weight: 400;
    padding: 18px 20px;
    border-bottom: 2px solid #ffffff0d;
}

.content-table-kredit .title{
    font-size: 18px;
    color: #fff;
    padding: 10px;
    border-radius: 17px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 30px;
    border-bottom: 2px solid #ffffff26;
}

.sectionPromo {
    background: url('../img/pattern/patsoft.png') !important;
    background-repeat: repeat;
    border: 2px solid #efefef;
}

.sectionBottomPattern{
    /* background: url('../img/pattern/pat20.png') !important; */
    height: 100%;
    width: 100%;
    opacity: 0.2;
    position: absolute;
    top: 0;
    background-repeat: repeat;
    border-radius: 20px;
}

.btnAccordion {
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: 0.4s;
}
.btnAccordion i {
    font-size: 16px;
    color: #fff;
}
.panel {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

@keyframes MoveUpDown {
    0%, 100% {
      bottom: 40px;
    }
    50% {
      bottom: 60px;
    }
  }

/*# sourceMappingURL=style.css.map */

@media (max-width: 800px) {
    .content-card {
        flex-wrap: wrap;
    }
    .content-card .card-kredit {
        width: calc(50% - 60px);
    }
}

/* LOADING PAGE */
.face {
    text-align: center;
    z-index: 999;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -100px;
}
#container-loading {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: #000000eb;
    z-index: 9999999;
    /* display: none; */
}

.loading {
    width: 130px;
    display: block;
    height: 2px;
    margin: 28px auto;
    border-radius: 2px;
    background-color: #5d6b61;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.loading:before {
    content: "";
    height: 3px;
    width: 68px;
    position: absolute;
    -webkit-transform: translate(-34px, 0);
    -ms-transform: translate(-34px, 0);
    transform: translate(-34px, 0);
    background-color: #28166f;
    border-radius: 2px;
    -webkit-animation: initial-loading 1.5s infinite ease;
    animation: animation 1.4s infinite ease;
}

.caption {
    margin-top: 30px;
    text-align: center;
}

.caption h2 {
    font-family: Trebuchet MS;
    color: #cfcfcf;
    margin: 0 0 8px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.caption ul {
    margin: 0;
    padding: 0;
}

.caption li {
    list-style: none;
    display: inline-block;
    letter-spacing: 5px;
    font-size: 16px;
    color: #ffffff;
    margin-right: 8px;
    font-weight: 500;
    font-family: "Poppins";
    animation: on-run 2.6s ease infinite;
    -webkit-animation: on-run 2.6s ease infinite;
    -moz-animation: on-run 2.6s ease infinite;
    -ms-animation: on-run 2.6s ease infinite;
    -o-animation: on-run 2.6s ease infinite;
}

.caption li:nth-child(1) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.caption li:nth-child(2) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    margin-right: 10px;
}

.caption li:nth-child(3) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.caption li:nth-child(4) {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.caption li:nth-child(5) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    margin-right: 10px;
}

.caption li:nth-child(6) {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.caption li:nth-child(7) {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
}

.caption li:nth-child(8) {
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s;
}

@-webkit-keyframes animation {
    0% {
        left: 0;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 0;
    }
}

@keyframes animation {
    0% {
        left: 0;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 0;
    }
}


.bg-navbar-white.white{
    position: fixed;
    width: 100%;
    height: 75px;
    top: 0;
    background: #fff;
    z-index: 100;
    transition: 0.5s ease-in-out;
}

.capitalize {
    text-transform: lowercase !important; /* Set all text to lowercase */
}

.capitalize::first-letter {
    text-transform: uppercase !important; /* Capitalize only the first letter */
}

.btn-category{
    padding: 10px 35px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    background: #e3e3e3;
    border-radius: 20px;
    color: #4d4d4d;
    margin: 5px;
    text-transform: uppercase;
    cursor: pointer;
}

.btn-category.active{
    background: var(--primary-dark);
    color: #fff;
}


.container-callcenter {
    margin-top: 30px;
    background: #ffffff;
    padding: 70px;
    border: 1px solid #ebebeb;
    border-radius: 50px;
    box-shadow: 0px 0px 89px #e9e9e9;
  }
  
  .container-callcenter .title{
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 17px;
  }
  
  .container-callcenter .subTitle{
    font-weight: 400;
    margin-bottom: 35px;
    font-size: 16px;
    color: var(--text-muted);
  }
  
  .card-contact{
    font-size: 13px;
    display: flex;
    gap: 27px;
    margin-bottom: 40px;
    padding: 5px;
    height: 65px;
    border-radius: 22px;
    transition: 0.5s;
    cursor: pointer;
  }
  
  .card-contact:hover{
    background: #f3f3f3;
  }
  
  .card-contact:hover .icon{
    background:var(--primary);
  }
  
  .card-contact .icon img{
    width: 30px;
    filter: invert(1);
  }
  
  .card-contact .icon{
    width: 30px;
    height: 30px;
    background: #0093dd2e;
    padding: 18px;
    border-radius: 20px;
    transition: 0.5s;
  }
  
  
  .card-contact .subTitle{
    font-size: 18px;
    font-weight: 700;
    color: #1e1e1e;
    font-family: 'Roboto';
  }
  
  .subTitle {}
  .card-contact .title{
    font-size: 13px;
    font-weight: 500;
    color: #292929;
    margin-bottom: 4px;
    text-transform: capitalize;
  }
  
  .card-contact .container-card-contact{
    display: flex;
    flex-direction: column;
    vertical-align: middle;
    justify-items: center;
    justify-content: center;
    gap: 2px;
    height: 96px;
  }
  
  .head-callcenter{
    margin-bottom: 140px;
    text-align: center;
    margin-top: 20px;
  }
  
  .head-callcenter .label {
    background: var(--primary-light);
    border-radius: 20px;
    padding: 10px 20px;
    color: var(--primary);
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 30px;
  }
  
  .head-callcenter .title{
    font-size: 38px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  
  
  .head-callcenter .desc{
    font-size: 16px;
    font-weight: 400;
    color: var(--text-muted);
  }
  
  .btn-contact{
    width: 100%;
    height: 45px !important;
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
  }

  
.simulasi-form {
    /* margin: 58px 19px; */
    /* width: 100%; */
  }
  
  .title-form {
    font-size: 13px;
    margin-bottom: 13px;
    /* margin-left: 10px; */
    font-weight: 600;
  }
  

  
.formGroup {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
  }
  .formGroup .selectGroup {
    position: absolute;
    top: 0;
    left: -1px;
    background: #edf7fd !important;
    color: #373737;
    width: 100%;
    height: 38px !important;
    border-radius: 20px !important;
    text-align: center;
  }
  .formGroup .inputGroup {
    text-align: right !important;
    border-radius: 20px !important;
  }
  
  input.form-control {
    width: calc(100%);
  }
  
  textarea.form-control{
    width: calc(100%);
    height: 150px !important;
    padding-top: 14px;
  }
  
  .form-control {
    font-family: "Roboto" !important;
    display: block;
    width: 100%;
    padding: 0 14px;
    height: 36px !important;
    font-size: 14px;
    font-weight: 400;
    border-radius: 20px;
    color: #7e8882;
    margin-bottom: 1rem;
    border: 1px solid #dfdfdf;
    background: #fff;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  .form-control:focus {
    color: #181c32;
    background-color: #ffffff;
    border-color: #e5e5e9;
    outline: 0;
  }
  .form-control::-moz-placeholder {
    font-size: 14px;
    color: #d0d0d0;
    font-weight: 400;
    opacity: 1;
  }
  .form-control::placeholder {
    font-size: 14px;
    color: #d0d0d0;
    font-weight: 400;
    opacity: 1;
  }

  
/* button */

.btn.btn-primary {
    color: var(--primary-inverse);
    border-color: var(--primary);
    background-color: var(--primary);
  }
  
  .btn.btn-light-primary {
    color: var(--primary);
    border-color: var(--primary-light);
    background-color: var(--primary-light);
  }
  
  .btn.btn-success {
    color: var(--success-inverse);
    border-color: var(--success);
    background-color: var(--success);
  }
  
  .btn.btn-light-success {
    color: var(--success);
    border-color: var(--success-light);
    background-color: var(--success-light);
  }
  
  .btn.btn-danger {
    color: var(--danger-inverse);
    border-color: var(--danger);
    background-color: var(--danger);
  }
  
  .btn.btn-light-danger {
    color: var(--danger);
    border-color: var(--danger-light);
    background-color: var(--danger-light);
  }
  
  .btn.btn-warning {
    color: var(--warning-inverse);
    border-color: var(--warning);
    background-color: var(--warning);
  }
  
  .btn.btn-light-warning {
    color: var(--warning);
    border-color: var(--warning-light);
    background-color: var(--warning-light);
  }
  
  .btn.btn-info {
    color: var(--info-inverse);
    border-color: var(--info);
    background-color: var(--info);
  }
  
  .btn.btn-light-info {
    color: var(--info);
    border-color: var(--info-light);
    background-color: var(--info-light);
  }
  
  .btn.btn-dark {
    color: var(--dark-inverse);
    border-color: var(--dark);
    background-color: var(--dark);
  }
  
  .btn.btn-light-dark {
    color: var(--dark);
    border-color: var(--dark-light);
    background-color: var(--dark-light);
  }
  
  .btn.btn-white {
    color: var(--white-inverse);
    border-color: var(--white);
    background-color: var(--white);
  }
  
  .btn.btn-light-white {
    color: var(--white);
    border-color: var(--white-light);
    background-color: var(--white-light);
  }
  
  .btn.btn-circle {
    border-radius: 50%;
  }
  
  .btn-transparent {
    background: #ffffff00;
    color: white;
    border: 1px solid #ffffff1f;
  }
  .btn.sm {
    height: 30px !important;
    padding: 0 16px !important;
  }
  .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    height: 35px;
    padding: 0 28px;
    border-radius: 15px;
    font-size: 13px;
    border: none;
    outline: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
  }
  
  .btn-round-lg {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 40px;
    min-width: 140px;
    padding: 0 24px;
    border-radius: 20px;
    border: none;
    outline: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .btn-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px !important;
    width: 35px !important;
    border-radius: 50%;
    border: none;
    outline: none;
    color: #fff;
    background: var(--blue);
    cursor: pointer;
    padding: 10px;
    transition: all 0.2s ease;
  }
  
  .btn-circle.btn-sm{
    width:30px;
    height:30px;
    padding: 3px 7px;
  }
  
  .btn-circle-sm {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: none;
    outline: none;
    color: #fff;
    background: var(--blue);
    cursor: pointer;
    transition: all 0.2s ease;
  }
  /* button */
  

  .fv-plugins-message-container{
    color: red;
    font-size: 12px;
    margin-top: -8px;
    margin-bottom: 15px;
  }


  .style-msg{
    text-align: center;
    padding: 10px 20px;
    background: #efefef;
    color: var(--primary);
    border-radius: 10px;
    margin-top: 10px;
  }

  /* SIMULASI */
  
.simulasi {
    text-align: center;
    margin-top: 30px;
  }
  
  .simulasi-img {
    width: 100%;
    height: 165px;
    margin-bottom: 20px;
  }
  
  .simulasi-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: "Roboto" !important;
  }
  
  .simulasi-desc {
    font-size: 11px;
    font-weight: 300;
    font-family: "Roboto" !important;
    line-height: 21px;
    color: #8b8b8b;
  }
  
  .container-simulasi {
    padding: 20px 0px;
  }
  
  .card-simulasi {
    cursor: pointer;
    background: #ebebeb;
    border: 2px dashed #e9e9e9;
    border-radius: 30px 60px;
    padding: 30px;
    margin-bottom: 20px;
    transition: 0.5s ease-in-out;
  }
  
  .card-simulasi:hover {
    background: #fff;
    border: 2px solid #fff;
    margin-top: -10px;
    box-shadow: 0px 12px 30px #3333331a;
  }
  
  .card-simulasi.active {
    background: #ffffff;
    position: absolute;
    left: 20%;
    right: 20%;
    top: 10%;
    padding: 13px;
    border-radius: 20px;
    /* width: 100%; */
    /* width: 91%; */
    border: 2px solid #fff;
    /* display: flex;
    gap: 61px; */
    z-index: 1000000;
  }
  .simulasi-backdrop{
    z-index: 100000;
    backdrop-filter: blur(5px);
    background: #00000045;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: fixed;
    display: none;
  }
  
  .simulasi-backdrop.active{
    display: block;
  }
  
  .content-simulasi{
    padding: 15px;
    border-radius: 30px;
    background: #fff;
    margin: 0px 190px;
  }
  
  .card-simulasi .notice{
    font-size: 13px;
    font-weight: 400;
    margin-top: 15px;
    
    text-align: center;
  }
  
  .card-simulasi.active .simulasi {
    text-align: center;
    /* width: 300px; */
    /* position: absolute; */
    /* top: -86px; */
    margin-top: 48px;
    width: 400px;
  }
  
  .card-simulasi.active .simulasi-desc {
    display: none;
  }
  
  .card-simulasi.no-active {
    display: none;
  }
  
  .simulasi-form {
    margin: 58px 19px;
    /* width: 100%; */
  }
  
  .title-form {
    font-size: 13px;
    margin-bottom: 13px;
    /* margin-left: 10px; */
    font-weight: 600;
  }
  
  .card-hasil-simulasi{
    border-radius: 20px;
    background: #ffffff;
    width: 450px;
    float: right;
    height: 100%;
    box-shadow: -4px 12px 20px #e5e5e5;
    /* position: absolute; */
    right: 0;
    top: 0;
  }
  
  .card-hasil-simulasi .title{
      font-size: 16px;
      font-weight: 600;
      background: var(--primary-light);
      color: var(--primary);
      padding: 15px;
      border-radius: 20px 20px 0 0;
      text-align: center;
  }
  .card-hasil-simulasi .form-hasil{
    margin: 20px;
    text-align: center;
  }
  
  .card-hasil-simulasi .form-hasil .text{
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--text-muted);
  }
  
  .card-hasil-simulasi .form-hasil .nominal{
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
  }
  
  .card-hasil-simulasi .form-hasil .desc{
    font-size: 13px;
    font-weight: 400;
    margin-top: 5px;
  }
  .card-hasil-simulasi .keterangan {
    font-size: 13px;
    font-weight: 400;
    padding: 30px;
    text-align: justify;
  }
  .card-hasil-simulasi .keterangan .title-keterangan{
    font-weight: 600;
  }

  
.branchLocation {
    position: relative;
    padding: 8rem 0;
  }
  .branchLocation .searchBranch {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
  }
  .branchLocation .searchBranch input {
    font-family: "Roboto" !important;
    position: relative;
    width: calc(100% - 4.8rem);
    height: 47px;
    font-size: 16px;
    font-weight: 300;
    color: #bbbbbb;
    padding-left: 1.4rem;
    padding-right: 3.4rem;
    border-radius: 30px;
    background: #ffffff;
    border: none;
    outline: none;
    transition: 0.4s;
  }
  .branchLocation .searchBranch input::-moz-placeholder {
    color: #d6d6d6;
    font-weight: 300;
  }
  .branchLocation .searchBranch input::placeholder {
    color: #d6d6d6;
    font-weight: 300;
  }
  .branchLocation .searchBranch input:focus {
    filter: drop-shadow(-15px 16px 25px rgba(0, 0, 0, 0.0823529412));
    transition: 0.4s;
  }
  .branchLocation .searchBranch i {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translate(-50%, -50%);
    font-size: 28px;
    color: #d6d6d6;
  }
  .branchLocation .card {
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: start;
    flex-direction: row;
    padding: 1.2rem 2rem;
  }
  .branchLocation .card .content {
    position: relative;
    width: 50%;
  }
  .branchLocation .card .branchNm {
    font-family: "Roboto" !important;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    color: #2d2d2d;
    text-transform: uppercase;
  }
  .branchLocation .card .address {
    font-family: "Roboto" !important;
    font-size: 12px;
    font-weight: 300;
    line-height: 19px;
    color: #3f3f3f;
    text-align: right;
  }
  .branchLocation .card .phone {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 300;
    color: #000;
    margin-top: 1rem;
  }
  .branchLocation .card:hover {
    filter: drop-shadow(-15px 16px 25px rgba(0, 0, 0, 0.1450980392));
    transition: 0.4s;
  }
  .branchLocation #map {
    width: 100%;
    height: 680px;
    border-radius: 30px;
  }
  .branchLocation #map .leaflet-popup-content {
    font-size: 14px;
    font-weight: 600;
  }
  .branchLocation .btnLocation {
    font-family: "Roboto" !important;
    display: flex;
    justify-content: start;
    align-items: center;
    display: inline-flex;
    padding: 8px 14px;
    width: 146px;
    height: 37px;
    gap: 8px;
    border-radius: 30px;
    background: rgba(0, 147, 221, 0.1254901961);
    color: #0093dd;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    outline: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .branchLocation .btnLocation i {
    font-size: 16px;
    color: #0093dd;
  }
  .branchLocation .btnLocation:hover {
    box-shadow: 0px 6px 10px 0px rgba(0, 138, 218, 0.137);
    transition: all 0.2s ease;
  }
  
  .pagination {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 6px;
    margin-top:10px;
  }

 .pagination .page-item.active .page-link{
     background: var(--primary);
     color:#fff;
 }

    .pagination li {
        list-style:none;
    }
  .pagination button {
    font-family: "Roboto" !important;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e6e6e6;
    color: #4d4d4d;
    font-size: 14px;
    font-weight: 500;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.4s;
  }
  .pagination button i {
    font-size: 20px;
    color: #3dabe2;
  }
  .pagination button.active {
    background: #3dabe2;
    color: #fff;
    transition: 0.4s;
  }
  .pagination button:not(.active):hover {
    background: #3dabe2;
    color: #fff;
    transition: 0.4s;
  }
  .pagination button:not(.active):hover i {
    color: #fff;
  }

  .map_title{
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    color: #fff;
    background: var(--primary-dark);
    border-radius: 20px;
    padding: 10px 25px;
  }

  .map_address{
    font-size: 12px;
    font-weight: 400;
    margin-top: 25px;
    text-align: center;
  }

  .map_tlp{
    text-align: center;
    margin-top: 10px;
  }

  .subtitle-product{
    color: #fff;
    margin-top: 9px;font-size: 12px;
  }

  .productImg-outline{
    position: absolute;
    z-index: 100;
    padding: 20px;
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 20px;
    bottom: 21px;
    left: -15px;
    /* border: 1px dashed #07c6ff; */
  }

  .productImg-outline.color1{
     background: linear-gradient(230deg,#1B5E20 0%, #83ff8c 100%);
  }
  .productImg-outline.color2{
     background: linear-gradient(230deg,#0D47A1 0%, #64a2ff 100%);
  }
  .productImg-outline.color3{
     background: linear-gradient(230deg,#E65100 0%, #ffcfb6 100%);
  }
  .productImg-outline.color4{
     background: linear-gradient(230deg, #8c1414 0%, #d8b8ff 100%);
  }
  .productImg-outline.color5{
     background: linear-gradient(230deg,#827717 0%, #fff8b6 100%);
  }
  .productImg-outline.color6{
     background: linear-gradient(230deg,#006064 0%, #a7fcff 100%);
  }

    .productImg-outline img{
    width: 100%;
    filter: brightness(0) invert(1);
    }

    .view-mb{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        padding-right: 200px;
        margin-left: 100px;
    }
    .view-mb img{
        width: 300px;
        filter: drop-shadow(7px 10px 15px rgba(0,0,0,0.5));
        margin-right: -100px;
    }

    .contentViewMb{

          color: #fff;
    margin-top: 40px;
    line-height: 22px;
    text-align: center;
    margin-bottom: 40px;
    font-size: 12px;
    }

    .newIcon img{
        width: 40px;
        height: 40px;
        filter: brightness(1);
        transition: all 0.5s ease-in-out;
    }

    .containerFooter .contentCallUs .containers:hover .newIcon img{
        width: 40px;
        height: 40px;
        filter: brightness(0.5);
    }
